Merge pull request #1699 from TheBlueMatt/2022-08-announcement-rework
[rust-lightning] / lightning / src / ln / functional_tests.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! Tests that test standing up a network of ChannelManagers, creating channels, sending
11 //! payments/messages between them, and often checking the resulting ChannelMonitors are able to
12 //! claim outputs on-chain.
13
14 use chain;
15 use chain::{Confirm, Listen, Watch};
16 use chain::chaininterface::LowerBoundedFeeEstimator;
17 use chain::channelmonitor;
18 use chain::channelmonitor::{ChannelMonitor, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY};
19 use chain::transaction::OutPoint;
20 use chain::keysinterface::{BaseSign, KeysInterface};
21 use ln::{PaymentPreimage, PaymentSecret, PaymentHash};
22 use ln::channel::{commitment_tx_base_weight, COMMITMENT_TX_WEIGHT_PER_HTLC, CONCURRENT_INBOUND_HTLC_FEE_BUFFER, FEE_SPIKE_BUFFER_FEE_INCREASE_MULTIPLE, MIN_AFFORDABLE_HTLC_COUNT};
23 use ln::channelmanager::{ChannelManager, ChannelManagerReadArgs, PaymentId, RAACommitmentOrder, PaymentSendFailure, BREAKDOWN_TIMEOUT, MIN_CLTV_EXPIRY_DELTA, PAYMENT_EXPIRY_BLOCKS };
24 use ln::channel::{Channel, ChannelError};
25 use ln::{chan_utils, onion_utils};
26 use ln::chan_utils::{htlc_success_tx_weight, htlc_timeout_tx_weight, HTLCOutputInCommitment};
27 use routing::gossip::NetworkGraph;
28 use routing::router::{PaymentParameters, Route, RouteHop, RouteParameters, find_route, get_route};
29 use ln::features::{ChannelFeatures, InitFeatures, InvoiceFeatures, NodeFeatures};
30 use ln::msgs;
31 use ln::msgs::{ChannelMessageHandler, RoutingMessageHandler, ErrorAction};
32 use util::enforcing_trait_impls::EnforcingSigner;
33 use util::{byte_utils, test_utils};
34 use util::events::{Event, MessageSendEvent, MessageSendEventsProvider, PaymentPurpose, ClosureReason, HTLCDestination};
35 use util::errors::APIError;
36 use util::ser::{Writeable, ReadableArgs};
37 use util::config::UserConfig;
38
39 use bitcoin::hash_types::BlockHash;
40 use bitcoin::blockdata::block::{Block, BlockHeader};
41 use bitcoin::blockdata::script::{Builder, Script};
42 use bitcoin::blockdata::opcodes;
43 use bitcoin::blockdata::constants::genesis_block;
44 use bitcoin::network::constants::Network;
45 use bitcoin::{PackedLockTime, Sequence, Transaction, TxIn, TxMerkleNode, TxOut, Witness};
46 use bitcoin::OutPoint as BitcoinOutPoint;
47
48 use bitcoin::secp256k1::Secp256k1;
49 use bitcoin::secp256k1::{PublicKey,SecretKey};
50
51 use regex;
52
53 use io;
54 use prelude::*;
55 use alloc::collections::BTreeSet;
56 use core::default::Default;
57 use core::iter::repeat;
58 use bitcoin::hashes::Hash;
59 use sync::{Arc, Mutex};
60
61 use ln::functional_test_utils::*;
62 use ln::chan_utils::CommitmentTransaction;
63
64 #[test]
65 fn test_insane_channel_opens() {
66         // Stand up a network of 2 nodes
67         use ln::channel::TOTAL_BITCOIN_SUPPLY_SATOSHIS;
68         let mut cfg = UserConfig::default();
69         cfg.channel_handshake_limits.max_funding_satoshis = TOTAL_BITCOIN_SUPPLY_SATOSHIS + 1;
70         let chanmon_cfgs = create_chanmon_cfgs(2);
71         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
72         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(cfg)]);
73         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
74
75         // Instantiate channel parameters where we push the maximum msats given our
76         // funding satoshis
77         let channel_value_sat = 31337; // same as funding satoshis
78         let channel_reserve_satoshis = Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(channel_value_sat, &cfg);
79         let push_msat = (channel_value_sat - channel_reserve_satoshis) * 1000;
80
81         // Have node0 initiate a channel to node1 with aforementioned parameters
82         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), channel_value_sat, push_msat, 42, None).unwrap();
83
84         // Extract the channel open message from node0 to node1
85         let open_channel_message = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
86
87         // Test helper that asserts we get the correct error string given a mutator
88         // that supposedly makes the channel open message insane
89         let insane_open_helper = |expected_error_str: &str, message_mutator: fn(msgs::OpenChannel) -> msgs::OpenChannel| {
90                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &message_mutator(open_channel_message.clone()));
91                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
92                 assert_eq!(msg_events.len(), 1);
93                 let expected_regex = regex::Regex::new(expected_error_str).unwrap();
94                 if let MessageSendEvent::HandleError { ref action, .. } = msg_events[0] {
95                         match action {
96                                 &ErrorAction::SendErrorMessage { .. } => {
97                                         nodes[1].logger.assert_log_regex("lightning::ln::channelmanager".to_string(), expected_regex, 1);
98                                 },
99                                 _ => panic!("unexpected event!"),
100                         }
101                 } else { assert!(false); }
102         };
103
104         use ln::channelmanager::MAX_LOCAL_BREAKDOWN_TIMEOUT;
105
106         // Test all mutations that would make the channel open message insane
107         insane_open_helper(format!("Per our config, funding must be at most {}. It was {}", TOTAL_BITCOIN_SUPPLY_SATOSHIS + 1, TOTAL_BITCOIN_SUPPLY_SATOSHIS + 2).as_str(), |mut msg| { msg.funding_satoshis = TOTAL_BITCOIN_SUPPLY_SATOSHIS + 2; msg });
108         insane_open_helper(format!("Funding must be smaller than the total bitcoin supply. It was {}", TOTAL_BITCOIN_SUPPLY_SATOSHIS).as_str(), |mut msg| { msg.funding_satoshis = TOTAL_BITCOIN_SUPPLY_SATOSHIS; msg });
109
110         insane_open_helper("Bogus channel_reserve_satoshis", |mut msg| { msg.channel_reserve_satoshis = msg.funding_satoshis + 1; msg });
111
112         insane_open_helper(r"push_msat \d+ was larger than channel amount minus reserve \(\d+\)", |mut msg| { msg.push_msat = (msg.funding_satoshis - msg.channel_reserve_satoshis) * 1000 + 1; msg });
113
114         insane_open_helper("Peer never wants payout outputs?", |mut msg| { msg.dust_limit_satoshis = msg.funding_satoshis + 1 ; msg });
115
116         insane_open_helper(r"Minimum htlc value \(\d+\) was larger than full channel value \(\d+\)", |mut msg| { msg.htlc_minimum_msat = (msg.funding_satoshis - msg.channel_reserve_satoshis) * 1000; msg });
117
118         insane_open_helper("They wanted our payments to be delayed by a needlessly long period", |mut msg| { msg.to_self_delay = MAX_LOCAL_BREAKDOWN_TIMEOUT + 1; msg });
119
120         insane_open_helper("0 max_accepted_htlcs makes for a useless channel", |mut msg| { msg.max_accepted_htlcs = 0; msg });
121
122         insane_open_helper("max_accepted_htlcs was 484. It must not be larger than 483", |mut msg| { msg.max_accepted_htlcs = 484; msg });
123 }
124
125 #[test]
126 fn test_funding_exceeds_no_wumbo_limit() {
127         // Test that if a peer does not support wumbo channels, we'll refuse to open a wumbo channel to
128         // them.
129         use ln::channel::MAX_FUNDING_SATOSHIS_NO_WUMBO;
130         let chanmon_cfgs = create_chanmon_cfgs(2);
131         let mut node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
132         node_cfgs[1].features = InitFeatures::known().clear_wumbo();
133         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
134         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
135
136         match nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), MAX_FUNDING_SATOSHIS_NO_WUMBO + 1, 0, 42, None) {
137                 Err(APIError::APIMisuseError { err }) => {
138                         assert_eq!(format!("funding_value must not exceed {}, it was {}", MAX_FUNDING_SATOSHIS_NO_WUMBO, MAX_FUNDING_SATOSHIS_NO_WUMBO + 1), err);
139                 },
140                 _ => panic!()
141         }
142 }
143
144 fn do_test_counterparty_no_reserve(send_from_initiator: bool) {
145         // A peer providing a channel_reserve_satoshis of 0 (or less than our dust limit) is insecure,
146         // but only for them. Because some LSPs do it with some level of trust of the clients (for a
147         // substantial UX improvement), we explicitly allow it. Because it's unlikely to happen often
148         // in normal testing, we test it explicitly here.
149         let chanmon_cfgs = create_chanmon_cfgs(2);
150         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
151         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
152         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
153         let default_config = UserConfig::default();
154
155         // Have node0 initiate a channel to node1 with aforementioned parameters
156         let mut push_amt = 100_000_000;
157         let feerate_per_kw = 253;
158         let opt_anchors = false;
159         push_amt -= feerate_per_kw as u64 * (commitment_tx_base_weight(opt_anchors) + 4 * COMMITMENT_TX_WEIGHT_PER_HTLC) / 1000 * 1000;
160         push_amt -= Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(100_000, &default_config) * 1000;
161
162         let temp_channel_id = nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, if send_from_initiator { 0 } else { push_amt }, 42, None).unwrap();
163         let mut open_channel_message = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
164         if !send_from_initiator {
165                 open_channel_message.channel_reserve_satoshis = 0;
166                 open_channel_message.max_htlc_value_in_flight_msat = 100_000_000;
167         }
168         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_channel_message);
169
170         // Extract the channel accept message from node1 to node0
171         let mut accept_channel_message = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
172         if send_from_initiator {
173                 accept_channel_message.channel_reserve_satoshis = 0;
174                 accept_channel_message.max_htlc_value_in_flight_msat = 100_000_000;
175         }
176         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel_message);
177         {
178                 let mut lock;
179                 let mut chan = get_channel_ref!(if send_from_initiator { &nodes[1] } else { &nodes[0] }, lock, temp_channel_id);
180                 chan.holder_selected_channel_reserve_satoshis = 0;
181                 chan.holder_max_htlc_value_in_flight_msat = 100_000_000;
182         }
183
184         let funding_tx = sign_funding_transaction(&nodes[0], &nodes[1], 100_000, temp_channel_id);
185         let funding_msgs = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &funding_tx);
186         create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &funding_msgs.0);
187
188         // nodes[0] should now be able to send the full balance to nodes[1], violating nodes[1]'s
189         // security model if it ever tries to send funds back to nodes[0] (but that's not our problem).
190         if send_from_initiator {
191                 send_payment(&nodes[0], &[&nodes[1]], 100_000_000
192                         // Note that for outbound channels we have to consider the commitment tx fee and the
193                         // "fee spike buffer", which is currently a multiple of the total commitment tx fee as
194                         // well as an additional HTLC.
195                         - FEE_SPIKE_BUFFER_FEE_INCREASE_MULTIPLE * commit_tx_fee_msat(feerate_per_kw, 2, opt_anchors));
196         } else {
197                 send_payment(&nodes[1], &[&nodes[0]], push_amt);
198         }
199 }
200
201 #[test]
202 fn test_counterparty_no_reserve() {
203         do_test_counterparty_no_reserve(true);
204         do_test_counterparty_no_reserve(false);
205 }
206
207 #[test]
208 fn test_async_inbound_update_fee() {
209         let chanmon_cfgs = create_chanmon_cfgs(2);
210         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
211         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
212         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
213         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
214
215         // balancing
216         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
217
218         // A                                        B
219         // update_fee                            ->
220         // send (1) commitment_signed            -.
221         //                                       <- update_add_htlc/commitment_signed
222         // send (2) RAA (awaiting remote revoke) -.
223         // (1) commitment_signed is delivered    ->
224         //                                       .- send (3) RAA (awaiting remote revoke)
225         // (2) RAA is delivered                  ->
226         //                                       .- send (4) commitment_signed
227         //                                       <- (3) RAA is delivered
228         // send (5) commitment_signed            -.
229         //                                       <- (4) commitment_signed is delivered
230         // send (6) RAA                          -.
231         // (5) commitment_signed is delivered    ->
232         //                                       <- RAA
233         // (6) RAA is delivered                  ->
234
235         // First nodes[0] generates an update_fee
236         {
237                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
238                 *feerate_lock += 20;
239         }
240         nodes[0].node.timer_tick_occurred();
241         check_added_monitors!(nodes[0], 1);
242
243         let events_0 = nodes[0].node.get_and_clear_pending_msg_events();
244         assert_eq!(events_0.len(), 1);
245         let (update_msg, commitment_signed) = match events_0[0] { // (1)
246                 MessageSendEvent::UpdateHTLCs { updates: msgs::CommitmentUpdate { ref update_fee, ref commitment_signed, .. }, .. } => {
247                         (update_fee.as_ref(), commitment_signed)
248                 },
249                 _ => panic!("Unexpected event"),
250         };
251
252         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
253
254         // ...but before it's delivered, nodes[1] starts to send a payment back to nodes[0]...
255         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 40000);
256         nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
257         check_added_monitors!(nodes[1], 1);
258
259         let payment_event = {
260                 let mut events_1 = nodes[1].node.get_and_clear_pending_msg_events();
261                 assert_eq!(events_1.len(), 1);
262                 SendEvent::from_event(events_1.remove(0))
263         };
264         assert_eq!(payment_event.node_id, nodes[0].node.get_our_node_id());
265         assert_eq!(payment_event.msgs.len(), 1);
266
267         // ...now when the messages get delivered everyone should be happy
268         nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
269         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &payment_event.commitment_msg); // (2)
270         let as_revoke_and_ack = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
271         // nodes[0] is awaiting nodes[1] revoke_and_ack so get_event_msg's assert(len == 1) passes
272         check_added_monitors!(nodes[0], 1);
273
274         // deliver(1), generate (3):
275         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), commitment_signed);
276         let bs_revoke_and_ack = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
277         // nodes[1] is awaiting nodes[0] revoke_and_ack so get_event_msg's assert(len == 1) passes
278         check_added_monitors!(nodes[1], 1);
279
280         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_revoke_and_ack); // deliver (2)
281         let bs_update = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
282         assert!(bs_update.update_add_htlcs.is_empty()); // (4)
283         assert!(bs_update.update_fulfill_htlcs.is_empty()); // (4)
284         assert!(bs_update.update_fail_htlcs.is_empty()); // (4)
285         assert!(bs_update.update_fail_malformed_htlcs.is_empty()); // (4)
286         assert!(bs_update.update_fee.is_none()); // (4)
287         check_added_monitors!(nodes[1], 1);
288
289         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_revoke_and_ack); // deliver (3)
290         let as_update = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
291         assert!(as_update.update_add_htlcs.is_empty()); // (5)
292         assert!(as_update.update_fulfill_htlcs.is_empty()); // (5)
293         assert!(as_update.update_fail_htlcs.is_empty()); // (5)
294         assert!(as_update.update_fail_malformed_htlcs.is_empty()); // (5)
295         assert!(as_update.update_fee.is_none()); // (5)
296         check_added_monitors!(nodes[0], 1);
297
298         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_update.commitment_signed); // deliver (4)
299         let as_second_revoke = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
300         // only (6) so get_event_msg's assert(len == 1) passes
301         check_added_monitors!(nodes[0], 1);
302
303         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_update.commitment_signed); // deliver (5)
304         let bs_second_revoke = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
305         check_added_monitors!(nodes[1], 1);
306
307         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_second_revoke);
308         check_added_monitors!(nodes[0], 1);
309
310         let events_2 = nodes[0].node.get_and_clear_pending_events();
311         assert_eq!(events_2.len(), 1);
312         match events_2[0] {
313                 Event::PendingHTLCsForwardable {..} => {}, // If we actually processed we'd receive the payment
314                 _ => panic!("Unexpected event"),
315         }
316
317         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_revoke); // deliver (6)
318         check_added_monitors!(nodes[1], 1);
319 }
320
321 #[test]
322 fn test_update_fee_unordered_raa() {
323         // Just the intro to the previous test followed by an out-of-order RAA (which caused a
324         // crash in an earlier version of the update_fee patch)
325         let chanmon_cfgs = create_chanmon_cfgs(2);
326         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
327         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
328         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
329         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
330
331         // balancing
332         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
333
334         // First nodes[0] generates an update_fee
335         {
336                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
337                 *feerate_lock += 20;
338         }
339         nodes[0].node.timer_tick_occurred();
340         check_added_monitors!(nodes[0], 1);
341
342         let events_0 = nodes[0].node.get_and_clear_pending_msg_events();
343         assert_eq!(events_0.len(), 1);
344         let update_msg = match events_0[0] { // (1)
345                 MessageSendEvent::UpdateHTLCs { updates: msgs::CommitmentUpdate { ref update_fee, .. }, .. } => {
346                         update_fee.as_ref()
347                 },
348                 _ => panic!("Unexpected event"),
349         };
350
351         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
352
353         // ...but before it's delivered, nodes[1] starts to send a payment back to nodes[0]...
354         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 40000);
355         nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
356         check_added_monitors!(nodes[1], 1);
357
358         let payment_event = {
359                 let mut events_1 = nodes[1].node.get_and_clear_pending_msg_events();
360                 assert_eq!(events_1.len(), 1);
361                 SendEvent::from_event(events_1.remove(0))
362         };
363         assert_eq!(payment_event.node_id, nodes[0].node.get_our_node_id());
364         assert_eq!(payment_event.msgs.len(), 1);
365
366         // ...now when the messages get delivered everyone should be happy
367         nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
368         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &payment_event.commitment_msg); // (2)
369         let as_revoke_msg = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
370         // nodes[0] is awaiting nodes[1] revoke_and_ack so get_event_msg's assert(len == 1) passes
371         check_added_monitors!(nodes[0], 1);
372
373         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_revoke_msg); // deliver (2)
374         check_added_monitors!(nodes[1], 1);
375
376         // We can't continue, sadly, because our (1) now has a bogus signature
377 }
378
379 #[test]
380 fn test_multi_flight_update_fee() {
381         let chanmon_cfgs = create_chanmon_cfgs(2);
382         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
383         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
384         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
385         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
386
387         // A                                        B
388         // update_fee/commitment_signed          ->
389         //                                       .- send (1) RAA and (2) commitment_signed
390         // update_fee (never committed)          ->
391         // (3) update_fee                        ->
392         // We have to manually generate the above update_fee, it is allowed by the protocol but we
393         // don't track which updates correspond to which revoke_and_ack responses so we're in
394         // AwaitingRAA mode and will not generate the update_fee yet.
395         //                                       <- (1) RAA delivered
396         // (3) is generated and send (4) CS      -.
397         // Note that A cannot generate (4) prior to (1) being delivered as it otherwise doesn't
398         // know the per_commitment_point to use for it.
399         //                                       <- (2) commitment_signed delivered
400         // revoke_and_ack                        ->
401         //                                          B should send no response here
402         // (4) commitment_signed delivered       ->
403         //                                       <- RAA/commitment_signed delivered
404         // revoke_and_ack                        ->
405
406         // First nodes[0] generates an update_fee
407         let initial_feerate;
408         {
409                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
410                 initial_feerate = *feerate_lock;
411                 *feerate_lock = initial_feerate + 20;
412         }
413         nodes[0].node.timer_tick_occurred();
414         check_added_monitors!(nodes[0], 1);
415
416         let events_0 = nodes[0].node.get_and_clear_pending_msg_events();
417         assert_eq!(events_0.len(), 1);
418         let (update_msg_1, commitment_signed_1) = match events_0[0] { // (1)
419                 MessageSendEvent::UpdateHTLCs { updates: msgs::CommitmentUpdate { ref update_fee, ref commitment_signed, .. }, .. } => {
420                         (update_fee.as_ref().unwrap(), commitment_signed)
421                 },
422                 _ => panic!("Unexpected event"),
423         };
424
425         // Deliver first update_fee/commitment_signed pair, generating (1) and (2):
426         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg_1);
427         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), commitment_signed_1);
428         let (bs_revoke_msg, bs_commitment_signed) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
429         check_added_monitors!(nodes[1], 1);
430
431         // nodes[0] is awaiting a revoke from nodes[1] before it will create a new commitment
432         // transaction:
433         {
434                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
435                 *feerate_lock = initial_feerate + 40;
436         }
437         nodes[0].node.timer_tick_occurred();
438         assert!(nodes[0].node.get_and_clear_pending_events().is_empty());
439         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
440
441         // Create the (3) update_fee message that nodes[0] will generate before it does...
442         let mut update_msg_2 = msgs::UpdateFee {
443                 channel_id: update_msg_1.channel_id.clone(),
444                 feerate_per_kw: (initial_feerate + 30) as u32,
445         };
446
447         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), &update_msg_2);
448
449         update_msg_2.feerate_per_kw = (initial_feerate + 40) as u32;
450         // Deliver (3)
451         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), &update_msg_2);
452
453         // Deliver (1), generating (3) and (4)
454         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_revoke_msg);
455         let as_second_update = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
456         check_added_monitors!(nodes[0], 1);
457         assert!(as_second_update.update_add_htlcs.is_empty());
458         assert!(as_second_update.update_fulfill_htlcs.is_empty());
459         assert!(as_second_update.update_fail_htlcs.is_empty());
460         assert!(as_second_update.update_fail_malformed_htlcs.is_empty());
461         // Check that the update_fee newly generated matches what we delivered:
462         assert_eq!(as_second_update.update_fee.as_ref().unwrap().channel_id, update_msg_2.channel_id);
463         assert_eq!(as_second_update.update_fee.as_ref().unwrap().feerate_per_kw, update_msg_2.feerate_per_kw);
464
465         // Deliver (2) commitment_signed
466         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_commitment_signed);
467         let as_revoke_msg = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
468         check_added_monitors!(nodes[0], 1);
469         // No commitment_signed so get_event_msg's assert(len == 1) passes
470
471         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_revoke_msg);
472         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
473         check_added_monitors!(nodes[1], 1);
474
475         // Delever (4)
476         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_update.commitment_signed);
477         let (bs_second_revoke, bs_second_commitment) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
478         check_added_monitors!(nodes[1], 1);
479
480         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_second_revoke);
481         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
482         check_added_monitors!(nodes[0], 1);
483
484         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_commitment);
485         let as_second_revoke = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
486         // No commitment_signed so get_event_msg's assert(len == 1) passes
487         check_added_monitors!(nodes[0], 1);
488
489         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_revoke);
490         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
491         check_added_monitors!(nodes[1], 1);
492 }
493
494 fn do_test_sanity_on_in_flight_opens(steps: u8) {
495         // Previously, we had issues deserializing channels when we hadn't connected the first block
496         // after creation. To catch that and similar issues, we lean on the Node::drop impl to test
497         // serialization round-trips and simply do steps towards opening a channel and then drop the
498         // Node objects.
499
500         let chanmon_cfgs = create_chanmon_cfgs(2);
501         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
502         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
503         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
504
505         if steps & 0b1000_0000 != 0{
506                 let block = Block {
507                         header: BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 },
508                         txdata: vec![],
509                 };
510                 connect_block(&nodes[0], &block);
511                 connect_block(&nodes[1], &block);
512         }
513
514         if steps & 0x0f == 0 { return; }
515         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, None).unwrap();
516         let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
517
518         if steps & 0x0f == 1 { return; }
519         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_channel);
520         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
521
522         if steps & 0x0f == 2 { return; }
523         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel);
524
525         let (temporary_channel_id, tx, funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42);
526
527         if steps & 0x0f == 3 { return; }
528         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
529         check_added_monitors!(nodes[0], 0);
530         let funding_created = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
531
532         if steps & 0x0f == 4 { return; }
533         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created);
534         {
535                 let mut added_monitors = nodes[1].chain_monitor.added_monitors.lock().unwrap();
536                 assert_eq!(added_monitors.len(), 1);
537                 assert_eq!(added_monitors[0].0, funding_output);
538                 added_monitors.clear();
539         }
540         let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
541
542         if steps & 0x0f == 5 { return; }
543         nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
544         {
545                 let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
546                 assert_eq!(added_monitors.len(), 1);
547                 assert_eq!(added_monitors[0].0, funding_output);
548                 added_monitors.clear();
549         }
550
551         let events_4 = nodes[0].node.get_and_clear_pending_events();
552         assert_eq!(events_4.len(), 0);
553
554         if steps & 0x0f == 6 { return; }
555         create_chan_between_nodes_with_value_confirm_first(&nodes[0], &nodes[1], &tx, 2);
556
557         if steps & 0x0f == 7 { return; }
558         confirm_transaction_at(&nodes[0], &tx, 2);
559         connect_blocks(&nodes[0], CHAN_CONFIRM_DEPTH);
560         create_chan_between_nodes_with_value_confirm_second(&nodes[1], &nodes[0]);
561 }
562
563 #[test]
564 fn test_sanity_on_in_flight_opens() {
565         do_test_sanity_on_in_flight_opens(0);
566         do_test_sanity_on_in_flight_opens(0 | 0b1000_0000);
567         do_test_sanity_on_in_flight_opens(1);
568         do_test_sanity_on_in_flight_opens(1 | 0b1000_0000);
569         do_test_sanity_on_in_flight_opens(2);
570         do_test_sanity_on_in_flight_opens(2 | 0b1000_0000);
571         do_test_sanity_on_in_flight_opens(3);
572         do_test_sanity_on_in_flight_opens(3 | 0b1000_0000);
573         do_test_sanity_on_in_flight_opens(4);
574         do_test_sanity_on_in_flight_opens(4 | 0b1000_0000);
575         do_test_sanity_on_in_flight_opens(5);
576         do_test_sanity_on_in_flight_opens(5 | 0b1000_0000);
577         do_test_sanity_on_in_flight_opens(6);
578         do_test_sanity_on_in_flight_opens(6 | 0b1000_0000);
579         do_test_sanity_on_in_flight_opens(7);
580         do_test_sanity_on_in_flight_opens(7 | 0b1000_0000);
581         do_test_sanity_on_in_flight_opens(8);
582         do_test_sanity_on_in_flight_opens(8 | 0b1000_0000);
583 }
584
585 #[test]
586 fn test_update_fee_vanilla() {
587         let chanmon_cfgs = create_chanmon_cfgs(2);
588         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
589         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
590         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
591         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
592
593         {
594                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
595                 *feerate_lock += 25;
596         }
597         nodes[0].node.timer_tick_occurred();
598         check_added_monitors!(nodes[0], 1);
599
600         let events_0 = nodes[0].node.get_and_clear_pending_msg_events();
601         assert_eq!(events_0.len(), 1);
602         let (update_msg, commitment_signed) = match events_0[0] {
603                         MessageSendEvent::UpdateHTLCs { node_id:_, updates: msgs::CommitmentUpdate { update_add_htlcs:_, update_fulfill_htlcs:_, update_fail_htlcs:_, update_fail_malformed_htlcs:_, ref update_fee, ref commitment_signed } } => {
604                         (update_fee.as_ref(), commitment_signed)
605                 },
606                 _ => panic!("Unexpected event"),
607         };
608         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
609
610         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), commitment_signed);
611         let (revoke_msg, commitment_signed) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
612         check_added_monitors!(nodes[1], 1);
613
614         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &revoke_msg);
615         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
616         check_added_monitors!(nodes[0], 1);
617
618         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &commitment_signed);
619         let revoke_msg = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
620         // No commitment_signed so get_event_msg's assert(len == 1) passes
621         check_added_monitors!(nodes[0], 1);
622
623         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &revoke_msg);
624         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
625         check_added_monitors!(nodes[1], 1);
626 }
627
628 #[test]
629 fn test_update_fee_that_funder_cannot_afford() {
630         let chanmon_cfgs = create_chanmon_cfgs(2);
631         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
632         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
633         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
634         let channel_value = 5000;
635         let push_sats = 700;
636         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, channel_value, push_sats * 1000, InitFeatures::known(), InitFeatures::known());
637         let channel_id = chan.2;
638         let secp_ctx = Secp256k1::new();
639         let default_config = UserConfig::default();
640         let bs_channel_reserve_sats = Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(channel_value, &default_config);
641
642         let opt_anchors = false;
643
644         // Calculate the maximum feerate that A can afford. Note that we don't send an update_fee
645         // CONCURRENT_INBOUND_HTLC_FEE_BUFFER HTLCs before actually running out of local balance, so we
646         // calculate two different feerates here - the expected local limit as well as the expected
647         // remote limit.
648         let feerate = ((channel_value - bs_channel_reserve_sats - push_sats) * 1000 / (commitment_tx_base_weight(opt_anchors) + CONCURRENT_INBOUND_HTLC_FEE_BUFFER as u64 * COMMITMENT_TX_WEIGHT_PER_HTLC)) as u32;
649         let non_buffer_feerate = ((channel_value - bs_channel_reserve_sats - push_sats) * 1000 / commitment_tx_base_weight(opt_anchors)) as u32;
650         {
651                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
652                 *feerate_lock = feerate;
653         }
654         nodes[0].node.timer_tick_occurred();
655         check_added_monitors!(nodes[0], 1);
656         let update_msg = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
657
658         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), &update_msg.update_fee.unwrap());
659
660         commitment_signed_dance!(nodes[1], nodes[0], update_msg.commitment_signed, false);
661
662         // Confirm that the new fee based on the last local commitment txn is what we expected based on the feerate set above.
663         {
664                 let commitment_tx = get_local_commitment_txn!(nodes[1], channel_id)[0].clone();
665
666                 //We made sure neither party's funds are below the dust limit and there are no HTLCs here
667                 assert_eq!(commitment_tx.output.len(), 2);
668                 let total_fee: u64 = commit_tx_fee_msat(feerate, 0, opt_anchors) / 1000;
669                 let mut actual_fee = commitment_tx.output.iter().fold(0, |acc, output| acc + output.value);
670                 actual_fee = channel_value - actual_fee;
671                 assert_eq!(total_fee, actual_fee);
672         }
673
674         {
675                 // Increment the feerate by a small constant, accounting for rounding errors
676                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
677                 *feerate_lock += 4;
678         }
679         nodes[0].node.timer_tick_occurred();
680         nodes[0].logger.assert_log("lightning::ln::channel".to_string(), format!("Cannot afford to send new feerate at {}", feerate + 4), 1);
681         check_added_monitors!(nodes[0], 0);
682
683         const INITIAL_COMMITMENT_NUMBER: u64 = 281474976710654;
684
685         // Get the EnforcingSigner for each channel, which will be used to (1) get the keys
686         // needed to sign the new commitment tx and (2) sign the new commitment tx.
687         let (local_revocation_basepoint, local_htlc_basepoint, local_funding) = {
688                 let chan_lock = nodes[0].node.channel_state.lock().unwrap();
689                 let local_chan = chan_lock.by_id.get(&chan.2).unwrap();
690                 let chan_signer = local_chan.get_signer();
691                 let pubkeys = chan_signer.pubkeys();
692                 (pubkeys.revocation_basepoint, pubkeys.htlc_basepoint,
693                  pubkeys.funding_pubkey)
694         };
695         let (remote_delayed_payment_basepoint, remote_htlc_basepoint,remote_point, remote_funding) = {
696                 let chan_lock = nodes[1].node.channel_state.lock().unwrap();
697                 let remote_chan = chan_lock.by_id.get(&chan.2).unwrap();
698                 let chan_signer = remote_chan.get_signer();
699                 let pubkeys = chan_signer.pubkeys();
700                 (pubkeys.delayed_payment_basepoint, pubkeys.htlc_basepoint,
701                  chan_signer.get_per_commitment_point(INITIAL_COMMITMENT_NUMBER - 1, &secp_ctx),
702                  pubkeys.funding_pubkey)
703         };
704
705         // Assemble the set of keys we can use for signatures for our commitment_signed message.
706         let commit_tx_keys = chan_utils::TxCreationKeys::derive_new(&secp_ctx, &remote_point, &remote_delayed_payment_basepoint,
707                 &remote_htlc_basepoint, &local_revocation_basepoint, &local_htlc_basepoint).unwrap();
708
709         let res = {
710                 let local_chan_lock = nodes[0].node.channel_state.lock().unwrap();
711                 let local_chan = local_chan_lock.by_id.get(&chan.2).unwrap();
712                 let local_chan_signer = local_chan.get_signer();
713                 let mut htlcs: Vec<(HTLCOutputInCommitment, ())> = vec![];
714                 let commitment_tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
715                         INITIAL_COMMITMENT_NUMBER - 1,
716                         push_sats,
717                         channel_value - push_sats - commit_tx_fee_msat(non_buffer_feerate + 4, 0, opt_anchors) / 1000,
718                         opt_anchors, local_funding, remote_funding,
719                         commit_tx_keys.clone(),
720                         non_buffer_feerate + 4,
721                         &mut htlcs,
722                         &local_chan.channel_transaction_parameters.as_counterparty_broadcastable()
723                 );
724                 local_chan_signer.sign_counterparty_commitment(&commitment_tx, Vec::new(), &secp_ctx).unwrap()
725         };
726
727         let commit_signed_msg = msgs::CommitmentSigned {
728                 channel_id: chan.2,
729                 signature: res.0,
730                 htlc_signatures: res.1
731         };
732
733         let update_fee = msgs::UpdateFee {
734                 channel_id: chan.2,
735                 feerate_per_kw: non_buffer_feerate + 4,
736         };
737
738         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), &update_fee);
739
740         //While producing the commitment_signed response after handling a received update_fee request the
741         //check to see if the funder, who sent the update_fee request, can afford the new fee (funder_balance >= fee+channel_reserve)
742         //Should produce and error.
743         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &commit_signed_msg);
744         nodes[1].logger.assert_log("lightning::ln::channelmanager".to_string(), "Funding remote cannot afford proposed new fee".to_string(), 1);
745         check_added_monitors!(nodes[1], 1);
746         check_closed_broadcast!(nodes[1], true);
747         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: String::from("Funding remote cannot afford proposed new fee") });
748 }
749
750 #[test]
751 fn test_update_fee_with_fundee_update_add_htlc() {
752         let chanmon_cfgs = create_chanmon_cfgs(2);
753         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
754         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
755         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
756         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
757
758         // balancing
759         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
760
761         {
762                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
763                 *feerate_lock += 20;
764         }
765         nodes[0].node.timer_tick_occurred();
766         check_added_monitors!(nodes[0], 1);
767
768         let events_0 = nodes[0].node.get_and_clear_pending_msg_events();
769         assert_eq!(events_0.len(), 1);
770         let (update_msg, commitment_signed) = match events_0[0] {
771                         MessageSendEvent::UpdateHTLCs { node_id:_, updates: msgs::CommitmentUpdate { update_add_htlcs:_, update_fulfill_htlcs:_, update_fail_htlcs:_, update_fail_malformed_htlcs:_, ref update_fee, ref commitment_signed } } => {
772                         (update_fee.as_ref(), commitment_signed)
773                 },
774                 _ => panic!("Unexpected event"),
775         };
776         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
777         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), commitment_signed);
778         let (revoke_msg, commitment_signed) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
779         check_added_monitors!(nodes[1], 1);
780
781         let (route, our_payment_hash, our_payment_preimage, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 800000);
782
783         // nothing happens since node[1] is in AwaitingRemoteRevoke
784         nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
785         {
786                 let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
787                 assert_eq!(added_monitors.len(), 0);
788                 added_monitors.clear();
789         }
790         assert!(nodes[0].node.get_and_clear_pending_events().is_empty());
791         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
792         // node[1] has nothing to do
793
794         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &revoke_msg);
795         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
796         check_added_monitors!(nodes[0], 1);
797
798         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &commitment_signed);
799         let revoke_msg = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
800         // No commitment_signed so get_event_msg's assert(len == 1) passes
801         check_added_monitors!(nodes[0], 1);
802         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &revoke_msg);
803         check_added_monitors!(nodes[1], 1);
804         // AwaitingRemoteRevoke ends here
805
806         let commitment_update = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
807         assert_eq!(commitment_update.update_add_htlcs.len(), 1);
808         assert_eq!(commitment_update.update_fulfill_htlcs.len(), 0);
809         assert_eq!(commitment_update.update_fail_htlcs.len(), 0);
810         assert_eq!(commitment_update.update_fail_malformed_htlcs.len(), 0);
811         assert_eq!(commitment_update.update_fee.is_none(), true);
812
813         nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &commitment_update.update_add_htlcs[0]);
814         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &commitment_update.commitment_signed);
815         check_added_monitors!(nodes[0], 1);
816         let (revoke, commitment_signed) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
817
818         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &revoke);
819         check_added_monitors!(nodes[1], 1);
820         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
821
822         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &commitment_signed);
823         check_added_monitors!(nodes[1], 1);
824         let revoke = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
825         // No commitment_signed so get_event_msg's assert(len == 1) passes
826
827         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &revoke);
828         check_added_monitors!(nodes[0], 1);
829         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
830
831         expect_pending_htlcs_forwardable!(nodes[0]);
832
833         let events = nodes[0].node.get_and_clear_pending_events();
834         assert_eq!(events.len(), 1);
835         match events[0] {
836                 Event::PaymentReceived { .. } => { },
837                 _ => panic!("Unexpected event"),
838         };
839
840         claim_payment(&nodes[1], &vec!(&nodes[0])[..], our_payment_preimage);
841
842         send_payment(&nodes[1], &vec!(&nodes[0])[..], 800000);
843         send_payment(&nodes[0], &vec!(&nodes[1])[..], 800000);
844         close_channel(&nodes[0], &nodes[1], &chan.2, chan.3, true);
845         check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
846         check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
847 }
848
849 #[test]
850 fn test_update_fee() {
851         let chanmon_cfgs = create_chanmon_cfgs(2);
852         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
853         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
854         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
855         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
856         let channel_id = chan.2;
857
858         // A                                        B
859         // (1) update_fee/commitment_signed      ->
860         //                                       <- (2) revoke_and_ack
861         //                                       .- send (3) commitment_signed
862         // (4) update_fee/commitment_signed      ->
863         //                                       .- send (5) revoke_and_ack (no CS as we're awaiting a revoke)
864         //                                       <- (3) commitment_signed delivered
865         // send (6) revoke_and_ack               -.
866         //                                       <- (5) deliver revoke_and_ack
867         // (6) deliver revoke_and_ack            ->
868         //                                       .- send (7) commitment_signed in response to (4)
869         //                                       <- (7) deliver commitment_signed
870         // revoke_and_ack                        ->
871
872         // Create and deliver (1)...
873         let feerate;
874         {
875                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
876                 feerate = *feerate_lock;
877                 *feerate_lock = feerate + 20;
878         }
879         nodes[0].node.timer_tick_occurred();
880         check_added_monitors!(nodes[0], 1);
881
882         let events_0 = nodes[0].node.get_and_clear_pending_msg_events();
883         assert_eq!(events_0.len(), 1);
884         let (update_msg, commitment_signed) = match events_0[0] {
885                         MessageSendEvent::UpdateHTLCs { node_id:_, updates: msgs::CommitmentUpdate { update_add_htlcs:_, update_fulfill_htlcs:_, update_fail_htlcs:_, update_fail_malformed_htlcs:_, ref update_fee, ref commitment_signed } } => {
886                         (update_fee.as_ref(), commitment_signed)
887                 },
888                 _ => panic!("Unexpected event"),
889         };
890         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
891
892         // Generate (2) and (3):
893         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), commitment_signed);
894         let (revoke_msg, commitment_signed_0) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
895         check_added_monitors!(nodes[1], 1);
896
897         // Deliver (2):
898         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &revoke_msg);
899         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
900         check_added_monitors!(nodes[0], 1);
901
902         // Create and deliver (4)...
903         {
904                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
905                 *feerate_lock = feerate + 30;
906         }
907         nodes[0].node.timer_tick_occurred();
908         check_added_monitors!(nodes[0], 1);
909         let events_0 = nodes[0].node.get_and_clear_pending_msg_events();
910         assert_eq!(events_0.len(), 1);
911         let (update_msg, commitment_signed) = match events_0[0] {
912                         MessageSendEvent::UpdateHTLCs { node_id:_, updates: msgs::CommitmentUpdate { update_add_htlcs:_, update_fulfill_htlcs:_, update_fail_htlcs:_, update_fail_malformed_htlcs:_, ref update_fee, ref commitment_signed } } => {
913                         (update_fee.as_ref(), commitment_signed)
914                 },
915                 _ => panic!("Unexpected event"),
916         };
917
918         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
919         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), commitment_signed);
920         check_added_monitors!(nodes[1], 1);
921         // ... creating (5)
922         let revoke_msg = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
923         // No commitment_signed so get_event_msg's assert(len == 1) passes
924
925         // Handle (3), creating (6):
926         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &commitment_signed_0);
927         check_added_monitors!(nodes[0], 1);
928         let revoke_msg_0 = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
929         // No commitment_signed so get_event_msg's assert(len == 1) passes
930
931         // Deliver (5):
932         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &revoke_msg);
933         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
934         check_added_monitors!(nodes[0], 1);
935
936         // Deliver (6), creating (7):
937         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &revoke_msg_0);
938         let commitment_update = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
939         assert!(commitment_update.update_add_htlcs.is_empty());
940         assert!(commitment_update.update_fulfill_htlcs.is_empty());
941         assert!(commitment_update.update_fail_htlcs.is_empty());
942         assert!(commitment_update.update_fail_malformed_htlcs.is_empty());
943         assert!(commitment_update.update_fee.is_none());
944         check_added_monitors!(nodes[1], 1);
945
946         // Deliver (7)
947         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &commitment_update.commitment_signed);
948         check_added_monitors!(nodes[0], 1);
949         let revoke_msg = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
950         // No commitment_signed so get_event_msg's assert(len == 1) passes
951
952         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &revoke_msg);
953         check_added_monitors!(nodes[1], 1);
954         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
955
956         assert_eq!(get_feerate!(nodes[0], channel_id), feerate + 30);
957         assert_eq!(get_feerate!(nodes[1], channel_id), feerate + 30);
958         close_channel(&nodes[0], &nodes[1], &chan.2, chan.3, true);
959         check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
960         check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
961 }
962
963 #[test]
964 fn fake_network_test() {
965         // Simple test which builds a network of ChannelManagers, connects them to each other, and
966         // tests that payments get routed and transactions broadcast in semi-reasonable ways.
967         let chanmon_cfgs = create_chanmon_cfgs(4);
968         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
969         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
970         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
971
972         // Create some initial channels
973         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
974         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
975         let chan_3 = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known());
976
977         // Rebalance the network a bit by relaying one payment through all the channels...
978         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3])[..], 8000000);
979         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3])[..], 8000000);
980         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3])[..], 8000000);
981         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3])[..], 8000000);
982
983         // Send some more payments
984         send_payment(&nodes[1], &vec!(&nodes[2], &nodes[3])[..], 1000000);
985         send_payment(&nodes[3], &vec!(&nodes[2], &nodes[1], &nodes[0])[..], 1000000);
986         send_payment(&nodes[3], &vec!(&nodes[2], &nodes[1])[..], 1000000);
987
988         // Test failure packets
989         let payment_hash_1 = route_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3])[..], 1000000).1;
990         fail_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3])[..], payment_hash_1);
991
992         // Add a new channel that skips 3
993         let chan_4 = create_announced_chan_between_nodes(&nodes, 1, 3, InitFeatures::known(), InitFeatures::known());
994
995         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[3])[..], 1000000);
996         send_payment(&nodes[2], &vec!(&nodes[3])[..], 1000000);
997         send_payment(&nodes[1], &vec!(&nodes[3])[..], 8000000);
998         send_payment(&nodes[1], &vec!(&nodes[3])[..], 8000000);
999         send_payment(&nodes[1], &vec!(&nodes[3])[..], 8000000);
1000         send_payment(&nodes[1], &vec!(&nodes[3])[..], 8000000);
1001         send_payment(&nodes[1], &vec!(&nodes[3])[..], 8000000);
1002
1003         // Do some rebalance loop payments, simultaneously
1004         let mut hops = Vec::with_capacity(3);
1005         hops.push(RouteHop {
1006                 pubkey: nodes[2].node.get_our_node_id(),
1007                 node_features: NodeFeatures::empty(),
1008                 short_channel_id: chan_2.0.contents.short_channel_id,
1009                 channel_features: ChannelFeatures::empty(),
1010                 fee_msat: 0,
1011                 cltv_expiry_delta: chan_3.0.contents.cltv_expiry_delta as u32
1012         });
1013         hops.push(RouteHop {
1014                 pubkey: nodes[3].node.get_our_node_id(),
1015                 node_features: NodeFeatures::empty(),
1016                 short_channel_id: chan_3.0.contents.short_channel_id,
1017                 channel_features: ChannelFeatures::empty(),
1018                 fee_msat: 0,
1019                 cltv_expiry_delta: chan_4.1.contents.cltv_expiry_delta as u32
1020         });
1021         hops.push(RouteHop {
1022                 pubkey: nodes[1].node.get_our_node_id(),
1023                 node_features: NodeFeatures::known(),
1024                 short_channel_id: chan_4.0.contents.short_channel_id,
1025                 channel_features: ChannelFeatures::known(),
1026                 fee_msat: 1000000,
1027                 cltv_expiry_delta: TEST_FINAL_CLTV,
1028         });
1029         hops[1].fee_msat = chan_4.1.contents.fee_base_msat as u64 + chan_4.1.contents.fee_proportional_millionths as u64 * hops[2].fee_msat as u64 / 1000000;
1030         hops[0].fee_msat = chan_3.0.contents.fee_base_msat as u64 + chan_3.0.contents.fee_proportional_millionths as u64 * hops[1].fee_msat as u64 / 1000000;
1031         let payment_preimage_1 = send_along_route(&nodes[1], Route { paths: vec![hops], payment_params: None }, &vec!(&nodes[2], &nodes[3], &nodes[1])[..], 1000000).0;
1032
1033         let mut hops = Vec::with_capacity(3);
1034         hops.push(RouteHop {
1035                 pubkey: nodes[3].node.get_our_node_id(),
1036                 node_features: NodeFeatures::empty(),
1037                 short_channel_id: chan_4.0.contents.short_channel_id,
1038                 channel_features: ChannelFeatures::empty(),
1039                 fee_msat: 0,
1040                 cltv_expiry_delta: chan_3.1.contents.cltv_expiry_delta as u32
1041         });
1042         hops.push(RouteHop {
1043                 pubkey: nodes[2].node.get_our_node_id(),
1044                 node_features: NodeFeatures::empty(),
1045                 short_channel_id: chan_3.0.contents.short_channel_id,
1046                 channel_features: ChannelFeatures::empty(),
1047                 fee_msat: 0,
1048                 cltv_expiry_delta: chan_2.1.contents.cltv_expiry_delta as u32
1049         });
1050         hops.push(RouteHop {
1051                 pubkey: nodes[1].node.get_our_node_id(),
1052                 node_features: NodeFeatures::known(),
1053                 short_channel_id: chan_2.0.contents.short_channel_id,
1054                 channel_features: ChannelFeatures::known(),
1055                 fee_msat: 1000000,
1056                 cltv_expiry_delta: TEST_FINAL_CLTV,
1057         });
1058         hops[1].fee_msat = chan_2.1.contents.fee_base_msat as u64 + chan_2.1.contents.fee_proportional_millionths as u64 * hops[2].fee_msat as u64 / 1000000;
1059         hops[0].fee_msat = chan_3.1.contents.fee_base_msat as u64 + chan_3.1.contents.fee_proportional_millionths as u64 * hops[1].fee_msat as u64 / 1000000;
1060         let payment_hash_2 = send_along_route(&nodes[1], Route { paths: vec![hops], payment_params: None }, &vec!(&nodes[3], &nodes[2], &nodes[1])[..], 1000000).1;
1061
1062         // Claim the rebalances...
1063         fail_payment(&nodes[1], &vec!(&nodes[3], &nodes[2], &nodes[1])[..], payment_hash_2);
1064         claim_payment(&nodes[1], &vec!(&nodes[2], &nodes[3], &nodes[1])[..], payment_preimage_1);
1065
1066         // Close down the channels...
1067         close_channel(&nodes[0], &nodes[1], &chan_1.2, chan_1.3, true);
1068         check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
1069         check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
1070         close_channel(&nodes[1], &nodes[2], &chan_2.2, chan_2.3, false);
1071         check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
1072         check_closed_event!(nodes[2], 1, ClosureReason::CooperativeClosure);
1073         close_channel(&nodes[2], &nodes[3], &chan_3.2, chan_3.3, true);
1074         check_closed_event!(nodes[2], 1, ClosureReason::CooperativeClosure);
1075         check_closed_event!(nodes[3], 1, ClosureReason::CooperativeClosure);
1076         close_channel(&nodes[1], &nodes[3], &chan_4.2, chan_4.3, false);
1077         check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
1078         check_closed_event!(nodes[3], 1, ClosureReason::CooperativeClosure);
1079 }
1080
1081 #[test]
1082 fn holding_cell_htlc_counting() {
1083         // Tests that HTLCs in the holding cell count towards the pending HTLC limits on outbound HTLCs
1084         // to ensure we don't end up with HTLCs sitting around in our holding cell for several
1085         // commitment dance rounds.
1086         let chanmon_cfgs = create_chanmon_cfgs(3);
1087         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1088         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1089         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1090         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
1091         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
1092
1093         let mut payments = Vec::new();
1094         for _ in 0..::ln::channel::OUR_MAX_HTLCS {
1095                 let (route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[2], 100000);
1096                 nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
1097                 payments.push((payment_preimage, payment_hash));
1098         }
1099         check_added_monitors!(nodes[1], 1);
1100
1101         let mut events = nodes[1].node.get_and_clear_pending_msg_events();
1102         assert_eq!(events.len(), 1);
1103         let initial_payment_event = SendEvent::from_event(events.pop().unwrap());
1104         assert_eq!(initial_payment_event.node_id, nodes[2].node.get_our_node_id());
1105
1106         // There is now one HTLC in an outbound commitment transaction and (OUR_MAX_HTLCS - 1) HTLCs in
1107         // the holding cell waiting on B's RAA to send. At this point we should not be able to add
1108         // another HTLC.
1109         let (route, payment_hash_1, _, payment_secret_1) = get_route_and_payment_hash!(nodes[1], nodes[2], 100000);
1110         {
1111                 unwrap_send_err!(nodes[1].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)), true, APIError::ChannelUnavailable { ref err },
1112                         assert!(regex::Regex::new(r"Cannot push more than their max accepted HTLCs \(\d+\)").unwrap().is_match(err)));
1113                 assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
1114                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Cannot push more than their max accepted HTLCs".to_string(), 1);
1115         }
1116
1117         // This should also be true if we try to forward a payment.
1118         let (route, payment_hash_2, _, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[2], 100000);
1119         {
1120                 nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
1121                 check_added_monitors!(nodes[0], 1);
1122         }
1123
1124         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
1125         assert_eq!(events.len(), 1);
1126         let payment_event = SendEvent::from_event(events.pop().unwrap());
1127         assert_eq!(payment_event.node_id, nodes[1].node.get_our_node_id());
1128
1129         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
1130         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
1131         // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
1132         // fails), the second will process the resulting failure and fail the HTLC backward.
1133         expect_pending_htlcs_forwardable!(nodes[1]);
1134         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::NextHopChannel { node_id: Some(nodes[2].node.get_our_node_id()), channel_id: chan_2.2 }]);
1135         check_added_monitors!(nodes[1], 1);
1136
1137         let bs_fail_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
1138         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &bs_fail_updates.update_fail_htlcs[0]);
1139         commitment_signed_dance!(nodes[0], nodes[1], bs_fail_updates.commitment_signed, false, true);
1140
1141         expect_payment_failed_with_update!(nodes[0], payment_hash_2, false, chan_2.0.contents.short_channel_id, false);
1142
1143         // Now forward all the pending HTLCs and claim them back
1144         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &initial_payment_event.msgs[0]);
1145         nodes[2].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &initial_payment_event.commitment_msg);
1146         check_added_monitors!(nodes[2], 1);
1147
1148         let (bs_revoke_and_ack, bs_commitment_signed) = get_revoke_commit_msgs!(nodes[2], nodes[1].node.get_our_node_id());
1149         nodes[1].node.handle_revoke_and_ack(&nodes[2].node.get_our_node_id(), &bs_revoke_and_ack);
1150         check_added_monitors!(nodes[1], 1);
1151         let as_updates = get_htlc_update_msgs!(nodes[1], nodes[2].node.get_our_node_id());
1152
1153         nodes[1].node.handle_commitment_signed(&nodes[2].node.get_our_node_id(), &bs_commitment_signed);
1154         check_added_monitors!(nodes[1], 1);
1155         let as_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[2].node.get_our_node_id());
1156
1157         for ref update in as_updates.update_add_htlcs.iter() {
1158                 nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), update);
1159         }
1160         nodes[2].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &as_updates.commitment_signed);
1161         check_added_monitors!(nodes[2], 1);
1162         nodes[2].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &as_raa);
1163         check_added_monitors!(nodes[2], 1);
1164         let (bs_revoke_and_ack, bs_commitment_signed) = get_revoke_commit_msgs!(nodes[2], nodes[1].node.get_our_node_id());
1165
1166         nodes[1].node.handle_revoke_and_ack(&nodes[2].node.get_our_node_id(), &bs_revoke_and_ack);
1167         check_added_monitors!(nodes[1], 1);
1168         nodes[1].node.handle_commitment_signed(&nodes[2].node.get_our_node_id(), &bs_commitment_signed);
1169         check_added_monitors!(nodes[1], 1);
1170         let as_final_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[2].node.get_our_node_id());
1171
1172         nodes[2].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &as_final_raa);
1173         check_added_monitors!(nodes[2], 1);
1174
1175         expect_pending_htlcs_forwardable!(nodes[2]);
1176
1177         let events = nodes[2].node.get_and_clear_pending_events();
1178         assert_eq!(events.len(), payments.len());
1179         for (event, &(_, ref hash)) in events.iter().zip(payments.iter()) {
1180                 match event {
1181                         &Event::PaymentReceived { ref payment_hash, .. } => {
1182                                 assert_eq!(*payment_hash, *hash);
1183                         },
1184                         _ => panic!("Unexpected event"),
1185                 };
1186         }
1187
1188         for (preimage, _) in payments.drain(..) {
1189                 claim_payment(&nodes[1], &[&nodes[2]], preimage);
1190         }
1191
1192         send_payment(&nodes[0], &[&nodes[1], &nodes[2]], 1000000);
1193 }
1194
1195 #[test]
1196 fn duplicate_htlc_test() {
1197         // Test that we accept duplicate payment_hash HTLCs across the network and that
1198         // claiming/failing them are all separate and don't affect each other
1199         let chanmon_cfgs = create_chanmon_cfgs(6);
1200         let node_cfgs = create_node_cfgs(6, &chanmon_cfgs);
1201         let node_chanmgrs = create_node_chanmgrs(6, &node_cfgs, &[None, None, None, None, None, None]);
1202         let mut nodes = create_network(6, &node_cfgs, &node_chanmgrs);
1203
1204         // Create some initial channels to route via 3 to 4/5 from 0/1/2
1205         create_announced_chan_between_nodes(&nodes, 0, 3, InitFeatures::known(), InitFeatures::known());
1206         create_announced_chan_between_nodes(&nodes, 1, 3, InitFeatures::known(), InitFeatures::known());
1207         create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known());
1208         create_announced_chan_between_nodes(&nodes, 3, 4, InitFeatures::known(), InitFeatures::known());
1209         create_announced_chan_between_nodes(&nodes, 3, 5, InitFeatures::known(), InitFeatures::known());
1210
1211         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &vec!(&nodes[3], &nodes[4])[..], 1000000);
1212
1213         *nodes[0].network_payment_count.borrow_mut() -= 1;
1214         assert_eq!(route_payment(&nodes[1], &vec!(&nodes[3])[..], 1000000).0, payment_preimage);
1215
1216         *nodes[0].network_payment_count.borrow_mut() -= 1;
1217         assert_eq!(route_payment(&nodes[2], &vec!(&nodes[3], &nodes[5])[..], 1000000).0, payment_preimage);
1218
1219         claim_payment(&nodes[0], &vec!(&nodes[3], &nodes[4])[..], payment_preimage);
1220         fail_payment(&nodes[2], &vec!(&nodes[3], &nodes[5])[..], payment_hash);
1221         claim_payment(&nodes[1], &vec!(&nodes[3])[..], payment_preimage);
1222 }
1223
1224 #[test]
1225 fn test_duplicate_htlc_different_direction_onchain() {
1226         // Test that ChannelMonitor doesn't generate 2 preimage txn
1227         // when we have 2 HTLCs with same preimage that go across a node
1228         // in opposite directions, even with the same payment secret.
1229         let chanmon_cfgs = create_chanmon_cfgs(2);
1230         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1231         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1232         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1233
1234         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
1235
1236         // balancing
1237         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
1238
1239         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 900_000);
1240
1241         let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[0], 800_000);
1242         let node_a_payment_secret = nodes[0].node.create_inbound_payment_for_hash(payment_hash, None, 7200).unwrap();
1243         send_along_route_with_secret(&nodes[1], route, &[&[&nodes[0]]], 800_000, payment_hash, node_a_payment_secret);
1244
1245         // Provide preimage to node 0 by claiming payment
1246         nodes[0].node.claim_funds(payment_preimage);
1247         expect_payment_claimed!(nodes[0], payment_hash, 800_000);
1248         check_added_monitors!(nodes[0], 1);
1249
1250         // Broadcast node 1 commitment txn
1251         let remote_txn = get_local_commitment_txn!(nodes[1], chan_1.2);
1252
1253         assert_eq!(remote_txn[0].output.len(), 4); // 1 local, 1 remote, 1 htlc inbound, 1 htlc outbound
1254         let mut has_both_htlcs = 0; // check htlcs match ones committed
1255         for outp in remote_txn[0].output.iter() {
1256                 if outp.value == 800_000 / 1000 {
1257                         has_both_htlcs += 1;
1258                 } else if outp.value == 900_000 / 1000 {
1259                         has_both_htlcs += 1;
1260                 }
1261         }
1262         assert_eq!(has_both_htlcs, 2);
1263
1264         mine_transaction(&nodes[0], &remote_txn[0]);
1265         check_added_monitors!(nodes[0], 1);
1266         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
1267         connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
1268
1269         let claim_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
1270         assert_eq!(claim_txn.len(), 8);
1271
1272         check_spends!(claim_txn[0], remote_txn[0]); // Immediate HTLC claim with preimage
1273
1274         check_spends!(claim_txn[1], chan_1.3); // Alternative commitment tx
1275         check_spends!(claim_txn[2], claim_txn[1]); // HTLC spend in alternative commitment tx
1276
1277         let bump_tx = if claim_txn[1] == claim_txn[4] {
1278                 assert_eq!(claim_txn[1], claim_txn[4]);
1279                 assert_eq!(claim_txn[2], claim_txn[5]);
1280
1281                 check_spends!(claim_txn[7], claim_txn[1]); // HTLC timeout on alternative commitment tx
1282
1283                 check_spends!(claim_txn[3], remote_txn[0]); // HTLC timeout on broadcasted commitment tx
1284                 &claim_txn[3]
1285         } else {
1286                 assert_eq!(claim_txn[1], claim_txn[3]);
1287                 assert_eq!(claim_txn[2], claim_txn[4]);
1288
1289                 check_spends!(claim_txn[5], claim_txn[1]); // HTLC timeout on alternative commitment tx
1290
1291                 check_spends!(claim_txn[7], remote_txn[0]); // HTLC timeout on broadcasted commitment tx
1292
1293                 &claim_txn[7]
1294         };
1295
1296         assert_eq!(claim_txn[0].input.len(), 1);
1297         assert_eq!(bump_tx.input.len(), 1);
1298         assert_eq!(claim_txn[0].input[0].previous_output, bump_tx.input[0].previous_output);
1299
1300         assert_eq!(claim_txn[0].input.len(), 1);
1301         assert_eq!(claim_txn[0].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT); // HTLC 1 <--> 0, preimage tx
1302         assert_eq!(remote_txn[0].output[claim_txn[0].input[0].previous_output.vout as usize].value, 800);
1303
1304         assert_eq!(claim_txn[6].input.len(), 1);
1305         assert_eq!(claim_txn[6].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT); // HTLC 0 <--> 1, timeout tx
1306         check_spends!(claim_txn[6], remote_txn[0]);
1307         assert_eq!(remote_txn[0].output[claim_txn[6].input[0].previous_output.vout as usize].value, 900);
1308
1309         let events = nodes[0].node.get_and_clear_pending_msg_events();
1310         assert_eq!(events.len(), 3);
1311         for e in events {
1312                 match e {
1313                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
1314                         MessageSendEvent::HandleError { node_id, action: msgs::ErrorAction::SendErrorMessage { ref msg } } => {
1315                                 assert_eq!(node_id, nodes[1].node.get_our_node_id());
1316                                 assert_eq!(msg.data, "Channel closed because commitment or closing transaction was confirmed on chain.");
1317                         },
1318                         MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, .. } } => {
1319                                 assert!(update_add_htlcs.is_empty());
1320                                 assert!(update_fail_htlcs.is_empty());
1321                                 assert_eq!(update_fulfill_htlcs.len(), 1);
1322                                 assert!(update_fail_malformed_htlcs.is_empty());
1323                                 assert_eq!(nodes[1].node.get_our_node_id(), *node_id);
1324                         },
1325                         _ => panic!("Unexpected event"),
1326                 }
1327         }
1328 }
1329
1330 #[test]
1331 fn test_basic_channel_reserve() {
1332         let chanmon_cfgs = create_chanmon_cfgs(2);
1333         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1334         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1335         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1336         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
1337
1338         let chan_stat = get_channel_value_stat!(nodes[0], chan.2);
1339         let channel_reserve = chan_stat.channel_reserve_msat;
1340
1341         // The 2* and +1 are for the fee spike reserve.
1342         let commit_tx_fee = 2 * commit_tx_fee_msat(get_feerate!(nodes[0], chan.2), 1 + 1, get_opt_anchors!(nodes[0], chan.2));
1343         let max_can_send = 5000000 - channel_reserve - commit_tx_fee;
1344         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], max_can_send + 1);
1345         let err = nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).err().unwrap();
1346         match err {
1347                 PaymentSendFailure::AllFailedRetrySafe(ref fails) => {
1348                         match &fails[0] {
1349                                 &APIError::ChannelUnavailable{ref err} =>
1350                                         assert!(regex::Regex::new(r"Cannot send value that would put our balance under counterparty-announced channel reserve value \(\d+\)").unwrap().is_match(err)),
1351                                 _ => panic!("Unexpected error variant"),
1352                         }
1353                 },
1354                 _ => panic!("Unexpected error variant"),
1355         }
1356         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
1357         nodes[0].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Cannot send value that would put our balance under counterparty-announced channel reserve value".to_string(), 1);
1358
1359         send_payment(&nodes[0], &vec![&nodes[1]], max_can_send);
1360 }
1361
1362 #[test]
1363 fn test_fee_spike_violation_fails_htlc() {
1364         let chanmon_cfgs = create_chanmon_cfgs(2);
1365         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1366         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1367         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1368         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
1369
1370         let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 3460001);
1371         // Need to manually create the update_add_htlc message to go around the channel reserve check in send_htlc()
1372         let secp_ctx = Secp256k1::new();
1373         let session_priv = SecretKey::from_slice(&[42; 32]).expect("RNG is bad!");
1374
1375         let cur_height = nodes[1].node.best_block.read().unwrap().height() + 1;
1376
1377         let onion_keys = onion_utils::construct_onion_keys(&secp_ctx, &route.paths[0], &session_priv).unwrap();
1378         let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(&route.paths[0], 3460001, &Some(payment_secret), cur_height, &None).unwrap();
1379         let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, [0; 32], &payment_hash);
1380         let msg = msgs::UpdateAddHTLC {
1381                 channel_id: chan.2,
1382                 htlc_id: 0,
1383                 amount_msat: htlc_msat,
1384                 payment_hash: payment_hash,
1385                 cltv_expiry: htlc_cltv,
1386                 onion_routing_packet: onion_packet,
1387         };
1388
1389         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &msg);
1390
1391         // Now manually create the commitment_signed message corresponding to the update_add
1392         // nodes[0] just sent. In the code for construction of this message, "local" refers
1393         // to the sender of the message, and "remote" refers to the receiver.
1394
1395         let feerate_per_kw = get_feerate!(nodes[0], chan.2);
1396
1397         const INITIAL_COMMITMENT_NUMBER: u64 = (1 << 48) - 1;
1398
1399         // Get the EnforcingSigner for each channel, which will be used to (1) get the keys
1400         // needed to sign the new commitment tx and (2) sign the new commitment tx.
1401         let (local_revocation_basepoint, local_htlc_basepoint, local_secret, next_local_point, local_funding) = {
1402                 let chan_lock = nodes[0].node.channel_state.lock().unwrap();
1403                 let local_chan = chan_lock.by_id.get(&chan.2).unwrap();
1404                 let chan_signer = local_chan.get_signer();
1405                 // Make the signer believe we validated another commitment, so we can release the secret
1406                 chan_signer.get_enforcement_state().last_holder_commitment -= 1;
1407
1408                 let pubkeys = chan_signer.pubkeys();
1409                 (pubkeys.revocation_basepoint, pubkeys.htlc_basepoint,
1410                  chan_signer.release_commitment_secret(INITIAL_COMMITMENT_NUMBER),
1411                  chan_signer.get_per_commitment_point(INITIAL_COMMITMENT_NUMBER - 2, &secp_ctx),
1412                  chan_signer.pubkeys().funding_pubkey)
1413         };
1414         let (remote_delayed_payment_basepoint, remote_htlc_basepoint, remote_point, remote_funding) = {
1415                 let chan_lock = nodes[1].node.channel_state.lock().unwrap();
1416                 let remote_chan = chan_lock.by_id.get(&chan.2).unwrap();
1417                 let chan_signer = remote_chan.get_signer();
1418                 let pubkeys = chan_signer.pubkeys();
1419                 (pubkeys.delayed_payment_basepoint, pubkeys.htlc_basepoint,
1420                  chan_signer.get_per_commitment_point(INITIAL_COMMITMENT_NUMBER - 1, &secp_ctx),
1421                  chan_signer.pubkeys().funding_pubkey)
1422         };
1423
1424         // Assemble the set of keys we can use for signatures for our commitment_signed message.
1425         let commit_tx_keys = chan_utils::TxCreationKeys::derive_new(&secp_ctx, &remote_point, &remote_delayed_payment_basepoint,
1426                 &remote_htlc_basepoint, &local_revocation_basepoint, &local_htlc_basepoint).unwrap();
1427
1428         // Build the remote commitment transaction so we can sign it, and then later use the
1429         // signature for the commitment_signed message.
1430         let local_chan_balance = 1313;
1431
1432         let accepted_htlc_info = chan_utils::HTLCOutputInCommitment {
1433                 offered: false,
1434                 amount_msat: 3460001,
1435                 cltv_expiry: htlc_cltv,
1436                 payment_hash,
1437                 transaction_output_index: Some(1),
1438         };
1439
1440         let commitment_number = INITIAL_COMMITMENT_NUMBER - 1;
1441
1442         let res = {
1443                 let local_chan_lock = nodes[0].node.channel_state.lock().unwrap();
1444                 let local_chan = local_chan_lock.by_id.get(&chan.2).unwrap();
1445                 let local_chan_signer = local_chan.get_signer();
1446                 let commitment_tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1447                         commitment_number,
1448                         95000,
1449                         local_chan_balance,
1450                         local_chan.opt_anchors(), local_funding, remote_funding,
1451                         commit_tx_keys.clone(),
1452                         feerate_per_kw,
1453                         &mut vec![(accepted_htlc_info, ())],
1454                         &local_chan.channel_transaction_parameters.as_counterparty_broadcastable()
1455                 );
1456                 local_chan_signer.sign_counterparty_commitment(&commitment_tx, Vec::new(), &secp_ctx).unwrap()
1457         };
1458
1459         let commit_signed_msg = msgs::CommitmentSigned {
1460                 channel_id: chan.2,
1461                 signature: res.0,
1462                 htlc_signatures: res.1
1463         };
1464
1465         // Send the commitment_signed message to the nodes[1].
1466         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &commit_signed_msg);
1467         let _ = nodes[1].node.get_and_clear_pending_msg_events();
1468
1469         // Send the RAA to nodes[1].
1470         let raa_msg = msgs::RevokeAndACK {
1471                 channel_id: chan.2,
1472                 per_commitment_secret: local_secret,
1473                 next_per_commitment_point: next_local_point
1474         };
1475         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &raa_msg);
1476
1477         let events = nodes[1].node.get_and_clear_pending_msg_events();
1478         assert_eq!(events.len(), 1);
1479         // Make sure the HTLC failed in the way we expect.
1480         match events[0] {
1481                 MessageSendEvent::UpdateHTLCs { updates: msgs::CommitmentUpdate { ref update_fail_htlcs, .. }, .. } => {
1482                         assert_eq!(update_fail_htlcs.len(), 1);
1483                         update_fail_htlcs[0].clone()
1484                 },
1485                 _ => panic!("Unexpected event"),
1486         };
1487         nodes[1].logger.assert_log("lightning::ln::channel".to_string(),
1488                 format!("Attempting to fail HTLC due to fee spike buffer violation in channel {}. Rebalancing is required.", ::hex::encode(raa_msg.channel_id)), 1);
1489
1490         check_added_monitors!(nodes[1], 2);
1491 }
1492
1493 #[test]
1494 fn test_chan_reserve_violation_outbound_htlc_inbound_chan() {
1495         let mut chanmon_cfgs = create_chanmon_cfgs(2);
1496         // Set the fee rate for the channel very high, to the point where the fundee
1497         // sending any above-dust amount would result in a channel reserve violation.
1498         // In this test we check that we would be prevented from sending an HTLC in
1499         // this situation.
1500         let feerate_per_kw = *chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
1501         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1502         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1503         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1504         let default_config = UserConfig::default();
1505         let opt_anchors = false;
1506
1507         let mut push_amt = 100_000_000;
1508         push_amt -= commit_tx_fee_msat(feerate_per_kw, MIN_AFFORDABLE_HTLC_COUNT as u64, opt_anchors);
1509
1510         push_amt -= Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(100_000, &default_config) * 1000;
1511
1512         let _ = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, push_amt, InitFeatures::known(), InitFeatures::known());
1513
1514         // Sending exactly enough to hit the reserve amount should be accepted
1515         for _ in 0..MIN_AFFORDABLE_HTLC_COUNT {
1516                 let (_, _, _) = route_payment(&nodes[1], &[&nodes[0]], 1_000_000);
1517         }
1518
1519         // However one more HTLC should be significantly over the reserve amount and fail.
1520         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 1_000_000);
1521         unwrap_send_err!(nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
1522                 assert_eq!(err, "Cannot send value that would put counterparty balance under holder-announced channel reserve value"));
1523         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
1524         nodes[1].logger.assert_log("lightning::ln::channelmanager".to_string(), "Cannot send value that would put counterparty balance under holder-announced channel reserve value".to_string(), 1);
1525 }
1526
1527 #[test]
1528 fn test_chan_reserve_violation_inbound_htlc_outbound_channel() {
1529         let mut chanmon_cfgs = create_chanmon_cfgs(2);
1530         let feerate_per_kw = *chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
1531         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1532         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1533         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1534         let default_config = UserConfig::default();
1535         let opt_anchors = false;
1536
1537         // Set nodes[0]'s balance such that they will consider any above-dust received HTLC to be a
1538         // channel reserve violation (so their balance is channel reserve (1000 sats) + commitment
1539         // transaction fee with 0 HTLCs (183 sats)).
1540         let mut push_amt = 100_000_000;
1541         push_amt -= commit_tx_fee_msat(feerate_per_kw, MIN_AFFORDABLE_HTLC_COUNT as u64, opt_anchors);
1542         push_amt -= Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(100_000, &default_config) * 1000;
1543         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, push_amt, InitFeatures::known(), InitFeatures::known());
1544
1545         // Send four HTLCs to cover the initial push_msat buffer we're required to include
1546         for _ in 0..MIN_AFFORDABLE_HTLC_COUNT {
1547                 let (_, _, _) = route_payment(&nodes[1], &[&nodes[0]], 1_000_000);
1548         }
1549
1550         let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 700_000);
1551         // Need to manually create the update_add_htlc message to go around the channel reserve check in send_htlc()
1552         let secp_ctx = Secp256k1::new();
1553         let session_priv = SecretKey::from_slice(&[42; 32]).unwrap();
1554         let cur_height = nodes[1].node.best_block.read().unwrap().height() + 1;
1555         let onion_keys = onion_utils::construct_onion_keys(&secp_ctx, &route.paths[0], &session_priv).unwrap();
1556         let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(&route.paths[0], 700_000, &Some(payment_secret), cur_height, &None).unwrap();
1557         let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, [0; 32], &payment_hash);
1558         let msg = msgs::UpdateAddHTLC {
1559                 channel_id: chan.2,
1560                 htlc_id: MIN_AFFORDABLE_HTLC_COUNT as u64,
1561                 amount_msat: htlc_msat,
1562                 payment_hash: payment_hash,
1563                 cltv_expiry: htlc_cltv,
1564                 onion_routing_packet: onion_packet,
1565         };
1566
1567         nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &msg);
1568         // Check that the payment failed and the channel is closed in response to the malicious UpdateAdd.
1569         nodes[0].logger.assert_log("lightning::ln::channelmanager".to_string(), "Cannot accept HTLC that would put our balance under counterparty-announced channel reserve value".to_string(), 1);
1570         assert_eq!(nodes[0].node.list_channels().len(), 0);
1571         let err_msg = check_closed_broadcast!(nodes[0], true).unwrap();
1572         assert_eq!(err_msg.data, "Cannot accept HTLC that would put our balance under counterparty-announced channel reserve value");
1573         check_added_monitors!(nodes[0], 1);
1574         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: "Cannot accept HTLC that would put our balance under counterparty-announced channel reserve value".to_string() });
1575 }
1576
1577 #[test]
1578 fn test_chan_reserve_dust_inbound_htlcs_outbound_chan() {
1579         // Test that if we receive many dust HTLCs over an outbound channel, they don't count when
1580         // calculating our commitment transaction fee (this was previously broken).
1581         let mut chanmon_cfgs = create_chanmon_cfgs(2);
1582         let feerate_per_kw = *chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
1583
1584         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1585         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None, None]);
1586         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1587         let default_config = UserConfig::default();
1588         let opt_anchors = false;
1589
1590         // Set nodes[0]'s balance such that they will consider any above-dust received HTLC to be a
1591         // channel reserve violation (so their balance is channel reserve (1000 sats) + commitment
1592         // transaction fee with 0 HTLCs (183 sats)).
1593         let mut push_amt = 100_000_000;
1594         push_amt -= commit_tx_fee_msat(feerate_per_kw, MIN_AFFORDABLE_HTLC_COUNT as u64, opt_anchors);
1595         push_amt -= Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(100_000, &default_config) * 1000;
1596         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, push_amt, InitFeatures::known(), InitFeatures::known());
1597
1598         let dust_amt = crate::ln::channel::MIN_CHAN_DUST_LIMIT_SATOSHIS * 1000
1599                 + feerate_per_kw as u64 * htlc_success_tx_weight(opt_anchors) / 1000 * 1000 - 1;
1600         // In the previous code, routing this dust payment would cause nodes[0] to perceive a channel
1601         // reserve violation even though it's a dust HTLC and therefore shouldn't count towards the
1602         // commitment transaction fee.
1603         let (_, _, _) = route_payment(&nodes[1], &[&nodes[0]], dust_amt);
1604
1605         // Send four HTLCs to cover the initial push_msat buffer we're required to include
1606         for _ in 0..MIN_AFFORDABLE_HTLC_COUNT {
1607                 let (_, _, _) = route_payment(&nodes[1], &[&nodes[0]], 1_000_000);
1608         }
1609
1610         // One more than the dust amt should fail, however.
1611         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], dust_amt + 1);
1612         unwrap_send_err!(nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
1613                 assert_eq!(err, "Cannot send value that would put counterparty balance under holder-announced channel reserve value"));
1614 }
1615
1616 #[test]
1617 fn test_chan_init_feerate_unaffordability() {
1618         // Test that we will reject channel opens which do not leave enough to pay for any HTLCs due to
1619         // channel reserve and feerate requirements.
1620         let mut chanmon_cfgs = create_chanmon_cfgs(2);
1621         let feerate_per_kw = *chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
1622         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1623         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1624         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1625         let default_config = UserConfig::default();
1626         let opt_anchors = false;
1627
1628         // Set the push_msat amount such that nodes[0] will not be able to afford to add even a single
1629         // HTLC.
1630         let mut push_amt = 100_000_000;
1631         push_amt -= commit_tx_fee_msat(feerate_per_kw, MIN_AFFORDABLE_HTLC_COUNT as u64, opt_anchors);
1632         assert_eq!(nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, push_amt + 1, 42, None).unwrap_err(),
1633                 APIError::APIMisuseError { err: "Funding amount (356) can't even pay fee for initial commitment transaction fee of 357.".to_string() });
1634
1635         // During open, we don't have a "counterparty channel reserve" to check against, so that
1636         // requirement only comes into play on the open_channel handling side.
1637         push_amt -= Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(100_000, &default_config) * 1000;
1638         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, push_amt, 42, None).unwrap();
1639         let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
1640         open_channel_msg.push_msat += 1;
1641         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_channel_msg);
1642
1643         let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
1644         assert_eq!(msg_events.len(), 1);
1645         match msg_events[0] {
1646                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id: _ } => {
1647                         assert_eq!(msg.data, "Insufficient funding amount for initial reserve");
1648                 },
1649                 _ => panic!("Unexpected event"),
1650         }
1651 }
1652
1653 #[test]
1654 fn test_chan_reserve_dust_inbound_htlcs_inbound_chan() {
1655         // Test that if we receive many dust HTLCs over an inbound channel, they don't count when
1656         // calculating our counterparty's commitment transaction fee (this was previously broken).
1657         let chanmon_cfgs = create_chanmon_cfgs(2);
1658         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1659         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None, None]);
1660         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1661         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 98000000, InitFeatures::known(), InitFeatures::known());
1662
1663         let payment_amt = 46000; // Dust amount
1664         // In the previous code, these first four payments would succeed.
1665         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1666         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1667         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1668         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1669
1670         // Then these next 5 would be interpreted by nodes[1] as violating the fee spike buffer.
1671         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1672         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1673         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1674         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1675         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1676
1677         // And this last payment previously resulted in nodes[1] closing on its inbound-channel
1678         // counterparty, because it counted all the previous dust HTLCs against nodes[0]'s commitment
1679         // transaction fee and therefore perceived this next payment as a channel reserve violation.
1680         let (_, _, _) = route_payment(&nodes[0], &[&nodes[1]], payment_amt);
1681 }
1682
1683 #[test]
1684 fn test_chan_reserve_violation_inbound_htlc_inbound_chan() {
1685         let chanmon_cfgs = create_chanmon_cfgs(3);
1686         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1687         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
1688         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1689         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
1690         let _ = create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
1691
1692         let feemsat = 239;
1693         let total_routing_fee_msat = (nodes.len() - 2) as u64 * feemsat;
1694         let chan_stat = get_channel_value_stat!(nodes[0], chan.2);
1695         let feerate = get_feerate!(nodes[0], chan.2);
1696         let opt_anchors = get_opt_anchors!(nodes[0], chan.2);
1697
1698         // Add a 2* and +1 for the fee spike reserve.
1699         let commit_tx_fee_2_htlc = 2*commit_tx_fee_msat(feerate, 2 + 1, opt_anchors);
1700         let recv_value_1 = (chan_stat.value_to_self_msat - chan_stat.channel_reserve_msat - total_routing_fee_msat - commit_tx_fee_2_htlc)/2;
1701         let amt_msat_1 = recv_value_1 + total_routing_fee_msat;
1702
1703         // Add a pending HTLC.
1704         let (route_1, our_payment_hash_1, _, our_payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[2], amt_msat_1);
1705         let payment_event_1 = {
1706                 nodes[0].node.send_payment(&route_1, our_payment_hash_1, &Some(our_payment_secret_1)).unwrap();
1707                 check_added_monitors!(nodes[0], 1);
1708
1709                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
1710                 assert_eq!(events.len(), 1);
1711                 SendEvent::from_event(events.remove(0))
1712         };
1713         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event_1.msgs[0]);
1714
1715         // Attempt to trigger a channel reserve violation --> payment failure.
1716         let commit_tx_fee_2_htlcs = commit_tx_fee_msat(feerate, 2, opt_anchors);
1717         let recv_value_2 = chan_stat.value_to_self_msat - amt_msat_1 - chan_stat.channel_reserve_msat - total_routing_fee_msat - commit_tx_fee_2_htlcs + 1;
1718         let amt_msat_2 = recv_value_2 + total_routing_fee_msat;
1719         let (route_2, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[2], amt_msat_2);
1720
1721         // Need to manually create the update_add_htlc message to go around the channel reserve check in send_htlc()
1722         let secp_ctx = Secp256k1::new();
1723         let session_priv = SecretKey::from_slice(&[42; 32]).unwrap();
1724         let cur_height = nodes[0].node.best_block.read().unwrap().height() + 1;
1725         let onion_keys = onion_utils::construct_onion_keys(&secp_ctx, &route_2.paths[0], &session_priv).unwrap();
1726         let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(&route_2.paths[0], recv_value_2, &None, cur_height, &None).unwrap();
1727         let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, [0; 32], &our_payment_hash_1);
1728         let msg = msgs::UpdateAddHTLC {
1729                 channel_id: chan.2,
1730                 htlc_id: 1,
1731                 amount_msat: htlc_msat + 1,
1732                 payment_hash: our_payment_hash_1,
1733                 cltv_expiry: htlc_cltv,
1734                 onion_routing_packet: onion_packet,
1735         };
1736
1737         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &msg);
1738         // Check that the payment failed and the channel is closed in response to the malicious UpdateAdd.
1739         nodes[1].logger.assert_log("lightning::ln::channelmanager".to_string(), "Remote HTLC add would put them under remote reserve value".to_string(), 1);
1740         assert_eq!(nodes[1].node.list_channels().len(), 1);
1741         let err_msg = check_closed_broadcast!(nodes[1], true).unwrap();
1742         assert_eq!(err_msg.data, "Remote HTLC add would put them under remote reserve value");
1743         check_added_monitors!(nodes[1], 1);
1744         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: "Remote HTLC add would put them under remote reserve value".to_string() });
1745 }
1746
1747 #[test]
1748 fn test_inbound_outbound_capacity_is_not_zero() {
1749         let chanmon_cfgs = create_chanmon_cfgs(2);
1750         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1751         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1752         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1753         let _ = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
1754         let channels0 = node_chanmgrs[0].list_channels();
1755         let channels1 = node_chanmgrs[1].list_channels();
1756         let default_config = UserConfig::default();
1757         assert_eq!(channels0.len(), 1);
1758         assert_eq!(channels1.len(), 1);
1759
1760         let reserve = Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(100_000, &default_config);
1761         assert_eq!(channels0[0].inbound_capacity_msat, 95000000 - reserve*1000);
1762         assert_eq!(channels1[0].outbound_capacity_msat, 95000000 - reserve*1000);
1763
1764         assert_eq!(channels0[0].outbound_capacity_msat, 100000 * 1000 - 95000000 - reserve*1000);
1765         assert_eq!(channels1[0].inbound_capacity_msat, 100000 * 1000 - 95000000 - reserve*1000);
1766 }
1767
1768 fn commit_tx_fee_msat(feerate: u32, num_htlcs: u64, opt_anchors: bool) -> u64 {
1769         (commitment_tx_base_weight(opt_anchors) + num_htlcs * COMMITMENT_TX_WEIGHT_PER_HTLC) * feerate as u64 / 1000 * 1000
1770 }
1771
1772 #[test]
1773 fn test_channel_reserve_holding_cell_htlcs() {
1774         let chanmon_cfgs = create_chanmon_cfgs(3);
1775         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
1776         // When this test was written, the default base fee floated based on the HTLC count.
1777         // It is now fixed, so we simply set the fee to the expected value here.
1778         let mut config = test_default_channel_config();
1779         config.channel_config.forwarding_fee_base_msat = 239;
1780         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[Some(config.clone()), Some(config.clone()), Some(config.clone())]);
1781         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
1782         let chan_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 190000, 1001, InitFeatures::known(), InitFeatures::known());
1783         let chan_2 = create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 190000, 1001, InitFeatures::known(), InitFeatures::known());
1784
1785         let mut stat01 = get_channel_value_stat!(nodes[0], chan_1.2);
1786         let mut stat11 = get_channel_value_stat!(nodes[1], chan_1.2);
1787
1788         let mut stat12 = get_channel_value_stat!(nodes[1], chan_2.2);
1789         let mut stat22 = get_channel_value_stat!(nodes[2], chan_2.2);
1790
1791         macro_rules! expect_forward {
1792                 ($node: expr) => {{
1793                         let mut events = $node.node.get_and_clear_pending_msg_events();
1794                         assert_eq!(events.len(), 1);
1795                         check_added_monitors!($node, 1);
1796                         let payment_event = SendEvent::from_event(events.remove(0));
1797                         payment_event
1798                 }}
1799         }
1800
1801         let feemsat = 239; // set above
1802         let total_fee_msat = (nodes.len() - 2) as u64 * feemsat;
1803         let feerate = get_feerate!(nodes[0], chan_1.2);
1804         let opt_anchors = get_opt_anchors!(nodes[0], chan_1.2);
1805
1806         let recv_value_0 = stat01.counterparty_max_htlc_value_in_flight_msat - total_fee_msat;
1807
1808         // attempt to send amt_msat > their_max_htlc_value_in_flight_msat
1809         {
1810                 let payment_params = PaymentParameters::from_node_id(nodes[2].node.get_our_node_id())
1811                         .with_features(InvoiceFeatures::known()).with_max_channel_saturation_power_of_half(0);
1812                 let (mut route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], payment_params, recv_value_0, TEST_FINAL_CLTV);
1813                 route.paths[0].last_mut().unwrap().fee_msat += 1;
1814                 assert!(route.paths[0].iter().rev().skip(1).all(|h| h.fee_msat == feemsat));
1815
1816                 unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
1817                         assert!(regex::Regex::new(r"Cannot send value that would put us over the max HTLC value in flight our peer will accept \(\d+\)").unwrap().is_match(err)));
1818                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
1819                 nodes[0].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Cannot send value that would put us over the max HTLC value in flight our peer will accept".to_string(), 1);
1820         }
1821
1822         // channel reserve is bigger than their_max_htlc_value_in_flight_msat so loop to deplete
1823         // nodes[0]'s wealth
1824         loop {
1825                 let amt_msat = recv_value_0 + total_fee_msat;
1826                 // 3 for the 3 HTLCs that will be sent, 2* and +1 for the fee spike reserve.
1827                 // Also, ensure that each payment has enough to be over the dust limit to
1828                 // ensure it'll be included in each commit tx fee calculation.
1829                 let commit_tx_fee_all_htlcs = 2*commit_tx_fee_msat(feerate, 3 + 1, opt_anchors);
1830                 let ensure_htlc_amounts_above_dust_buffer = 3 * (stat01.counterparty_dust_limit_msat + 1000);
1831                 if stat01.value_to_self_msat < stat01.channel_reserve_msat + commit_tx_fee_all_htlcs + ensure_htlc_amounts_above_dust_buffer + amt_msat {
1832                         break;
1833                 }
1834
1835                 let payment_params = PaymentParameters::from_node_id(nodes[2].node.get_our_node_id())
1836                         .with_features(InvoiceFeatures::known()).with_max_channel_saturation_power_of_half(0);
1837                 let route = get_route!(nodes[0], payment_params, recv_value_0, TEST_FINAL_CLTV).unwrap();
1838                 let (payment_preimage, ..) = send_along_route(&nodes[0], route, &[&nodes[1], &nodes[2]], recv_value_0);
1839                 claim_payment(&nodes[0], &[&nodes[1], &nodes[2]], payment_preimage);
1840
1841                 let (stat01_, stat11_, stat12_, stat22_) = (
1842                         get_channel_value_stat!(nodes[0], chan_1.2),
1843                         get_channel_value_stat!(nodes[1], chan_1.2),
1844                         get_channel_value_stat!(nodes[1], chan_2.2),
1845                         get_channel_value_stat!(nodes[2], chan_2.2),
1846                 );
1847
1848                 assert_eq!(stat01_.value_to_self_msat, stat01.value_to_self_msat - amt_msat);
1849                 assert_eq!(stat11_.value_to_self_msat, stat11.value_to_self_msat + amt_msat);
1850                 assert_eq!(stat12_.value_to_self_msat, stat12.value_to_self_msat - (amt_msat - feemsat));
1851                 assert_eq!(stat22_.value_to_self_msat, stat22.value_to_self_msat + (amt_msat - feemsat));
1852                 stat01 = stat01_; stat11 = stat11_; stat12 = stat12_; stat22 = stat22_;
1853         }
1854
1855         // adding pending output.
1856         // 2* and +1 HTLCs on the commit tx fee for the fee spike reserve.
1857         // The reason we're dividing by two here is as follows: the dividend is the total outbound liquidity
1858         // after fees, the channel reserve, and the fee spike buffer are removed. We eventually want to
1859         // divide this quantity into 3 portions, that will each be sent in an HTLC. This allows us
1860         // to test channel channel reserve policy at the edges of what amount is sendable, i.e.
1861         // cases where 1 msat over X amount will cause a payment failure, but anything less than
1862         // that can be sent successfully. So, dividing by two is a somewhat arbitrary way of getting
1863         // the amount of the first of these aforementioned 3 payments. The reason we split into 3 payments
1864         // is to test the behavior of the holding cell with respect to channel reserve and commit tx fee
1865         // policy.
1866         let commit_tx_fee_2_htlcs = 2*commit_tx_fee_msat(feerate, 2 + 1, opt_anchors);
1867         let recv_value_1 = (stat01.value_to_self_msat - stat01.channel_reserve_msat - total_fee_msat - commit_tx_fee_2_htlcs)/2;
1868         let amt_msat_1 = recv_value_1 + total_fee_msat;
1869
1870         let (route_1, our_payment_hash_1, our_payment_preimage_1, our_payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[2], recv_value_1);
1871         let payment_event_1 = {
1872                 nodes[0].node.send_payment(&route_1, our_payment_hash_1, &Some(our_payment_secret_1)).unwrap();
1873                 check_added_monitors!(nodes[0], 1);
1874
1875                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
1876                 assert_eq!(events.len(), 1);
1877                 SendEvent::from_event(events.remove(0))
1878         };
1879         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event_1.msgs[0]);
1880
1881         // channel reserve test with htlc pending output > 0
1882         let recv_value_2 = stat01.value_to_self_msat - amt_msat_1 - stat01.channel_reserve_msat - total_fee_msat - commit_tx_fee_2_htlcs;
1883         {
1884                 let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], recv_value_2 + 1);
1885                 unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
1886                         assert!(regex::Regex::new(r"Cannot send value that would put our balance under counterparty-announced channel reserve value \(\d+\)").unwrap().is_match(err)));
1887                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
1888         }
1889
1890         // split the rest to test holding cell
1891         let commit_tx_fee_3_htlcs = 2*commit_tx_fee_msat(feerate, 3 + 1, opt_anchors);
1892         let additional_htlc_cost_msat = commit_tx_fee_3_htlcs - commit_tx_fee_2_htlcs;
1893         let recv_value_21 = recv_value_2/2 - additional_htlc_cost_msat/2;
1894         let recv_value_22 = recv_value_2 - recv_value_21 - total_fee_msat - additional_htlc_cost_msat;
1895         {
1896                 let stat = get_channel_value_stat!(nodes[0], chan_1.2);
1897                 assert_eq!(stat.value_to_self_msat - (stat.pending_outbound_htlcs_amount_msat + recv_value_21 + recv_value_22 + total_fee_msat + total_fee_msat + commit_tx_fee_3_htlcs), stat.channel_reserve_msat);
1898         }
1899
1900         // now see if they go through on both sides
1901         let (route_21, our_payment_hash_21, our_payment_preimage_21, our_payment_secret_21) = get_route_and_payment_hash!(nodes[0], nodes[2], recv_value_21);
1902         // but this will stuck in the holding cell
1903         nodes[0].node.send_payment(&route_21, our_payment_hash_21, &Some(our_payment_secret_21)).unwrap();
1904         check_added_monitors!(nodes[0], 0);
1905         let events = nodes[0].node.get_and_clear_pending_events();
1906         assert_eq!(events.len(), 0);
1907
1908         // test with outbound holding cell amount > 0
1909         {
1910                 let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], recv_value_22+1);
1911                 unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
1912                         assert!(regex::Regex::new(r"Cannot send value that would put our balance under counterparty-announced channel reserve value \(\d+\)").unwrap().is_match(err)));
1913                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
1914                 nodes[0].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Cannot send value that would put our balance under counterparty-announced channel reserve value".to_string(), 2);
1915         }
1916
1917         let (route_22, our_payment_hash_22, our_payment_preimage_22, our_payment_secret_22) = get_route_and_payment_hash!(nodes[0], nodes[2], recv_value_22);
1918         // this will also stuck in the holding cell
1919         nodes[0].node.send_payment(&route_22, our_payment_hash_22, &Some(our_payment_secret_22)).unwrap();
1920         check_added_monitors!(nodes[0], 0);
1921         assert!(nodes[0].node.get_and_clear_pending_events().is_empty());
1922         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
1923
1924         // flush the pending htlc
1925         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &payment_event_1.commitment_msg);
1926         let (as_revoke_and_ack, as_commitment_signed) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
1927         check_added_monitors!(nodes[1], 1);
1928
1929         // the pending htlc should be promoted to committed
1930         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &as_revoke_and_ack);
1931         check_added_monitors!(nodes[0], 1);
1932         let commitment_update_2 = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
1933
1934         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &as_commitment_signed);
1935         let bs_revoke_and_ack = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
1936         // No commitment_signed so get_event_msg's assert(len == 1) passes
1937         check_added_monitors!(nodes[0], 1);
1938
1939         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &bs_revoke_and_ack);
1940         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
1941         check_added_monitors!(nodes[1], 1);
1942
1943         expect_pending_htlcs_forwardable!(nodes[1]);
1944
1945         let ref payment_event_11 = expect_forward!(nodes[1]);
1946         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event_11.msgs[0]);
1947         commitment_signed_dance!(nodes[2], nodes[1], payment_event_11.commitment_msg, false);
1948
1949         expect_pending_htlcs_forwardable!(nodes[2]);
1950         expect_payment_received!(nodes[2], our_payment_hash_1, our_payment_secret_1, recv_value_1);
1951
1952         // flush the htlcs in the holding cell
1953         assert_eq!(commitment_update_2.update_add_htlcs.len(), 2);
1954         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &commitment_update_2.update_add_htlcs[0]);
1955         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &commitment_update_2.update_add_htlcs[1]);
1956         commitment_signed_dance!(nodes[1], nodes[0], &commitment_update_2.commitment_signed, false);
1957         expect_pending_htlcs_forwardable!(nodes[1]);
1958
1959         let ref payment_event_3 = expect_forward!(nodes[1]);
1960         assert_eq!(payment_event_3.msgs.len(), 2);
1961         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event_3.msgs[0]);
1962         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event_3.msgs[1]);
1963
1964         commitment_signed_dance!(nodes[2], nodes[1], &payment_event_3.commitment_msg, false);
1965         expect_pending_htlcs_forwardable!(nodes[2]);
1966
1967         let events = nodes[2].node.get_and_clear_pending_events();
1968         assert_eq!(events.len(), 2);
1969         match events[0] {
1970                 Event::PaymentReceived { ref payment_hash, ref purpose, amount_msat } => {
1971                         assert_eq!(our_payment_hash_21, *payment_hash);
1972                         assert_eq!(recv_value_21, amount_msat);
1973                         match &purpose {
1974                                 PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
1975                                         assert!(payment_preimage.is_none());
1976                                         assert_eq!(our_payment_secret_21, *payment_secret);
1977                                 },
1978                                 _ => panic!("expected PaymentPurpose::InvoicePayment")
1979                         }
1980                 },
1981                 _ => panic!("Unexpected event"),
1982         }
1983         match events[1] {
1984                 Event::PaymentReceived { ref payment_hash, ref purpose, amount_msat } => {
1985                         assert_eq!(our_payment_hash_22, *payment_hash);
1986                         assert_eq!(recv_value_22, amount_msat);
1987                         match &purpose {
1988                                 PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
1989                                         assert!(payment_preimage.is_none());
1990                                         assert_eq!(our_payment_secret_22, *payment_secret);
1991                                 },
1992                                 _ => panic!("expected PaymentPurpose::InvoicePayment")
1993                         }
1994                 },
1995                 _ => panic!("Unexpected event"),
1996         }
1997
1998         claim_payment(&nodes[0], &vec!(&nodes[1], &nodes[2]), our_payment_preimage_1);
1999         claim_payment(&nodes[0], &vec!(&nodes[1], &nodes[2]), our_payment_preimage_21);
2000         claim_payment(&nodes[0], &vec!(&nodes[1], &nodes[2]), our_payment_preimage_22);
2001
2002         let commit_tx_fee_0_htlcs = 2*commit_tx_fee_msat(feerate, 1, opt_anchors);
2003         let recv_value_3 = commit_tx_fee_2_htlcs - commit_tx_fee_0_htlcs - total_fee_msat;
2004         send_payment(&nodes[0], &vec![&nodes[1], &nodes[2]][..], recv_value_3);
2005
2006         let commit_tx_fee_1_htlc = 2*commit_tx_fee_msat(feerate, 1 + 1, opt_anchors);
2007         let expected_value_to_self = stat01.value_to_self_msat - (recv_value_1 + total_fee_msat) - (recv_value_21 + total_fee_msat) - (recv_value_22 + total_fee_msat) - (recv_value_3 + total_fee_msat);
2008         let stat0 = get_channel_value_stat!(nodes[0], chan_1.2);
2009         assert_eq!(stat0.value_to_self_msat, expected_value_to_self);
2010         assert_eq!(stat0.value_to_self_msat, stat0.channel_reserve_msat + commit_tx_fee_1_htlc);
2011
2012         let stat2 = get_channel_value_stat!(nodes[2], chan_2.2);
2013         assert_eq!(stat2.value_to_self_msat, stat22.value_to_self_msat + recv_value_1 + recv_value_21 + recv_value_22 + recv_value_3);
2014 }
2015
2016 #[test]
2017 fn channel_reserve_in_flight_removes() {
2018         // In cases where one side claims an HTLC, it thinks it has additional available funds that it
2019         // can send to its counterparty, but due to update ordering, the other side may not yet have
2020         // considered those HTLCs fully removed.
2021         // This tests that we don't count HTLCs which will not be included in the next remote
2022         // commitment transaction towards the reserve value (as it implies no commitment transaction
2023         // will be generated which violates the remote reserve value).
2024         // This was broken previously, and discovered by the chanmon_fail_consistency fuzz test.
2025         // To test this we:
2026         //  * route two HTLCs from A to B (note that, at a high level, this test is checking that, when
2027         //    you consider the values of both of these HTLCs, B may not send an HTLC back to A, but if
2028         //    you only consider the value of the first HTLC, it may not),
2029         //  * start routing a third HTLC from A to B,
2030         //  * claim the first two HTLCs (though B will generate an update_fulfill for one, and put
2031         //    the other claim in its holding cell, as it immediately goes into AwaitingRAA),
2032         //  * deliver the first fulfill from B
2033         //  * deliver the update_add and an RAA from A, resulting in B freeing the second holding cell
2034         //    claim,
2035         //  * deliver A's response CS and RAA.
2036         //    This results in A having the second HTLC in AwaitingRemovedRemoteRevoke, but B having
2037         //    removed it fully. B now has the push_msat plus the first two HTLCs in value.
2038         //  * Now B happily sends another HTLC, potentially violating its reserve value from A's point
2039         //    of view (if A counts the AwaitingRemovedRemoteRevoke HTLC).
2040         let chanmon_cfgs = create_chanmon_cfgs(2);
2041         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
2042         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
2043         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
2044         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2045
2046         let b_chan_values = get_channel_value_stat!(nodes[1], chan_1.2);
2047         // Route the first two HTLCs.
2048         let payment_value_1 = b_chan_values.channel_reserve_msat - b_chan_values.value_to_self_msat - 10000;
2049         let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], payment_value_1);
2050         let (payment_preimage_2, payment_hash_2, _) = route_payment(&nodes[0], &[&nodes[1]], 20_000);
2051
2052         // Start routing the third HTLC (this is just used to get everyone in the right state).
2053         let (route, payment_hash_3, payment_preimage_3, payment_secret_3) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
2054         let send_1 = {
2055                 nodes[0].node.send_payment(&route, payment_hash_3, &Some(payment_secret_3)).unwrap();
2056                 check_added_monitors!(nodes[0], 1);
2057                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
2058                 assert_eq!(events.len(), 1);
2059                 SendEvent::from_event(events.remove(0))
2060         };
2061
2062         // Now claim both of the first two HTLCs on B's end, putting B in AwaitingRAA and generating an
2063         // initial fulfill/CS.
2064         nodes[1].node.claim_funds(payment_preimage_1);
2065         expect_payment_claimed!(nodes[1], payment_hash_1, payment_value_1);
2066         check_added_monitors!(nodes[1], 1);
2067         let bs_removes = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
2068
2069         // This claim goes in B's holding cell, allowing us to have a pending B->A RAA which does not
2070         // remove the second HTLC when we send the HTLC back from B to A.
2071         nodes[1].node.claim_funds(payment_preimage_2);
2072         expect_payment_claimed!(nodes[1], payment_hash_2, 20_000);
2073         check_added_monitors!(nodes[1], 1);
2074         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
2075
2076         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_removes.update_fulfill_htlcs[0]);
2077         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_removes.commitment_signed);
2078         check_added_monitors!(nodes[0], 1);
2079         let as_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
2080         expect_payment_sent_without_paths!(nodes[0], payment_preimage_1);
2081
2082         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &send_1.msgs[0]);
2083         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &send_1.commitment_msg);
2084         check_added_monitors!(nodes[1], 1);
2085         // B is already AwaitingRAA, so cant generate a CS here
2086         let bs_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
2087
2088         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_raa);
2089         check_added_monitors!(nodes[1], 1);
2090         let bs_cs = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
2091
2092         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_raa);
2093         check_added_monitors!(nodes[0], 1);
2094         let as_cs = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
2095
2096         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_cs.commitment_signed);
2097         check_added_monitors!(nodes[1], 1);
2098         let bs_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
2099
2100         // The second HTLCis removed, but as A is in AwaitingRAA it can't generate a CS here, so the
2101         // RAA that B generated above doesn't fully resolve the second HTLC from A's point of view.
2102         // However, the RAA A generates here *does* fully resolve the HTLC from B's point of view (as A
2103         // can no longer broadcast a commitment transaction with it and B has the preimage so can go
2104         // on-chain as necessary).
2105         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_cs.update_fulfill_htlcs[0]);
2106         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_cs.commitment_signed);
2107         check_added_monitors!(nodes[0], 1);
2108         let as_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
2109         expect_payment_sent_without_paths!(nodes[0], payment_preimage_2);
2110
2111         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_raa);
2112         check_added_monitors!(nodes[1], 1);
2113         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
2114
2115         expect_pending_htlcs_forwardable!(nodes[1]);
2116         expect_payment_received!(nodes[1], payment_hash_3, payment_secret_3, 100000);
2117
2118         // Note that as this RAA was generated before the delivery of the update_fulfill it shouldn't
2119         // resolve the second HTLC from A's point of view.
2120         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_raa);
2121         check_added_monitors!(nodes[0], 1);
2122         expect_payment_path_successful!(nodes[0]);
2123         let as_cs = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
2124
2125         // Now that B doesn't have the second RAA anymore, but A still does, send a payment from B back
2126         // to A to ensure that A doesn't count the almost-removed HTLC in update_add processing.
2127         let (route, payment_hash_4, payment_preimage_4, payment_secret_4) = get_route_and_payment_hash!(nodes[1], nodes[0], 10000);
2128         let send_2 = {
2129                 nodes[1].node.send_payment(&route, payment_hash_4, &Some(payment_secret_4)).unwrap();
2130                 check_added_monitors!(nodes[1], 1);
2131                 let mut events = nodes[1].node.get_and_clear_pending_msg_events();
2132                 assert_eq!(events.len(), 1);
2133                 SendEvent::from_event(events.remove(0))
2134         };
2135
2136         nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &send_2.msgs[0]);
2137         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &send_2.commitment_msg);
2138         check_added_monitors!(nodes[0], 1);
2139         let as_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
2140
2141         // Now just resolve all the outstanding messages/HTLCs for completeness...
2142
2143         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_cs.commitment_signed);
2144         check_added_monitors!(nodes[1], 1);
2145         let bs_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
2146
2147         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_raa);
2148         check_added_monitors!(nodes[1], 1);
2149
2150         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_raa);
2151         check_added_monitors!(nodes[0], 1);
2152         expect_payment_path_successful!(nodes[0]);
2153         let as_cs = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
2154
2155         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_cs.commitment_signed);
2156         check_added_monitors!(nodes[1], 1);
2157         let bs_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
2158
2159         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_raa);
2160         check_added_monitors!(nodes[0], 1);
2161
2162         expect_pending_htlcs_forwardable!(nodes[0]);
2163         expect_payment_received!(nodes[0], payment_hash_4, payment_secret_4, 10000);
2164
2165         claim_payment(&nodes[1], &[&nodes[0]], payment_preimage_4);
2166         claim_payment(&nodes[0], &[&nodes[1]], payment_preimage_3);
2167 }
2168
2169 #[test]
2170 fn channel_monitor_network_test() {
2171         // Simple test which builds a network of ChannelManagers, connects them to each other, and
2172         // tests that ChannelMonitor is able to recover from various states.
2173         let chanmon_cfgs = create_chanmon_cfgs(5);
2174         let node_cfgs = create_node_cfgs(5, &chanmon_cfgs);
2175         let node_chanmgrs = create_node_chanmgrs(5, &node_cfgs, &[None, None, None, None, None]);
2176         let nodes = create_network(5, &node_cfgs, &node_chanmgrs);
2177
2178         // Create some initial channels
2179         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2180         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
2181         let chan_3 = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known());
2182         let chan_4 = create_announced_chan_between_nodes(&nodes, 3, 4, InitFeatures::known(), InitFeatures::known());
2183
2184         // Make sure all nodes are at the same starting height
2185         connect_blocks(&nodes[0], 4*CHAN_CONFIRM_DEPTH + 1 - nodes[0].best_block_info().1);
2186         connect_blocks(&nodes[1], 4*CHAN_CONFIRM_DEPTH + 1 - nodes[1].best_block_info().1);
2187         connect_blocks(&nodes[2], 4*CHAN_CONFIRM_DEPTH + 1 - nodes[2].best_block_info().1);
2188         connect_blocks(&nodes[3], 4*CHAN_CONFIRM_DEPTH + 1 - nodes[3].best_block_info().1);
2189         connect_blocks(&nodes[4], 4*CHAN_CONFIRM_DEPTH + 1 - nodes[4].best_block_info().1);
2190
2191         // Rebalance the network a bit by relaying one payment through all the channels...
2192         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3], &nodes[4])[..], 8000000);
2193         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3], &nodes[4])[..], 8000000);
2194         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3], &nodes[4])[..], 8000000);
2195         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2], &nodes[3], &nodes[4])[..], 8000000);
2196
2197         // Simple case with no pending HTLCs:
2198         nodes[1].node.force_close_broadcasting_latest_txn(&chan_1.2, &nodes[0].node.get_our_node_id()).unwrap();
2199         check_added_monitors!(nodes[1], 1);
2200         check_closed_broadcast!(nodes[1], true);
2201         {
2202                 let mut node_txn = test_txn_broadcast(&nodes[1], &chan_1, None, HTLCType::NONE);
2203                 assert_eq!(node_txn.len(), 1);
2204                 mine_transaction(&nodes[0], &node_txn[0]);
2205                 check_added_monitors!(nodes[0], 1);
2206                 test_txn_broadcast(&nodes[0], &chan_1, None, HTLCType::NONE);
2207         }
2208         check_closed_broadcast!(nodes[0], true);
2209         assert_eq!(nodes[0].node.list_channels().len(), 0);
2210         assert_eq!(nodes[1].node.list_channels().len(), 1);
2211         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
2212         check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
2213
2214         // One pending HTLC is discarded by the force-close:
2215         let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[1], &[&nodes[2], &nodes[3]], 3_000_000);
2216
2217         // Simple case of one pending HTLC to HTLC-Timeout (note that the HTLC-Timeout is not
2218         // broadcasted until we reach the timelock time).
2219         nodes[1].node.force_close_broadcasting_latest_txn(&chan_2.2, &nodes[2].node.get_our_node_id()).unwrap();
2220         check_closed_broadcast!(nodes[1], true);
2221         check_added_monitors!(nodes[1], 1);
2222         {
2223                 let mut node_txn = test_txn_broadcast(&nodes[1], &chan_2, None, HTLCType::NONE);
2224                 connect_blocks(&nodes[1], TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS + MIN_CLTV_EXPIRY_DELTA as u32 + 1);
2225                 test_txn_broadcast(&nodes[1], &chan_2, None, HTLCType::TIMEOUT);
2226                 mine_transaction(&nodes[2], &node_txn[0]);
2227                 check_added_monitors!(nodes[2], 1);
2228                 test_txn_broadcast(&nodes[2], &chan_2, None, HTLCType::NONE);
2229         }
2230         check_closed_broadcast!(nodes[2], true);
2231         assert_eq!(nodes[1].node.list_channels().len(), 0);
2232         assert_eq!(nodes[2].node.list_channels().len(), 1);
2233         check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
2234         check_closed_event!(nodes[2], 1, ClosureReason::CommitmentTxConfirmed);
2235
2236         macro_rules! claim_funds {
2237                 ($node: expr, $prev_node: expr, $preimage: expr, $payment_hash: expr) => {
2238                         {
2239                                 $node.node.claim_funds($preimage);
2240                                 expect_payment_claimed!($node, $payment_hash, 3_000_000);
2241                                 check_added_monitors!($node, 1);
2242
2243                                 let events = $node.node.get_and_clear_pending_msg_events();
2244                                 assert_eq!(events.len(), 1);
2245                                 match events[0] {
2246                                         MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fail_htlcs, .. } } => {
2247                                                 assert!(update_add_htlcs.is_empty());
2248                                                 assert!(update_fail_htlcs.is_empty());
2249                                                 assert_eq!(*node_id, $prev_node.node.get_our_node_id());
2250                                         },
2251                                         _ => panic!("Unexpected event"),
2252                                 };
2253                         }
2254                 }
2255         }
2256
2257         // nodes[3] gets the preimage, but nodes[2] already disconnected, resulting in a nodes[2]
2258         // HTLC-Timeout and a nodes[3] claim against it (+ its own announces)
2259         nodes[2].node.force_close_broadcasting_latest_txn(&chan_3.2, &nodes[3].node.get_our_node_id()).unwrap();
2260         check_added_monitors!(nodes[2], 1);
2261         check_closed_broadcast!(nodes[2], true);
2262         let node2_commitment_txid;
2263         {
2264                 let node_txn = test_txn_broadcast(&nodes[2], &chan_3, None, HTLCType::NONE);
2265                 connect_blocks(&nodes[2], TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS + MIN_CLTV_EXPIRY_DELTA as u32 + 1);
2266                 test_txn_broadcast(&nodes[2], &chan_3, None, HTLCType::TIMEOUT);
2267                 node2_commitment_txid = node_txn[0].txid();
2268
2269                 // Claim the payment on nodes[3], giving it knowledge of the preimage
2270                 claim_funds!(nodes[3], nodes[2], payment_preimage_1, payment_hash_1);
2271                 mine_transaction(&nodes[3], &node_txn[0]);
2272                 check_added_monitors!(nodes[3], 1);
2273                 check_preimage_claim(&nodes[3], &node_txn);
2274         }
2275         check_closed_broadcast!(nodes[3], true);
2276         assert_eq!(nodes[2].node.list_channels().len(), 0);
2277         assert_eq!(nodes[3].node.list_channels().len(), 1);
2278         check_closed_event!(nodes[2], 1, ClosureReason::HolderForceClosed);
2279         check_closed_event!(nodes[3], 1, ClosureReason::CommitmentTxConfirmed);
2280
2281         // Drop the ChannelMonitor for the previous channel to avoid it broadcasting transactions and
2282         // confusing us in the following tests.
2283         let chan_3_mon = nodes[3].chain_monitor.chain_monitor.remove_monitor(&OutPoint { txid: chan_3.3.txid(), index: 0 });
2284
2285         // One pending HTLC to time out:
2286         let (payment_preimage_2, payment_hash_2, _) = route_payment(&nodes[3], &[&nodes[4]], 3_000_000);
2287         // CLTV expires at TEST_FINAL_CLTV + 1 (current height) + 1 (added in send_payment for
2288         // buffer space).
2289
2290         let (close_chan_update_1, close_chan_update_2) = {
2291                 connect_blocks(&nodes[3], TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS + 1);
2292                 let events = nodes[3].node.get_and_clear_pending_msg_events();
2293                 assert_eq!(events.len(), 2);
2294                 let close_chan_update_1 = match events[0] {
2295                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
2296                                 msg.clone()
2297                         },
2298                         _ => panic!("Unexpected event"),
2299                 };
2300                 match events[1] {
2301                         MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { .. }, node_id } => {
2302                                 assert_eq!(node_id, nodes[4].node.get_our_node_id());
2303                         },
2304                         _ => panic!("Unexpected event"),
2305                 }
2306                 check_added_monitors!(nodes[3], 1);
2307
2308                 // Clear bumped claiming txn spending node 2 commitment tx. Bumped txn are generated after reaching some height timer.
2309                 {
2310                         let mut node_txn = nodes[3].tx_broadcaster.txn_broadcasted.lock().unwrap();
2311                         node_txn.retain(|tx| {
2312                                 if tx.input[0].previous_output.txid == node2_commitment_txid {
2313                                         false
2314                                 } else { true }
2315                         });
2316                 }
2317
2318                 let node_txn = test_txn_broadcast(&nodes[3], &chan_4, None, HTLCType::TIMEOUT);
2319
2320                 // Claim the payment on nodes[4], giving it knowledge of the preimage
2321                 claim_funds!(nodes[4], nodes[3], payment_preimage_2, payment_hash_2);
2322
2323                 connect_blocks(&nodes[4], TEST_FINAL_CLTV - CLTV_CLAIM_BUFFER + 2);
2324                 let events = nodes[4].node.get_and_clear_pending_msg_events();
2325                 assert_eq!(events.len(), 2);
2326                 let close_chan_update_2 = match events[0] {
2327                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
2328                                 msg.clone()
2329                         },
2330                         _ => panic!("Unexpected event"),
2331                 };
2332                 match events[1] {
2333                         MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { .. }, node_id } => {
2334                                 assert_eq!(node_id, nodes[3].node.get_our_node_id());
2335                         },
2336                         _ => panic!("Unexpected event"),
2337                 }
2338                 check_added_monitors!(nodes[4], 1);
2339                 test_txn_broadcast(&nodes[4], &chan_4, None, HTLCType::SUCCESS);
2340
2341                 mine_transaction(&nodes[4], &node_txn[0]);
2342                 check_preimage_claim(&nodes[4], &node_txn);
2343                 (close_chan_update_1, close_chan_update_2)
2344         };
2345         nodes[3].gossip_sync.handle_channel_update(&close_chan_update_2).unwrap();
2346         nodes[4].gossip_sync.handle_channel_update(&close_chan_update_1).unwrap();
2347         assert_eq!(nodes[3].node.list_channels().len(), 0);
2348         assert_eq!(nodes[4].node.list_channels().len(), 0);
2349
2350         nodes[3].chain_monitor.chain_monitor.watch_channel(OutPoint { txid: chan_3.3.txid(), index: 0 }, chan_3_mon).unwrap();
2351         check_closed_event!(nodes[3], 1, ClosureReason::CommitmentTxConfirmed);
2352         check_closed_event!(nodes[4], 1, ClosureReason::CommitmentTxConfirmed);
2353 }
2354
2355 #[test]
2356 fn test_justice_tx() {
2357         // Test justice txn built on revoked HTLC-Success tx, against both sides
2358         let mut alice_config = UserConfig::default();
2359         alice_config.channel_handshake_config.announced_channel = true;
2360         alice_config.channel_handshake_limits.force_announced_channel_preference = false;
2361         alice_config.channel_handshake_config.our_to_self_delay = 6 * 24 * 5;
2362         let mut bob_config = UserConfig::default();
2363         bob_config.channel_handshake_config.announced_channel = true;
2364         bob_config.channel_handshake_limits.force_announced_channel_preference = false;
2365         bob_config.channel_handshake_config.our_to_self_delay = 6 * 24 * 3;
2366         let user_cfgs = [Some(alice_config), Some(bob_config)];
2367         let mut chanmon_cfgs = create_chanmon_cfgs(2);
2368         chanmon_cfgs[0].keys_manager.disable_revocation_policy_check = true;
2369         chanmon_cfgs[1].keys_manager.disable_revocation_policy_check = true;
2370         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
2371         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &user_cfgs);
2372         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
2373         *nodes[0].connect_style.borrow_mut() = ConnectStyle::FullBlockViaListen;
2374         // Create some new channels:
2375         let chan_5 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2376
2377         // A pending HTLC which will be revoked:
2378         let payment_preimage_3 = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
2379         // Get the will-be-revoked local txn from nodes[0]
2380         let revoked_local_txn = get_local_commitment_txn!(nodes[0], chan_5.2);
2381         assert_eq!(revoked_local_txn.len(), 2); // First commitment tx, then HTLC tx
2382         assert_eq!(revoked_local_txn[0].input.len(), 1);
2383         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan_5.3.txid());
2384         assert_eq!(revoked_local_txn[0].output.len(), 2); // Only HTLC and output back to 0 are present
2385         assert_eq!(revoked_local_txn[1].input.len(), 1);
2386         assert_eq!(revoked_local_txn[1].input[0].previous_output.txid, revoked_local_txn[0].txid());
2387         assert_eq!(revoked_local_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT); // HTLC-Timeout
2388         // Revoke the old state
2389         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_3);
2390
2391         {
2392                 mine_transaction(&nodes[1], &revoked_local_txn[0]);
2393                 {
2394                         let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
2395                         assert_eq!(node_txn.len(), 2); // ChannelMonitor: penalty tx, ChannelManager: local commitment tx
2396                         assert_eq!(node_txn[0].input.len(), 2); // We should claim the revoked output and the HTLC output
2397
2398                         check_spends!(node_txn[0], revoked_local_txn[0]);
2399                         node_txn.swap_remove(0);
2400                         node_txn.truncate(1);
2401                 }
2402                 check_added_monitors!(nodes[1], 1);
2403                 check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
2404                 test_txn_broadcast(&nodes[1], &chan_5, None, HTLCType::NONE);
2405
2406                 mine_transaction(&nodes[0], &revoked_local_txn[0]);
2407                 connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
2408                 // Verify broadcast of revoked HTLC-timeout
2409                 let node_txn = test_txn_broadcast(&nodes[0], &chan_5, Some(revoked_local_txn[0].clone()), HTLCType::TIMEOUT);
2410                 check_added_monitors!(nodes[0], 1);
2411                 check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
2412                 // Broadcast revoked HTLC-timeout on node 1
2413                 mine_transaction(&nodes[1], &node_txn[1]);
2414                 test_revoked_htlc_claim_txn_broadcast(&nodes[1], node_txn[1].clone(), revoked_local_txn[0].clone());
2415         }
2416         get_announce_close_broadcast_events(&nodes, 0, 1);
2417
2418         assert_eq!(nodes[0].node.list_channels().len(), 0);
2419         assert_eq!(nodes[1].node.list_channels().len(), 0);
2420
2421         // We test justice_tx build by A on B's revoked HTLC-Success tx
2422         // Create some new channels:
2423         let chan_6 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2424         {
2425                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
2426                 node_txn.clear();
2427         }
2428
2429         // A pending HTLC which will be revoked:
2430         let payment_preimage_4 = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
2431         // Get the will-be-revoked local txn from B
2432         let revoked_local_txn = get_local_commitment_txn!(nodes[1], chan_6.2);
2433         assert_eq!(revoked_local_txn.len(), 1); // Only commitment tx
2434         assert_eq!(revoked_local_txn[0].input.len(), 1);
2435         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan_6.3.txid());
2436         assert_eq!(revoked_local_txn[0].output.len(), 2); // Only HTLC and output back to A are present
2437         // Revoke the old state
2438         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_4);
2439         {
2440                 mine_transaction(&nodes[0], &revoked_local_txn[0]);
2441                 {
2442                         let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
2443                         assert_eq!(node_txn.len(), 2); //ChannelMonitor: penalty tx, ChannelManager: local commitment tx
2444                         assert_eq!(node_txn[0].input.len(), 1); // We claim the received HTLC output
2445
2446                         check_spends!(node_txn[0], revoked_local_txn[0]);
2447                         node_txn.swap_remove(0);
2448                 }
2449                 check_added_monitors!(nodes[0], 1);
2450                 test_txn_broadcast(&nodes[0], &chan_6, None, HTLCType::NONE);
2451
2452                 mine_transaction(&nodes[1], &revoked_local_txn[0]);
2453                 check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
2454                 let node_txn = test_txn_broadcast(&nodes[1], &chan_6, Some(revoked_local_txn[0].clone()), HTLCType::SUCCESS);
2455                 check_added_monitors!(nodes[1], 1);
2456                 mine_transaction(&nodes[0], &node_txn[1]);
2457                 check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
2458                 test_revoked_htlc_claim_txn_broadcast(&nodes[0], node_txn[1].clone(), revoked_local_txn[0].clone());
2459         }
2460         get_announce_close_broadcast_events(&nodes, 0, 1);
2461         assert_eq!(nodes[0].node.list_channels().len(), 0);
2462         assert_eq!(nodes[1].node.list_channels().len(), 0);
2463 }
2464
2465 #[test]
2466 fn revoked_output_claim() {
2467         // Simple test to ensure a node will claim a revoked output when a stale remote commitment
2468         // transaction is broadcast by its counterparty
2469         let chanmon_cfgs = create_chanmon_cfgs(2);
2470         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
2471         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
2472         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
2473         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2474         // node[0] is gonna to revoke an old state thus node[1] should be able to claim the revoked output
2475         let revoked_local_txn = get_local_commitment_txn!(nodes[0], chan_1.2);
2476         assert_eq!(revoked_local_txn.len(), 1);
2477         // Only output is the full channel value back to nodes[0]:
2478         assert_eq!(revoked_local_txn[0].output.len(), 1);
2479         // Send a payment through, updating everyone's latest commitment txn
2480         send_payment(&nodes[0], &vec!(&nodes[1])[..], 5000000);
2481
2482         // Inform nodes[1] that nodes[0] broadcast a stale tx
2483         mine_transaction(&nodes[1], &revoked_local_txn[0]);
2484         check_added_monitors!(nodes[1], 1);
2485         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
2486         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
2487         assert_eq!(node_txn.len(), 2); // ChannelMonitor: justice tx against revoked to_local output, ChannelManager: local commitment tx
2488
2489         check_spends!(node_txn[0], revoked_local_txn[0]);
2490         check_spends!(node_txn[1], chan_1.3);
2491
2492         // Inform nodes[0] that a watchtower cheated on its behalf, so it will force-close the chan
2493         mine_transaction(&nodes[0], &revoked_local_txn[0]);
2494         get_announce_close_broadcast_events(&nodes, 0, 1);
2495         check_added_monitors!(nodes[0], 1);
2496         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
2497 }
2498
2499 #[test]
2500 fn claim_htlc_outputs_shared_tx() {
2501         // Node revoked old state, htlcs haven't time out yet, claim them in shared justice tx
2502         let mut chanmon_cfgs = create_chanmon_cfgs(2);
2503         chanmon_cfgs[0].keys_manager.disable_revocation_policy_check = true;
2504         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
2505         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
2506         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
2507
2508         // Create some new channel:
2509         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2510
2511         // Rebalance the network to generate htlc in the two directions
2512         send_payment(&nodes[0], &[&nodes[1]], 8_000_000);
2513         // node[0] is gonna to revoke an old state thus node[1] should be able to claim both offered/received HTLC outputs on top of commitment tx
2514         let payment_preimage_1 = route_payment(&nodes[0], &[&nodes[1]], 3_000_000).0;
2515         let (_payment_preimage_2, payment_hash_2, _) = route_payment(&nodes[1], &[&nodes[0]], 3_000_000);
2516
2517         // Get the will-be-revoked local txn from node[0]
2518         let revoked_local_txn = get_local_commitment_txn!(nodes[0], chan_1.2);
2519         assert_eq!(revoked_local_txn.len(), 2); // commitment tx + 1 HTLC-Timeout tx
2520         assert_eq!(revoked_local_txn[0].input.len(), 1);
2521         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan_1.3.txid());
2522         assert_eq!(revoked_local_txn[1].input.len(), 1);
2523         assert_eq!(revoked_local_txn[1].input[0].previous_output.txid, revoked_local_txn[0].txid());
2524         assert_eq!(revoked_local_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT); // HTLC-Timeout
2525         check_spends!(revoked_local_txn[1], revoked_local_txn[0]);
2526
2527         //Revoke the old state
2528         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_1);
2529
2530         {
2531                 mine_transaction(&nodes[0], &revoked_local_txn[0]);
2532                 check_added_monitors!(nodes[0], 1);
2533                 check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
2534                 mine_transaction(&nodes[1], &revoked_local_txn[0]);
2535                 check_added_monitors!(nodes[1], 1);
2536                 check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
2537                 connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
2538                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
2539
2540                 let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
2541                 assert_eq!(node_txn.len(), 2); // ChannelMonitor: penalty tx, ChannelManager: local commitment
2542
2543                 assert_eq!(node_txn[0].input.len(), 3); // Claim the revoked output + both revoked HTLC outputs
2544                 check_spends!(node_txn[0], revoked_local_txn[0]);
2545
2546                 let mut witness_lens = BTreeSet::new();
2547                 witness_lens.insert(node_txn[0].input[0].witness.last().unwrap().len());
2548                 witness_lens.insert(node_txn[0].input[1].witness.last().unwrap().len());
2549                 witness_lens.insert(node_txn[0].input[2].witness.last().unwrap().len());
2550                 assert_eq!(witness_lens.len(), 3);
2551                 assert_eq!(*witness_lens.iter().skip(0).next().unwrap(), 77); // revoked to_local
2552                 assert_eq!(*witness_lens.iter().skip(1).next().unwrap(), OFFERED_HTLC_SCRIPT_WEIGHT); // revoked offered HTLC
2553                 assert_eq!(*witness_lens.iter().skip(2).next().unwrap(), ACCEPTED_HTLC_SCRIPT_WEIGHT); // revoked received HTLC
2554
2555                 // Next nodes[1] broadcasts its current local tx state:
2556                 assert_eq!(node_txn[1].input.len(), 1);
2557                 check_spends!(node_txn[1], chan_1.3);
2558
2559                 // Finally, mine the penalty transaction and check that we get an HTLC failure after
2560                 // ANTI_REORG_DELAY confirmations.
2561                 mine_transaction(&nodes[1], &node_txn[0]);
2562                 connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
2563                 expect_payment_failed!(nodes[1], payment_hash_2, false);
2564         }
2565         get_announce_close_broadcast_events(&nodes, 0, 1);
2566         assert_eq!(nodes[0].node.list_channels().len(), 0);
2567         assert_eq!(nodes[1].node.list_channels().len(), 0);
2568 }
2569
2570 #[test]
2571 fn claim_htlc_outputs_single_tx() {
2572         // Node revoked old state, htlcs have timed out, claim each of them in separated justice tx
2573         let mut chanmon_cfgs = create_chanmon_cfgs(2);
2574         chanmon_cfgs[0].keys_manager.disable_revocation_policy_check = true;
2575         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
2576         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
2577         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
2578
2579         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2580
2581         // Rebalance the network to generate htlc in the two directions
2582         send_payment(&nodes[0], &[&nodes[1]], 8_000_000);
2583         // node[0] is gonna to revoke an old state thus node[1] should be able to claim both offered/received HTLC outputs on top of commitment tx, but this
2584         // time as two different claim transactions as we're gonna to timeout htlc with given a high current height
2585         let payment_preimage_1 = route_payment(&nodes[0], &[&nodes[1]], 3_000_000).0;
2586         let (_payment_preimage_2, payment_hash_2, _payment_secret_2) = route_payment(&nodes[1], &[&nodes[0]], 3_000_000);
2587
2588         // Get the will-be-revoked local txn from node[0]
2589         let revoked_local_txn = get_local_commitment_txn!(nodes[0], chan_1.2);
2590
2591         //Revoke the old state
2592         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_1);
2593
2594         {
2595                 confirm_transaction_at(&nodes[0], &revoked_local_txn[0], 100);
2596                 check_added_monitors!(nodes[0], 1);
2597                 confirm_transaction_at(&nodes[1], &revoked_local_txn[0], 100);
2598                 check_added_monitors!(nodes[1], 1);
2599                 check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
2600                 let mut events = nodes[0].node.get_and_clear_pending_events();
2601                 expect_pending_htlcs_forwardable_from_events!(nodes[0], events[0..1], true);
2602                 match events.last().unwrap() {
2603                         Event::ChannelClosed { reason: ClosureReason::CommitmentTxConfirmed, .. } => {}
2604                         _ => panic!("Unexpected event"),
2605                 }
2606
2607                 connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
2608                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
2609
2610                 let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
2611                 assert!(node_txn.len() == 9 || node_txn.len() == 10);
2612
2613                 // Check the pair local commitment and HTLC-timeout broadcast due to HTLC expiration
2614                 assert_eq!(node_txn[0].input.len(), 1);
2615                 check_spends!(node_txn[0], chan_1.3);
2616                 assert_eq!(node_txn[1].input.len(), 1);
2617                 let witness_script = node_txn[1].input[0].witness.last().unwrap();
2618                 assert_eq!(witness_script.len(), OFFERED_HTLC_SCRIPT_WEIGHT); //Spending an offered htlc output
2619                 check_spends!(node_txn[1], node_txn[0]);
2620
2621                 // Justice transactions are indices 1-2-4
2622                 assert_eq!(node_txn[2].input.len(), 1);
2623                 assert_eq!(node_txn[3].input.len(), 1);
2624                 assert_eq!(node_txn[4].input.len(), 1);
2625
2626                 check_spends!(node_txn[2], revoked_local_txn[0]);
2627                 check_spends!(node_txn[3], revoked_local_txn[0]);
2628                 check_spends!(node_txn[4], revoked_local_txn[0]);
2629
2630                 let mut witness_lens = BTreeSet::new();
2631                 witness_lens.insert(node_txn[2].input[0].witness.last().unwrap().len());
2632                 witness_lens.insert(node_txn[3].input[0].witness.last().unwrap().len());
2633                 witness_lens.insert(node_txn[4].input[0].witness.last().unwrap().len());
2634                 assert_eq!(witness_lens.len(), 3);
2635                 assert_eq!(*witness_lens.iter().skip(0).next().unwrap(), 77); // revoked to_local
2636                 assert_eq!(*witness_lens.iter().skip(1).next().unwrap(), OFFERED_HTLC_SCRIPT_WEIGHT); // revoked offered HTLC
2637                 assert_eq!(*witness_lens.iter().skip(2).next().unwrap(), ACCEPTED_HTLC_SCRIPT_WEIGHT); // revoked received HTLC
2638
2639                 // Finally, mine the penalty transactions and check that we get an HTLC failure after
2640                 // ANTI_REORG_DELAY confirmations.
2641                 mine_transaction(&nodes[1], &node_txn[2]);
2642                 mine_transaction(&nodes[1], &node_txn[3]);
2643                 mine_transaction(&nodes[1], &node_txn[4]);
2644                 connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
2645                 expect_payment_failed!(nodes[1], payment_hash_2, false);
2646         }
2647         get_announce_close_broadcast_events(&nodes, 0, 1);
2648         assert_eq!(nodes[0].node.list_channels().len(), 0);
2649         assert_eq!(nodes[1].node.list_channels().len(), 0);
2650 }
2651
2652 #[test]
2653 fn test_htlc_on_chain_success() {
2654         // Test that in case of a unilateral close onchain, we detect the state of output and pass
2655         // the preimage backward accordingly. So here we test that ChannelManager is
2656         // broadcasting the right event to other nodes in payment path.
2657         // We test with two HTLCs simultaneously as that was not handled correctly in the past.
2658         // A --------------------> B ----------------------> C (preimage)
2659         // First, C should claim the HTLC outputs via HTLC-Success when its own latest local
2660         // commitment transaction was broadcast.
2661         // Then, B should learn the preimage from said transactions, attempting to claim backwards
2662         // towards B.
2663         // B should be able to claim via preimage if A then broadcasts its local tx.
2664         // Finally, when A sees B's latest local commitment transaction it should be able to claim
2665         // the HTLC outputs via the preimage it learned (which, once confirmed should generate a
2666         // PaymentSent event).
2667
2668         let chanmon_cfgs = create_chanmon_cfgs(3);
2669         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
2670         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
2671         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
2672
2673         // Create some initial channels
2674         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2675         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
2676
2677         // Ensure all nodes are at the same height
2678         let node_max_height = nodes.iter().map(|node| node.blocks.lock().unwrap().len()).max().unwrap() as u32;
2679         connect_blocks(&nodes[0], node_max_height - nodes[0].best_block_info().1);
2680         connect_blocks(&nodes[1], node_max_height - nodes[1].best_block_info().1);
2681         connect_blocks(&nodes[2], node_max_height - nodes[2].best_block_info().1);
2682
2683         // Rebalance the network a bit by relaying one payment through all the channels...
2684         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 8000000);
2685         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 8000000);
2686
2687         let (our_payment_preimage, payment_hash_1, _payment_secret) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 3_000_000);
2688         let (our_payment_preimage_2, payment_hash_2, _payment_secret_2) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 3_000_000);
2689
2690         // Broadcast legit commitment tx from C on B's chain
2691         // Broadcast HTLC Success transaction by C on received output from C's commitment tx on B's chain
2692         let commitment_tx = get_local_commitment_txn!(nodes[2], chan_2.2);
2693         assert_eq!(commitment_tx.len(), 1);
2694         check_spends!(commitment_tx[0], chan_2.3);
2695         nodes[2].node.claim_funds(our_payment_preimage);
2696         expect_payment_claimed!(nodes[2], payment_hash_1, 3_000_000);
2697         nodes[2].node.claim_funds(our_payment_preimage_2);
2698         expect_payment_claimed!(nodes[2], payment_hash_2, 3_000_000);
2699         check_added_monitors!(nodes[2], 2);
2700         let updates = get_htlc_update_msgs!(nodes[2], nodes[1].node.get_our_node_id());
2701         assert!(updates.update_add_htlcs.is_empty());
2702         assert!(updates.update_fail_htlcs.is_empty());
2703         assert!(updates.update_fail_malformed_htlcs.is_empty());
2704         assert_eq!(updates.update_fulfill_htlcs.len(), 1);
2705
2706         mine_transaction(&nodes[2], &commitment_tx[0]);
2707         check_closed_broadcast!(nodes[2], true);
2708         check_added_monitors!(nodes[2], 1);
2709         check_closed_event!(nodes[2], 1, ClosureReason::CommitmentTxConfirmed);
2710         let node_txn = nodes[2].tx_broadcaster.txn_broadcasted.lock().unwrap().clone(); // ChannelManager : 3 (commitment tx, 2*htlc-success tx), ChannelMonitor : 2 (2 * HTLC-Success tx)
2711         assert_eq!(node_txn.len(), 5);
2712         assert_eq!(node_txn[0], node_txn[3]);
2713         assert_eq!(node_txn[1], node_txn[4]);
2714         assert_eq!(node_txn[2], commitment_tx[0]);
2715         check_spends!(node_txn[0], commitment_tx[0]);
2716         check_spends!(node_txn[1], commitment_tx[0]);
2717         assert_eq!(node_txn[0].input[0].witness.clone().last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
2718         assert_eq!(node_txn[1].input[0].witness.clone().last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
2719         assert!(node_txn[0].output[0].script_pubkey.is_v0_p2wsh()); // revokeable output
2720         assert!(node_txn[1].output[0].script_pubkey.is_v0_p2wsh()); // revokeable output
2721         assert_eq!(node_txn[0].lock_time.0, 0);
2722         assert_eq!(node_txn[1].lock_time.0, 0);
2723
2724         // Verify that B's ChannelManager is able to extract preimage from HTLC Success tx and pass it backward
2725         let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42};
2726         connect_block(&nodes[1], &Block { header, txdata: node_txn});
2727         connect_blocks(&nodes[1], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
2728         {
2729                 let mut added_monitors = nodes[1].chain_monitor.added_monitors.lock().unwrap();
2730                 assert_eq!(added_monitors.len(), 1);
2731                 assert_eq!(added_monitors[0].0.txid, chan_2.3.txid());
2732                 added_monitors.clear();
2733         }
2734         let forwarded_events = nodes[1].node.get_and_clear_pending_events();
2735         assert_eq!(forwarded_events.len(), 3);
2736         match forwarded_events[0] {
2737                 Event::ChannelClosed { reason: ClosureReason::CommitmentTxConfirmed, .. } => {}
2738                 _ => panic!("Unexpected event"),
2739         }
2740         let chan_id = Some(chan_1.2);
2741         match forwarded_events[1] {
2742                 Event::PaymentForwarded { fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id } => {
2743                         assert_eq!(fee_earned_msat, Some(1000));
2744                         assert_eq!(prev_channel_id, chan_id);
2745                         assert_eq!(claim_from_onchain_tx, true);
2746                         assert_eq!(next_channel_id, Some(chan_2.2));
2747                 },
2748                 _ => panic!()
2749         }
2750         match forwarded_events[2] {
2751                 Event::PaymentForwarded { fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id } => {
2752                         assert_eq!(fee_earned_msat, Some(1000));
2753                         assert_eq!(prev_channel_id, chan_id);
2754                         assert_eq!(claim_from_onchain_tx, true);
2755                         assert_eq!(next_channel_id, Some(chan_2.2));
2756                 },
2757                 _ => panic!()
2758         }
2759         let events = nodes[1].node.get_and_clear_pending_msg_events();
2760         {
2761                 let mut added_monitors = nodes[1].chain_monitor.added_monitors.lock().unwrap();
2762                 assert_eq!(added_monitors.len(), 2);
2763                 assert_eq!(added_monitors[0].0.txid, chan_1.3.txid());
2764                 assert_eq!(added_monitors[1].0.txid, chan_1.3.txid());
2765                 added_monitors.clear();
2766         }
2767         assert_eq!(events.len(), 3);
2768         match events[0] {
2769                 MessageSendEvent::BroadcastChannelUpdate { .. } => {},
2770                 _ => panic!("Unexpected event"),
2771         }
2772         match events[1] {
2773                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { .. }, node_id: _ } => {},
2774                 _ => panic!("Unexpected event"),
2775         }
2776
2777         match events[2] {
2778                 MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fail_htlcs, ref update_fulfill_htlcs, ref update_fail_malformed_htlcs, .. } } => {
2779                         assert!(update_add_htlcs.is_empty());
2780                         assert!(update_fail_htlcs.is_empty());
2781                         assert_eq!(update_fulfill_htlcs.len(), 1);
2782                         assert!(update_fail_malformed_htlcs.is_empty());
2783                         assert_eq!(nodes[0].node.get_our_node_id(), *node_id);
2784                 },
2785                 _ => panic!("Unexpected event"),
2786         };
2787         macro_rules! check_tx_local_broadcast {
2788                 ($node: expr, $htlc_offered: expr, $commitment_tx: expr, $chan_tx: expr) => { {
2789                         let mut node_txn = $node.tx_broadcaster.txn_broadcasted.lock().unwrap();
2790                         assert_eq!(node_txn.len(), 3);
2791                         // Node[1]: ChannelManager: 3 (commitment tx, 2*HTLC-Timeout tx), ChannelMonitor: 2 (timeout tx)
2792                         // Node[0]: ChannelManager: 3 (commtiemtn tx, 2*HTLC-Timeout tx), ChannelMonitor: 2 HTLC-timeout
2793                         check_spends!(node_txn[1], $commitment_tx);
2794                         check_spends!(node_txn[2], $commitment_tx);
2795                         assert_ne!(node_txn[1].lock_time.0, 0);
2796                         assert_ne!(node_txn[2].lock_time.0, 0);
2797                         if $htlc_offered {
2798                                 assert_eq!(node_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
2799                                 assert_eq!(node_txn[2].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
2800                                 assert!(node_txn[1].output[0].script_pubkey.is_v0_p2wsh()); // revokeable output
2801                                 assert!(node_txn[2].output[0].script_pubkey.is_v0_p2wsh()); // revokeable output
2802                         } else {
2803                                 assert_eq!(node_txn[1].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
2804                                 assert_eq!(node_txn[2].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
2805                                 assert!(node_txn[1].output[0].script_pubkey.is_v0_p2wpkh()); // direct payment
2806                                 assert!(node_txn[2].output[0].script_pubkey.is_v0_p2wpkh()); // direct payment
2807                         }
2808                         check_spends!(node_txn[0], $chan_tx);
2809                         assert_eq!(node_txn[0].input[0].witness.last().unwrap().len(), 71);
2810                         node_txn.clear();
2811                 } }
2812         }
2813         // nodes[1] now broadcasts its own local state as a fallback, suggesting an alternate
2814         // commitment transaction with a corresponding HTLC-Timeout transactions, as well as a
2815         // timeout-claim of the output that nodes[2] just claimed via success.
2816         check_tx_local_broadcast!(nodes[1], false, commitment_tx[0], chan_2.3);
2817
2818         // Broadcast legit commitment tx from A on B's chain
2819         // Broadcast preimage tx by B on offered output from A commitment tx  on A's chain
2820         let node_a_commitment_tx = get_local_commitment_txn!(nodes[0], chan_1.2);
2821         check_spends!(node_a_commitment_tx[0], chan_1.3);
2822         mine_transaction(&nodes[1], &node_a_commitment_tx[0]);
2823         check_closed_broadcast!(nodes[1], true);
2824         check_added_monitors!(nodes[1], 1);
2825         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
2826         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
2827         assert_eq!(node_txn.len(), 6); // ChannelManager : 3 (commitment tx + HTLC-Sucess * 2), ChannelMonitor : 3 (HTLC-Success, 2* RBF bumps of above HTLC txn)
2828         let commitment_spend =
2829                 if node_txn[0].input[0].previous_output.txid == node_a_commitment_tx[0].txid() {
2830                         check_spends!(node_txn[1], commitment_tx[0]);
2831                         check_spends!(node_txn[2], commitment_tx[0]);
2832                         assert_ne!(node_txn[1].input[0].previous_output.vout, node_txn[2].input[0].previous_output.vout);
2833                         &node_txn[0]
2834                 } else {
2835                         check_spends!(node_txn[0], commitment_tx[0]);
2836                         check_spends!(node_txn[1], commitment_tx[0]);
2837                         assert_ne!(node_txn[0].input[0].previous_output.vout, node_txn[1].input[0].previous_output.vout);
2838                         &node_txn[2]
2839                 };
2840
2841         check_spends!(commitment_spend, node_a_commitment_tx[0]);
2842         assert_eq!(commitment_spend.input.len(), 2);
2843         assert_eq!(commitment_spend.input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
2844         assert_eq!(commitment_spend.input[1].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
2845         assert_eq!(commitment_spend.lock_time.0, 0);
2846         assert!(commitment_spend.output[0].script_pubkey.is_v0_p2wpkh()); // direct payment
2847         check_spends!(node_txn[3], chan_1.3);
2848         assert_eq!(node_txn[3].input[0].witness.clone().last().unwrap().len(), 71);
2849         check_spends!(node_txn[4], node_txn[3]);
2850         check_spends!(node_txn[5], node_txn[3]);
2851         // We don't bother to check that B can claim the HTLC output on its commitment tx here as
2852         // we already checked the same situation with A.
2853
2854         // Verify that A's ChannelManager is able to extract preimage from preimage tx and generate PaymentSent
2855         let mut header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42};
2856         connect_block(&nodes[0], &Block { header, txdata: vec![node_a_commitment_tx[0].clone(), commitment_spend.clone()] });
2857         connect_blocks(&nodes[0], TEST_FINAL_CLTV + MIN_CLTV_EXPIRY_DELTA as u32 - 1); // Confirm blocks until the HTLC expires
2858         check_closed_broadcast!(nodes[0], true);
2859         check_added_monitors!(nodes[0], 1);
2860         let events = nodes[0].node.get_and_clear_pending_events();
2861         assert_eq!(events.len(), 5);
2862         let mut first_claimed = false;
2863         for event in events {
2864                 match event {
2865                         Event::PaymentSent { payment_preimage, payment_hash, .. } => {
2866                                 if payment_preimage == our_payment_preimage && payment_hash == payment_hash_1 {
2867                                         assert!(!first_claimed);
2868                                         first_claimed = true;
2869                                 } else {
2870                                         assert_eq!(payment_preimage, our_payment_preimage_2);
2871                                         assert_eq!(payment_hash, payment_hash_2);
2872                                 }
2873                         },
2874                         Event::PaymentPathSuccessful { .. } => {},
2875                         Event::ChannelClosed { reason: ClosureReason::CommitmentTxConfirmed, .. } => {},
2876                         _ => panic!("Unexpected event"),
2877                 }
2878         }
2879         check_tx_local_broadcast!(nodes[0], true, node_a_commitment_tx[0], chan_1.3);
2880 }
2881
2882 fn do_test_htlc_on_chain_timeout(connect_style: ConnectStyle) {
2883         // Test that in case of a unilateral close onchain, we detect the state of output and
2884         // timeout the HTLC backward accordingly. So here we test that ChannelManager is
2885         // broadcasting the right event to other nodes in payment path.
2886         // A ------------------> B ----------------------> C (timeout)
2887         //    B's commitment tx                 C's commitment tx
2888         //            \                                  \
2889         //         B's HTLC timeout tx               B's timeout tx
2890
2891         let chanmon_cfgs = create_chanmon_cfgs(3);
2892         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
2893         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
2894         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
2895         *nodes[0].connect_style.borrow_mut() = connect_style;
2896         *nodes[1].connect_style.borrow_mut() = connect_style;
2897         *nodes[2].connect_style.borrow_mut() = connect_style;
2898
2899         // Create some intial channels
2900         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
2901         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
2902
2903         // Rebalance the network a bit by relaying one payment thorugh all the channels...
2904         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 8000000);
2905         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 8000000);
2906
2907         let (_payment_preimage, payment_hash, _payment_secret) = route_payment(&nodes[0], &vec!(&nodes[1], &nodes[2]), 3000000);
2908
2909         // Broadcast legit commitment tx from C on B's chain
2910         let commitment_tx = get_local_commitment_txn!(nodes[2], chan_2.2);
2911         check_spends!(commitment_tx[0], chan_2.3);
2912         nodes[2].node.fail_htlc_backwards(&payment_hash);
2913         check_added_monitors!(nodes[2], 0);
2914         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[2], vec![HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }]);
2915         check_added_monitors!(nodes[2], 1);
2916
2917         let events = nodes[2].node.get_and_clear_pending_msg_events();
2918         assert_eq!(events.len(), 1);
2919         match events[0] {
2920                 MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, .. } } => {
2921                         assert!(update_add_htlcs.is_empty());
2922                         assert!(!update_fail_htlcs.is_empty());
2923                         assert!(update_fulfill_htlcs.is_empty());
2924                         assert!(update_fail_malformed_htlcs.is_empty());
2925                         assert_eq!(nodes[1].node.get_our_node_id(), *node_id);
2926                 },
2927                 _ => panic!("Unexpected event"),
2928         };
2929         mine_transaction(&nodes[2], &commitment_tx[0]);
2930         check_closed_broadcast!(nodes[2], true);
2931         check_added_monitors!(nodes[2], 1);
2932         check_closed_event!(nodes[2], 1, ClosureReason::CommitmentTxConfirmed);
2933         let node_txn = nodes[2].tx_broadcaster.txn_broadcasted.lock().unwrap().clone(); // ChannelManager : 1 (commitment tx)
2934         assert_eq!(node_txn.len(), 1);
2935         check_spends!(node_txn[0], chan_2.3);
2936         assert_eq!(node_txn[0].input[0].witness.last().unwrap().len(), 71);
2937
2938         // Broadcast timeout transaction by B on received output from C's commitment tx on B's chain
2939         // Verify that B's ChannelManager is able to detect that HTLC is timeout by its own tx and react backward in consequence
2940         connect_blocks(&nodes[1], 200 - nodes[2].best_block_info().1);
2941         mine_transaction(&nodes[1], &commitment_tx[0]);
2942         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
2943         let timeout_tx;
2944         {
2945                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
2946                 assert_eq!(node_txn.len(), 5); // ChannelManager : 2 (commitment tx, HTLC-Timeout tx), ChannelMonitor : 2 (local commitment tx + HTLC-timeout), 1 timeout tx
2947                 assert_eq!(node_txn[0], node_txn[3]);
2948                 assert_eq!(node_txn[1], node_txn[4]);
2949
2950                 check_spends!(node_txn[2], commitment_tx[0]);
2951                 assert_eq!(node_txn[2].clone().input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
2952
2953                 check_spends!(node_txn[0], chan_2.3);
2954                 check_spends!(node_txn[1], node_txn[0]);
2955                 assert_eq!(node_txn[0].clone().input[0].witness.last().unwrap().len(), 71);
2956                 assert_eq!(node_txn[1].clone().input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
2957
2958                 timeout_tx = node_txn[2].clone();
2959                 node_txn.clear();
2960         }
2961
2962         mine_transaction(&nodes[1], &timeout_tx);
2963         check_added_monitors!(nodes[1], 1);
2964         check_closed_broadcast!(nodes[1], true);
2965         {
2966                 // B will rebroadcast a fee-bumped timeout transaction here.
2967                 let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
2968                 assert_eq!(node_txn.len(), 1);
2969                 check_spends!(node_txn[0], commitment_tx[0]);
2970         }
2971
2972         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
2973         {
2974                 // B may rebroadcast its own holder commitment transaction here, as a safeguard against
2975                 // some incredibly unlikely partial-eclipse-attack scenarios. That said, because the
2976                 // original commitment_tx[0] (also spending chan_2.3) has reached ANTI_REORG_DELAY B really
2977                 // shouldn't broadcast anything here, and in some connect style scenarios we do not.
2978                 let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
2979                 if node_txn.len() == 1 {
2980                         check_spends!(node_txn[0], chan_2.3);
2981                 } else {
2982                         assert_eq!(node_txn.len(), 0);
2983                 }
2984         }
2985
2986         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::NextHopChannel { node_id: Some(nodes[2].node.get_our_node_id()), channel_id: chan_2.2 }]);
2987         check_added_monitors!(nodes[1], 1);
2988         let events = nodes[1].node.get_and_clear_pending_msg_events();
2989         assert_eq!(events.len(), 1);
2990         match events[0] {
2991                 MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fail_htlcs, ref update_fulfill_htlcs, ref update_fail_malformed_htlcs, .. } } => {
2992                         assert!(update_add_htlcs.is_empty());
2993                         assert!(!update_fail_htlcs.is_empty());
2994                         assert!(update_fulfill_htlcs.is_empty());
2995                         assert!(update_fail_malformed_htlcs.is_empty());
2996                         assert_eq!(nodes[0].node.get_our_node_id(), *node_id);
2997                 },
2998                 _ => panic!("Unexpected event"),
2999         };
3000
3001         // Broadcast legit commitment tx from B on A's chain
3002         let commitment_tx = get_local_commitment_txn!(nodes[1], chan_1.2);
3003         check_spends!(commitment_tx[0], chan_1.3);
3004
3005         mine_transaction(&nodes[0], &commitment_tx[0]);
3006         connect_blocks(&nodes[0], TEST_FINAL_CLTV + MIN_CLTV_EXPIRY_DELTA as u32 - 1); // Confirm blocks until the HTLC expires
3007
3008         check_closed_broadcast!(nodes[0], true);
3009         check_added_monitors!(nodes[0], 1);
3010         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
3011         let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().clone(); // ChannelManager : 1 commitment tx, ChannelMonitor : 1 timeout tx
3012         assert_eq!(node_txn.len(), 2);
3013         check_spends!(node_txn[0], chan_1.3);
3014         assert_eq!(node_txn[0].clone().input[0].witness.last().unwrap().len(), 71);
3015         check_spends!(node_txn[1], commitment_tx[0]);
3016         assert_eq!(node_txn[1].clone().input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
3017 }
3018
3019 #[test]
3020 fn test_htlc_on_chain_timeout() {
3021         do_test_htlc_on_chain_timeout(ConnectStyle::BestBlockFirstSkippingBlocks);
3022         do_test_htlc_on_chain_timeout(ConnectStyle::TransactionsFirstSkippingBlocks);
3023         do_test_htlc_on_chain_timeout(ConnectStyle::FullBlockViaListen);
3024 }
3025
3026 #[test]
3027 fn test_simple_commitment_revoked_fail_backward() {
3028         // Test that in case of a revoked commitment tx, we detect the resolution of output by justice tx
3029         // and fail backward accordingly.
3030
3031         let chanmon_cfgs = create_chanmon_cfgs(3);
3032         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
3033         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
3034         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
3035
3036         // Create some initial channels
3037         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
3038         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
3039
3040         let (payment_preimage, _payment_hash, _payment_secret) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 3000000);
3041         // Get the will-be-revoked local txn from nodes[2]
3042         let revoked_local_txn = get_local_commitment_txn!(nodes[2], chan_2.2);
3043         // Revoke the old state
3044         claim_payment(&nodes[0], &[&nodes[1], &nodes[2]], payment_preimage);
3045
3046         let (_, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 3000000);
3047
3048         mine_transaction(&nodes[1], &revoked_local_txn[0]);
3049         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
3050         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
3051         check_added_monitors!(nodes[1], 1);
3052         check_closed_broadcast!(nodes[1], true);
3053
3054         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::NextHopChannel { node_id: Some(nodes[2].node.get_our_node_id()), channel_id: chan_2.2 }]);
3055         check_added_monitors!(nodes[1], 1);
3056         let events = nodes[1].node.get_and_clear_pending_msg_events();
3057         assert_eq!(events.len(), 1);
3058         match events[0] {
3059                 MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fail_htlcs, ref update_fulfill_htlcs, ref update_fail_malformed_htlcs, ref commitment_signed, .. } } => {
3060                         assert!(update_add_htlcs.is_empty());
3061                         assert_eq!(update_fail_htlcs.len(), 1);
3062                         assert!(update_fulfill_htlcs.is_empty());
3063                         assert!(update_fail_malformed_htlcs.is_empty());
3064                         assert_eq!(nodes[0].node.get_our_node_id(), *node_id);
3065
3066                         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlcs[0]);
3067                         commitment_signed_dance!(nodes[0], nodes[1], commitment_signed, false, true);
3068                         expect_payment_failed_with_update!(nodes[0], payment_hash, false, chan_2.0.contents.short_channel_id, true);
3069                 },
3070                 _ => panic!("Unexpected event"),
3071         }
3072 }
3073
3074 fn do_test_commitment_revoked_fail_backward_exhaustive(deliver_bs_raa: bool, use_dust: bool, no_to_remote: bool) {
3075         // Test that if our counterparty broadcasts a revoked commitment transaction we fail all
3076         // pending HTLCs on that channel backwards even if the HTLCs aren't present in our latest
3077         // commitment transaction anymore.
3078         // To do this, we have the peer which will broadcast a revoked commitment transaction send
3079         // a number of update_fail/commitment_signed updates without ever sending the RAA in
3080         // response to our commitment_signed. This is somewhat misbehavior-y, though not
3081         // technically disallowed and we should probably handle it reasonably.
3082         // Note that this is pretty exhaustive as an outbound HTLC which we haven't yet
3083         // failed/fulfilled backwards must be in at least one of the latest two remote commitment
3084         // transactions:
3085         // * Once we move it out of our holding cell/add it, we will immediately include it in a
3086         //   commitment_signed (implying it will be in the latest remote commitment transaction).
3087         // * Once they remove it, we will send a (the first) commitment_signed without the HTLC,
3088         //   and once they revoke the previous commitment transaction (allowing us to send a new
3089         //   commitment_signed) we will be free to fail/fulfill the HTLC backwards.
3090         let chanmon_cfgs = create_chanmon_cfgs(3);
3091         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
3092         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
3093         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
3094
3095         // Create some initial channels
3096         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
3097         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
3098
3099         let (payment_preimage, _payment_hash, _payment_secret) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], if no_to_remote { 10_000 } else { 3_000_000 });
3100         // Get the will-be-revoked local txn from nodes[2]
3101         let revoked_local_txn = get_local_commitment_txn!(nodes[2], chan_2.2);
3102         assert_eq!(revoked_local_txn[0].output.len(), if no_to_remote { 1 } else { 2 });
3103         // Revoke the old state
3104         claim_payment(&nodes[0], &[&nodes[1], &nodes[2]], payment_preimage);
3105
3106         let value = if use_dust {
3107                 // The dust limit applied to HTLC outputs considers the fee of the HTLC transaction as
3108                 // well, so HTLCs at exactly the dust limit will not be included in commitment txn.
3109                 nodes[2].node.channel_state.lock().unwrap().by_id.get(&chan_2.2).unwrap().holder_dust_limit_satoshis * 1000
3110         } else { 3000000 };
3111
3112         let (_, first_payment_hash, _) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], value);
3113         let (_, second_payment_hash, _) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], value);
3114         let (_, third_payment_hash, _) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], value);
3115
3116         nodes[2].node.fail_htlc_backwards(&first_payment_hash);
3117         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[2], vec![HTLCDestination::FailedPayment { payment_hash: first_payment_hash }]);
3118         check_added_monitors!(nodes[2], 1);
3119         let updates = get_htlc_update_msgs!(nodes[2], nodes[1].node.get_our_node_id());
3120         assert!(updates.update_add_htlcs.is_empty());
3121         assert!(updates.update_fulfill_htlcs.is_empty());
3122         assert!(updates.update_fail_malformed_htlcs.is_empty());
3123         assert_eq!(updates.update_fail_htlcs.len(), 1);
3124         assert!(updates.update_fee.is_none());
3125         nodes[1].node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
3126         let bs_raa = commitment_signed_dance!(nodes[1], nodes[2], updates.commitment_signed, false, true, false, true);
3127         // Drop the last RAA from 3 -> 2
3128
3129         nodes[2].node.fail_htlc_backwards(&second_payment_hash);
3130         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[2], vec![HTLCDestination::FailedPayment { payment_hash: second_payment_hash }]);
3131         check_added_monitors!(nodes[2], 1);
3132         let updates = get_htlc_update_msgs!(nodes[2], nodes[1].node.get_our_node_id());
3133         assert!(updates.update_add_htlcs.is_empty());
3134         assert!(updates.update_fulfill_htlcs.is_empty());
3135         assert!(updates.update_fail_malformed_htlcs.is_empty());
3136         assert_eq!(updates.update_fail_htlcs.len(), 1);
3137         assert!(updates.update_fee.is_none());
3138         nodes[1].node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
3139         nodes[1].node.handle_commitment_signed(&nodes[2].node.get_our_node_id(), &updates.commitment_signed);
3140         check_added_monitors!(nodes[1], 1);
3141         // Note that nodes[1] is in AwaitingRAA, so won't send a CS
3142         let as_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[2].node.get_our_node_id());
3143         nodes[2].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &as_raa);
3144         check_added_monitors!(nodes[2], 1);
3145
3146         nodes[2].node.fail_htlc_backwards(&third_payment_hash);
3147         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[2], vec![HTLCDestination::FailedPayment { payment_hash: third_payment_hash }]);
3148         check_added_monitors!(nodes[2], 1);
3149         let updates = get_htlc_update_msgs!(nodes[2], nodes[1].node.get_our_node_id());
3150         assert!(updates.update_add_htlcs.is_empty());
3151         assert!(updates.update_fulfill_htlcs.is_empty());
3152         assert!(updates.update_fail_malformed_htlcs.is_empty());
3153         assert_eq!(updates.update_fail_htlcs.len(), 1);
3154         assert!(updates.update_fee.is_none());
3155         nodes[1].node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
3156         // At this point first_payment_hash has dropped out of the latest two commitment
3157         // transactions that nodes[1] is tracking...
3158         nodes[1].node.handle_commitment_signed(&nodes[2].node.get_our_node_id(), &updates.commitment_signed);
3159         check_added_monitors!(nodes[1], 1);
3160         // Note that nodes[1] is (still) in AwaitingRAA, so won't send a CS
3161         let as_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[2].node.get_our_node_id());
3162         nodes[2].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &as_raa);
3163         check_added_monitors!(nodes[2], 1);
3164
3165         // Add a fourth HTLC, this one will get sequestered away in nodes[1]'s holding cell waiting
3166         // on nodes[2]'s RAA.
3167         let (route, fourth_payment_hash, _, fourth_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[2], 1000000);
3168         nodes[1].node.send_payment(&route, fourth_payment_hash, &Some(fourth_payment_secret)).unwrap();
3169         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
3170         assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
3171         check_added_monitors!(nodes[1], 0);
3172
3173         if deliver_bs_raa {
3174                 nodes[1].node.handle_revoke_and_ack(&nodes[2].node.get_our_node_id(), &bs_raa);
3175                 // One monitor for the new revocation preimage, no second on as we won't generate a new
3176                 // commitment transaction for nodes[0] until process_pending_htlc_forwards().
3177                 check_added_monitors!(nodes[1], 1);
3178                 let events = nodes[1].node.get_and_clear_pending_events();
3179                 assert_eq!(events.len(), 2);
3180                 match events[0] {
3181                         Event::PendingHTLCsForwardable { .. } => { },
3182                         _ => panic!("Unexpected event"),
3183                 };
3184                 match events[1] {
3185                         Event::HTLCHandlingFailed { .. } => { },
3186                         _ => panic!("Unexpected event"),
3187                 }
3188                 // Deliberately don't process the pending fail-back so they all fail back at once after
3189                 // block connection just like the !deliver_bs_raa case
3190         }
3191
3192         let mut failed_htlcs = HashSet::new();
3193         assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
3194
3195         mine_transaction(&nodes[1], &revoked_local_txn[0]);
3196         check_added_monitors!(nodes[1], 1);
3197         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
3198         assert!(ANTI_REORG_DELAY > PAYMENT_EXPIRY_BLOCKS); // We assume payments will also expire
3199
3200         let events = nodes[1].node.get_and_clear_pending_events();
3201         assert_eq!(events.len(), if deliver_bs_raa { 2 + (nodes.len() - 1) } else { 4 + nodes.len() });
3202         match events[0] {
3203                 Event::ChannelClosed { reason: ClosureReason::CommitmentTxConfirmed, .. } => { },
3204                 _ => panic!("Unexepected event"),
3205         }
3206         match events[1] {
3207                 Event::PaymentPathFailed { ref payment_hash, .. } => {
3208                         assert_eq!(*payment_hash, fourth_payment_hash);
3209                 },
3210                 _ => panic!("Unexpected event"),
3211         }
3212         if !deliver_bs_raa {
3213                 match events[2] {
3214                         Event::PaymentFailed { ref payment_hash, .. } => {
3215                                 assert_eq!(*payment_hash, fourth_payment_hash);
3216                         },
3217                         _ => panic!("Unexpected event"),
3218                 }
3219                 match events[3] {
3220                         Event::PendingHTLCsForwardable { .. } => { },
3221                         _ => panic!("Unexpected event"),
3222                 };
3223         }
3224         nodes[1].node.process_pending_htlc_forwards();
3225         check_added_monitors!(nodes[1], 1);
3226
3227         let events = nodes[1].node.get_and_clear_pending_msg_events();
3228         assert_eq!(events.len(), if deliver_bs_raa { 4 } else { 3 });
3229         match events[if deliver_bs_raa { 1 } else { 0 }] {
3230                 MessageSendEvent::BroadcastChannelUpdate { msg: msgs::ChannelUpdate { .. } } => {},
3231                 _ => panic!("Unexpected event"),
3232         }
3233         match events[if deliver_bs_raa { 2 } else { 1 }] {
3234                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage { channel_id, ref data } }, node_id: _ } => {
3235                         assert_eq!(channel_id, chan_2.2);
3236                         assert_eq!(data.as_str(), "Channel closed because commitment or closing transaction was confirmed on chain.");
3237                 },
3238                 _ => panic!("Unexpected event"),
3239         }
3240         if deliver_bs_raa {
3241                 match events[0] {
3242                         MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fail_htlcs, ref update_fulfill_htlcs, ref update_fail_malformed_htlcs, .. } } => {
3243                                 assert_eq!(nodes[2].node.get_our_node_id(), *node_id);
3244                                 assert_eq!(update_add_htlcs.len(), 1);
3245                                 assert!(update_fulfill_htlcs.is_empty());
3246                                 assert!(update_fail_htlcs.is_empty());
3247                                 assert!(update_fail_malformed_htlcs.is_empty());
3248                         },
3249                         _ => panic!("Unexpected event"),
3250                 }
3251         }
3252         match events[if deliver_bs_raa { 3 } else { 2 }] {
3253                 MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fail_htlcs, ref update_fulfill_htlcs, ref update_fail_malformed_htlcs, ref commitment_signed, .. } } => {
3254                         assert!(update_add_htlcs.is_empty());
3255                         assert_eq!(update_fail_htlcs.len(), 3);
3256                         assert!(update_fulfill_htlcs.is_empty());
3257                         assert!(update_fail_malformed_htlcs.is_empty());
3258                         assert_eq!(nodes[0].node.get_our_node_id(), *node_id);
3259
3260                         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlcs[0]);
3261                         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlcs[1]);
3262                         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlcs[2]);
3263
3264                         commitment_signed_dance!(nodes[0], nodes[1], commitment_signed, false, true);
3265
3266                         let events = nodes[0].node.get_and_clear_pending_events();
3267                         assert_eq!(events.len(), 3);
3268                         match events[0] {
3269                                 Event::PaymentPathFailed { ref payment_hash, ref network_update, .. } => {
3270                                         assert!(failed_htlcs.insert(payment_hash.0));
3271                                         // If we delivered B's RAA we got an unknown preimage error, not something
3272                                         // that we should update our routing table for.
3273                                         if !deliver_bs_raa {
3274                                                 assert!(network_update.is_some());
3275                                         }
3276                                 },
3277                                 _ => panic!("Unexpected event"),
3278                         }
3279                         match events[1] {
3280                                 Event::PaymentPathFailed { ref payment_hash, ref network_update, .. } => {
3281                                         assert!(failed_htlcs.insert(payment_hash.0));
3282                                         assert!(network_update.is_some());
3283                                 },
3284                                 _ => panic!("Unexpected event"),
3285                         }
3286                         match events[2] {
3287                                 Event::PaymentPathFailed { ref payment_hash, ref network_update, .. } => {
3288                                         assert!(failed_htlcs.insert(payment_hash.0));
3289                                         assert!(network_update.is_some());
3290                                 },
3291                                 _ => panic!("Unexpected event"),
3292                         }
3293                 },
3294                 _ => panic!("Unexpected event"),
3295         }
3296
3297         assert!(failed_htlcs.contains(&first_payment_hash.0));
3298         assert!(failed_htlcs.contains(&second_payment_hash.0));
3299         assert!(failed_htlcs.contains(&third_payment_hash.0));
3300 }
3301
3302 #[test]
3303 fn test_commitment_revoked_fail_backward_exhaustive_a() {
3304         do_test_commitment_revoked_fail_backward_exhaustive(false, true, false);
3305         do_test_commitment_revoked_fail_backward_exhaustive(true, true, false);
3306         do_test_commitment_revoked_fail_backward_exhaustive(false, false, false);
3307         do_test_commitment_revoked_fail_backward_exhaustive(true, false, false);
3308 }
3309
3310 #[test]
3311 fn test_commitment_revoked_fail_backward_exhaustive_b() {
3312         do_test_commitment_revoked_fail_backward_exhaustive(false, true, true);
3313         do_test_commitment_revoked_fail_backward_exhaustive(true, true, true);
3314         do_test_commitment_revoked_fail_backward_exhaustive(false, false, true);
3315         do_test_commitment_revoked_fail_backward_exhaustive(true, false, true);
3316 }
3317
3318 #[test]
3319 fn fail_backward_pending_htlc_upon_channel_failure() {
3320         let chanmon_cfgs = create_chanmon_cfgs(2);
3321         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
3322         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
3323         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
3324         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1_000_000, 500_000_000, InitFeatures::known(), InitFeatures::known());
3325
3326         // Alice -> Bob: Route a payment but without Bob sending revoke_and_ack.
3327         {
3328                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 50_000);
3329                 nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
3330                 check_added_monitors!(nodes[0], 1);
3331
3332                 let payment_event = {
3333                         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
3334                         assert_eq!(events.len(), 1);
3335                         SendEvent::from_event(events.remove(0))
3336                 };
3337                 assert_eq!(payment_event.node_id, nodes[1].node.get_our_node_id());
3338                 assert_eq!(payment_event.msgs.len(), 1);
3339         }
3340
3341         // Alice -> Bob: Route another payment but now Alice waits for Bob's earlier revoke_and_ack.
3342         let (route, failed_payment_hash, _, failed_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 50_000);
3343         {
3344                 nodes[0].node.send_payment(&route, failed_payment_hash, &Some(failed_payment_secret)).unwrap();
3345                 check_added_monitors!(nodes[0], 0);
3346
3347                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
3348         }
3349
3350         // Alice <- Bob: Send a malformed update_add_htlc so Alice fails the channel.
3351         {
3352                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 50_000);
3353
3354                 let secp_ctx = Secp256k1::new();
3355                 let session_priv = SecretKey::from_slice(&[42; 32]).unwrap();
3356                 let current_height = nodes[1].node.best_block.read().unwrap().height() + 1;
3357                 let (onion_payloads, _amount_msat, cltv_expiry) = onion_utils::build_onion_payloads(&route.paths[0], 50_000, &Some(payment_secret), current_height, &None).unwrap();
3358                 let onion_keys = onion_utils::construct_onion_keys(&secp_ctx, &route.paths[0], &session_priv).unwrap();
3359                 let onion_routing_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, [0; 32], &payment_hash);
3360
3361                 // Send a 0-msat update_add_htlc to fail the channel.
3362                 let update_add_htlc = msgs::UpdateAddHTLC {
3363                         channel_id: chan.2,
3364                         htlc_id: 0,
3365                         amount_msat: 0,
3366                         payment_hash,
3367                         cltv_expiry,
3368                         onion_routing_packet,
3369                 };
3370                 nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &update_add_htlc);
3371         }
3372         let events = nodes[0].node.get_and_clear_pending_events();
3373         assert_eq!(events.len(), 2);
3374         // Check that Alice fails backward the pending HTLC from the second payment.
3375         match events[0] {
3376                 Event::PaymentPathFailed { payment_hash, .. } => {
3377                         assert_eq!(payment_hash, failed_payment_hash);
3378                 },
3379                 _ => panic!("Unexpected event"),
3380         }
3381         match events[1] {
3382                 Event::ChannelClosed { reason: ClosureReason::ProcessingError { ref err }, .. } => {
3383                         assert_eq!(err, "Remote side tried to send a 0-msat HTLC");
3384                 },
3385                 _ => panic!("Unexpected event {:?}", events[1]),
3386         }
3387         check_closed_broadcast!(nodes[0], true);
3388         check_added_monitors!(nodes[0], 1);
3389 }
3390
3391 #[test]
3392 fn test_htlc_ignore_latest_remote_commitment() {
3393         // Test that HTLC transactions spending the latest remote commitment transaction are simply
3394         // ignored if we cannot claim them. This originally tickled an invalid unwrap().
3395         let chanmon_cfgs = create_chanmon_cfgs(2);
3396         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
3397         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
3398         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
3399         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
3400
3401         route_payment(&nodes[0], &[&nodes[1]], 10000000);
3402         nodes[0].node.force_close_broadcasting_latest_txn(&nodes[0].node.list_channels()[0].channel_id, &nodes[1].node.get_our_node_id()).unwrap();
3403         connect_blocks(&nodes[0], TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS + 1);
3404         check_closed_broadcast!(nodes[0], true);
3405         check_added_monitors!(nodes[0], 1);
3406         check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed);
3407
3408         let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
3409         assert_eq!(node_txn.len(), 3);
3410         assert_eq!(node_txn[0], node_txn[1]);
3411
3412         let mut header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
3413         connect_block(&nodes[1], &Block { header, txdata: vec![node_txn[0].clone(), node_txn[1].clone()]});
3414         check_closed_broadcast!(nodes[1], true);
3415         check_added_monitors!(nodes[1], 1);
3416         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
3417
3418         // Duplicate the connect_block call since this may happen due to other listeners
3419         // registering new transactions
3420         header.prev_blockhash = header.block_hash();
3421         connect_block(&nodes[1], &Block { header, txdata: vec![node_txn[0].clone(), node_txn[2].clone()]});
3422 }
3423
3424 #[test]
3425 fn test_force_close_fail_back() {
3426         // Check which HTLCs are failed-backwards on channel force-closure
3427         let chanmon_cfgs = create_chanmon_cfgs(3);
3428         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
3429         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
3430         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
3431         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
3432         create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
3433
3434         let (route, our_payment_hash, our_payment_preimage, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 1000000);
3435
3436         let mut payment_event = {
3437                 nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
3438                 check_added_monitors!(nodes[0], 1);
3439
3440                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
3441                 assert_eq!(events.len(), 1);
3442                 SendEvent::from_event(events.remove(0))
3443         };
3444
3445         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
3446         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
3447
3448         expect_pending_htlcs_forwardable!(nodes[1]);
3449
3450         let mut events_2 = nodes[1].node.get_and_clear_pending_msg_events();
3451         assert_eq!(events_2.len(), 1);
3452         payment_event = SendEvent::from_event(events_2.remove(0));
3453         assert_eq!(payment_event.msgs.len(), 1);
3454
3455         check_added_monitors!(nodes[1], 1);
3456         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
3457         nodes[2].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &payment_event.commitment_msg);
3458         check_added_monitors!(nodes[2], 1);
3459         let (_, _) = get_revoke_commit_msgs!(nodes[2], nodes[1].node.get_our_node_id());
3460
3461         // nodes[2] now has the latest commitment transaction, but hasn't revoked its previous
3462         // state or updated nodes[1]' state. Now force-close and broadcast that commitment/HTLC
3463         // transaction and ensure nodes[1] doesn't fail-backwards (this was originally a bug!).
3464
3465         nodes[2].node.force_close_broadcasting_latest_txn(&payment_event.commitment_msg.channel_id, &nodes[1].node.get_our_node_id()).unwrap();
3466         check_closed_broadcast!(nodes[2], true);
3467         check_added_monitors!(nodes[2], 1);
3468         check_closed_event!(nodes[2], 1, ClosureReason::HolderForceClosed);
3469         let tx = {
3470                 let mut node_txn = nodes[2].tx_broadcaster.txn_broadcasted.lock().unwrap();
3471                 // Note that we don't bother broadcasting the HTLC-Success transaction here as we don't
3472                 // have a use for it unless nodes[2] learns the preimage somehow, the funds will go
3473                 // back to nodes[1] upon timeout otherwise.
3474                 assert_eq!(node_txn.len(), 1);
3475                 node_txn.remove(0)
3476         };
3477
3478         mine_transaction(&nodes[1], &tx);
3479
3480         // Note no UpdateHTLCs event here from nodes[1] to nodes[0]!
3481         check_closed_broadcast!(nodes[1], true);
3482         check_added_monitors!(nodes[1], 1);
3483         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
3484
3485         // Now check that if we add the preimage to ChannelMonitor it broadcasts our HTLC-Success..
3486         {
3487                 get_monitor!(nodes[2], payment_event.commitment_msg.channel_id)
3488                         .provide_payment_preimage(&our_payment_hash, &our_payment_preimage, &node_cfgs[2].tx_broadcaster, &LowerBoundedFeeEstimator::new(node_cfgs[2].fee_estimator), &node_cfgs[2].logger);
3489         }
3490         mine_transaction(&nodes[2], &tx);
3491         let node_txn = nodes[2].tx_broadcaster.txn_broadcasted.lock().unwrap();
3492         assert_eq!(node_txn.len(), 1);
3493         assert_eq!(node_txn[0].input.len(), 1);
3494         assert_eq!(node_txn[0].input[0].previous_output.txid, tx.txid());
3495         assert_eq!(node_txn[0].lock_time.0, 0); // Must be an HTLC-Success
3496         assert_eq!(node_txn[0].input[0].witness.len(), 5); // Must be an HTLC-Success
3497
3498         check_spends!(node_txn[0], tx);
3499 }
3500
3501 #[test]
3502 fn test_dup_events_on_peer_disconnect() {
3503         // Test that if we receive a duplicative update_fulfill_htlc message after a reconnect we do
3504         // not generate a corresponding duplicative PaymentSent event. This did not use to be the case
3505         // as we used to generate the event immediately upon receipt of the payment preimage in the
3506         // update_fulfill_htlc message.
3507
3508         let chanmon_cfgs = create_chanmon_cfgs(2);
3509         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
3510         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
3511         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
3512         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
3513
3514         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 1_000_000);
3515
3516         nodes[1].node.claim_funds(payment_preimage);
3517         expect_payment_claimed!(nodes[1], payment_hash, 1_000_000);
3518         check_added_monitors!(nodes[1], 1);
3519         let claim_msgs = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
3520         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &claim_msgs.update_fulfill_htlcs[0]);
3521         expect_payment_sent_without_paths!(nodes[0], payment_preimage);
3522
3523         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3524         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3525
3526         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (1, 0), (0, 0), (0, 0), (0, 0), (false, false));
3527         expect_payment_path_successful!(nodes[0]);
3528 }
3529
3530 #[test]
3531 fn test_peer_disconnected_before_funding_broadcasted() {
3532         // Test that channels are closed with `ClosureReason::DisconnectedPeer` if the peer disconnects
3533         // before the funding transaction has been broadcasted.
3534         let chanmon_cfgs = create_chanmon_cfgs(2);
3535         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
3536         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
3537         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
3538
3539         // Open a channel between `nodes[0]` and `nodes[1]`, for which the funding transaction is never
3540         // broadcasted, even though it's created by `nodes[0]`.
3541         let expected_temporary_channel_id = nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
3542         let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
3543         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_channel);
3544         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
3545         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel);
3546
3547         let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
3548         assert_eq!(temporary_channel_id, expected_temporary_channel_id);
3549
3550         assert!(nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).is_ok());
3551
3552         let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
3553         assert_eq!(funding_created_msg.temporary_channel_id, expected_temporary_channel_id);
3554
3555         // Even though the funding transaction is created by `nodes[0]`, the `FundingCreated` msg is
3556         // never sent to `nodes[1]`, and therefore the tx is never signed by either party nor
3557         // broadcasted.
3558         {
3559                 assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 0);
3560         }
3561
3562         // Ensure that the channel is closed with `ClosureReason::DisconnectedPeer` when the peers are
3563         // disconnected before the funding transaction was broadcasted.
3564         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3565         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3566
3567         check_closed_event!(nodes[0], 1, ClosureReason::DisconnectedPeer);
3568         check_closed_event!(nodes[1], 1, ClosureReason::DisconnectedPeer);
3569 }
3570
3571 #[test]
3572 fn test_simple_peer_disconnect() {
3573         // Test that we can reconnect when there are no lost messages
3574         let chanmon_cfgs = create_chanmon_cfgs(3);
3575         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
3576         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
3577         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
3578         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
3579         create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
3580
3581         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3582         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3583         reconnect_nodes(&nodes[0], &nodes[1], (true, true), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3584
3585         let payment_preimage_1 = route_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 1000000).0;
3586         let payment_hash_2 = route_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 1000000).1;
3587         fail_payment(&nodes[0], &vec!(&nodes[1], &nodes[2]), payment_hash_2);
3588         claim_payment(&nodes[0], &vec!(&nodes[1], &nodes[2]), payment_preimage_1);
3589
3590         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3591         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3592         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3593
3594         let (payment_preimage_3, payment_hash_3, _) = route_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 1000000);
3595         let payment_preimage_4 = route_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 1000000).0;
3596         let payment_hash_5 = route_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 1000000).1;
3597         let payment_hash_6 = route_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 1000000).1;
3598
3599         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3600         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3601
3602         claim_payment_along_route(&nodes[0], &[&[&nodes[1], &nodes[2]]], true, payment_preimage_3);
3603         fail_payment_along_route(&nodes[0], &[&[&nodes[1], &nodes[2]]], true, payment_hash_5);
3604
3605         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (1, 0), (1, 0), (false, false));
3606         {
3607                 let events = nodes[0].node.get_and_clear_pending_events();
3608                 assert_eq!(events.len(), 3);
3609                 match events[0] {
3610                         Event::PaymentSent { payment_preimage, payment_hash, .. } => {
3611                                 assert_eq!(payment_preimage, payment_preimage_3);
3612                                 assert_eq!(payment_hash, payment_hash_3);
3613                         },
3614                         _ => panic!("Unexpected event"),
3615                 }
3616                 match events[1] {
3617                         Event::PaymentPathFailed { payment_hash, payment_failed_permanently, .. } => {
3618                                 assert_eq!(payment_hash, payment_hash_5);
3619                                 assert!(payment_failed_permanently);
3620                         },
3621                         _ => panic!("Unexpected event"),
3622                 }
3623                 match events[2] {
3624                         Event::PaymentPathSuccessful { .. } => {},
3625                         _ => panic!("Unexpected event"),
3626                 }
3627         }
3628
3629         claim_payment(&nodes[0], &vec!(&nodes[1], &nodes[2]), payment_preimage_4);
3630         fail_payment(&nodes[0], &vec!(&nodes[1], &nodes[2]), payment_hash_6);
3631 }
3632
3633 fn do_test_drop_messages_peer_disconnect(messages_delivered: u8, simulate_broken_lnd: bool) {
3634         // Test that we can reconnect when in-flight HTLC updates get dropped
3635         let chanmon_cfgs = create_chanmon_cfgs(2);
3636         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
3637         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
3638         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
3639
3640         let mut as_channel_ready = None;
3641         if messages_delivered == 0 {
3642                 let (channel_ready, _, _) = create_chan_between_nodes_with_value_a(&nodes[0], &nodes[1], 100000, 10001, InitFeatures::known(), InitFeatures::known());
3643                 as_channel_ready = Some(channel_ready);
3644                 // nodes[1] doesn't receive the channel_ready message (it'll be re-sent on reconnect)
3645                 // Note that we store it so that if we're running with `simulate_broken_lnd` we can deliver
3646                 // it before the channel_reestablish message.
3647         } else {
3648                 create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
3649         }
3650
3651         let (route, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], 1_000_000);
3652
3653         let payment_event = {
3654                 nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
3655                 check_added_monitors!(nodes[0], 1);
3656
3657                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
3658                 assert_eq!(events.len(), 1);
3659                 SendEvent::from_event(events.remove(0))
3660         };
3661         assert_eq!(nodes[1].node.get_our_node_id(), payment_event.node_id);
3662
3663         if messages_delivered < 2 {
3664                 // Drop the payment_event messages, and let them get re-generated in reconnect_nodes!
3665         } else {
3666                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
3667                 if messages_delivered >= 3 {
3668                         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &payment_event.commitment_msg);
3669                         check_added_monitors!(nodes[1], 1);
3670                         let (bs_revoke_and_ack, bs_commitment_signed) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
3671
3672                         if messages_delivered >= 4 {
3673                                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_revoke_and_ack);
3674                                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
3675                                 check_added_monitors!(nodes[0], 1);
3676
3677                                 if messages_delivered >= 5 {
3678                                         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_commitment_signed);
3679                                         let as_revoke_and_ack = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
3680                                         // No commitment_signed so get_event_msg's assert(len == 1) passes
3681                                         check_added_monitors!(nodes[0], 1);
3682
3683                                         if messages_delivered >= 6 {
3684                                                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_revoke_and_ack);
3685                                                 assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
3686                                                 check_added_monitors!(nodes[1], 1);
3687                                         }
3688                                 }
3689                         }
3690                 }
3691         }
3692
3693         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3694         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3695         if messages_delivered < 3 {
3696                 if simulate_broken_lnd {
3697                         // lnd has a long-standing bug where they send a channel_ready prior to a
3698                         // channel_reestablish if you reconnect prior to channel_ready time.
3699                         //
3700                         // Here we simulate that behavior, delivering a channel_ready immediately on
3701                         // reconnect. Note that we don't bother skipping the now-duplicate channel_ready sent
3702                         // in `reconnect_nodes` but we currently don't fail based on that.
3703                         //
3704                         // See-also <https://github.com/lightningnetwork/lnd/issues/4006>
3705                         nodes[1].node.handle_channel_ready(&nodes[0].node.get_our_node_id(), &as_channel_ready.as_ref().unwrap().0);
3706                 }
3707                 // Even if the channel_ready messages get exchanged, as long as nothing further was
3708                 // received on either side, both sides will need to resend them.
3709                 reconnect_nodes(&nodes[0], &nodes[1], (true, true), (0, 1), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3710         } else if messages_delivered == 3 {
3711                 // nodes[0] still wants its RAA + commitment_signed
3712                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (-1, 0), (0, 0), (0, 0), (0, 0), (0, 0), (true, false));
3713         } else if messages_delivered == 4 {
3714                 // nodes[0] still wants its commitment_signed
3715                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (-1, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3716         } else if messages_delivered == 5 {
3717                 // nodes[1] still wants its final RAA
3718                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, true));
3719         } else if messages_delivered == 6 {
3720                 // Everything was delivered...
3721                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3722         }
3723
3724         let events_1 = nodes[1].node.get_and_clear_pending_events();
3725         assert_eq!(events_1.len(), 1);
3726         match events_1[0] {
3727                 Event::PendingHTLCsForwardable { .. } => { },
3728                 _ => panic!("Unexpected event"),
3729         };
3730
3731         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3732         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3733         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3734
3735         nodes[1].node.process_pending_htlc_forwards();
3736
3737         let events_2 = nodes[1].node.get_and_clear_pending_events();
3738         assert_eq!(events_2.len(), 1);
3739         match events_2[0] {
3740                 Event::PaymentReceived { ref payment_hash, ref purpose, amount_msat } => {
3741                         assert_eq!(payment_hash_1, *payment_hash);
3742                         assert_eq!(amount_msat, 1_000_000);
3743                         match &purpose {
3744                                 PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
3745                                         assert!(payment_preimage.is_none());
3746                                         assert_eq!(payment_secret_1, *payment_secret);
3747                                 },
3748                                 _ => panic!("expected PaymentPurpose::InvoicePayment")
3749                         }
3750                 },
3751                 _ => panic!("Unexpected event"),
3752         }
3753
3754         nodes[1].node.claim_funds(payment_preimage_1);
3755         check_added_monitors!(nodes[1], 1);
3756         expect_payment_claimed!(nodes[1], payment_hash_1, 1_000_000);
3757
3758         let events_3 = nodes[1].node.get_and_clear_pending_msg_events();
3759         assert_eq!(events_3.len(), 1);
3760         let (update_fulfill_htlc, commitment_signed) = match events_3[0] {
3761                 MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
3762                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
3763                         assert!(updates.update_add_htlcs.is_empty());
3764                         assert!(updates.update_fail_htlcs.is_empty());
3765                         assert_eq!(updates.update_fulfill_htlcs.len(), 1);
3766                         assert!(updates.update_fail_malformed_htlcs.is_empty());
3767                         assert!(updates.update_fee.is_none());
3768                         (updates.update_fulfill_htlcs[0].clone(), updates.commitment_signed.clone())
3769                 },
3770                 _ => panic!("Unexpected event"),
3771         };
3772
3773         if messages_delivered >= 1 {
3774                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &update_fulfill_htlc);
3775
3776                 let events_4 = nodes[0].node.get_and_clear_pending_events();
3777                 assert_eq!(events_4.len(), 1);
3778                 match events_4[0] {
3779                         Event::PaymentSent { ref payment_preimage, ref payment_hash, .. } => {
3780                                 assert_eq!(payment_preimage_1, *payment_preimage);
3781                                 assert_eq!(payment_hash_1, *payment_hash);
3782                         },
3783                         _ => panic!("Unexpected event"),
3784                 }
3785
3786                 if messages_delivered >= 2 {
3787                         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &commitment_signed);
3788                         check_added_monitors!(nodes[0], 1);
3789                         let (as_revoke_and_ack, as_commitment_signed) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
3790
3791                         if messages_delivered >= 3 {
3792                                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_revoke_and_ack);
3793                                 assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
3794                                 check_added_monitors!(nodes[1], 1);
3795
3796                                 if messages_delivered >= 4 {
3797                                         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_commitment_signed);
3798                                         let bs_revoke_and_ack = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
3799                                         // No commitment_signed so get_event_msg's assert(len == 1) passes
3800                                         check_added_monitors!(nodes[1], 1);
3801
3802                                         if messages_delivered >= 5 {
3803                                                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_revoke_and_ack);
3804                                                 assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
3805                                                 check_added_monitors!(nodes[0], 1);
3806                                         }
3807                                 }
3808                         }
3809                 }
3810         }
3811
3812         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3813         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3814         if messages_delivered < 2 {
3815                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (1, 0), (0, 0), (0, 0), (0, 0), (false, false));
3816                 if messages_delivered < 1 {
3817                         expect_payment_sent!(nodes[0], payment_preimage_1);
3818                 } else {
3819                         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
3820                 }
3821         } else if messages_delivered == 2 {
3822                 // nodes[0] still wants its RAA + commitment_signed
3823                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, -1), (0, 0), (0, 0), (0, 0), (0, 0), (false, true));
3824         } else if messages_delivered == 3 {
3825                 // nodes[0] still wants its commitment_signed
3826                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, -1), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3827         } else if messages_delivered == 4 {
3828                 // nodes[1] still wants its final RAA
3829                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (true, false));
3830         } else if messages_delivered == 5 {
3831                 // Everything was delivered...
3832                 reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3833         }
3834
3835         if messages_delivered == 1 || messages_delivered == 2 {
3836                 expect_payment_path_successful!(nodes[0]);
3837         }
3838
3839         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3840         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3841         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3842
3843         if messages_delivered > 2 {
3844                 expect_payment_path_successful!(nodes[0]);
3845         }
3846
3847         // Channel should still work fine...
3848         let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
3849         let payment_preimage_2 = send_along_route(&nodes[0], route, &[&nodes[1]], 1000000).0;
3850         claim_payment(&nodes[0], &[&nodes[1]], payment_preimage_2);
3851 }
3852
3853 #[test]
3854 fn test_drop_messages_peer_disconnect_a() {
3855         do_test_drop_messages_peer_disconnect(0, true);
3856         do_test_drop_messages_peer_disconnect(0, false);
3857         do_test_drop_messages_peer_disconnect(1, false);
3858         do_test_drop_messages_peer_disconnect(2, false);
3859 }
3860
3861 #[test]
3862 fn test_drop_messages_peer_disconnect_b() {
3863         do_test_drop_messages_peer_disconnect(3, false);
3864         do_test_drop_messages_peer_disconnect(4, false);
3865         do_test_drop_messages_peer_disconnect(5, false);
3866         do_test_drop_messages_peer_disconnect(6, false);
3867 }
3868
3869 #[test]
3870 fn test_funding_peer_disconnect() {
3871         // Test that we can lock in our funding tx while disconnected
3872         let chanmon_cfgs = create_chanmon_cfgs(2);
3873         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
3874         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
3875         let persister: test_utils::TestPersister;
3876         let new_chain_monitor: test_utils::TestChainMonitor;
3877         let nodes_0_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
3878         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
3879         let tx = create_chan_between_nodes_with_value_init(&nodes[0], &nodes[1], 100000, 10001, InitFeatures::known(), InitFeatures::known());
3880
3881         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3882         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3883
3884         confirm_transaction(&nodes[0], &tx);
3885         let events_1 = nodes[0].node.get_and_clear_pending_msg_events();
3886         assert!(events_1.is_empty());
3887
3888         reconnect_nodes(&nodes[0], &nodes[1], (false, true), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
3889
3890         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
3891         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
3892
3893         confirm_transaction(&nodes[1], &tx);
3894         let events_2 = nodes[1].node.get_and_clear_pending_msg_events();
3895         assert!(events_2.is_empty());
3896
3897         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
3898         let as_reestablish = get_chan_reestablish_msgs!(nodes[0], nodes[1]).pop().unwrap();
3899         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
3900         let bs_reestablish = get_chan_reestablish_msgs!(nodes[1], nodes[0]).pop().unwrap();
3901
3902         // nodes[0] hasn't yet received a channel_ready, so it only sends that on reconnect.
3903         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &bs_reestablish);
3904         let events_3 = nodes[0].node.get_and_clear_pending_msg_events();
3905         assert_eq!(events_3.len(), 1);
3906         let as_channel_ready = match events_3[0] {
3907                 MessageSendEvent::SendChannelReady { ref node_id, ref msg } => {
3908                         assert_eq!(*node_id, nodes[1].node.get_our_node_id());
3909                         msg.clone()
3910                 },
3911                 _ => panic!("Unexpected event {:?}", events_3[0]),
3912         };
3913
3914         // nodes[1] received nodes[0]'s channel_ready on the first reconnect above, so it should send
3915         // announcement_signatures as well as channel_update.
3916         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &as_reestablish);
3917         let events_4 = nodes[1].node.get_and_clear_pending_msg_events();
3918         assert_eq!(events_4.len(), 3);
3919         let chan_id;
3920         let bs_channel_ready = match events_4[0] {
3921                 MessageSendEvent::SendChannelReady { ref node_id, ref msg } => {
3922                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
3923                         chan_id = msg.channel_id;
3924                         msg.clone()
3925                 },
3926                 _ => panic!("Unexpected event {:?}", events_4[0]),
3927         };
3928         let bs_announcement_sigs = match events_4[1] {
3929                 MessageSendEvent::SendAnnouncementSignatures { ref node_id, ref msg } => {
3930                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
3931                         msg.clone()
3932                 },
3933                 _ => panic!("Unexpected event {:?}", events_4[1]),
3934         };
3935         match events_4[2] {
3936                 MessageSendEvent::SendChannelUpdate { ref node_id, msg: _ } => {
3937                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
3938                 },
3939                 _ => panic!("Unexpected event {:?}", events_4[2]),
3940         }
3941
3942         // Re-deliver nodes[0]'s channel_ready, which nodes[1] can safely ignore. It currently
3943         // generates a duplicative private channel_update
3944         nodes[1].node.handle_channel_ready(&nodes[0].node.get_our_node_id(), &as_channel_ready);
3945         let events_5 = nodes[1].node.get_and_clear_pending_msg_events();
3946         assert_eq!(events_5.len(), 1);
3947         match events_5[0] {
3948                 MessageSendEvent::SendChannelUpdate { ref node_id, msg: _ } => {
3949                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
3950                 },
3951                 _ => panic!("Unexpected event {:?}", events_5[0]),
3952         };
3953
3954         // When we deliver nodes[1]'s channel_ready, however, nodes[0] will generate its
3955         // announcement_signatures.
3956         nodes[0].node.handle_channel_ready(&nodes[1].node.get_our_node_id(), &bs_channel_ready);
3957         let events_6 = nodes[0].node.get_and_clear_pending_msg_events();
3958         assert_eq!(events_6.len(), 1);
3959         let as_announcement_sigs = match events_6[0] {
3960                 MessageSendEvent::SendAnnouncementSignatures { ref node_id, ref msg } => {
3961                         assert_eq!(*node_id, nodes[1].node.get_our_node_id());
3962                         msg.clone()
3963                 },
3964                 _ => panic!("Unexpected event {:?}", events_6[0]),
3965         };
3966
3967         // When we deliver nodes[1]'s announcement_signatures to nodes[0], nodes[0] should immediately
3968         // broadcast the channel announcement globally, as well as re-send its (now-public)
3969         // channel_update.
3970         nodes[0].node.handle_announcement_signatures(&nodes[1].node.get_our_node_id(), &bs_announcement_sigs);
3971         let events_7 = nodes[0].node.get_and_clear_pending_msg_events();
3972         assert_eq!(events_7.len(), 1);
3973         let (chan_announcement, as_update) = match events_7[0] {
3974                 MessageSendEvent::BroadcastChannelAnnouncement { ref msg, ref update_msg } => {
3975                         (msg.clone(), update_msg.clone())
3976                 },
3977                 _ => panic!("Unexpected event {:?}", events_7[0]),
3978         };
3979
3980         // Finally, deliver nodes[0]'s announcement_signatures to nodes[1] and make sure it creates the
3981         // same channel_announcement.
3982         nodes[1].node.handle_announcement_signatures(&nodes[0].node.get_our_node_id(), &as_announcement_sigs);
3983         let events_8 = nodes[1].node.get_and_clear_pending_msg_events();
3984         assert_eq!(events_8.len(), 1);
3985         let bs_update = match events_8[0] {
3986                 MessageSendEvent::BroadcastChannelAnnouncement { ref msg, ref update_msg } => {
3987                         assert_eq!(*msg, chan_announcement);
3988                         update_msg.clone()
3989                 },
3990                 _ => panic!("Unexpected event {:?}", events_8[0]),
3991         };
3992
3993         // Provide the channel announcement and public updates to the network graph
3994         nodes[0].gossip_sync.handle_channel_announcement(&chan_announcement).unwrap();
3995         nodes[0].gossip_sync.handle_channel_update(&bs_update).unwrap();
3996         nodes[0].gossip_sync.handle_channel_update(&as_update).unwrap();
3997
3998         let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
3999         let payment_preimage = send_along_route(&nodes[0], route, &[&nodes[1]], 1000000).0;
4000         claim_payment(&nodes[0], &[&nodes[1]], payment_preimage);
4001
4002         // Check that after deserialization and reconnection we can still generate an identical
4003         // channel_announcement from the cached signatures.
4004         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
4005
4006         let nodes_0_serialized = nodes[0].node.encode();
4007         let mut chan_0_monitor_serialized = test_utils::TestVecWriter(Vec::new());
4008         get_monitor!(nodes[0], chan_id).write(&mut chan_0_monitor_serialized).unwrap();
4009
4010         persister = test_utils::TestPersister::new();
4011         let keys_manager = &chanmon_cfgs[0].keys_manager;
4012         new_chain_monitor = test_utils::TestChainMonitor::new(Some(nodes[0].chain_source), nodes[0].tx_broadcaster.clone(), nodes[0].logger, node_cfgs[0].fee_estimator, &persister, keys_manager);
4013         nodes[0].chain_monitor = &new_chain_monitor;
4014         let mut chan_0_monitor_read = &chan_0_monitor_serialized.0[..];
4015         let (_, mut chan_0_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
4016                 &mut chan_0_monitor_read, keys_manager).unwrap();
4017         assert!(chan_0_monitor_read.is_empty());
4018
4019         let mut nodes_0_read = &nodes_0_serialized[..];
4020         let (_, nodes_0_deserialized_tmp) = {
4021                 let mut channel_monitors = HashMap::new();
4022                 channel_monitors.insert(chan_0_monitor.get_funding_txo().0, &mut chan_0_monitor);
4023                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut nodes_0_read, ChannelManagerReadArgs {
4024                         default_config: UserConfig::default(),
4025                         keys_manager,
4026                         fee_estimator: node_cfgs[0].fee_estimator,
4027                         chain_monitor: nodes[0].chain_monitor,
4028                         tx_broadcaster: nodes[0].tx_broadcaster.clone(),
4029                         logger: nodes[0].logger,
4030                         channel_monitors,
4031                 }).unwrap()
4032         };
4033         nodes_0_deserialized = nodes_0_deserialized_tmp;
4034         assert!(nodes_0_read.is_empty());
4035
4036         assert!(nodes[0].chain_monitor.watch_channel(chan_0_monitor.get_funding_txo().0, chan_0_monitor).is_ok());
4037         nodes[0].node = &nodes_0_deserialized;
4038         check_added_monitors!(nodes[0], 1);
4039
4040         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
4041 }
4042
4043 #[test]
4044 fn test_channel_ready_without_best_block_updated() {
4045         // Previously, if we were offline when a funding transaction was locked in, and then we came
4046         // back online, calling best_block_updated once followed by transactions_confirmed, we'd not
4047         // generate a channel_ready until a later best_block_updated. This tests that we generate the
4048         // channel_ready immediately instead.
4049         let chanmon_cfgs = create_chanmon_cfgs(2);
4050         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4051         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4052         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4053         *nodes[0].connect_style.borrow_mut() = ConnectStyle::BestBlockFirstSkippingBlocks;
4054
4055         let funding_tx = create_chan_between_nodes_with_value_init(&nodes[0], &nodes[1], 1_000_000, 0, InitFeatures::known(), InitFeatures::known());
4056
4057         let conf_height = nodes[0].best_block_info().1 + 1;
4058         connect_blocks(&nodes[0], CHAN_CONFIRM_DEPTH);
4059         let block_txn = [funding_tx];
4060         let conf_txn: Vec<_> = block_txn.iter().enumerate().collect();
4061         let conf_block_header = nodes[0].get_block_header(conf_height);
4062         nodes[0].node.transactions_confirmed(&conf_block_header, &conf_txn[..], conf_height);
4063
4064         // Ensure nodes[0] generates a channel_ready after the transactions_confirmed
4065         let as_channel_ready = get_event_msg!(nodes[0], MessageSendEvent::SendChannelReady, nodes[1].node.get_our_node_id());
4066         nodes[1].node.handle_channel_ready(&nodes[0].node.get_our_node_id(), &as_channel_ready);
4067 }
4068
4069 #[test]
4070 fn test_drop_messages_peer_disconnect_dual_htlc() {
4071         // Test that we can handle reconnecting when both sides of a channel have pending
4072         // commitment_updates when we disconnect.
4073         let chanmon_cfgs = create_chanmon_cfgs(2);
4074         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4075         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4076         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4077         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
4078
4079         let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1_000_000);
4080
4081         // Now try to send a second payment which will fail to send
4082         let (route, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
4083         nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
4084         check_added_monitors!(nodes[0], 1);
4085
4086         let events_1 = nodes[0].node.get_and_clear_pending_msg_events();
4087         assert_eq!(events_1.len(), 1);
4088         match events_1[0] {
4089                 MessageSendEvent::UpdateHTLCs { .. } => {},
4090                 _ => panic!("Unexpected event"),
4091         }
4092
4093         nodes[1].node.claim_funds(payment_preimage_1);
4094         expect_payment_claimed!(nodes[1], payment_hash_1, 1_000_000);
4095         check_added_monitors!(nodes[1], 1);
4096
4097         let events_2 = nodes[1].node.get_and_clear_pending_msg_events();
4098         assert_eq!(events_2.len(), 1);
4099         match events_2[0] {
4100                 MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
4101                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
4102                         assert!(update_add_htlcs.is_empty());
4103                         assert_eq!(update_fulfill_htlcs.len(), 1);
4104                         assert!(update_fail_htlcs.is_empty());
4105                         assert!(update_fail_malformed_htlcs.is_empty());
4106                         assert!(update_fee.is_none());
4107
4108                         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &update_fulfill_htlcs[0]);
4109                         let events_3 = nodes[0].node.get_and_clear_pending_events();
4110                         assert_eq!(events_3.len(), 1);
4111                         match events_3[0] {
4112                                 Event::PaymentSent { ref payment_preimage, ref payment_hash, .. } => {
4113                                         assert_eq!(*payment_preimage, payment_preimage_1);
4114                                         assert_eq!(*payment_hash, payment_hash_1);
4115                                 },
4116                                 _ => panic!("Unexpected event"),
4117                         }
4118
4119                         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), commitment_signed);
4120                         let _ = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
4121                         // No commitment_signed so get_event_msg's assert(len == 1) passes
4122                         check_added_monitors!(nodes[0], 1);
4123                 },
4124                 _ => panic!("Unexpected event"),
4125         }
4126
4127         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
4128         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
4129
4130         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
4131         let reestablish_1 = get_chan_reestablish_msgs!(nodes[0], nodes[1]);
4132         assert_eq!(reestablish_1.len(), 1);
4133         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
4134         let reestablish_2 = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
4135         assert_eq!(reestablish_2.len(), 1);
4136
4137         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[0]);
4138         let as_resp = handle_chan_reestablish_msgs!(nodes[0], nodes[1]);
4139         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[0]);
4140         let bs_resp = handle_chan_reestablish_msgs!(nodes[1], nodes[0]);
4141
4142         assert!(as_resp.0.is_none());
4143         assert!(bs_resp.0.is_none());
4144
4145         assert!(bs_resp.1.is_none());
4146         assert!(bs_resp.2.is_none());
4147
4148         assert!(as_resp.3 == RAACommitmentOrder::CommitmentFirst);
4149
4150         assert_eq!(as_resp.2.as_ref().unwrap().update_add_htlcs.len(), 1);
4151         assert!(as_resp.2.as_ref().unwrap().update_fulfill_htlcs.is_empty());
4152         assert!(as_resp.2.as_ref().unwrap().update_fail_htlcs.is_empty());
4153         assert!(as_resp.2.as_ref().unwrap().update_fail_malformed_htlcs.is_empty());
4154         assert!(as_resp.2.as_ref().unwrap().update_fee.is_none());
4155         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &as_resp.2.as_ref().unwrap().update_add_htlcs[0]);
4156         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_resp.2.as_ref().unwrap().commitment_signed);
4157         let bs_revoke_and_ack = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
4158         // No commitment_signed so get_event_msg's assert(len == 1) passes
4159         check_added_monitors!(nodes[1], 1);
4160
4161         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), as_resp.1.as_ref().unwrap());
4162         let bs_second_commitment_signed = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
4163         assert!(bs_second_commitment_signed.update_add_htlcs.is_empty());
4164         assert!(bs_second_commitment_signed.update_fulfill_htlcs.is_empty());
4165         assert!(bs_second_commitment_signed.update_fail_htlcs.is_empty());
4166         assert!(bs_second_commitment_signed.update_fail_malformed_htlcs.is_empty());
4167         assert!(bs_second_commitment_signed.update_fee.is_none());
4168         check_added_monitors!(nodes[1], 1);
4169
4170         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_revoke_and_ack);
4171         let as_commitment_signed = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
4172         assert!(as_commitment_signed.update_add_htlcs.is_empty());
4173         assert!(as_commitment_signed.update_fulfill_htlcs.is_empty());
4174         assert!(as_commitment_signed.update_fail_htlcs.is_empty());
4175         assert!(as_commitment_signed.update_fail_malformed_htlcs.is_empty());
4176         assert!(as_commitment_signed.update_fee.is_none());
4177         check_added_monitors!(nodes[0], 1);
4178
4179         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_commitment_signed.commitment_signed);
4180         let as_revoke_and_ack = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
4181         // No commitment_signed so get_event_msg's assert(len == 1) passes
4182         check_added_monitors!(nodes[0], 1);
4183
4184         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_commitment_signed.commitment_signed);
4185         let bs_second_revoke_and_ack = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
4186         // No commitment_signed so get_event_msg's assert(len == 1) passes
4187         check_added_monitors!(nodes[1], 1);
4188
4189         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_revoke_and_ack);
4190         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
4191         check_added_monitors!(nodes[1], 1);
4192
4193         expect_pending_htlcs_forwardable!(nodes[1]);
4194
4195         let events_5 = nodes[1].node.get_and_clear_pending_events();
4196         assert_eq!(events_5.len(), 1);
4197         match events_5[0] {
4198                 Event::PaymentReceived { ref payment_hash, ref purpose, .. } => {
4199                         assert_eq!(payment_hash_2, *payment_hash);
4200                         match &purpose {
4201                                 PaymentPurpose::InvoicePayment { payment_preimage, payment_secret, .. } => {
4202                                         assert!(payment_preimage.is_none());
4203                                         assert_eq!(payment_secret_2, *payment_secret);
4204                                 },
4205                                 _ => panic!("expected PaymentPurpose::InvoicePayment")
4206                         }
4207                 },
4208                 _ => panic!("Unexpected event"),
4209         }
4210
4211         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_second_revoke_and_ack);
4212         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
4213         check_added_monitors!(nodes[0], 1);
4214
4215         expect_payment_path_successful!(nodes[0]);
4216         claim_payment(&nodes[0], &[&nodes[1]], payment_preimage_2);
4217 }
4218
4219 fn do_test_htlc_timeout(send_partial_mpp: bool) {
4220         // If the user fails to claim/fail an HTLC within the HTLC CLTV timeout we fail it for them
4221         // to avoid our counterparty failing the channel.
4222         let chanmon_cfgs = create_chanmon_cfgs(2);
4223         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4224         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4225         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4226
4227         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
4228
4229         let our_payment_hash = if send_partial_mpp {
4230                 let (route, our_payment_hash, _, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100000);
4231                 // Use the utility function send_payment_along_path to send the payment with MPP data which
4232                 // indicates there are more HTLCs coming.
4233                 let cur_height = CHAN_CONFIRM_DEPTH + 1; // route_payment calls send_payment, which adds 1 to the current height. So we do the same here to match.
4234                 let payment_id = PaymentId([42; 32]);
4235                 nodes[0].node.send_payment_along_path(&route.paths[0], &route.payment_params, &our_payment_hash, &Some(payment_secret), 200000, cur_height, payment_id, &None).unwrap();
4236                 check_added_monitors!(nodes[0], 1);
4237                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
4238                 assert_eq!(events.len(), 1);
4239                 // Now do the relevant commitment_signed/RAA dances along the path, noting that the final
4240                 // hop should *not* yet generate any PaymentReceived event(s).
4241                 pass_along_path(&nodes[0], &[&nodes[1]], 100000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
4242                 our_payment_hash
4243         } else {
4244                 route_payment(&nodes[0], &[&nodes[1]], 100000).1
4245         };
4246
4247         let mut block = Block {
4248                 header: BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 },
4249                 txdata: vec![],
4250         };
4251         connect_block(&nodes[0], &block);
4252         connect_block(&nodes[1], &block);
4253         let block_count = TEST_FINAL_CLTV + CHAN_CONFIRM_DEPTH + 2 - CLTV_CLAIM_BUFFER - LATENCY_GRACE_PERIOD_BLOCKS;
4254         for _ in CHAN_CONFIRM_DEPTH + 2..block_count {
4255                 block.header.prev_blockhash = block.block_hash();
4256                 connect_block(&nodes[0], &block);
4257                 connect_block(&nodes[1], &block);
4258         }
4259
4260         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
4261
4262         check_added_monitors!(nodes[1], 1);
4263         let htlc_timeout_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
4264         assert!(htlc_timeout_updates.update_add_htlcs.is_empty());
4265         assert_eq!(htlc_timeout_updates.update_fail_htlcs.len(), 1);
4266         assert!(htlc_timeout_updates.update_fail_malformed_htlcs.is_empty());
4267         assert!(htlc_timeout_updates.update_fee.is_none());
4268
4269         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &htlc_timeout_updates.update_fail_htlcs[0]);
4270         commitment_signed_dance!(nodes[0], nodes[1], htlc_timeout_updates.commitment_signed, false);
4271         // 100_000 msat as u64, followed by the height at which we failed back above
4272         let mut expected_failure_data = byte_utils::be64_to_array(100_000).to_vec();
4273         expected_failure_data.extend_from_slice(&byte_utils::be32_to_array(block_count - 1));
4274         expect_payment_failed!(nodes[0], our_payment_hash, true, 0x4000 | 15, &expected_failure_data[..]);
4275 }
4276
4277 #[test]
4278 fn test_htlc_timeout() {
4279         do_test_htlc_timeout(true);
4280         do_test_htlc_timeout(false);
4281 }
4282
4283 fn do_test_holding_cell_htlc_add_timeouts(forwarded_htlc: bool) {
4284         // Tests that HTLCs in the holding cell are timed out after the requisite number of blocks.
4285         let chanmon_cfgs = create_chanmon_cfgs(3);
4286         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
4287         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
4288         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
4289         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
4290         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
4291
4292         // Make sure all nodes are at the same starting height
4293         connect_blocks(&nodes[0], 2*CHAN_CONFIRM_DEPTH + 1 - nodes[0].best_block_info().1);
4294         connect_blocks(&nodes[1], 2*CHAN_CONFIRM_DEPTH + 1 - nodes[1].best_block_info().1);
4295         connect_blocks(&nodes[2], 2*CHAN_CONFIRM_DEPTH + 1 - nodes[2].best_block_info().1);
4296
4297         // Route a first payment to get the 1 -> 2 channel in awaiting_raa...
4298         let (route, first_payment_hash, _, first_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[2], 100000);
4299         {
4300                 nodes[1].node.send_payment(&route, first_payment_hash, &Some(first_payment_secret)).unwrap();
4301         }
4302         assert_eq!(nodes[1].node.get_and_clear_pending_msg_events().len(), 1);
4303         check_added_monitors!(nodes[1], 1);
4304
4305         // Now attempt to route a second payment, which should be placed in the holding cell
4306         let sending_node = if forwarded_htlc { &nodes[0] } else { &nodes[1] };
4307         let (route, second_payment_hash, _, second_payment_secret) = get_route_and_payment_hash!(sending_node, nodes[2], 100000);
4308         sending_node.node.send_payment(&route, second_payment_hash, &Some(second_payment_secret)).unwrap();
4309         if forwarded_htlc {
4310                 check_added_monitors!(nodes[0], 1);
4311                 let payment_event = SendEvent::from_event(nodes[0].node.get_and_clear_pending_msg_events().remove(0));
4312                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
4313                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
4314                 expect_pending_htlcs_forwardable!(nodes[1]);
4315         }
4316         check_added_monitors!(nodes[1], 0);
4317
4318         connect_blocks(&nodes[1], TEST_FINAL_CLTV - LATENCY_GRACE_PERIOD_BLOCKS);
4319         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
4320         assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
4321         connect_blocks(&nodes[1], 1);
4322
4323         if forwarded_htlc {
4324                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::NextHopChannel { node_id: Some(nodes[2].node.get_our_node_id()), channel_id: chan_2.2 }]);
4325                 check_added_monitors!(nodes[1], 1);
4326                 let fail_commit = nodes[1].node.get_and_clear_pending_msg_events();
4327                 assert_eq!(fail_commit.len(), 1);
4328                 match fail_commit[0] {
4329                         MessageSendEvent::UpdateHTLCs { updates: msgs::CommitmentUpdate { ref update_fail_htlcs, ref commitment_signed, .. }, .. } => {
4330                                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlcs[0]);
4331                                 commitment_signed_dance!(nodes[0], nodes[1], commitment_signed, true, true);
4332                         },
4333                         _ => unreachable!(),
4334                 }
4335                 expect_payment_failed_with_update!(nodes[0], second_payment_hash, false, chan_2.0.contents.short_channel_id, false);
4336         } else {
4337                 let events = nodes[1].node.get_and_clear_pending_events();
4338                 assert_eq!(events.len(), 2);
4339                 if let Event::PaymentPathFailed { ref payment_hash, .. } = events[0] {
4340                         assert_eq!(*payment_hash, second_payment_hash);
4341                 } else { panic!("Unexpected event"); }
4342                 if let Event::PaymentFailed { ref payment_hash, .. } = events[1] {
4343                         assert_eq!(*payment_hash, second_payment_hash);
4344                 } else { panic!("Unexpected event"); }
4345         }
4346 }
4347
4348 #[test]
4349 fn test_holding_cell_htlc_add_timeouts() {
4350         do_test_holding_cell_htlc_add_timeouts(false);
4351         do_test_holding_cell_htlc_add_timeouts(true);
4352 }
4353
4354 #[test]
4355 fn test_no_txn_manager_serialize_deserialize() {
4356         let chanmon_cfgs = create_chanmon_cfgs(2);
4357         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4358         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4359         let logger: test_utils::TestLogger;
4360         let fee_estimator: test_utils::TestFeeEstimator;
4361         let persister: test_utils::TestPersister;
4362         let new_chain_monitor: test_utils::TestChainMonitor;
4363         let nodes_0_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
4364         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4365
4366         let tx = create_chan_between_nodes_with_value_init(&nodes[0], &nodes[1], 100000, 10001, InitFeatures::known(), InitFeatures::known());
4367
4368         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
4369
4370         let nodes_0_serialized = nodes[0].node.encode();
4371         let mut chan_0_monitor_serialized = test_utils::TestVecWriter(Vec::new());
4372         get_monitor!(nodes[0], OutPoint { txid: tx.txid(), index: 0 }.to_channel_id())
4373                 .write(&mut chan_0_monitor_serialized).unwrap();
4374
4375         logger = test_utils::TestLogger::new();
4376         fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
4377         persister = test_utils::TestPersister::new();
4378         let keys_manager = &chanmon_cfgs[0].keys_manager;
4379         new_chain_monitor = test_utils::TestChainMonitor::new(Some(nodes[0].chain_source), nodes[0].tx_broadcaster.clone(), &logger, &fee_estimator, &persister, keys_manager);
4380         nodes[0].chain_monitor = &new_chain_monitor;
4381         let mut chan_0_monitor_read = &chan_0_monitor_serialized.0[..];
4382         let (_, mut chan_0_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
4383                 &mut chan_0_monitor_read, keys_manager).unwrap();
4384         assert!(chan_0_monitor_read.is_empty());
4385
4386         let mut nodes_0_read = &nodes_0_serialized[..];
4387         let config = UserConfig::default();
4388         let (_, nodes_0_deserialized_tmp) = {
4389                 let mut channel_monitors = HashMap::new();
4390                 channel_monitors.insert(chan_0_monitor.get_funding_txo().0, &mut chan_0_monitor);
4391                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut nodes_0_read, ChannelManagerReadArgs {
4392                         default_config: config,
4393                         keys_manager,
4394                         fee_estimator: &fee_estimator,
4395                         chain_monitor: nodes[0].chain_monitor,
4396                         tx_broadcaster: nodes[0].tx_broadcaster.clone(),
4397                         logger: &logger,
4398                         channel_monitors,
4399                 }).unwrap()
4400         };
4401         nodes_0_deserialized = nodes_0_deserialized_tmp;
4402         assert!(nodes_0_read.is_empty());
4403
4404         assert!(nodes[0].chain_monitor.watch_channel(chan_0_monitor.get_funding_txo().0, chan_0_monitor).is_ok());
4405         nodes[0].node = &nodes_0_deserialized;
4406         assert_eq!(nodes[0].node.list_channels().len(), 1);
4407         check_added_monitors!(nodes[0], 1);
4408
4409         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
4410         let reestablish_1 = get_chan_reestablish_msgs!(nodes[0], nodes[1]);
4411         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
4412         let reestablish_2 = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
4413
4414         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[0]);
4415         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
4416         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[0]);
4417         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
4418
4419         let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
4420         let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
4421         for node in nodes.iter() {
4422                 assert!(node.gossip_sync.handle_channel_announcement(&announcement).unwrap());
4423                 node.gossip_sync.handle_channel_update(&as_update).unwrap();
4424                 node.gossip_sync.handle_channel_update(&bs_update).unwrap();
4425         }
4426
4427         send_payment(&nodes[0], &[&nodes[1]], 1000000);
4428 }
4429
4430 #[test]
4431 fn test_manager_serialize_deserialize_events() {
4432         // This test makes sure the events field in ChannelManager survives de/serialization
4433         let chanmon_cfgs = create_chanmon_cfgs(2);
4434         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4435         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4436         let fee_estimator: test_utils::TestFeeEstimator;
4437         let persister: test_utils::TestPersister;
4438         let logger: test_utils::TestLogger;
4439         let new_chain_monitor: test_utils::TestChainMonitor;
4440         let nodes_0_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
4441         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4442
4443         // Start creating a channel, but stop right before broadcasting the funding transaction
4444         let channel_value = 100000;
4445         let push_msat = 10001;
4446         let a_flags = InitFeatures::known();
4447         let b_flags = InitFeatures::known();
4448         let node_a = nodes.remove(0);
4449         let node_b = nodes.remove(0);
4450         node_a.node.create_channel(node_b.node.get_our_node_id(), channel_value, push_msat, 42, None).unwrap();
4451         node_b.node.handle_open_channel(&node_a.node.get_our_node_id(), a_flags, &get_event_msg!(node_a, MessageSendEvent::SendOpenChannel, node_b.node.get_our_node_id()));
4452         node_a.node.handle_accept_channel(&node_b.node.get_our_node_id(), b_flags, &get_event_msg!(node_b, MessageSendEvent::SendAcceptChannel, node_a.node.get_our_node_id()));
4453
4454         let (temporary_channel_id, tx, funding_output) = create_funding_transaction(&node_a, &node_b.node.get_our_node_id(), channel_value, 42);
4455
4456         node_a.node.funding_transaction_generated(&temporary_channel_id, &node_b.node.get_our_node_id(), tx.clone()).unwrap();
4457         check_added_monitors!(node_a, 0);
4458
4459         node_b.node.handle_funding_created(&node_a.node.get_our_node_id(), &get_event_msg!(node_a, MessageSendEvent::SendFundingCreated, node_b.node.get_our_node_id()));
4460         {
4461                 let mut added_monitors = node_b.chain_monitor.added_monitors.lock().unwrap();
4462                 assert_eq!(added_monitors.len(), 1);
4463                 assert_eq!(added_monitors[0].0, funding_output);
4464                 added_monitors.clear();
4465         }
4466
4467         let bs_funding_signed = get_event_msg!(node_b, MessageSendEvent::SendFundingSigned, node_a.node.get_our_node_id());
4468         node_a.node.handle_funding_signed(&node_b.node.get_our_node_id(), &bs_funding_signed);
4469         {
4470                 let mut added_monitors = node_a.chain_monitor.added_monitors.lock().unwrap();
4471                 assert_eq!(added_monitors.len(), 1);
4472                 assert_eq!(added_monitors[0].0, funding_output);
4473                 added_monitors.clear();
4474         }
4475         // Normally, this is where node_a would broadcast the funding transaction, but the test de/serializes first instead
4476
4477         nodes.push(node_a);
4478         nodes.push(node_b);
4479
4480         // Start the de/seriailization process mid-channel creation to check that the channel manager will hold onto events that are serialized
4481         let nodes_0_serialized = nodes[0].node.encode();
4482         let mut chan_0_monitor_serialized = test_utils::TestVecWriter(Vec::new());
4483         get_monitor!(nodes[0], bs_funding_signed.channel_id).write(&mut chan_0_monitor_serialized).unwrap();
4484
4485         fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
4486         logger = test_utils::TestLogger::new();
4487         persister = test_utils::TestPersister::new();
4488         let keys_manager = &chanmon_cfgs[0].keys_manager;
4489         new_chain_monitor = test_utils::TestChainMonitor::new(Some(nodes[0].chain_source), nodes[0].tx_broadcaster.clone(), &logger, &fee_estimator, &persister, keys_manager);
4490         nodes[0].chain_monitor = &new_chain_monitor;
4491         let mut chan_0_monitor_read = &chan_0_monitor_serialized.0[..];
4492         let (_, mut chan_0_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
4493                 &mut chan_0_monitor_read, keys_manager).unwrap();
4494         assert!(chan_0_monitor_read.is_empty());
4495
4496         let mut nodes_0_read = &nodes_0_serialized[..];
4497         let config = UserConfig::default();
4498         let (_, nodes_0_deserialized_tmp) = {
4499                 let mut channel_monitors = HashMap::new();
4500                 channel_monitors.insert(chan_0_monitor.get_funding_txo().0, &mut chan_0_monitor);
4501                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut nodes_0_read, ChannelManagerReadArgs {
4502                         default_config: config,
4503                         keys_manager,
4504                         fee_estimator: &fee_estimator,
4505                         chain_monitor: nodes[0].chain_monitor,
4506                         tx_broadcaster: nodes[0].tx_broadcaster.clone(),
4507                         logger: &logger,
4508                         channel_monitors,
4509                 }).unwrap()
4510         };
4511         nodes_0_deserialized = nodes_0_deserialized_tmp;
4512         assert!(nodes_0_read.is_empty());
4513
4514         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
4515
4516         assert!(nodes[0].chain_monitor.watch_channel(chan_0_monitor.get_funding_txo().0, chan_0_monitor).is_ok());
4517         nodes[0].node = &nodes_0_deserialized;
4518
4519         // After deserializing, make sure the funding_transaction is still held by the channel manager
4520         let events_4 = nodes[0].node.get_and_clear_pending_events();
4521         assert_eq!(events_4.len(), 0);
4522         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
4523         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap()[0].txid(), funding_output.txid);
4524
4525         // Make sure the channel is functioning as though the de/serialization never happened
4526         assert_eq!(nodes[0].node.list_channels().len(), 1);
4527         check_added_monitors!(nodes[0], 1);
4528
4529         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
4530         let reestablish_1 = get_chan_reestablish_msgs!(nodes[0], nodes[1]);
4531         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
4532         let reestablish_2 = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
4533
4534         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[0]);
4535         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
4536         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[0]);
4537         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
4538
4539         let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
4540         let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
4541         for node in nodes.iter() {
4542                 assert!(node.gossip_sync.handle_channel_announcement(&announcement).unwrap());
4543                 node.gossip_sync.handle_channel_update(&as_update).unwrap();
4544                 node.gossip_sync.handle_channel_update(&bs_update).unwrap();
4545         }
4546
4547         send_payment(&nodes[0], &[&nodes[1]], 1000000);
4548 }
4549
4550 #[test]
4551 fn test_simple_manager_serialize_deserialize() {
4552         let chanmon_cfgs = create_chanmon_cfgs(2);
4553         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4554         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4555         let logger: test_utils::TestLogger;
4556         let fee_estimator: test_utils::TestFeeEstimator;
4557         let persister: test_utils::TestPersister;
4558         let new_chain_monitor: test_utils::TestChainMonitor;
4559         let nodes_0_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
4560         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4561         let chan_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
4562
4563         let (our_payment_preimage, _, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
4564         let (_, our_payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
4565
4566         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
4567
4568         let nodes_0_serialized = nodes[0].node.encode();
4569         let mut chan_0_monitor_serialized = test_utils::TestVecWriter(Vec::new());
4570         get_monitor!(nodes[0], chan_id).write(&mut chan_0_monitor_serialized).unwrap();
4571
4572         logger = test_utils::TestLogger::new();
4573         fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
4574         persister = test_utils::TestPersister::new();
4575         let keys_manager = &chanmon_cfgs[0].keys_manager;
4576         new_chain_monitor = test_utils::TestChainMonitor::new(Some(nodes[0].chain_source), nodes[0].tx_broadcaster.clone(), &logger, &fee_estimator, &persister, keys_manager);
4577         nodes[0].chain_monitor = &new_chain_monitor;
4578         let mut chan_0_monitor_read = &chan_0_monitor_serialized.0[..];
4579         let (_, mut chan_0_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
4580                 &mut chan_0_monitor_read, keys_manager).unwrap();
4581         assert!(chan_0_monitor_read.is_empty());
4582
4583         let mut nodes_0_read = &nodes_0_serialized[..];
4584         let (_, nodes_0_deserialized_tmp) = {
4585                 let mut channel_monitors = HashMap::new();
4586                 channel_monitors.insert(chan_0_monitor.get_funding_txo().0, &mut chan_0_monitor);
4587                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut nodes_0_read, ChannelManagerReadArgs {
4588                         default_config: UserConfig::default(),
4589                         keys_manager,
4590                         fee_estimator: &fee_estimator,
4591                         chain_monitor: nodes[0].chain_monitor,
4592                         tx_broadcaster: nodes[0].tx_broadcaster.clone(),
4593                         logger: &logger,
4594                         channel_monitors,
4595                 }).unwrap()
4596         };
4597         nodes_0_deserialized = nodes_0_deserialized_tmp;
4598         assert!(nodes_0_read.is_empty());
4599
4600         assert!(nodes[0].chain_monitor.watch_channel(chan_0_monitor.get_funding_txo().0, chan_0_monitor).is_ok());
4601         nodes[0].node = &nodes_0_deserialized;
4602         check_added_monitors!(nodes[0], 1);
4603
4604         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
4605
4606         fail_payment(&nodes[0], &[&nodes[1]], our_payment_hash);
4607         claim_payment(&nodes[0], &[&nodes[1]], our_payment_preimage);
4608 }
4609
4610 #[test]
4611 fn test_manager_serialize_deserialize_inconsistent_monitor() {
4612         // Test deserializing a ChannelManager with an out-of-date ChannelMonitor
4613         let chanmon_cfgs = create_chanmon_cfgs(4);
4614         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
4615         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
4616         let logger: test_utils::TestLogger;
4617         let fee_estimator: test_utils::TestFeeEstimator;
4618         let persister: test_utils::TestPersister;
4619         let new_chain_monitor: test_utils::TestChainMonitor;
4620         let nodes_0_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
4621         let mut nodes = create_network(4, &node_cfgs, &node_chanmgrs);
4622         let chan_id_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
4623         let chan_id_2 = create_announced_chan_between_nodes(&nodes, 2, 0, InitFeatures::known(), InitFeatures::known()).2;
4624         let (_, _, channel_id, funding_tx) = create_announced_chan_between_nodes(&nodes, 0, 3, InitFeatures::known(), InitFeatures::known());
4625
4626         let mut node_0_stale_monitors_serialized = Vec::new();
4627         for chan_id_iter in &[chan_id_1, chan_id_2, channel_id] {
4628                 let mut writer = test_utils::TestVecWriter(Vec::new());
4629                 get_monitor!(nodes[0], chan_id_iter).write(&mut writer).unwrap();
4630                 node_0_stale_monitors_serialized.push(writer.0);
4631         }
4632
4633         let (our_payment_preimage, _, _) = route_payment(&nodes[2], &[&nodes[0], &nodes[1]], 1000000);
4634
4635         // Serialize the ChannelManager here, but the monitor we keep up-to-date
4636         let nodes_0_serialized = nodes[0].node.encode();
4637
4638         route_payment(&nodes[0], &[&nodes[3]], 1000000);
4639         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
4640         nodes[2].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
4641         nodes[3].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
4642
4643         // Now the ChannelMonitor (which is now out-of-sync with ChannelManager for channel w/
4644         // nodes[3])
4645         let mut node_0_monitors_serialized = Vec::new();
4646         for chan_id_iter in &[chan_id_1, chan_id_2, channel_id] {
4647                 let mut writer = test_utils::TestVecWriter(Vec::new());
4648                 get_monitor!(nodes[0], chan_id_iter).write(&mut writer).unwrap();
4649                 node_0_monitors_serialized.push(writer.0);
4650         }
4651
4652         logger = test_utils::TestLogger::new();
4653         fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
4654         persister = test_utils::TestPersister::new();
4655         let keys_manager = &chanmon_cfgs[0].keys_manager;
4656         new_chain_monitor = test_utils::TestChainMonitor::new(Some(nodes[0].chain_source), nodes[0].tx_broadcaster.clone(), &logger, &fee_estimator, &persister, keys_manager);
4657         nodes[0].chain_monitor = &new_chain_monitor;
4658
4659
4660         let mut node_0_stale_monitors = Vec::new();
4661         for serialized in node_0_stale_monitors_serialized.iter() {
4662                 let mut read = &serialized[..];
4663                 let (_, monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(&mut read, keys_manager).unwrap();
4664                 assert!(read.is_empty());
4665                 node_0_stale_monitors.push(monitor);
4666         }
4667
4668         let mut node_0_monitors = Vec::new();
4669         for serialized in node_0_monitors_serialized.iter() {
4670                 let mut read = &serialized[..];
4671                 let (_, monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(&mut read, keys_manager).unwrap();
4672                 assert!(read.is_empty());
4673                 node_0_monitors.push(monitor);
4674         }
4675
4676         let mut nodes_0_read = &nodes_0_serialized[..];
4677         if let Err(msgs::DecodeError::InvalidValue) =
4678                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut nodes_0_read, ChannelManagerReadArgs {
4679                 default_config: UserConfig::default(),
4680                 keys_manager,
4681                 fee_estimator: &fee_estimator,
4682                 chain_monitor: nodes[0].chain_monitor,
4683                 tx_broadcaster: nodes[0].tx_broadcaster.clone(),
4684                 logger: &logger,
4685                 channel_monitors: node_0_stale_monitors.iter_mut().map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect(),
4686         }) { } else {
4687                 panic!("If the monitor(s) are stale, this indicates a bug and we should get an Err return");
4688         };
4689
4690         let mut nodes_0_read = &nodes_0_serialized[..];
4691         let (_, nodes_0_deserialized_tmp) =
4692                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut nodes_0_read, ChannelManagerReadArgs {
4693                 default_config: UserConfig::default(),
4694                 keys_manager,
4695                 fee_estimator: &fee_estimator,
4696                 chain_monitor: nodes[0].chain_monitor,
4697                 tx_broadcaster: nodes[0].tx_broadcaster.clone(),
4698                 logger: &logger,
4699                 channel_monitors: node_0_monitors.iter_mut().map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect(),
4700         }).unwrap();
4701         nodes_0_deserialized = nodes_0_deserialized_tmp;
4702         assert!(nodes_0_read.is_empty());
4703
4704         { // Channel close should result in a commitment tx
4705                 let txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
4706                 assert_eq!(txn.len(), 1);
4707                 check_spends!(txn[0], funding_tx);
4708                 assert_eq!(txn[0].input[0].previous_output.txid, funding_tx.txid());
4709         }
4710
4711         for monitor in node_0_monitors.drain(..) {
4712                 assert!(nodes[0].chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor).is_ok());
4713                 check_added_monitors!(nodes[0], 1);
4714         }
4715         nodes[0].node = &nodes_0_deserialized;
4716         check_closed_event!(nodes[0], 1, ClosureReason::OutdatedChannelManager);
4717
4718         // nodes[1] and nodes[2] have no lost state with nodes[0]...
4719         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
4720         reconnect_nodes(&nodes[0], &nodes[2], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
4721         //... and we can even still claim the payment!
4722         claim_payment(&nodes[2], &[&nodes[0], &nodes[1]], our_payment_preimage);
4723
4724         nodes[3].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
4725         let reestablish = get_chan_reestablish_msgs!(nodes[3], nodes[0]).pop().unwrap();
4726         nodes[0].node.peer_connected(&nodes[3].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
4727         nodes[0].node.handle_channel_reestablish(&nodes[3].node.get_our_node_id(), &reestablish);
4728         let mut found_err = false;
4729         for msg_event in nodes[0].node.get_and_clear_pending_msg_events() {
4730                 if let MessageSendEvent::HandleError { ref action, .. } = msg_event {
4731                         match action {
4732                                 &ErrorAction::SendErrorMessage { ref msg } => {
4733                                         assert_eq!(msg.channel_id, channel_id);
4734                                         assert!(!found_err);
4735                                         found_err = true;
4736                                 },
4737                                 _ => panic!("Unexpected event!"),
4738                         }
4739                 }
4740         }
4741         assert!(found_err);
4742 }
4743
4744 macro_rules! check_spendable_outputs {
4745         ($node: expr, $keysinterface: expr) => {
4746                 {
4747                         let mut events = $node.chain_monitor.chain_monitor.get_and_clear_pending_events();
4748                         let mut txn = Vec::new();
4749                         let mut all_outputs = Vec::new();
4750                         let secp_ctx = Secp256k1::new();
4751                         for event in events.drain(..) {
4752                                 match event {
4753                                         Event::SpendableOutputs { mut outputs } => {
4754                                                 for outp in outputs.drain(..) {
4755                                                         txn.push($keysinterface.backing.spend_spendable_outputs(&[&outp], Vec::new(), Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script(), 253, &secp_ctx).unwrap());
4756                                                         all_outputs.push(outp);
4757                                                 }
4758                                         },
4759                                         _ => panic!("Unexpected event"),
4760                                 };
4761                         }
4762                         if all_outputs.len() > 1 {
4763                                 if let Ok(tx) = $keysinterface.backing.spend_spendable_outputs(&all_outputs.iter().map(|a| a).collect::<Vec<_>>(), Vec::new(), Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script(), 253, &secp_ctx) {
4764                                         txn.push(tx);
4765                                 }
4766                         }
4767                         txn
4768                 }
4769         }
4770 }
4771
4772 #[test]
4773 fn test_claim_sizeable_push_msat() {
4774         // Incidentally test SpendableOutput event generation due to detection of to_local output on commitment tx
4775         let chanmon_cfgs = create_chanmon_cfgs(2);
4776         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4777         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4778         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4779
4780         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 98_000_000, InitFeatures::known(), InitFeatures::known());
4781         nodes[1].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[0].node.get_our_node_id()).unwrap();
4782         check_closed_broadcast!(nodes[1], true);
4783         check_added_monitors!(nodes[1], 1);
4784         check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
4785         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
4786         assert_eq!(node_txn.len(), 1);
4787         check_spends!(node_txn[0], chan.3);
4788         assert_eq!(node_txn[0].output.len(), 2); // We can't force trimming of to_remote output as channel_reserve_satoshis block us to do so at channel opening
4789
4790         mine_transaction(&nodes[1], &node_txn[0]);
4791         connect_blocks(&nodes[1], BREAKDOWN_TIMEOUT as u32 - 1);
4792
4793         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
4794         assert_eq!(spend_txn.len(), 1);
4795         assert_eq!(spend_txn[0].input.len(), 1);
4796         check_spends!(spend_txn[0], node_txn[0]);
4797         assert_eq!(spend_txn[0].input[0].sequence.0, BREAKDOWN_TIMEOUT as u32);
4798 }
4799
4800 #[test]
4801 fn test_claim_on_remote_sizeable_push_msat() {
4802         // Same test as previous, just test on remote commitment tx, as per_commitment_point registration changes following you're funder/fundee and
4803         // to_remote output is encumbered by a P2WPKH
4804         let chanmon_cfgs = create_chanmon_cfgs(2);
4805         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4806         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4807         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4808
4809         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 98_000_000, InitFeatures::known(), InitFeatures::known());
4810         nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
4811         check_closed_broadcast!(nodes[0], true);
4812         check_added_monitors!(nodes[0], 1);
4813         check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed);
4814
4815         let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
4816         assert_eq!(node_txn.len(), 1);
4817         check_spends!(node_txn[0], chan.3);
4818         assert_eq!(node_txn[0].output.len(), 2); // We can't force trimming of to_remote output as channel_reserve_satoshis block us to do so at channel opening
4819
4820         mine_transaction(&nodes[1], &node_txn[0]);
4821         check_closed_broadcast!(nodes[1], true);
4822         check_added_monitors!(nodes[1], 1);
4823         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
4824         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
4825
4826         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
4827         assert_eq!(spend_txn.len(), 1);
4828         check_spends!(spend_txn[0], node_txn[0]);
4829 }
4830
4831 #[test]
4832 fn test_claim_on_remote_revoked_sizeable_push_msat() {
4833         // Same test as previous, just test on remote revoked commitment tx, as per_commitment_point registration changes following you're funder/fundee and
4834         // to_remote output is encumbered by a P2WPKH
4835
4836         let chanmon_cfgs = create_chanmon_cfgs(2);
4837         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4838         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4839         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4840
4841         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 59000000, InitFeatures::known(), InitFeatures::known());
4842         let payment_preimage = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
4843         let revoked_local_txn = get_local_commitment_txn!(nodes[0], chan.2);
4844         assert_eq!(revoked_local_txn[0].input.len(), 1);
4845         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan.3.txid());
4846
4847         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage);
4848         mine_transaction(&nodes[1], &revoked_local_txn[0]);
4849         check_closed_broadcast!(nodes[1], true);
4850         check_added_monitors!(nodes[1], 1);
4851         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
4852
4853         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
4854         mine_transaction(&nodes[1], &node_txn[0]);
4855         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
4856
4857         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
4858         assert_eq!(spend_txn.len(), 3);
4859         check_spends!(spend_txn[0], revoked_local_txn[0]); // to_remote output on revoked remote commitment_tx
4860         check_spends!(spend_txn[1], node_txn[0]);
4861         check_spends!(spend_txn[2], revoked_local_txn[0], node_txn[0]); // Both outputs
4862 }
4863
4864 #[test]
4865 fn test_static_spendable_outputs_preimage_tx() {
4866         let chanmon_cfgs = create_chanmon_cfgs(2);
4867         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4868         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4869         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4870
4871         // Create some initial channels
4872         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
4873
4874         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 3_000_000);
4875
4876         let commitment_tx = get_local_commitment_txn!(nodes[0], chan_1.2);
4877         assert_eq!(commitment_tx[0].input.len(), 1);
4878         assert_eq!(commitment_tx[0].input[0].previous_output.txid, chan_1.3.txid());
4879
4880         // Settle A's commitment tx on B's chain
4881         nodes[1].node.claim_funds(payment_preimage);
4882         expect_payment_claimed!(nodes[1], payment_hash, 3_000_000);
4883         check_added_monitors!(nodes[1], 1);
4884         mine_transaction(&nodes[1], &commitment_tx[0]);
4885         check_added_monitors!(nodes[1], 1);
4886         let events = nodes[1].node.get_and_clear_pending_msg_events();
4887         match events[0] {
4888                 MessageSendEvent::UpdateHTLCs { .. } => {},
4889                 _ => panic!("Unexpected event"),
4890         }
4891         match events[1] {
4892                 MessageSendEvent::BroadcastChannelUpdate { .. } => {},
4893                 _ => panic!("Unexepected event"),
4894         }
4895
4896         // Check B's monitor was able to send back output descriptor event for preimage tx on A's commitment tx
4897         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone(); // ChannelManager : 2 (local commitment tx + HTLC-Success), ChannelMonitor: preimage tx
4898         assert_eq!(node_txn.len(), 3);
4899         check_spends!(node_txn[0], commitment_tx[0]);
4900         assert_eq!(node_txn[0].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
4901         check_spends!(node_txn[1], chan_1.3);
4902         check_spends!(node_txn[2], node_txn[1]);
4903
4904         mine_transaction(&nodes[1], &node_txn[0]);
4905         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
4906         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
4907
4908         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
4909         assert_eq!(spend_txn.len(), 1);
4910         check_spends!(spend_txn[0], node_txn[0]);
4911 }
4912
4913 #[test]
4914 fn test_static_spendable_outputs_timeout_tx() {
4915         let chanmon_cfgs = create_chanmon_cfgs(2);
4916         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4917         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4918         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4919
4920         // Create some initial channels
4921         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
4922
4923         // Rebalance the network a bit by relaying one payment through all the channels ...
4924         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
4925
4926         let (_, our_payment_hash, _) = route_payment(&nodes[1], &vec!(&nodes[0])[..], 3_000_000);
4927
4928         let commitment_tx = get_local_commitment_txn!(nodes[0], chan_1.2);
4929         assert_eq!(commitment_tx[0].input.len(), 1);
4930         assert_eq!(commitment_tx[0].input[0].previous_output.txid, chan_1.3.txid());
4931
4932         // Settle A's commitment tx on B' chain
4933         mine_transaction(&nodes[1], &commitment_tx[0]);
4934         check_added_monitors!(nodes[1], 1);
4935         let events = nodes[1].node.get_and_clear_pending_msg_events();
4936         match events[0] {
4937                 MessageSendEvent::BroadcastChannelUpdate { .. } => {},
4938                 _ => panic!("Unexpected event"),
4939         }
4940         connect_blocks(&nodes[1], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
4941
4942         // Check B's monitor was able to send back output descriptor event for timeout tx on A's commitment tx
4943         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
4944         assert_eq!(node_txn.len(), 2); // ChannelManager : 1 local commitent tx, ChannelMonitor: timeout tx
4945         check_spends!(node_txn[0], chan_1.3.clone());
4946         check_spends!(node_txn[1],  commitment_tx[0].clone());
4947         assert_eq!(node_txn[1].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
4948
4949         mine_transaction(&nodes[1], &node_txn[1]);
4950         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
4951         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
4952         expect_payment_failed!(nodes[1], our_payment_hash, false);
4953
4954         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
4955         assert_eq!(spend_txn.len(), 3); // SpendableOutput: remote_commitment_tx.to_remote, timeout_tx.output
4956         check_spends!(spend_txn[0], commitment_tx[0]);
4957         check_spends!(spend_txn[1], node_txn[1]);
4958         check_spends!(spend_txn[2], node_txn[1], commitment_tx[0]); // All outputs
4959 }
4960
4961 #[test]
4962 fn test_static_spendable_outputs_justice_tx_revoked_commitment_tx() {
4963         let chanmon_cfgs = create_chanmon_cfgs(2);
4964         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
4965         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
4966         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
4967
4968         // Create some initial channels
4969         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
4970
4971         let payment_preimage = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
4972         let revoked_local_txn = get_local_commitment_txn!(nodes[0], chan_1.2);
4973         assert_eq!(revoked_local_txn[0].input.len(), 1);
4974         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan_1.3.txid());
4975
4976         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage);
4977
4978         mine_transaction(&nodes[1], &revoked_local_txn[0]);
4979         check_closed_broadcast!(nodes[1], true);
4980         check_added_monitors!(nodes[1], 1);
4981         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
4982
4983         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
4984         assert_eq!(node_txn.len(), 2);
4985         assert_eq!(node_txn[0].input.len(), 2);
4986         check_spends!(node_txn[0], revoked_local_txn[0]);
4987
4988         mine_transaction(&nodes[1], &node_txn[0]);
4989         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
4990
4991         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
4992         assert_eq!(spend_txn.len(), 1);
4993         check_spends!(spend_txn[0], node_txn[0]);
4994 }
4995
4996 #[test]
4997 fn test_static_spendable_outputs_justice_tx_revoked_htlc_timeout_tx() {
4998         let mut chanmon_cfgs = create_chanmon_cfgs(2);
4999         chanmon_cfgs[0].keys_manager.disable_revocation_policy_check = true;
5000         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
5001         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
5002         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
5003
5004         // Create some initial channels
5005         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5006
5007         let payment_preimage = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
5008         let revoked_local_txn = get_local_commitment_txn!(nodes[0], chan_1.2);
5009         assert_eq!(revoked_local_txn[0].input.len(), 1);
5010         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan_1.3.txid());
5011
5012         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage);
5013
5014         // A will generate HTLC-Timeout from revoked commitment tx
5015         mine_transaction(&nodes[0], &revoked_local_txn[0]);
5016         check_closed_broadcast!(nodes[0], true);
5017         check_added_monitors!(nodes[0], 1);
5018         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
5019         connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
5020
5021         let revoked_htlc_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
5022         assert_eq!(revoked_htlc_txn.len(), 2);
5023         check_spends!(revoked_htlc_txn[0], chan_1.3);
5024         assert_eq!(revoked_htlc_txn[1].input.len(), 1);
5025         assert_eq!(revoked_htlc_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
5026         check_spends!(revoked_htlc_txn[1], revoked_local_txn[0]);
5027         assert_ne!(revoked_htlc_txn[1].lock_time.0, 0); // HTLC-Timeout
5028
5029         // B will generate justice tx from A's revoked commitment/HTLC tx
5030         let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
5031         connect_block(&nodes[1], &Block { header, txdata: vec![revoked_local_txn[0].clone(), revoked_htlc_txn[1].clone()] });
5032         check_closed_broadcast!(nodes[1], true);
5033         check_added_monitors!(nodes[1], 1);
5034         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
5035
5036         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
5037         assert_eq!(node_txn.len(), 3); // ChannelMonitor: bogus justice tx, justice tx on revoked outputs, ChannelManager: local commitment tx
5038         // The first transaction generated is bogus - it spends both outputs of revoked_local_txn[0]
5039         // including the one already spent by revoked_htlc_txn[1]. That's OK, we'll spend with valid
5040         // transactions next...
5041         assert_eq!(node_txn[0].input.len(), 3);
5042         check_spends!(node_txn[0], revoked_local_txn[0], revoked_htlc_txn[1]);
5043
5044         assert_eq!(node_txn[1].input.len(), 2);
5045         check_spends!(node_txn[1], revoked_local_txn[0], revoked_htlc_txn[1]);
5046         if node_txn[1].input[1].previous_output.txid == revoked_htlc_txn[1].txid() {
5047                 assert_ne!(node_txn[1].input[0].previous_output, revoked_htlc_txn[1].input[0].previous_output);
5048         } else {
5049                 assert_eq!(node_txn[1].input[0].previous_output.txid, revoked_htlc_txn[1].txid());
5050                 assert_ne!(node_txn[1].input[1].previous_output, revoked_htlc_txn[1].input[0].previous_output);
5051         }
5052
5053         assert_eq!(node_txn[2].input.len(), 1);
5054         check_spends!(node_txn[2], chan_1.3);
5055
5056         mine_transaction(&nodes[1], &node_txn[1]);
5057         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
5058
5059         // Check B's ChannelMonitor was able to generate the right spendable output descriptor
5060         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
5061         assert_eq!(spend_txn.len(), 1);
5062         assert_eq!(spend_txn[0].input.len(), 1);
5063         check_spends!(spend_txn[0], node_txn[1]);
5064 }
5065
5066 #[test]
5067 fn test_static_spendable_outputs_justice_tx_revoked_htlc_success_tx() {
5068         let mut chanmon_cfgs = create_chanmon_cfgs(2);
5069         chanmon_cfgs[1].keys_manager.disable_revocation_policy_check = true;
5070         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
5071         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
5072         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
5073
5074         // Create some initial channels
5075         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5076
5077         let payment_preimage = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
5078         let revoked_local_txn = get_local_commitment_txn!(nodes[1], chan_1.2);
5079         assert_eq!(revoked_local_txn[0].input.len(), 1);
5080         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan_1.3.txid());
5081
5082         // The to-be-revoked commitment tx should have one HTLC and one to_remote output
5083         assert_eq!(revoked_local_txn[0].output.len(), 2);
5084
5085         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage);
5086
5087         // B will generate HTLC-Success from revoked commitment tx
5088         mine_transaction(&nodes[1], &revoked_local_txn[0]);
5089         check_closed_broadcast!(nodes[1], true);
5090         check_added_monitors!(nodes[1], 1);
5091         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
5092         let revoked_htlc_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
5093
5094         assert_eq!(revoked_htlc_txn.len(), 2);
5095         assert_eq!(revoked_htlc_txn[0].input.len(), 1);
5096         assert_eq!(revoked_htlc_txn[0].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
5097         check_spends!(revoked_htlc_txn[0], revoked_local_txn[0]);
5098
5099         // Check that the unspent (of two) outputs on revoked_local_txn[0] is a P2WPKH:
5100         let unspent_local_txn_output = revoked_htlc_txn[0].input[0].previous_output.vout as usize ^ 1;
5101         assert_eq!(revoked_local_txn[0].output[unspent_local_txn_output].script_pubkey.len(), 2 + 20); // P2WPKH
5102
5103         // A will generate justice tx from B's revoked commitment/HTLC tx
5104         let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
5105         connect_block(&nodes[0], &Block { header, txdata: vec![revoked_local_txn[0].clone(), revoked_htlc_txn[0].clone()] });
5106         check_closed_broadcast!(nodes[0], true);
5107         check_added_monitors!(nodes[0], 1);
5108         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
5109
5110         let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
5111         assert_eq!(node_txn.len(), 3); // ChannelMonitor: justice tx on revoked commitment, justice tx on revoked HTLC-success, ChannelManager: local commitment tx
5112
5113         // The first transaction generated is bogus - it spends both outputs of revoked_local_txn[0]
5114         // including the one already spent by revoked_htlc_txn[0]. That's OK, we'll spend with valid
5115         // transactions next...
5116         assert_eq!(node_txn[0].input.len(), 2);
5117         check_spends!(node_txn[0], revoked_local_txn[0], revoked_htlc_txn[0]);
5118         if node_txn[0].input[1].previous_output.txid == revoked_htlc_txn[0].txid() {
5119                 assert_eq!(node_txn[0].input[0].previous_output, revoked_htlc_txn[0].input[0].previous_output);
5120         } else {
5121                 assert_eq!(node_txn[0].input[0].previous_output.txid, revoked_htlc_txn[0].txid());
5122                 assert_eq!(node_txn[0].input[1].previous_output, revoked_htlc_txn[0].input[0].previous_output);
5123         }
5124
5125         assert_eq!(node_txn[1].input.len(), 1);
5126         check_spends!(node_txn[1], revoked_htlc_txn[0]);
5127
5128         check_spends!(node_txn[2], chan_1.3);
5129
5130         mine_transaction(&nodes[0], &node_txn[1]);
5131         connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
5132
5133         // Note that nodes[0]'s tx_broadcaster is still locked, so if we get here the channelmonitor
5134         // didn't try to generate any new transactions.
5135
5136         // Check A's ChannelMonitor was able to generate the right spendable output descriptor
5137         let spend_txn = check_spendable_outputs!(nodes[0], node_cfgs[0].keys_manager);
5138         assert_eq!(spend_txn.len(), 3);
5139         assert_eq!(spend_txn[0].input.len(), 1);
5140         check_spends!(spend_txn[0], revoked_local_txn[0]); // spending to_remote output from revoked local tx
5141         assert_ne!(spend_txn[0].input[0].previous_output, revoked_htlc_txn[0].input[0].previous_output);
5142         check_spends!(spend_txn[1], node_txn[1]); // spending justice tx output on the htlc success tx
5143         check_spends!(spend_txn[2], revoked_local_txn[0], node_txn[1]); // Both outputs
5144 }
5145
5146 #[test]
5147 fn test_onchain_to_onchain_claim() {
5148         // Test that in case of channel closure, we detect the state of output and claim HTLC
5149         // on downstream peer's remote commitment tx.
5150         // First, have C claim an HTLC against its own latest commitment transaction.
5151         // Then, broadcast these to B, which should update the monitor downstream on the A<->B
5152         // channel.
5153         // Finally, check that B will claim the HTLC output if A's latest commitment transaction
5154         // gets broadcast.
5155
5156         let chanmon_cfgs = create_chanmon_cfgs(3);
5157         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
5158         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
5159         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
5160
5161         // Create some initial channels
5162         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5163         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
5164
5165         // Ensure all nodes are at the same height
5166         let node_max_height = nodes.iter().map(|node| node.blocks.lock().unwrap().len()).max().unwrap() as u32;
5167         connect_blocks(&nodes[0], node_max_height - nodes[0].best_block_info().1);
5168         connect_blocks(&nodes[1], node_max_height - nodes[1].best_block_info().1);
5169         connect_blocks(&nodes[2], node_max_height - nodes[2].best_block_info().1);
5170
5171         // Rebalance the network a bit by relaying one payment through all the channels ...
5172         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 8000000);
5173         send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 8000000);
5174
5175         let (payment_preimage, payment_hash, _payment_secret) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 3_000_000);
5176         let commitment_tx = get_local_commitment_txn!(nodes[2], chan_2.2);
5177         check_spends!(commitment_tx[0], chan_2.3);
5178         nodes[2].node.claim_funds(payment_preimage);
5179         expect_payment_claimed!(nodes[2], payment_hash, 3_000_000);
5180         check_added_monitors!(nodes[2], 1);
5181         let updates = get_htlc_update_msgs!(nodes[2], nodes[1].node.get_our_node_id());
5182         assert!(updates.update_add_htlcs.is_empty());
5183         assert!(updates.update_fail_htlcs.is_empty());
5184         assert_eq!(updates.update_fulfill_htlcs.len(), 1);
5185         assert!(updates.update_fail_malformed_htlcs.is_empty());
5186
5187         mine_transaction(&nodes[2], &commitment_tx[0]);
5188         check_closed_broadcast!(nodes[2], true);
5189         check_added_monitors!(nodes[2], 1);
5190         check_closed_event!(nodes[2], 1, ClosureReason::CommitmentTxConfirmed);
5191
5192         let c_txn = nodes[2].tx_broadcaster.txn_broadcasted.lock().unwrap().clone(); // ChannelManager : 2 (commitment tx, HTLC-Success tx), ChannelMonitor : 1 (HTLC-Success tx)
5193         assert_eq!(c_txn.len(), 3);
5194         assert_eq!(c_txn[0], c_txn[2]);
5195         assert_eq!(commitment_tx[0], c_txn[1]);
5196         check_spends!(c_txn[1], chan_2.3);
5197         check_spends!(c_txn[2], c_txn[1]);
5198         assert_eq!(c_txn[1].input[0].witness.clone().last().unwrap().len(), 71);
5199         assert_eq!(c_txn[2].input[0].witness.clone().last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
5200         assert!(c_txn[0].output[0].script_pubkey.is_v0_p2wsh()); // revokeable output
5201         assert_eq!(c_txn[0].lock_time.0, 0); // Success tx
5202
5203         // So we broadcast C's commitment tx and HTLC-Success on B's chain, we should successfully be able to extract preimage and update downstream monitor
5204         let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42};
5205         connect_block(&nodes[1], &Block { header, txdata: vec![c_txn[1].clone(), c_txn[2].clone()]});
5206         check_added_monitors!(nodes[1], 1);
5207         let events = nodes[1].node.get_and_clear_pending_events();
5208         assert_eq!(events.len(), 2);
5209         match events[0] {
5210                 Event::ChannelClosed { reason: ClosureReason::CommitmentTxConfirmed, .. } => {}
5211                 _ => panic!("Unexpected event"),
5212         }
5213         match events[1] {
5214                 Event::PaymentForwarded { fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id } => {
5215                         assert_eq!(fee_earned_msat, Some(1000));
5216                         assert_eq!(prev_channel_id, Some(chan_1.2));
5217                         assert_eq!(claim_from_onchain_tx, true);
5218                         assert_eq!(next_channel_id, Some(chan_2.2));
5219                 },
5220                 _ => panic!("Unexpected event"),
5221         }
5222         {
5223                 let mut b_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
5224                 // ChannelMonitor: claim tx
5225                 assert_eq!(b_txn.len(), 1);
5226                 check_spends!(b_txn[0], chan_2.3); // B local commitment tx, issued by ChannelManager
5227                 b_txn.clear();
5228         }
5229         check_added_monitors!(nodes[1], 1);
5230         let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
5231         assert_eq!(msg_events.len(), 3);
5232         match msg_events[0] {
5233                 MessageSendEvent::BroadcastChannelUpdate { .. } => {},
5234                 _ => panic!("Unexpected event"),
5235         }
5236         match msg_events[1] {
5237                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { .. }, node_id: _ } => {},
5238                 _ => panic!("Unexpected event"),
5239         }
5240         match msg_events[2] {
5241                 MessageSendEvent::UpdateHTLCs { ref node_id, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, .. } } => {
5242                         assert!(update_add_htlcs.is_empty());
5243                         assert!(update_fail_htlcs.is_empty());
5244                         assert_eq!(update_fulfill_htlcs.len(), 1);
5245                         assert!(update_fail_malformed_htlcs.is_empty());
5246                         assert_eq!(nodes[0].node.get_our_node_id(), *node_id);
5247                 },
5248                 _ => panic!("Unexpected event"),
5249         };
5250         // Broadcast A's commitment tx on B's chain to see if we are able to claim inbound HTLC with our HTLC-Success tx
5251         let commitment_tx = get_local_commitment_txn!(nodes[0], chan_1.2);
5252         mine_transaction(&nodes[1], &commitment_tx[0]);
5253         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
5254         let b_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
5255         // ChannelMonitor: HTLC-Success tx, ChannelManager: local commitment tx + HTLC-Success tx
5256         assert_eq!(b_txn.len(), 3);
5257         check_spends!(b_txn[1], chan_1.3);
5258         check_spends!(b_txn[2], b_txn[1]);
5259         check_spends!(b_txn[0], commitment_tx[0]);
5260         assert_eq!(b_txn[0].input[0].witness.clone().last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
5261         assert!(b_txn[0].output[0].script_pubkey.is_v0_p2wpkh()); // direct payment
5262         assert_eq!(b_txn[0].lock_time.0, 0); // Success tx
5263
5264         check_closed_broadcast!(nodes[1], true);
5265         check_added_monitors!(nodes[1], 1);
5266 }
5267
5268 #[test]
5269 fn test_duplicate_payment_hash_one_failure_one_success() {
5270         // Topology : A --> B --> C --> D
5271         // We route 2 payments with same hash between B and C, one will be timeout, the other successfully claim
5272         // Note that because C will refuse to generate two payment secrets for the same payment hash,
5273         // we forward one of the payments onwards to D.
5274         let chanmon_cfgs = create_chanmon_cfgs(4);
5275         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
5276         // When this test was written, the default base fee floated based on the HTLC count.
5277         // It is now fixed, so we simply set the fee to the expected value here.
5278         let mut config = test_default_channel_config();
5279         config.channel_config.forwarding_fee_base_msat = 196;
5280         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs,
5281                 &[Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone())]);
5282         let mut nodes = create_network(4, &node_cfgs, &node_chanmgrs);
5283
5284         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5285         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
5286         create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known());
5287
5288         let node_max_height = nodes.iter().map(|node| node.blocks.lock().unwrap().len()).max().unwrap() as u32;
5289         connect_blocks(&nodes[0], node_max_height - nodes[0].best_block_info().1);
5290         connect_blocks(&nodes[1], node_max_height - nodes[1].best_block_info().1);
5291         connect_blocks(&nodes[2], node_max_height - nodes[2].best_block_info().1);
5292         connect_blocks(&nodes[3], node_max_height - nodes[3].best_block_info().1);
5293
5294         let (our_payment_preimage, duplicate_payment_hash, _) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 900_000);
5295
5296         let payment_secret = nodes[3].node.create_inbound_payment_for_hash(duplicate_payment_hash, None, 7200).unwrap();
5297         // We reduce the final CLTV here by a somewhat arbitrary constant to keep it under the one-byte
5298         // script push size limit so that the below script length checks match
5299         // ACCEPTED_HTLC_SCRIPT_WEIGHT.
5300         let payment_params = PaymentParameters::from_node_id(nodes[3].node.get_our_node_id())
5301                 .with_features(InvoiceFeatures::known());
5302         let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[3], payment_params, 900000, TEST_FINAL_CLTV - 40);
5303         send_along_route_with_secret(&nodes[0], route, &[&[&nodes[1], &nodes[2], &nodes[3]]], 900000, duplicate_payment_hash, payment_secret);
5304
5305         let commitment_txn = get_local_commitment_txn!(nodes[2], chan_2.2);
5306         assert_eq!(commitment_txn[0].input.len(), 1);
5307         check_spends!(commitment_txn[0], chan_2.3);
5308
5309         mine_transaction(&nodes[1], &commitment_txn[0]);
5310         check_closed_broadcast!(nodes[1], true);
5311         check_added_monitors!(nodes[1], 1);
5312         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
5313         connect_blocks(&nodes[1], TEST_FINAL_CLTV - 40 + MIN_CLTV_EXPIRY_DELTA as u32 - 1); // Confirm blocks until the HTLC expires
5314
5315         let htlc_timeout_tx;
5316         { // Extract one of the two HTLC-Timeout transaction
5317                 let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
5318                 // ChannelMonitor: timeout tx * 2-or-3, ChannelManager: local commitment tx
5319                 assert!(node_txn.len() == 4 || node_txn.len() == 3);
5320                 check_spends!(node_txn[0], chan_2.3);
5321
5322                 check_spends!(node_txn[1], commitment_txn[0]);
5323                 assert_eq!(node_txn[1].input.len(), 1);
5324
5325                 if node_txn.len() > 3 {
5326                         check_spends!(node_txn[2], commitment_txn[0]);
5327                         assert_eq!(node_txn[2].input.len(), 1);
5328                         assert_eq!(node_txn[1].input[0].previous_output, node_txn[2].input[0].previous_output);
5329
5330                         check_spends!(node_txn[3], commitment_txn[0]);
5331                         assert_ne!(node_txn[1].input[0].previous_output, node_txn[3].input[0].previous_output);
5332                 } else {
5333                         check_spends!(node_txn[2], commitment_txn[0]);
5334                         assert_ne!(node_txn[1].input[0].previous_output, node_txn[2].input[0].previous_output);
5335                 }
5336
5337                 assert_eq!(node_txn[1].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
5338                 assert_eq!(node_txn[2].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
5339                 if node_txn.len() > 3 {
5340                         assert_eq!(node_txn[3].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
5341                 }
5342                 htlc_timeout_tx = node_txn[1].clone();
5343         }
5344
5345         nodes[2].node.claim_funds(our_payment_preimage);
5346         expect_payment_claimed!(nodes[2], duplicate_payment_hash, 900_000);
5347
5348         mine_transaction(&nodes[2], &commitment_txn[0]);
5349         check_added_monitors!(nodes[2], 2);
5350         check_closed_event!(nodes[2], 1, ClosureReason::CommitmentTxConfirmed);
5351         let events = nodes[2].node.get_and_clear_pending_msg_events();
5352         match events[0] {
5353                 MessageSendEvent::UpdateHTLCs { .. } => {},
5354                 _ => panic!("Unexpected event"),
5355         }
5356         match events[1] {
5357                 MessageSendEvent::BroadcastChannelUpdate { .. } => {},
5358                 _ => panic!("Unexepected event"),
5359         }
5360         let htlc_success_txn: Vec<_> = nodes[2].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
5361         assert_eq!(htlc_success_txn.len(), 5); // ChannelMonitor: HTLC-Success txn (*2 due to 2-HTLC outputs), ChannelManager: local commitment tx + HTLC-Success txn (*2 due to 2-HTLC outputs)
5362         check_spends!(htlc_success_txn[0], commitment_txn[0]);
5363         check_spends!(htlc_success_txn[1], commitment_txn[0]);
5364         assert_eq!(htlc_success_txn[0].input.len(), 1);
5365         assert_eq!(htlc_success_txn[0].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
5366         assert_eq!(htlc_success_txn[1].input.len(), 1);
5367         assert_eq!(htlc_success_txn[1].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
5368         assert_ne!(htlc_success_txn[0].input[0].previous_output, htlc_success_txn[1].input[0].previous_output);
5369         assert_eq!(htlc_success_txn[2], commitment_txn[0]);
5370         assert_eq!(htlc_success_txn[3], htlc_success_txn[0]);
5371         assert_eq!(htlc_success_txn[4], htlc_success_txn[1]);
5372         assert_ne!(htlc_success_txn[0].input[0].previous_output, htlc_timeout_tx.input[0].previous_output);
5373
5374         mine_transaction(&nodes[1], &htlc_timeout_tx);
5375         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
5376         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::NextHopChannel { node_id: Some(nodes[2].node.get_our_node_id()), channel_id: chan_2.2 }]);
5377         let htlc_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
5378         assert!(htlc_updates.update_add_htlcs.is_empty());
5379         assert_eq!(htlc_updates.update_fail_htlcs.len(), 1);
5380         let first_htlc_id = htlc_updates.update_fail_htlcs[0].htlc_id;
5381         assert!(htlc_updates.update_fulfill_htlcs.is_empty());
5382         assert!(htlc_updates.update_fail_malformed_htlcs.is_empty());
5383         check_added_monitors!(nodes[1], 1);
5384
5385         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &htlc_updates.update_fail_htlcs[0]);
5386         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
5387         {
5388                 commitment_signed_dance!(nodes[0], nodes[1], &htlc_updates.commitment_signed, false, true);
5389         }
5390         expect_payment_failed_with_update!(nodes[0], duplicate_payment_hash, false, chan_2.0.contents.short_channel_id, true);
5391
5392         // Solve 2nd HTLC by broadcasting on B's chain HTLC-Success Tx from C
5393         // Note that the fee paid is effectively double as the HTLC value (including the nodes[1] fee
5394         // and nodes[2] fee) is rounded down and then claimed in full.
5395         mine_transaction(&nodes[1], &htlc_success_txn[0]);
5396         expect_payment_forwarded!(nodes[1], nodes[0], nodes[2], Some(196*2), true, true);
5397         let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
5398         assert!(updates.update_add_htlcs.is_empty());
5399         assert!(updates.update_fail_htlcs.is_empty());
5400         assert_eq!(updates.update_fulfill_htlcs.len(), 1);
5401         assert_ne!(updates.update_fulfill_htlcs[0].htlc_id, first_htlc_id);
5402         assert!(updates.update_fail_malformed_htlcs.is_empty());
5403         check_added_monitors!(nodes[1], 1);
5404
5405         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
5406         commitment_signed_dance!(nodes[0], nodes[1], &updates.commitment_signed, false);
5407
5408         let events = nodes[0].node.get_and_clear_pending_events();
5409         match events[0] {
5410                 Event::PaymentSent { ref payment_preimage, ref payment_hash, .. } => {
5411                         assert_eq!(*payment_preimage, our_payment_preimage);
5412                         assert_eq!(*payment_hash, duplicate_payment_hash);
5413                 }
5414                 _ => panic!("Unexpected event"),
5415         }
5416 }
5417
5418 #[test]
5419 fn test_dynamic_spendable_outputs_local_htlc_success_tx() {
5420         let chanmon_cfgs = create_chanmon_cfgs(2);
5421         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
5422         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
5423         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
5424
5425         // Create some initial channels
5426         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5427
5428         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 9_000_000);
5429         let local_txn = get_local_commitment_txn!(nodes[1], chan_1.2);
5430         assert_eq!(local_txn.len(), 1);
5431         assert_eq!(local_txn[0].input.len(), 1);
5432         check_spends!(local_txn[0], chan_1.3);
5433
5434         // Give B knowledge of preimage to be able to generate a local HTLC-Success Tx
5435         nodes[1].node.claim_funds(payment_preimage);
5436         expect_payment_claimed!(nodes[1], payment_hash, 9_000_000);
5437         check_added_monitors!(nodes[1], 1);
5438
5439         mine_transaction(&nodes[1], &local_txn[0]);
5440         check_added_monitors!(nodes[1], 1);
5441         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
5442         let events = nodes[1].node.get_and_clear_pending_msg_events();
5443         match events[0] {
5444                 MessageSendEvent::UpdateHTLCs { .. } => {},
5445                 _ => panic!("Unexpected event"),
5446         }
5447         match events[1] {
5448                 MessageSendEvent::BroadcastChannelUpdate { .. } => {},
5449                 _ => panic!("Unexepected event"),
5450         }
5451         let node_tx = {
5452                 let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
5453                 assert_eq!(node_txn.len(), 3);
5454                 assert_eq!(node_txn[0], node_txn[2]);
5455                 assert_eq!(node_txn[1], local_txn[0]);
5456                 assert_eq!(node_txn[0].input.len(), 1);
5457                 assert_eq!(node_txn[0].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
5458                 check_spends!(node_txn[0], local_txn[0]);
5459                 node_txn[0].clone()
5460         };
5461
5462         mine_transaction(&nodes[1], &node_tx);
5463         connect_blocks(&nodes[1], BREAKDOWN_TIMEOUT as u32 - 1);
5464
5465         // Verify that B is able to spend its own HTLC-Success tx thanks to spendable output event given back by its ChannelMonitor
5466         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
5467         assert_eq!(spend_txn.len(), 1);
5468         assert_eq!(spend_txn[0].input.len(), 1);
5469         check_spends!(spend_txn[0], node_tx);
5470         assert_eq!(spend_txn[0].input[0].sequence.0, BREAKDOWN_TIMEOUT as u32);
5471 }
5472
5473 fn do_test_fail_backwards_unrevoked_remote_announce(deliver_last_raa: bool, announce_latest: bool) {
5474         // Test that we fail backwards the full set of HTLCs we need to when remote broadcasts an
5475         // unrevoked commitment transaction.
5476         // This includes HTLCs which were below the dust threshold as well as HTLCs which were awaiting
5477         // a remote RAA before they could be failed backwards (and combinations thereof).
5478         // We also test duplicate-hash HTLCs by adding two nodes on each side of the target nodes which
5479         // use the same payment hashes.
5480         // Thus, we use a six-node network:
5481         //
5482         // A \         / E
5483         //    - C - D -
5484         // B /         \ F
5485         // And test where C fails back to A/B when D announces its latest commitment transaction
5486         let chanmon_cfgs = create_chanmon_cfgs(6);
5487         let node_cfgs = create_node_cfgs(6, &chanmon_cfgs);
5488         // When this test was written, the default base fee floated based on the HTLC count.
5489         // It is now fixed, so we simply set the fee to the expected value here.
5490         let mut config = test_default_channel_config();
5491         config.channel_config.forwarding_fee_base_msat = 196;
5492         let node_chanmgrs = create_node_chanmgrs(6, &node_cfgs,
5493                 &[Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone())]);
5494         let nodes = create_network(6, &node_cfgs, &node_chanmgrs);
5495
5496         let _chan_0_2 = create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known());
5497         let _chan_1_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
5498         let chan_2_3 = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known());
5499         let chan_3_4 = create_announced_chan_between_nodes(&nodes, 3, 4, InitFeatures::known(), InitFeatures::known());
5500         let chan_3_5  = create_announced_chan_between_nodes(&nodes, 3, 5, InitFeatures::known(), InitFeatures::known());
5501
5502         // Rebalance and check output sanity...
5503         send_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 500000);
5504         send_payment(&nodes[1], &[&nodes[2], &nodes[3], &nodes[5]], 500000);
5505         assert_eq!(get_local_commitment_txn!(nodes[3], chan_2_3.2)[0].output.len(), 2);
5506
5507         let ds_dust_limit = nodes[3].node.channel_state.lock().unwrap().by_id.get(&chan_2_3.2).unwrap().holder_dust_limit_satoshis;
5508         // 0th HTLC:
5509         let (_, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
5510         // 1st HTLC:
5511         let (_, payment_hash_2, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
5512         let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[5], ds_dust_limit*1000);
5513         // 2nd HTLC:
5514         send_along_route_with_secret(&nodes[1], route.clone(), &[&[&nodes[2], &nodes[3], &nodes[5]]], ds_dust_limit*1000, payment_hash_1, nodes[5].node.create_inbound_payment_for_hash(payment_hash_1, None, 7200).unwrap()); // not added < dust limit + HTLC tx fee
5515         // 3rd HTLC:
5516         send_along_route_with_secret(&nodes[1], route, &[&[&nodes[2], &nodes[3], &nodes[5]]], ds_dust_limit*1000, payment_hash_2, nodes[5].node.create_inbound_payment_for_hash(payment_hash_2, None, 7200).unwrap()); // not added < dust limit + HTLC tx fee
5517         // 4th HTLC:
5518         let (_, payment_hash_3, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
5519         // 5th HTLC:
5520         let (_, payment_hash_4, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
5521         let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[5], 1000000);
5522         // 6th HTLC:
5523         send_along_route_with_secret(&nodes[1], route.clone(), &[&[&nodes[2], &nodes[3], &nodes[5]]], 1000000, payment_hash_3, nodes[5].node.create_inbound_payment_for_hash(payment_hash_3, None, 7200).unwrap());
5524         // 7th HTLC:
5525         send_along_route_with_secret(&nodes[1], route, &[&[&nodes[2], &nodes[3], &nodes[5]]], 1000000, payment_hash_4, nodes[5].node.create_inbound_payment_for_hash(payment_hash_4, None, 7200).unwrap());
5526
5527         // 8th HTLC:
5528         let (_, payment_hash_5, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
5529         // 9th HTLC:
5530         let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[5], ds_dust_limit*1000);
5531         send_along_route_with_secret(&nodes[1], route, &[&[&nodes[2], &nodes[3], &nodes[5]]], ds_dust_limit*1000, payment_hash_5, nodes[5].node.create_inbound_payment_for_hash(payment_hash_5, None, 7200).unwrap()); // not added < dust limit + HTLC tx fee
5532
5533         // 10th HTLC:
5534         let (_, payment_hash_6, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
5535         // 11th HTLC:
5536         let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[5], 1000000);
5537         send_along_route_with_secret(&nodes[1], route, &[&[&nodes[2], &nodes[3], &nodes[5]]], 1000000, payment_hash_6, nodes[5].node.create_inbound_payment_for_hash(payment_hash_6, None, 7200).unwrap());
5538
5539         // Double-check that six of the new HTLC were added
5540         // We now have six HTLCs pending over the dust limit and six HTLCs under the dust limit (ie,
5541         // with to_local and to_remote outputs, 8 outputs and 6 HTLCs not included).
5542         assert_eq!(get_local_commitment_txn!(nodes[3], chan_2_3.2).len(), 1);
5543         assert_eq!(get_local_commitment_txn!(nodes[3], chan_2_3.2)[0].output.len(), 8);
5544
5545         // Now fail back three of the over-dust-limit and three of the under-dust-limit payments in one go.
5546         // Fail 0th below-dust, 4th above-dust, 8th above-dust, 10th below-dust HTLCs
5547         nodes[4].node.fail_htlc_backwards(&payment_hash_1);
5548         nodes[4].node.fail_htlc_backwards(&payment_hash_3);
5549         nodes[4].node.fail_htlc_backwards(&payment_hash_5);
5550         nodes[4].node.fail_htlc_backwards(&payment_hash_6);
5551         check_added_monitors!(nodes[4], 0);
5552
5553         let failed_destinations = vec![
5554                 HTLCDestination::FailedPayment { payment_hash: payment_hash_1 },
5555                 HTLCDestination::FailedPayment { payment_hash: payment_hash_3 },
5556                 HTLCDestination::FailedPayment { payment_hash: payment_hash_5 },
5557                 HTLCDestination::FailedPayment { payment_hash: payment_hash_6 },
5558         ];
5559         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[4], failed_destinations);
5560         check_added_monitors!(nodes[4], 1);
5561
5562         let four_removes = get_htlc_update_msgs!(nodes[4], nodes[3].node.get_our_node_id());
5563         nodes[3].node.handle_update_fail_htlc(&nodes[4].node.get_our_node_id(), &four_removes.update_fail_htlcs[0]);
5564         nodes[3].node.handle_update_fail_htlc(&nodes[4].node.get_our_node_id(), &four_removes.update_fail_htlcs[1]);
5565         nodes[3].node.handle_update_fail_htlc(&nodes[4].node.get_our_node_id(), &four_removes.update_fail_htlcs[2]);
5566         nodes[3].node.handle_update_fail_htlc(&nodes[4].node.get_our_node_id(), &four_removes.update_fail_htlcs[3]);
5567         commitment_signed_dance!(nodes[3], nodes[4], four_removes.commitment_signed, false);
5568
5569         // Fail 3rd below-dust and 7th above-dust HTLCs
5570         nodes[5].node.fail_htlc_backwards(&payment_hash_2);
5571         nodes[5].node.fail_htlc_backwards(&payment_hash_4);
5572         check_added_monitors!(nodes[5], 0);
5573
5574         let failed_destinations_2 = vec![
5575                 HTLCDestination::FailedPayment { payment_hash: payment_hash_2 },
5576                 HTLCDestination::FailedPayment { payment_hash: payment_hash_4 },
5577         ];
5578         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[5], failed_destinations_2);
5579         check_added_monitors!(nodes[5], 1);
5580
5581         let two_removes = get_htlc_update_msgs!(nodes[5], nodes[3].node.get_our_node_id());
5582         nodes[3].node.handle_update_fail_htlc(&nodes[5].node.get_our_node_id(), &two_removes.update_fail_htlcs[0]);
5583         nodes[3].node.handle_update_fail_htlc(&nodes[5].node.get_our_node_id(), &two_removes.update_fail_htlcs[1]);
5584         commitment_signed_dance!(nodes[3], nodes[5], two_removes.commitment_signed, false);
5585
5586         let ds_prev_commitment_tx = get_local_commitment_txn!(nodes[3], chan_2_3.2);
5587
5588         // After 4 and 2 removes respectively above in nodes[4] and nodes[5], nodes[3] should receive 6 PaymentForwardedFailed events
5589         let failed_destinations_3 = vec![
5590                 HTLCDestination::NextHopChannel { node_id: Some(nodes[4].node.get_our_node_id()), channel_id: chan_3_4.2 },
5591                 HTLCDestination::NextHopChannel { node_id: Some(nodes[4].node.get_our_node_id()), channel_id: chan_3_4.2 },
5592                 HTLCDestination::NextHopChannel { node_id: Some(nodes[4].node.get_our_node_id()), channel_id: chan_3_4.2 },
5593                 HTLCDestination::NextHopChannel { node_id: Some(nodes[4].node.get_our_node_id()), channel_id: chan_3_4.2 },
5594                 HTLCDestination::NextHopChannel { node_id: Some(nodes[5].node.get_our_node_id()), channel_id: chan_3_5.2 },
5595                 HTLCDestination::NextHopChannel { node_id: Some(nodes[5].node.get_our_node_id()), channel_id: chan_3_5.2 },
5596         ];
5597         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[3], failed_destinations_3);
5598         check_added_monitors!(nodes[3], 1);
5599         let six_removes = get_htlc_update_msgs!(nodes[3], nodes[2].node.get_our_node_id());
5600         nodes[2].node.handle_update_fail_htlc(&nodes[3].node.get_our_node_id(), &six_removes.update_fail_htlcs[0]);
5601         nodes[2].node.handle_update_fail_htlc(&nodes[3].node.get_our_node_id(), &six_removes.update_fail_htlcs[1]);
5602         nodes[2].node.handle_update_fail_htlc(&nodes[3].node.get_our_node_id(), &six_removes.update_fail_htlcs[2]);
5603         nodes[2].node.handle_update_fail_htlc(&nodes[3].node.get_our_node_id(), &six_removes.update_fail_htlcs[3]);
5604         nodes[2].node.handle_update_fail_htlc(&nodes[3].node.get_our_node_id(), &six_removes.update_fail_htlcs[4]);
5605         nodes[2].node.handle_update_fail_htlc(&nodes[3].node.get_our_node_id(), &six_removes.update_fail_htlcs[5]);
5606         if deliver_last_raa {
5607                 commitment_signed_dance!(nodes[2], nodes[3], six_removes.commitment_signed, false);
5608         } else {
5609                 let _cs_last_raa = commitment_signed_dance!(nodes[2], nodes[3], six_removes.commitment_signed, false, true, false, true);
5610         }
5611
5612         // D's latest commitment transaction now contains 1st + 2nd + 9th HTLCs (implicitly, they're
5613         // below the dust limit) and the 5th + 6th + 11th HTLCs. It has failed back the 0th, 3rd, 4th,
5614         // 7th, 8th, and 10th, but as we haven't yet delivered the final RAA to C, the fails haven't
5615         // propagated back to A/B yet (and D has two unrevoked commitment transactions).
5616         //
5617         // We now broadcast the latest commitment transaction, which *should* result in failures for
5618         // the 0th, 1st, 2nd, 3rd, 4th, 7th, 8th, 9th, and 10th HTLCs, ie all the below-dust HTLCs and
5619         // the non-broadcast above-dust HTLCs.
5620         //
5621         // Alternatively, we may broadcast the previous commitment transaction, which should only
5622         // result in failures for the below-dust HTLCs, ie the 0th, 1st, 2nd, 3rd, 9th, and 10th HTLCs.
5623         let ds_last_commitment_tx = get_local_commitment_txn!(nodes[3], chan_2_3.2);
5624
5625         if announce_latest {
5626                 mine_transaction(&nodes[2], &ds_last_commitment_tx[0]);
5627         } else {
5628                 mine_transaction(&nodes[2], &ds_prev_commitment_tx[0]);
5629         }
5630         let events = nodes[2].node.get_and_clear_pending_events();
5631         let close_event = if deliver_last_raa {
5632                 assert_eq!(events.len(), 2 + 6);
5633                 events.last().clone().unwrap()
5634         } else {
5635                 assert_eq!(events.len(), 1);
5636                 events.last().clone().unwrap()
5637         };
5638         match close_event {
5639                 Event::ChannelClosed { reason: ClosureReason::CommitmentTxConfirmed, .. } => {}
5640                 _ => panic!("Unexpected event"),
5641         }
5642
5643         connect_blocks(&nodes[2], ANTI_REORG_DELAY - 1);
5644         check_closed_broadcast!(nodes[2], true);
5645         if deliver_last_raa {
5646                 expect_pending_htlcs_forwardable_from_events!(nodes[2], events[0..1], true);
5647
5648                 let expected_destinations: Vec<HTLCDestination> = repeat(HTLCDestination::NextHopChannel { node_id: Some(nodes[3].node.get_our_node_id()), channel_id: chan_2_3.2 }).take(3).collect();
5649                 expect_htlc_handling_failed_destinations!(nodes[2].node.get_and_clear_pending_events(), expected_destinations);
5650         } else {
5651                 let expected_destinations: Vec<HTLCDestination> = if announce_latest {
5652                         repeat(HTLCDestination::NextHopChannel { node_id: Some(nodes[3].node.get_our_node_id()), channel_id: chan_2_3.2 }).take(9).collect()
5653                 } else {
5654                         repeat(HTLCDestination::NextHopChannel { node_id: Some(nodes[3].node.get_our_node_id()), channel_id: chan_2_3.2 }).take(6).collect()
5655                 };
5656
5657                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[2], expected_destinations);
5658         }
5659         check_added_monitors!(nodes[2], 3);
5660
5661         let cs_msgs = nodes[2].node.get_and_clear_pending_msg_events();
5662         assert_eq!(cs_msgs.len(), 2);
5663         let mut a_done = false;
5664         for msg in cs_msgs {
5665                 match msg {
5666                         MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
5667                                 // Both under-dust HTLCs and the one above-dust HTLC that we had already failed
5668                                 // should be failed-backwards here.
5669                                 let target = if *node_id == nodes[0].node.get_our_node_id() {
5670                                         // If announce_latest, expect 0th, 1st, 4th, 8th, 10th HTLCs, else only 0th, 1st, 10th below-dust HTLCs
5671                                         for htlc in &updates.update_fail_htlcs {
5672                                                 assert!(htlc.htlc_id == 1 || htlc.htlc_id == 2 || htlc.htlc_id == 6 || if announce_latest { htlc.htlc_id == 3 || htlc.htlc_id == 5 } else { false });
5673                                         }
5674                                         assert_eq!(updates.update_fail_htlcs.len(), if announce_latest { 5 } else { 3 });
5675                                         assert!(!a_done);
5676                                         a_done = true;
5677                                         &nodes[0]
5678                                 } else {
5679                                         // If announce_latest, expect 2nd, 3rd, 7th, 9th HTLCs, else only 2nd, 3rd, 9th below-dust HTLCs
5680                                         for htlc in &updates.update_fail_htlcs {
5681                                                 assert!(htlc.htlc_id == 1 || htlc.htlc_id == 2 || htlc.htlc_id == 5 || if announce_latest { htlc.htlc_id == 4 } else { false });
5682                                         }
5683                                         assert_eq!(*node_id, nodes[1].node.get_our_node_id());
5684                                         assert_eq!(updates.update_fail_htlcs.len(), if announce_latest { 4 } else { 3 });
5685                                         &nodes[1]
5686                                 };
5687                                 target.node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
5688                                 target.node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &updates.update_fail_htlcs[1]);
5689                                 target.node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &updates.update_fail_htlcs[2]);
5690                                 if announce_latest {
5691                                         target.node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &updates.update_fail_htlcs[3]);
5692                                         if *node_id == nodes[0].node.get_our_node_id() {
5693                                                 target.node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &updates.update_fail_htlcs[4]);
5694                                         }
5695                                 }
5696                                 commitment_signed_dance!(target, nodes[2], updates.commitment_signed, false, true);
5697                         },
5698                         _ => panic!("Unexpected event"),
5699                 }
5700         }
5701
5702         let as_events = nodes[0].node.get_and_clear_pending_events();
5703         assert_eq!(as_events.len(), if announce_latest { 5 } else { 3 });
5704         let mut as_failds = HashSet::new();
5705         let mut as_updates = 0;
5706         for event in as_events.iter() {
5707                 if let &Event::PaymentPathFailed { ref payment_hash, ref payment_failed_permanently, ref network_update, .. } = event {
5708                         assert!(as_failds.insert(*payment_hash));
5709                         if *payment_hash != payment_hash_2 {
5710                                 assert_eq!(*payment_failed_permanently, deliver_last_raa);
5711                         } else {
5712                                 assert!(!payment_failed_permanently);
5713                         }
5714                         if network_update.is_some() {
5715                                 as_updates += 1;
5716                         }
5717                 } else { panic!("Unexpected event"); }
5718         }
5719         assert!(as_failds.contains(&payment_hash_1));
5720         assert!(as_failds.contains(&payment_hash_2));
5721         if announce_latest {
5722                 assert!(as_failds.contains(&payment_hash_3));
5723                 assert!(as_failds.contains(&payment_hash_5));
5724         }
5725         assert!(as_failds.contains(&payment_hash_6));
5726
5727         let bs_events = nodes[1].node.get_and_clear_pending_events();
5728         assert_eq!(bs_events.len(), if announce_latest { 4 } else { 3 });
5729         let mut bs_failds = HashSet::new();
5730         let mut bs_updates = 0;
5731         for event in bs_events.iter() {
5732                 if let &Event::PaymentPathFailed { ref payment_hash, ref payment_failed_permanently, ref network_update, .. } = event {
5733                         assert!(bs_failds.insert(*payment_hash));
5734                         if *payment_hash != payment_hash_1 && *payment_hash != payment_hash_5 {
5735                                 assert_eq!(*payment_failed_permanently, deliver_last_raa);
5736                         } else {
5737                                 assert!(!payment_failed_permanently);
5738                         }
5739                         if network_update.is_some() {
5740                                 bs_updates += 1;
5741                         }
5742                 } else { panic!("Unexpected event"); }
5743         }
5744         assert!(bs_failds.contains(&payment_hash_1));
5745         assert!(bs_failds.contains(&payment_hash_2));
5746         if announce_latest {
5747                 assert!(bs_failds.contains(&payment_hash_4));
5748         }
5749         assert!(bs_failds.contains(&payment_hash_5));
5750
5751         // For each HTLC which was not failed-back by normal process (ie deliver_last_raa), we should
5752         // get a NetworkUpdate. A should have gotten 4 HTLCs which were failed-back due to
5753         // unknown-preimage-etc, B should have gotten 2. Thus, in the
5754         // announce_latest && deliver_last_raa case, we should have 5-4=1 and 4-2=2 NetworkUpdates.
5755         assert_eq!(as_updates, if deliver_last_raa { 1 } else if !announce_latest { 3 } else { 5 });
5756         assert_eq!(bs_updates, if deliver_last_raa { 2 } else if !announce_latest { 3 } else { 4 });
5757 }
5758
5759 #[test]
5760 fn test_fail_backwards_latest_remote_announce_a() {
5761         do_test_fail_backwards_unrevoked_remote_announce(false, true);
5762 }
5763
5764 #[test]
5765 fn test_fail_backwards_latest_remote_announce_b() {
5766         do_test_fail_backwards_unrevoked_remote_announce(true, true);
5767 }
5768
5769 #[test]
5770 fn test_fail_backwards_previous_remote_announce() {
5771         do_test_fail_backwards_unrevoked_remote_announce(false, false);
5772         // Note that true, true doesn't make sense as it implies we announce a revoked state, which is
5773         // tested for in test_commitment_revoked_fail_backward_exhaustive()
5774 }
5775
5776 #[test]
5777 fn test_dynamic_spendable_outputs_local_htlc_timeout_tx() {
5778         let chanmon_cfgs = create_chanmon_cfgs(2);
5779         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
5780         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
5781         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
5782
5783         // Create some initial channels
5784         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5785
5786         let (_, our_payment_hash, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 9000000);
5787         let local_txn = get_local_commitment_txn!(nodes[0], chan_1.2);
5788         assert_eq!(local_txn[0].input.len(), 1);
5789         check_spends!(local_txn[0], chan_1.3);
5790
5791         // Timeout HTLC on A's chain and so it can generate a HTLC-Timeout tx
5792         mine_transaction(&nodes[0], &local_txn[0]);
5793         check_closed_broadcast!(nodes[0], true);
5794         check_added_monitors!(nodes[0], 1);
5795         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
5796         connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
5797
5798         let htlc_timeout = {
5799                 let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
5800                 assert_eq!(node_txn.len(), 2);
5801                 check_spends!(node_txn[0], chan_1.3);
5802                 assert_eq!(node_txn[1].input.len(), 1);
5803                 assert_eq!(node_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
5804                 check_spends!(node_txn[1], local_txn[0]);
5805                 node_txn[1].clone()
5806         };
5807
5808         mine_transaction(&nodes[0], &htlc_timeout);
5809         connect_blocks(&nodes[0], BREAKDOWN_TIMEOUT as u32 - 1);
5810         expect_payment_failed!(nodes[0], our_payment_hash, false);
5811
5812         // Verify that A is able to spend its own HTLC-Timeout tx thanks to spendable output event given back by its ChannelMonitor
5813         let spend_txn = check_spendable_outputs!(nodes[0], node_cfgs[0].keys_manager);
5814         assert_eq!(spend_txn.len(), 3);
5815         check_spends!(spend_txn[0], local_txn[0]);
5816         assert_eq!(spend_txn[1].input.len(), 1);
5817         check_spends!(spend_txn[1], htlc_timeout);
5818         assert_eq!(spend_txn[1].input[0].sequence.0, BREAKDOWN_TIMEOUT as u32);
5819         assert_eq!(spend_txn[2].input.len(), 2);
5820         check_spends!(spend_txn[2], local_txn[0], htlc_timeout);
5821         assert!(spend_txn[2].input[0].sequence.0 == BREAKDOWN_TIMEOUT as u32 ||
5822                 spend_txn[2].input[1].sequence.0 == BREAKDOWN_TIMEOUT as u32);
5823 }
5824
5825 #[test]
5826 fn test_key_derivation_params() {
5827         // This test is a copy of test_dynamic_spendable_outputs_local_htlc_timeout_tx, with
5828         // a key manager rotation to test that key_derivation_params returned in DynamicOutputP2WSH
5829         // let us re-derive the channel key set to then derive a delayed_payment_key.
5830
5831         let chanmon_cfgs = create_chanmon_cfgs(3);
5832
5833         // We manually create the node configuration to backup the seed.
5834         let seed = [42; 32];
5835         let keys_manager = test_utils::TestKeysInterface::new(&seed, Network::Testnet);
5836         let chain_monitor = test_utils::TestChainMonitor::new(Some(&chanmon_cfgs[0].chain_source), &chanmon_cfgs[0].tx_broadcaster, &chanmon_cfgs[0].logger, &chanmon_cfgs[0].fee_estimator, &chanmon_cfgs[0].persister, &keys_manager);
5837         let network_graph = NetworkGraph::new(chanmon_cfgs[0].chain_source.genesis_hash, &chanmon_cfgs[0].logger);
5838         let node = NodeCfg { chain_source: &chanmon_cfgs[0].chain_source, logger: &chanmon_cfgs[0].logger, tx_broadcaster: &chanmon_cfgs[0].tx_broadcaster, fee_estimator: &chanmon_cfgs[0].fee_estimator, chain_monitor, keys_manager: &keys_manager, network_graph, node_seed: seed, features: InitFeatures::known() };
5839         let mut node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
5840         node_cfgs.remove(0);
5841         node_cfgs.insert(0, node);
5842
5843         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
5844         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
5845
5846         // Create some initial channels
5847         // Create a dummy channel to advance index by one and thus test re-derivation correctness
5848         // for node 0
5849         let chan_0 = create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known());
5850         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5851         assert_ne!(chan_0.3.output[0].script_pubkey, chan_1.3.output[0].script_pubkey);
5852
5853         // Ensure all nodes are at the same height
5854         let node_max_height = nodes.iter().map(|node| node.blocks.lock().unwrap().len()).max().unwrap() as u32;
5855         connect_blocks(&nodes[0], node_max_height - nodes[0].best_block_info().1);
5856         connect_blocks(&nodes[1], node_max_height - nodes[1].best_block_info().1);
5857         connect_blocks(&nodes[2], node_max_height - nodes[2].best_block_info().1);
5858
5859         let (_, our_payment_hash, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 9000000);
5860         let local_txn_0 = get_local_commitment_txn!(nodes[0], chan_0.2);
5861         let local_txn_1 = get_local_commitment_txn!(nodes[0], chan_1.2);
5862         assert_eq!(local_txn_1[0].input.len(), 1);
5863         check_spends!(local_txn_1[0], chan_1.3);
5864
5865         // We check funding pubkey are unique
5866         let (from_0_funding_key_0, from_0_funding_key_1) = (PublicKey::from_slice(&local_txn_0[0].input[0].witness.to_vec()[3][2..35]), PublicKey::from_slice(&local_txn_0[0].input[0].witness.to_vec()[3][36..69]));
5867         let (from_1_funding_key_0, from_1_funding_key_1) = (PublicKey::from_slice(&local_txn_1[0].input[0].witness.to_vec()[3][2..35]), PublicKey::from_slice(&local_txn_1[0].input[0].witness.to_vec()[3][36..69]));
5868         if from_0_funding_key_0 == from_1_funding_key_0
5869             || from_0_funding_key_0 == from_1_funding_key_1
5870             || from_0_funding_key_1 == from_1_funding_key_0
5871             || from_0_funding_key_1 == from_1_funding_key_1 {
5872                 panic!("Funding pubkeys aren't unique");
5873         }
5874
5875         // Timeout HTLC on A's chain and so it can generate a HTLC-Timeout tx
5876         mine_transaction(&nodes[0], &local_txn_1[0]);
5877         connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
5878         check_closed_broadcast!(nodes[0], true);
5879         check_added_monitors!(nodes[0], 1);
5880         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
5881
5882         let htlc_timeout = {
5883                 let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
5884                 assert_eq!(node_txn[1].input.len(), 1);
5885                 assert_eq!(node_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
5886                 check_spends!(node_txn[1], local_txn_1[0]);
5887                 node_txn[1].clone()
5888         };
5889
5890         mine_transaction(&nodes[0], &htlc_timeout);
5891         connect_blocks(&nodes[0], BREAKDOWN_TIMEOUT as u32 - 1);
5892         expect_payment_failed!(nodes[0], our_payment_hash, false);
5893
5894         // Verify that A is able to spend its own HTLC-Timeout tx thanks to spendable output event given back by its ChannelMonitor
5895         let new_keys_manager = test_utils::TestKeysInterface::new(&seed, Network::Testnet);
5896         let spend_txn = check_spendable_outputs!(nodes[0], new_keys_manager);
5897         assert_eq!(spend_txn.len(), 3);
5898         check_spends!(spend_txn[0], local_txn_1[0]);
5899         assert_eq!(spend_txn[1].input.len(), 1);
5900         check_spends!(spend_txn[1], htlc_timeout);
5901         assert_eq!(spend_txn[1].input[0].sequence.0, BREAKDOWN_TIMEOUT as u32);
5902         assert_eq!(spend_txn[2].input.len(), 2);
5903         check_spends!(spend_txn[2], local_txn_1[0], htlc_timeout);
5904         assert!(spend_txn[2].input[0].sequence.0 == BREAKDOWN_TIMEOUT as u32 ||
5905                 spend_txn[2].input[1].sequence.0 == BREAKDOWN_TIMEOUT as u32);
5906 }
5907
5908 #[test]
5909 fn test_static_output_closing_tx() {
5910         let chanmon_cfgs = create_chanmon_cfgs(2);
5911         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
5912         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
5913         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
5914
5915         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5916
5917         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
5918         let closing_tx = close_channel(&nodes[0], &nodes[1], &chan.2, chan.3, true).2;
5919
5920         mine_transaction(&nodes[0], &closing_tx);
5921         check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
5922         connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
5923
5924         let spend_txn = check_spendable_outputs!(nodes[0], node_cfgs[0].keys_manager);
5925         assert_eq!(spend_txn.len(), 1);
5926         check_spends!(spend_txn[0], closing_tx);
5927
5928         mine_transaction(&nodes[1], &closing_tx);
5929         check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
5930         connect_blocks(&nodes[1], ANTI_REORG_DELAY - 1);
5931
5932         let spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
5933         assert_eq!(spend_txn.len(), 1);
5934         check_spends!(spend_txn[0], closing_tx);
5935 }
5936
5937 fn do_htlc_claim_local_commitment_only(use_dust: bool) {
5938         let chanmon_cfgs = create_chanmon_cfgs(2);
5939         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
5940         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
5941         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
5942         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5943
5944         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], if use_dust { 50000 } else { 3_000_000 });
5945
5946         // Claim the payment, but don't deliver A's commitment_signed, resulting in the HTLC only being
5947         // present in B's local commitment transaction, but none of A's commitment transactions.
5948         nodes[1].node.claim_funds(payment_preimage);
5949         check_added_monitors!(nodes[1], 1);
5950         expect_payment_claimed!(nodes[1], payment_hash, if use_dust { 50000 } else { 3_000_000 });
5951
5952         let bs_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
5953         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_updates.update_fulfill_htlcs[0]);
5954         expect_payment_sent_without_paths!(nodes[0], payment_preimage);
5955
5956         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_updates.commitment_signed);
5957         check_added_monitors!(nodes[0], 1);
5958         let as_updates = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
5959         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_updates.0);
5960         check_added_monitors!(nodes[1], 1);
5961
5962         let starting_block = nodes[1].best_block_info();
5963         let mut block = Block {
5964                 header: BlockHeader { version: 0x20000000, prev_blockhash: starting_block.0, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 },
5965                 txdata: vec![],
5966         };
5967         for _ in starting_block.1 + 1..TEST_FINAL_CLTV - CLTV_CLAIM_BUFFER + starting_block.1 + 2 {
5968                 connect_block(&nodes[1], &block);
5969                 block.header.prev_blockhash = block.block_hash();
5970         }
5971         test_txn_broadcast(&nodes[1], &chan, None, if use_dust { HTLCType::NONE } else { HTLCType::SUCCESS });
5972         check_closed_broadcast!(nodes[1], true);
5973         check_added_monitors!(nodes[1], 1);
5974         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
5975 }
5976
5977 fn do_htlc_claim_current_remote_commitment_only(use_dust: bool) {
5978         let chanmon_cfgs = create_chanmon_cfgs(2);
5979         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
5980         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
5981         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
5982         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
5983
5984         let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], if use_dust { 50000 } else { 3000000 });
5985         nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
5986         check_added_monitors!(nodes[0], 1);
5987
5988         let _as_update = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
5989
5990         // As far as A is concerned, the HTLC is now present only in the latest remote commitment
5991         // transaction, however it is not in A's latest local commitment, so we can just broadcast that
5992         // to "time out" the HTLC.
5993
5994         let starting_block = nodes[1].best_block_info();
5995         let mut header = BlockHeader { version: 0x20000000, prev_blockhash: starting_block.0, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
5996
5997         for _ in starting_block.1 + 1..TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS + starting_block.1 + 2 {
5998                 connect_block(&nodes[0], &Block { header, txdata: Vec::new()});
5999                 header.prev_blockhash = header.block_hash();
6000         }
6001         test_txn_broadcast(&nodes[0], &chan, None, HTLCType::NONE);
6002         check_closed_broadcast!(nodes[0], true);
6003         check_added_monitors!(nodes[0], 1);
6004         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
6005 }
6006
6007 fn do_htlc_claim_previous_remote_commitment_only(use_dust: bool, check_revoke_no_close: bool) {
6008         let chanmon_cfgs = create_chanmon_cfgs(3);
6009         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
6010         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
6011         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
6012         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
6013
6014         // Fail the payment, but don't deliver A's final RAA, resulting in the HTLC only being present
6015         // in B's previous (unrevoked) commitment transaction, but none of A's commitment transactions.
6016         // Also optionally test that we *don't* fail the channel in case the commitment transaction was
6017         // actually revoked.
6018         let htlc_value = if use_dust { 50000 } else { 3000000 };
6019         let (_, our_payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], htlc_value);
6020         nodes[1].node.fail_htlc_backwards(&our_payment_hash);
6021         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
6022         check_added_monitors!(nodes[1], 1);
6023
6024         let bs_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
6025         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &bs_updates.update_fail_htlcs[0]);
6026         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_updates.commitment_signed);
6027         check_added_monitors!(nodes[0], 1);
6028         let as_updates = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6029         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_updates.0);
6030         check_added_monitors!(nodes[1], 1);
6031         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_updates.1);
6032         check_added_monitors!(nodes[1], 1);
6033         let bs_revoke_and_ack = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
6034
6035         if check_revoke_no_close {
6036                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_revoke_and_ack);
6037                 check_added_monitors!(nodes[0], 1);
6038         }
6039
6040         let starting_block = nodes[1].best_block_info();
6041         let mut block = Block {
6042                 header: BlockHeader { version: 0x20000000, prev_blockhash: starting_block.0, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 },
6043                 txdata: vec![],
6044         };
6045         for _ in starting_block.1 + 1..TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS + CHAN_CONFIRM_DEPTH + 2 {
6046                 connect_block(&nodes[0], &block);
6047                 block.header.prev_blockhash = block.block_hash();
6048         }
6049         if !check_revoke_no_close {
6050                 test_txn_broadcast(&nodes[0], &chan, None, HTLCType::NONE);
6051                 check_closed_broadcast!(nodes[0], true);
6052                 check_added_monitors!(nodes[0], 1);
6053                 check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
6054         } else {
6055                 let events = nodes[0].node.get_and_clear_pending_events();
6056                 assert_eq!(events.len(), 2);
6057                 if let Event::PaymentPathFailed { ref payment_hash, .. } = events[0] {
6058                         assert_eq!(*payment_hash, our_payment_hash);
6059                 } else { panic!("Unexpected event"); }
6060                 if let Event::PaymentFailed { ref payment_hash, .. } = events[1] {
6061                         assert_eq!(*payment_hash, our_payment_hash);
6062                 } else { panic!("Unexpected event"); }
6063         }
6064 }
6065
6066 // Test that we close channels on-chain when broadcastable HTLCs reach their timeout window.
6067 // There are only a few cases to test here:
6068 //  * its not really normative behavior, but we test that below-dust HTLCs "included" in
6069 //    broadcastable commitment transactions result in channel closure,
6070 //  * its included in an unrevoked-but-previous remote commitment transaction,
6071 //  * its included in the latest remote or local commitment transactions.
6072 // We test each of the three possible commitment transactions individually and use both dust and
6073 // non-dust HTLCs.
6074 // Note that we don't bother testing both outbound and inbound HTLC failures for each case, and we
6075 // assume they are handled the same across all six cases, as both outbound and inbound failures are
6076 // tested for at least one of the cases in other tests.
6077 #[test]
6078 fn htlc_claim_single_commitment_only_a() {
6079         do_htlc_claim_local_commitment_only(true);
6080         do_htlc_claim_local_commitment_only(false);
6081
6082         do_htlc_claim_current_remote_commitment_only(true);
6083         do_htlc_claim_current_remote_commitment_only(false);
6084 }
6085
6086 #[test]
6087 fn htlc_claim_single_commitment_only_b() {
6088         do_htlc_claim_previous_remote_commitment_only(true, false);
6089         do_htlc_claim_previous_remote_commitment_only(false, false);
6090         do_htlc_claim_previous_remote_commitment_only(true, true);
6091         do_htlc_claim_previous_remote_commitment_only(false, true);
6092 }
6093
6094 #[test]
6095 #[should_panic]
6096 fn bolt2_open_channel_sending_node_checks_part1() { //This test needs to be on its own as we are catching a panic
6097         let chanmon_cfgs = create_chanmon_cfgs(2);
6098         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6099         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6100         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6101         // Force duplicate randomness for every get-random call
6102         for node in nodes.iter() {
6103                 *node.keys_manager.override_random_bytes.lock().unwrap() = Some([0; 32]);
6104         }
6105
6106         // BOLT #2 spec: Sending node must ensure temporary_channel_id is unique from any other channel ID with the same peer.
6107         let channel_value_satoshis=10000;
6108         let push_msat=10001;
6109         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), channel_value_satoshis, push_msat, 42, None).unwrap();
6110         let node0_to_1_send_open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
6111         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &node0_to_1_send_open_channel);
6112         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
6113
6114         // Create a second channel with the same random values. This used to panic due to a colliding
6115         // channel_id, but now panics due to a colliding outbound SCID alias.
6116         assert!(nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), channel_value_satoshis, push_msat, 42, None).is_err());
6117 }
6118
6119 #[test]
6120 fn bolt2_open_channel_sending_node_checks_part2() {
6121         let chanmon_cfgs = create_chanmon_cfgs(2);
6122         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6123         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6124         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6125
6126         // BOLT #2 spec: Sending node must set funding_satoshis to less than 2^24 satoshis
6127         let channel_value_satoshis=2^24;
6128         let push_msat=10001;
6129         assert!(nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), channel_value_satoshis, push_msat, 42, None).is_err());
6130
6131         // BOLT #2 spec: Sending node must set push_msat to equal or less than 1000 * funding_satoshis
6132         let channel_value_satoshis=10000;
6133         // Test when push_msat is equal to 1000 * funding_satoshis.
6134         let push_msat=1000*channel_value_satoshis+1;
6135         assert!(nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), channel_value_satoshis, push_msat, 42, None).is_err());
6136
6137         // BOLT #2 spec: Sending node must set set channel_reserve_satoshis greater than or equal to dust_limit_satoshis
6138         let channel_value_satoshis=10000;
6139         let push_msat=10001;
6140         assert!(nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), channel_value_satoshis, push_msat, 42, None).is_ok()); //Create a valid channel
6141         let node0_to_1_send_open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
6142         assert!(node0_to_1_send_open_channel.channel_reserve_satoshis>=node0_to_1_send_open_channel.dust_limit_satoshis);
6143
6144         // BOLT #2 spec: Sending node must set undefined bits in channel_flags to 0
6145         // Only the least-significant bit of channel_flags is currently defined resulting in channel_flags only having one of two possible states 0 or 1
6146         assert!(node0_to_1_send_open_channel.channel_flags<=1);
6147
6148         // BOLT #2 spec: Sending node should set to_self_delay sufficient to ensure the sender can irreversibly spend a commitment transaction output, in case of misbehaviour by the receiver.
6149         assert!(BREAKDOWN_TIMEOUT>0);
6150         assert!(node0_to_1_send_open_channel.to_self_delay==BREAKDOWN_TIMEOUT);
6151
6152         // BOLT #2 spec: Sending node must ensure the chain_hash value identifies the chain it wishes to open the channel within.
6153         let chain_hash=genesis_block(Network::Testnet).header.block_hash();
6154         assert_eq!(node0_to_1_send_open_channel.chain_hash,chain_hash);
6155
6156         // BOLT #2 spec: Sending node must set funding_pubkey, revocation_basepoint, htlc_basepoint, payment_basepoint, and delayed_payment_basepoint to valid DER-encoded, compressed, secp256k1 pubkeys.
6157         assert!(PublicKey::from_slice(&node0_to_1_send_open_channel.funding_pubkey.serialize()).is_ok());
6158         assert!(PublicKey::from_slice(&node0_to_1_send_open_channel.revocation_basepoint.serialize()).is_ok());
6159         assert!(PublicKey::from_slice(&node0_to_1_send_open_channel.htlc_basepoint.serialize()).is_ok());
6160         assert!(PublicKey::from_slice(&node0_to_1_send_open_channel.payment_point.serialize()).is_ok());
6161         assert!(PublicKey::from_slice(&node0_to_1_send_open_channel.delayed_payment_basepoint.serialize()).is_ok());
6162 }
6163
6164 #[test]
6165 fn bolt2_open_channel_sane_dust_limit() {
6166         let chanmon_cfgs = create_chanmon_cfgs(2);
6167         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6168         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6169         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6170
6171         let channel_value_satoshis=1000000;
6172         let push_msat=10001;
6173         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), channel_value_satoshis, push_msat, 42, None).unwrap();
6174         let mut node0_to_1_send_open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
6175         node0_to_1_send_open_channel.dust_limit_satoshis = 547;
6176         node0_to_1_send_open_channel.channel_reserve_satoshis = 100001;
6177
6178         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &node0_to_1_send_open_channel);
6179         let events = nodes[1].node.get_and_clear_pending_msg_events();
6180         let err_msg = match events[0] {
6181                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id: _ } => {
6182                         msg.clone()
6183                 },
6184                 _ => panic!("Unexpected event"),
6185         };
6186         assert_eq!(err_msg.data, "dust_limit_satoshis (547) is greater than the implementation limit (546)");
6187 }
6188
6189 // Test that if we fail to send an HTLC that is being freed from the holding cell, and the HTLC
6190 // originated from our node, its failure is surfaced to the user. We trigger this failure to
6191 // free the HTLC by increasing our fee while the HTLC is in the holding cell such that the HTLC
6192 // is no longer affordable once it's freed.
6193 #[test]
6194 fn test_fail_holding_cell_htlc_upon_free() {
6195         let chanmon_cfgs = create_chanmon_cfgs(2);
6196         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6197         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6198         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6199         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6200
6201         // First nodes[0] generates an update_fee, setting the channel's
6202         // pending_update_fee.
6203         {
6204                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
6205                 *feerate_lock += 20;
6206         }
6207         nodes[0].node.timer_tick_occurred();
6208         check_added_monitors!(nodes[0], 1);
6209
6210         let events = nodes[0].node.get_and_clear_pending_msg_events();
6211         assert_eq!(events.len(), 1);
6212         let (update_msg, commitment_signed) = match events[0] {
6213                 MessageSendEvent::UpdateHTLCs { updates: msgs::CommitmentUpdate { ref update_fee, ref commitment_signed, .. }, .. } => {
6214                         (update_fee.as_ref(), commitment_signed)
6215                 },
6216                 _ => panic!("Unexpected event"),
6217         };
6218
6219         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
6220
6221         let mut chan_stat = get_channel_value_stat!(nodes[0], chan.2);
6222         let channel_reserve = chan_stat.channel_reserve_msat;
6223         let feerate = get_feerate!(nodes[0], chan.2);
6224         let opt_anchors = get_opt_anchors!(nodes[0], chan.2);
6225
6226         // 2* and +1 HTLCs on the commit tx fee calculation for the fee spike reserve.
6227         let max_can_send = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 1 + 1, opt_anchors);
6228         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], max_can_send);
6229
6230         // Send a payment which passes reserve checks but gets stuck in the holding cell.
6231         let our_payment_id = nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6232         chan_stat = get_channel_value_stat!(nodes[0], chan.2);
6233         assert_eq!(chan_stat.holding_cell_outbound_amount_msat, max_can_send);
6234
6235         // Flush the pending fee update.
6236         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), commitment_signed);
6237         let (as_revoke_and_ack, _) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
6238         check_added_monitors!(nodes[1], 1);
6239         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &as_revoke_and_ack);
6240         check_added_monitors!(nodes[0], 1);
6241
6242         // Upon receipt of the RAA, there will be an attempt to resend the holding cell
6243         // HTLC, but now that the fee has been raised the payment will now fail, causing
6244         // us to surface its failure to the user.
6245         chan_stat = get_channel_value_stat!(nodes[0], chan.2);
6246         assert_eq!(chan_stat.holding_cell_outbound_amount_msat, 0);
6247         nodes[0].logger.assert_log("lightning::ln::channel".to_string(), format!("Freeing holding cell with 1 HTLC updates in channel {}", hex::encode(chan.2)), 1);
6248         let failure_log = format!("Failed to send HTLC with payment_hash {} due to Cannot send value that would put our balance under counterparty-announced channel reserve value ({}) in channel {}",
6249                 hex::encode(our_payment_hash.0), chan_stat.channel_reserve_msat, hex::encode(chan.2));
6250         nodes[0].logger.assert_log("lightning::ln::channel".to_string(), failure_log.to_string(), 1);
6251
6252         // Check that the payment failed to be sent out.
6253         let events = nodes[0].node.get_and_clear_pending_events();
6254         assert_eq!(events.len(), 1);
6255         match &events[0] {
6256                 &Event::PaymentPathFailed { ref payment_id, ref payment_hash, ref payment_failed_permanently, ref network_update, ref all_paths_failed, ref short_channel_id, .. } => {
6257                         assert_eq!(our_payment_id, *payment_id.as_ref().unwrap());
6258                         assert_eq!(our_payment_hash.clone(), *payment_hash);
6259                         assert_eq!(*payment_failed_permanently, false);
6260                         assert_eq!(*all_paths_failed, true);
6261                         assert_eq!(*network_update, None);
6262                         assert_eq!(*short_channel_id, Some(route.paths[0][0].short_channel_id));
6263                 },
6264                 _ => panic!("Unexpected event"),
6265         }
6266 }
6267
6268 // Test that if multiple HTLCs are released from the holding cell and one is
6269 // valid but the other is no longer valid upon release, the valid HTLC can be
6270 // successfully completed while the other one fails as expected.
6271 #[test]
6272 fn test_free_and_fail_holding_cell_htlcs() {
6273         let chanmon_cfgs = create_chanmon_cfgs(2);
6274         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6275         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6276         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6277         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6278
6279         // First nodes[0] generates an update_fee, setting the channel's
6280         // pending_update_fee.
6281         {
6282                 let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
6283                 *feerate_lock += 200;
6284         }
6285         nodes[0].node.timer_tick_occurred();
6286         check_added_monitors!(nodes[0], 1);
6287
6288         let events = nodes[0].node.get_and_clear_pending_msg_events();
6289         assert_eq!(events.len(), 1);
6290         let (update_msg, commitment_signed) = match events[0] {
6291                 MessageSendEvent::UpdateHTLCs { updates: msgs::CommitmentUpdate { ref update_fee, ref commitment_signed, .. }, .. } => {
6292                         (update_fee.as_ref(), commitment_signed)
6293                 },
6294                 _ => panic!("Unexpected event"),
6295         };
6296
6297         nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
6298
6299         let mut chan_stat = get_channel_value_stat!(nodes[0], chan.2);
6300         let channel_reserve = chan_stat.channel_reserve_msat;
6301         let feerate = get_feerate!(nodes[0], chan.2);
6302         let opt_anchors = get_opt_anchors!(nodes[0], chan.2);
6303
6304         // 2* and +1 HTLCs on the commit tx fee calculation for the fee spike reserve.
6305         let amt_1 = 20000;
6306         let amt_2 = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 2 + 1, opt_anchors) - amt_1;
6307         let (route_1, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], amt_1);
6308         let (route_2, payment_hash_2, _, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[1], amt_2);
6309
6310         // Send 2 payments which pass reserve checks but get stuck in the holding cell.
6311         nodes[0].node.send_payment(&route_1, payment_hash_1, &Some(payment_secret_1)).unwrap();
6312         chan_stat = get_channel_value_stat!(nodes[0], chan.2);
6313         assert_eq!(chan_stat.holding_cell_outbound_amount_msat, amt_1);
6314         let payment_id_2 = nodes[0].node.send_payment(&route_2, payment_hash_2, &Some(payment_secret_2)).unwrap();
6315         chan_stat = get_channel_value_stat!(nodes[0], chan.2);
6316         assert_eq!(chan_stat.holding_cell_outbound_amount_msat, amt_1 + amt_2);
6317
6318         // Flush the pending fee update.
6319         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), commitment_signed);
6320         let (revoke_and_ack, commitment_signed) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
6321         check_added_monitors!(nodes[1], 1);
6322         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &revoke_and_ack);
6323         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &commitment_signed);
6324         check_added_monitors!(nodes[0], 2);
6325
6326         // Upon receipt of the RAA, there will be an attempt to resend the holding cell HTLCs,
6327         // but now that the fee has been raised the second payment will now fail, causing us
6328         // to surface its failure to the user. The first payment should succeed.
6329         chan_stat = get_channel_value_stat!(nodes[0], chan.2);
6330         assert_eq!(chan_stat.holding_cell_outbound_amount_msat, 0);
6331         nodes[0].logger.assert_log("lightning::ln::channel".to_string(), format!("Freeing holding cell with 2 HTLC updates in channel {}", hex::encode(chan.2)), 1);
6332         let failure_log = format!("Failed to send HTLC with payment_hash {} due to Cannot send value that would put our balance under counterparty-announced channel reserve value ({}) in channel {}",
6333                 hex::encode(payment_hash_2.0), chan_stat.channel_reserve_msat, hex::encode(chan.2));
6334         nodes[0].logger.assert_log("lightning::ln::channel".to_string(), failure_log.to_string(), 1);
6335
6336         // Check that the second payment failed to be sent out.
6337         let events = nodes[0].node.get_and_clear_pending_events();
6338         assert_eq!(events.len(), 1);
6339         match &events[0] {
6340                 &Event::PaymentPathFailed { ref payment_id, ref payment_hash, ref payment_failed_permanently, ref network_update, ref all_paths_failed, ref short_channel_id, .. } => {
6341                         assert_eq!(payment_id_2, *payment_id.as_ref().unwrap());
6342                         assert_eq!(payment_hash_2.clone(), *payment_hash);
6343                         assert_eq!(*payment_failed_permanently, false);
6344                         assert_eq!(*all_paths_failed, true);
6345                         assert_eq!(*network_update, None);
6346                         assert_eq!(*short_channel_id, Some(route_2.paths[0][0].short_channel_id));
6347                 },
6348                 _ => panic!("Unexpected event"),
6349         }
6350
6351         // Complete the first payment and the RAA from the fee update.
6352         let (payment_event, send_raa_event) = {
6353                 let mut msgs = nodes[0].node.get_and_clear_pending_msg_events();
6354                 assert_eq!(msgs.len(), 2);
6355                 (SendEvent::from_event(msgs.remove(0)), msgs.remove(0))
6356         };
6357         let raa = match send_raa_event {
6358                 MessageSendEvent::SendRevokeAndACK { msg, .. } => msg,
6359                 _ => panic!("Unexpected event"),
6360         };
6361         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &raa);
6362         check_added_monitors!(nodes[1], 1);
6363         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
6364         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
6365         let events = nodes[1].node.get_and_clear_pending_events();
6366         assert_eq!(events.len(), 1);
6367         match events[0] {
6368                 Event::PendingHTLCsForwardable { .. } => {},
6369                 _ => panic!("Unexpected event"),
6370         }
6371         nodes[1].node.process_pending_htlc_forwards();
6372         let events = nodes[1].node.get_and_clear_pending_events();
6373         assert_eq!(events.len(), 1);
6374         match events[0] {
6375                 Event::PaymentReceived { .. } => {},
6376                 _ => panic!("Unexpected event"),
6377         }
6378         nodes[1].node.claim_funds(payment_preimage_1);
6379         check_added_monitors!(nodes[1], 1);
6380         expect_payment_claimed!(nodes[1], payment_hash_1, amt_1);
6381
6382         let update_msgs = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
6383         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &update_msgs.update_fulfill_htlcs[0]);
6384         commitment_signed_dance!(nodes[0], nodes[1], update_msgs.commitment_signed, false, true);
6385         expect_payment_sent!(nodes[0], payment_preimage_1);
6386 }
6387
6388 // Test that if we fail to forward an HTLC that is being freed from the holding cell that the
6389 // HTLC is failed backwards. We trigger this failure to forward the freed HTLC by increasing
6390 // our fee while the HTLC is in the holding cell such that the HTLC is no longer affordable
6391 // once it's freed.
6392 #[test]
6393 fn test_fail_holding_cell_htlc_upon_free_multihop() {
6394         let chanmon_cfgs = create_chanmon_cfgs(3);
6395         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
6396         // When this test was written, the default base fee floated based on the HTLC count.
6397         // It is now fixed, so we simply set the fee to the expected value here.
6398         let mut config = test_default_channel_config();
6399         config.channel_config.forwarding_fee_base_msat = 196;
6400         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[Some(config.clone()), Some(config.clone()), Some(config.clone())]);
6401         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
6402         let chan_0_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6403         let chan_1_2 = create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6404
6405         // First nodes[1] generates an update_fee, setting the channel's
6406         // pending_update_fee.
6407         {
6408                 let mut feerate_lock = chanmon_cfgs[1].fee_estimator.sat_per_kw.lock().unwrap();
6409                 *feerate_lock += 20;
6410         }
6411         nodes[1].node.timer_tick_occurred();
6412         check_added_monitors!(nodes[1], 1);
6413
6414         let events = nodes[1].node.get_and_clear_pending_msg_events();
6415         assert_eq!(events.len(), 1);
6416         let (update_msg, commitment_signed) = match events[0] {
6417                 MessageSendEvent::UpdateHTLCs { updates: msgs::CommitmentUpdate { ref update_fee, ref commitment_signed, .. }, .. } => {
6418                         (update_fee.as_ref(), commitment_signed)
6419                 },
6420                 _ => panic!("Unexpected event"),
6421         };
6422
6423         nodes[2].node.handle_update_fee(&nodes[1].node.get_our_node_id(), update_msg.unwrap());
6424
6425         let mut chan_stat = get_channel_value_stat!(nodes[0], chan_0_1.2);
6426         let channel_reserve = chan_stat.channel_reserve_msat;
6427         let feerate = get_feerate!(nodes[0], chan_0_1.2);
6428         let opt_anchors = get_opt_anchors!(nodes[0], chan_0_1.2);
6429
6430         // Send a payment which passes reserve checks but gets stuck in the holding cell.
6431         let feemsat = 239;
6432         let total_routing_fee_msat = (nodes.len() - 2) as u64 * feemsat;
6433         let max_can_send = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 1 + 1, opt_anchors) - total_routing_fee_msat;
6434         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], max_can_send);
6435         let payment_event = {
6436                 nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6437                 check_added_monitors!(nodes[0], 1);
6438
6439                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
6440                 assert_eq!(events.len(), 1);
6441
6442                 SendEvent::from_event(events.remove(0))
6443         };
6444         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
6445         check_added_monitors!(nodes[1], 0);
6446         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
6447         expect_pending_htlcs_forwardable!(nodes[1]);
6448
6449         chan_stat = get_channel_value_stat!(nodes[1], chan_1_2.2);
6450         assert_eq!(chan_stat.holding_cell_outbound_amount_msat, max_can_send);
6451
6452         // Flush the pending fee update.
6453         nodes[2].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), commitment_signed);
6454         let (raa, commitment_signed) = get_revoke_commit_msgs!(nodes[2], nodes[1].node.get_our_node_id());
6455         check_added_monitors!(nodes[2], 1);
6456         nodes[1].node.handle_revoke_and_ack(&nodes[2].node.get_our_node_id(), &raa);
6457         nodes[1].node.handle_commitment_signed(&nodes[2].node.get_our_node_id(), &commitment_signed);
6458         check_added_monitors!(nodes[1], 2);
6459
6460         // A final RAA message is generated to finalize the fee update.
6461         let events = nodes[1].node.get_and_clear_pending_msg_events();
6462         assert_eq!(events.len(), 1);
6463
6464         let raa_msg = match &events[0] {
6465                 &MessageSendEvent::SendRevokeAndACK { ref msg, .. } => {
6466                         msg.clone()
6467                 },
6468                 _ => panic!("Unexpected event"),
6469         };
6470
6471         nodes[2].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &raa_msg);
6472         check_added_monitors!(nodes[2], 1);
6473         assert!(nodes[2].node.get_and_clear_pending_msg_events().is_empty());
6474
6475         // nodes[1]'s ChannelManager will now signal that we have HTLC forwards to process.
6476         let process_htlc_forwards_event = nodes[1].node.get_and_clear_pending_events();
6477         assert_eq!(process_htlc_forwards_event.len(), 2);
6478         match &process_htlc_forwards_event[0] {
6479                 &Event::PendingHTLCsForwardable { .. } => {},
6480                 _ => panic!("Unexpected event"),
6481         }
6482
6483         // In response, we call ChannelManager's process_pending_htlc_forwards
6484         nodes[1].node.process_pending_htlc_forwards();
6485         check_added_monitors!(nodes[1], 1);
6486
6487         // This causes the HTLC to be failed backwards.
6488         let fail_event = nodes[1].node.get_and_clear_pending_msg_events();
6489         assert_eq!(fail_event.len(), 1);
6490         let (fail_msg, commitment_signed) = match &fail_event[0] {
6491                 &MessageSendEvent::UpdateHTLCs { ref updates, .. } => {
6492                         assert_eq!(updates.update_add_htlcs.len(), 0);
6493                         assert_eq!(updates.update_fulfill_htlcs.len(), 0);
6494                         assert_eq!(updates.update_fail_malformed_htlcs.len(), 0);
6495                         assert_eq!(updates.update_fail_htlcs.len(), 1);
6496                         (updates.update_fail_htlcs[0].clone(), updates.commitment_signed.clone())
6497                 },
6498                 _ => panic!("Unexpected event"),
6499         };
6500
6501         // Pass the failure messages back to nodes[0].
6502         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &fail_msg);
6503         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &commitment_signed);
6504
6505         // Complete the HTLC failure+removal process.
6506         let (raa, commitment_signed) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6507         check_added_monitors!(nodes[0], 1);
6508         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &raa);
6509         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &commitment_signed);
6510         check_added_monitors!(nodes[1], 2);
6511         let final_raa_event = nodes[1].node.get_and_clear_pending_msg_events();
6512         assert_eq!(final_raa_event.len(), 1);
6513         let raa = match &final_raa_event[0] {
6514                 &MessageSendEvent::SendRevokeAndACK { ref msg, .. } => msg.clone(),
6515                 _ => panic!("Unexpected event"),
6516         };
6517         nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &raa);
6518         expect_payment_failed_with_update!(nodes[0], our_payment_hash, false, chan_1_2.0.contents.short_channel_id, false);
6519         check_added_monitors!(nodes[0], 1);
6520 }
6521
6522 // BOLT 2 Requirements for the Sender when constructing and sending an update_add_htlc message.
6523 // BOLT 2 Requirement: MUST NOT offer amount_msat it cannot pay for in the remote commitment transaction at the current feerate_per_kw (see "Updating Fees") while maintaining its channel reserve.
6524 //TODO: I don't believe this is explicitly enforced when sending an HTLC but as the Fee aspect of the BOLT specs is in flux leaving this as a TODO.
6525
6526 #[test]
6527 fn test_update_add_htlc_bolt2_sender_value_below_minimum_msat() {
6528         //BOLT2 Requirement: MUST NOT offer amount_msat below the receiving node's htlc_minimum_msat (same validation check catches both of these)
6529         let chanmon_cfgs = create_chanmon_cfgs(2);
6530         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6531         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6532         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6533         let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6534
6535         let (mut route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
6536         route.paths[0][0].fee_msat = 100;
6537
6538         unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
6539                 assert!(regex::Regex::new(r"Cannot send less than their minimum HTLC value \(\d+\)").unwrap().is_match(err)));
6540         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
6541         nodes[0].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Cannot send less than their minimum HTLC value".to_string(), 1);
6542 }
6543
6544 #[test]
6545 fn test_update_add_htlc_bolt2_sender_zero_value_msat() {
6546         //BOLT2 Requirement: MUST offer amount_msat greater than 0.
6547         let chanmon_cfgs = create_chanmon_cfgs(2);
6548         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6549         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6550         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6551         let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6552
6553         let (mut route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
6554         route.paths[0][0].fee_msat = 0;
6555         unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
6556                 assert_eq!(err, "Cannot send 0-msat HTLC"));
6557
6558         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
6559         nodes[0].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Cannot send 0-msat HTLC".to_string(), 1);
6560 }
6561
6562 #[test]
6563 fn test_update_add_htlc_bolt2_receiver_zero_value_msat() {
6564         //BOLT2 Requirement: MUST offer amount_msat greater than 0.
6565         let chanmon_cfgs = create_chanmon_cfgs(2);
6566         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6567         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6568         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6569         let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6570
6571         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
6572         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6573         check_added_monitors!(nodes[0], 1);
6574         let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6575         updates.update_add_htlcs[0].amount_msat = 0;
6576
6577         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6578         nodes[1].logger.assert_log("lightning::ln::channelmanager".to_string(), "Remote side tried to send a 0-msat HTLC".to_string(), 1);
6579         check_closed_broadcast!(nodes[1], true).unwrap();
6580         check_added_monitors!(nodes[1], 1);
6581         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: "Remote side tried to send a 0-msat HTLC".to_string() });
6582 }
6583
6584 #[test]
6585 fn test_update_add_htlc_bolt2_sender_cltv_expiry_too_high() {
6586         //BOLT 2 Requirement: MUST set cltv_expiry less than 500000000.
6587         //It is enforced when constructing a route.
6588         let chanmon_cfgs = create_chanmon_cfgs(2);
6589         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6590         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6591         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6592         let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 0, InitFeatures::known(), InitFeatures::known());
6593
6594         let payment_params = PaymentParameters::from_node_id(nodes[1].node.get_our_node_id())
6595                 .with_features(InvoiceFeatures::known());
6596         let (mut route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], payment_params, 100000000, 0);
6597         route.paths[0].last_mut().unwrap().cltv_expiry_delta = 500000001;
6598         unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::RouteError { ref err },
6599                 assert_eq!(err, &"Channel CLTV overflowed?"));
6600 }
6601
6602 #[test]
6603 fn test_update_add_htlc_bolt2_sender_exceed_max_htlc_num_and_htlc_id_increment() {
6604         //BOLT 2 Requirement: if result would be offering more than the remote's max_accepted_htlcs HTLCs, in the remote commitment transaction: MUST NOT add an HTLC.
6605         //BOLT 2 Requirement: for the first HTLC it offers MUST set id to 0.
6606         //BOLT 2 Requirement: MUST increase the value of id by 1 for each successive offer.
6607         let chanmon_cfgs = create_chanmon_cfgs(2);
6608         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6609         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6610         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6611         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 0, InitFeatures::known(), InitFeatures::known());
6612         let max_accepted_htlcs = nodes[1].node.channel_state.lock().unwrap().by_id.get(&chan.2).unwrap().counterparty_max_accepted_htlcs as u64;
6613
6614         for i in 0..max_accepted_htlcs {
6615                 let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
6616                 let payment_event = {
6617                         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6618                         check_added_monitors!(nodes[0], 1);
6619
6620                         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
6621                         assert_eq!(events.len(), 1);
6622                         if let MessageSendEvent::UpdateHTLCs { node_id: _, updates: msgs::CommitmentUpdate{ update_add_htlcs: ref htlcs, .. }, } = events[0] {
6623                                 assert_eq!(htlcs[0].htlc_id, i);
6624                         } else {
6625                                 assert!(false);
6626                         }
6627                         SendEvent::from_event(events.remove(0))
6628                 };
6629                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
6630                 check_added_monitors!(nodes[1], 0);
6631                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
6632
6633                 expect_pending_htlcs_forwardable!(nodes[1]);
6634                 expect_payment_received!(nodes[1], our_payment_hash, our_payment_secret, 100000);
6635         }
6636         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
6637         unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
6638                 assert!(regex::Regex::new(r"Cannot push more than their max accepted HTLCs \(\d+\)").unwrap().is_match(err)));
6639
6640         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
6641         nodes[0].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Cannot push more than their max accepted HTLCs".to_string(), 1);
6642 }
6643
6644 #[test]
6645 fn test_update_add_htlc_bolt2_sender_exceed_max_htlc_value_in_flight() {
6646         //BOLT 2 Requirement: if the sum of total offered HTLCs would exceed the remote's max_htlc_value_in_flight_msat: MUST NOT add an HTLC.
6647         let chanmon_cfgs = create_chanmon_cfgs(2);
6648         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6649         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6650         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6651         let channel_value = 100000;
6652         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, channel_value, 0, InitFeatures::known(), InitFeatures::known());
6653         let max_in_flight = get_channel_value_stat!(nodes[0], chan.2).counterparty_max_htlc_value_in_flight_msat;
6654
6655         send_payment(&nodes[0], &vec!(&nodes[1])[..], max_in_flight);
6656
6657         let (mut route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], max_in_flight);
6658         // Manually create a route over our max in flight (which our router normally automatically
6659         // limits us to.
6660         route.paths[0][0].fee_msat =  max_in_flight + 1;
6661         unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
6662                 assert!(regex::Regex::new(r"Cannot send value that would put us over the max HTLC value in flight our peer will accept \(\d+\)").unwrap().is_match(err)));
6663
6664         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
6665         nodes[0].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Cannot send value that would put us over the max HTLC value in flight our peer will accept".to_string(), 1);
6666
6667         send_payment(&nodes[0], &[&nodes[1]], max_in_flight);
6668 }
6669
6670 // BOLT 2 Requirements for the Receiver when handling an update_add_htlc message.
6671 #[test]
6672 fn test_update_add_htlc_bolt2_receiver_check_amount_received_more_than_min() {
6673         //BOLT2 Requirement: receiving an amount_msat equal to 0, OR less than its own htlc_minimum_msat -> SHOULD fail the channel.
6674         let chanmon_cfgs = create_chanmon_cfgs(2);
6675         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6676         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6677         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6678         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6679         let htlc_minimum_msat: u64;
6680         {
6681                 let chan_lock = nodes[0].node.channel_state.lock().unwrap();
6682                 let channel = chan_lock.by_id.get(&chan.2).unwrap();
6683                 htlc_minimum_msat = channel.get_holder_htlc_minimum_msat();
6684         }
6685
6686         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], htlc_minimum_msat);
6687         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6688         check_added_monitors!(nodes[0], 1);
6689         let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6690         updates.update_add_htlcs[0].amount_msat = htlc_minimum_msat-1;
6691         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6692         assert!(nodes[1].node.list_channels().is_empty());
6693         let err_msg = check_closed_broadcast!(nodes[1], true).unwrap();
6694         assert!(regex::Regex::new(r"Remote side tried to send less than our minimum HTLC value\. Lower limit: \(\d+\)\. Actual: \(\d+\)").unwrap().is_match(err_msg.data.as_str()));
6695         check_added_monitors!(nodes[1], 1);
6696         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: err_msg.data });
6697 }
6698
6699 #[test]
6700 fn test_update_add_htlc_bolt2_receiver_sender_can_afford_amount_sent() {
6701         //BOLT2 Requirement: receiving an amount_msat that the sending node cannot afford at the current feerate_per_kw (while maintaining its channel reserve): SHOULD fail the channel
6702         let chanmon_cfgs = create_chanmon_cfgs(2);
6703         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6704         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6705         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6706         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6707
6708         let chan_stat = get_channel_value_stat!(nodes[0], chan.2);
6709         let channel_reserve = chan_stat.channel_reserve_msat;
6710         let feerate = get_feerate!(nodes[0], chan.2);
6711         let opt_anchors = get_opt_anchors!(nodes[0], chan.2);
6712         // The 2* and +1 are for the fee spike reserve.
6713         let commit_tx_fee_outbound = 2 * commit_tx_fee_msat(feerate, 1 + 1, opt_anchors);
6714
6715         let max_can_send = 5000000 - channel_reserve - commit_tx_fee_outbound;
6716         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], max_can_send);
6717         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6718         check_added_monitors!(nodes[0], 1);
6719         let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6720
6721         // Even though channel-initiator senders are required to respect the fee_spike_reserve,
6722         // at this time channel-initiatee receivers are not required to enforce that senders
6723         // respect the fee_spike_reserve.
6724         updates.update_add_htlcs[0].amount_msat = max_can_send + commit_tx_fee_outbound + 1;
6725         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6726
6727         assert!(nodes[1].node.list_channels().is_empty());
6728         let err_msg = check_closed_broadcast!(nodes[1], true).unwrap();
6729         assert_eq!(err_msg.data, "Remote HTLC add would put them under remote reserve value");
6730         check_added_monitors!(nodes[1], 1);
6731         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: err_msg.data });
6732 }
6733
6734 #[test]
6735 fn test_update_add_htlc_bolt2_receiver_check_max_htlc_limit() {
6736         //BOLT 2 Requirement: if a sending node adds more than its max_accepted_htlcs HTLCs to its local commitment transaction: SHOULD fail the channel
6737         //BOLT 2 Requirement: MUST allow multiple HTLCs with the same payment_hash.
6738         let chanmon_cfgs = create_chanmon_cfgs(2);
6739         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6740         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6741         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6742         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6743
6744         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 3999999);
6745         let session_priv = SecretKey::from_slice(&[42; 32]).unwrap();
6746         let cur_height = nodes[0].node.best_block.read().unwrap().height() + 1;
6747         let onion_keys = onion_utils::construct_onion_keys(&Secp256k1::signing_only(), &route.paths[0], &session_priv).unwrap();
6748         let (onion_payloads, _htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(&route.paths[0], 3999999, &Some(our_payment_secret), cur_height, &None).unwrap();
6749         let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, [0; 32], &our_payment_hash);
6750
6751         let mut msg = msgs::UpdateAddHTLC {
6752                 channel_id: chan.2,
6753                 htlc_id: 0,
6754                 amount_msat: 1000,
6755                 payment_hash: our_payment_hash,
6756                 cltv_expiry: htlc_cltv,
6757                 onion_routing_packet: onion_packet.clone(),
6758         };
6759
6760         for i in 0..super::channel::OUR_MAX_HTLCS {
6761                 msg.htlc_id = i as u64;
6762                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &msg);
6763         }
6764         msg.htlc_id = (super::channel::OUR_MAX_HTLCS) as u64;
6765         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &msg);
6766
6767         assert!(nodes[1].node.list_channels().is_empty());
6768         let err_msg = check_closed_broadcast!(nodes[1], true).unwrap();
6769         assert!(regex::Regex::new(r"Remote tried to push more than our max accepted HTLCs \(\d+\)").unwrap().is_match(err_msg.data.as_str()));
6770         check_added_monitors!(nodes[1], 1);
6771         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: err_msg.data });
6772 }
6773
6774 #[test]
6775 fn test_update_add_htlc_bolt2_receiver_check_max_in_flight_msat() {
6776         //OR adds more than its max_htlc_value_in_flight_msat worth of offered HTLCs to its local commitment transaction: SHOULD fail the channel
6777         let chanmon_cfgs = create_chanmon_cfgs(2);
6778         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6779         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6780         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6781         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
6782
6783         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
6784         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6785         check_added_monitors!(nodes[0], 1);
6786         let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6787         updates.update_add_htlcs[0].amount_msat = get_channel_value_stat!(nodes[1], chan.2).counterparty_max_htlc_value_in_flight_msat + 1;
6788         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6789
6790         assert!(nodes[1].node.list_channels().is_empty());
6791         let err_msg = check_closed_broadcast!(nodes[1], true).unwrap();
6792         assert!(regex::Regex::new("Remote HTLC add would put them over our max HTLC value").unwrap().is_match(err_msg.data.as_str()));
6793         check_added_monitors!(nodes[1], 1);
6794         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: err_msg.data });
6795 }
6796
6797 #[test]
6798 fn test_update_add_htlc_bolt2_receiver_check_cltv_expiry() {
6799         //BOLT2 Requirement: if sending node sets cltv_expiry to greater or equal to 500000000: SHOULD fail the channel.
6800         let chanmon_cfgs = create_chanmon_cfgs(2);
6801         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6802         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6803         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6804
6805         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
6806         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
6807         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6808         check_added_monitors!(nodes[0], 1);
6809         let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6810         updates.update_add_htlcs[0].cltv_expiry = 500000000;
6811         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6812
6813         assert!(nodes[1].node.list_channels().is_empty());
6814         let err_msg = check_closed_broadcast!(nodes[1], true).unwrap();
6815         assert_eq!(err_msg.data,"Remote provided CLTV expiry in seconds instead of block height");
6816         check_added_monitors!(nodes[1], 1);
6817         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: err_msg.data });
6818 }
6819
6820 #[test]
6821 fn test_update_add_htlc_bolt2_receiver_check_repeated_id_ignore() {
6822         //BOLT 2 requirement: if the sender did not previously acknowledge the commitment of that HTLC: MUST ignore a repeated id value after a reconnection.
6823         // We test this by first testing that that repeated HTLCs pass commitment signature checks
6824         // after disconnect and that non-sequential htlc_ids result in a channel failure.
6825         let chanmon_cfgs = create_chanmon_cfgs(2);
6826         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6827         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6828         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6829
6830         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
6831         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
6832         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6833         check_added_monitors!(nodes[0], 1);
6834         let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6835         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6836
6837         //Disconnect and Reconnect
6838         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
6839         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
6840         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
6841         let reestablish_1 = get_chan_reestablish_msgs!(nodes[0], nodes[1]);
6842         assert_eq!(reestablish_1.len(), 1);
6843         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
6844         let reestablish_2 = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
6845         assert_eq!(reestablish_2.len(), 1);
6846         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[0]);
6847         handle_chan_reestablish_msgs!(nodes[0], nodes[1]);
6848         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[0]);
6849         handle_chan_reestablish_msgs!(nodes[1], nodes[0]);
6850
6851         //Resend HTLC
6852         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6853         assert_eq!(updates.commitment_signed.htlc_signatures.len(), 1);
6854         nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &updates.commitment_signed);
6855         check_added_monitors!(nodes[1], 1);
6856         let _bs_responses = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
6857
6858         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6859
6860         assert!(nodes[1].node.list_channels().is_empty());
6861         let err_msg = check_closed_broadcast!(nodes[1], true).unwrap();
6862         assert!(regex::Regex::new(r"Remote skipped HTLC ID \(skipped ID: \d+\)").unwrap().is_match(err_msg.data.as_str()));
6863         check_added_monitors!(nodes[1], 1);
6864         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: err_msg.data });
6865 }
6866
6867 #[test]
6868 fn test_update_fulfill_htlc_bolt2_update_fulfill_htlc_before_commitment() {
6869         //BOLT 2 Requirement: until the corresponding HTLC is irrevocably committed in both sides' commitment transactions:     MUST NOT send an update_fulfill_htlc, update_fail_htlc, or update_fail_malformed_htlc.
6870
6871         let chanmon_cfgs = create_chanmon_cfgs(2);
6872         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6873         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6874         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6875         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
6876         let (route, our_payment_hash, our_payment_preimage, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
6877         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6878
6879         check_added_monitors!(nodes[0], 1);
6880         let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6881         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6882
6883         let update_msg = msgs::UpdateFulfillHTLC{
6884                 channel_id: chan.2,
6885                 htlc_id: 0,
6886                 payment_preimage: our_payment_preimage,
6887         };
6888
6889         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &update_msg);
6890
6891         assert!(nodes[0].node.list_channels().is_empty());
6892         let err_msg = check_closed_broadcast!(nodes[0], true).unwrap();
6893         assert!(regex::Regex::new(r"Remote tried to fulfill/fail HTLC \(\d+\) before it had been committed").unwrap().is_match(err_msg.data.as_str()));
6894         check_added_monitors!(nodes[0], 1);
6895         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: err_msg.data });
6896 }
6897
6898 #[test]
6899 fn test_update_fulfill_htlc_bolt2_update_fail_htlc_before_commitment() {
6900         //BOLT 2 Requirement: until the corresponding HTLC is irrevocably committed in both sides' commitment transactions:     MUST NOT send an update_fulfill_htlc, update_fail_htlc, or update_fail_malformed_htlc.
6901
6902         let chanmon_cfgs = create_chanmon_cfgs(2);
6903         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6904         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6905         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6906         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
6907
6908         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
6909         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6910         check_added_monitors!(nodes[0], 1);
6911         let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6912         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6913
6914         let update_msg = msgs::UpdateFailHTLC{
6915                 channel_id: chan.2,
6916                 htlc_id: 0,
6917                 reason: msgs::OnionErrorPacket { data: Vec::new()},
6918         };
6919
6920         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_msg);
6921
6922         assert!(nodes[0].node.list_channels().is_empty());
6923         let err_msg = check_closed_broadcast!(nodes[0], true).unwrap();
6924         assert!(regex::Regex::new(r"Remote tried to fulfill/fail HTLC \(\d+\) before it had been committed").unwrap().is_match(err_msg.data.as_str()));
6925         check_added_monitors!(nodes[0], 1);
6926         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: err_msg.data });
6927 }
6928
6929 #[test]
6930 fn test_update_fulfill_htlc_bolt2_update_fail_malformed_htlc_before_commitment() {
6931         //BOLT 2 Requirement: until the corresponding HTLC is irrevocably committed in both sides' commitment transactions:     MUST NOT send an update_fulfill_htlc, update_fail_htlc, or update_fail_malformed_htlc.
6932
6933         let chanmon_cfgs = create_chanmon_cfgs(2);
6934         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6935         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6936         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6937         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
6938
6939         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
6940         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
6941         check_added_monitors!(nodes[0], 1);
6942         let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
6943         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
6944         let update_msg = msgs::UpdateFailMalformedHTLC{
6945                 channel_id: chan.2,
6946                 htlc_id: 0,
6947                 sha256_of_onion: [1; 32],
6948                 failure_code: 0x8000,
6949         };
6950
6951         nodes[0].node.handle_update_fail_malformed_htlc(&nodes[1].node.get_our_node_id(), &update_msg);
6952
6953         assert!(nodes[0].node.list_channels().is_empty());
6954         let err_msg = check_closed_broadcast!(nodes[0], true).unwrap();
6955         assert!(regex::Regex::new(r"Remote tried to fulfill/fail HTLC \(\d+\) before it had been committed").unwrap().is_match(err_msg.data.as_str()));
6956         check_added_monitors!(nodes[0], 1);
6957         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: err_msg.data });
6958 }
6959
6960 #[test]
6961 fn test_update_fulfill_htlc_bolt2_incorrect_htlc_id() {
6962         //BOLT 2 Requirement: A receiving node: if the id does not correspond to an HTLC in its current commitment transaction MUST fail the channel.
6963
6964         let chanmon_cfgs = create_chanmon_cfgs(2);
6965         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
6966         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
6967         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
6968         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
6969
6970         let (our_payment_preimage, our_payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 100_000);
6971
6972         nodes[1].node.claim_funds(our_payment_preimage);
6973         check_added_monitors!(nodes[1], 1);
6974         expect_payment_claimed!(nodes[1], our_payment_hash, 100_000);
6975
6976         let events = nodes[1].node.get_and_clear_pending_msg_events();
6977         assert_eq!(events.len(), 1);
6978         let mut update_fulfill_msg: msgs::UpdateFulfillHTLC = {
6979                 match events[0] {
6980                         MessageSendEvent::UpdateHTLCs { node_id: _ , updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, .. } } => {
6981                                 assert!(update_add_htlcs.is_empty());
6982                                 assert_eq!(update_fulfill_htlcs.len(), 1);
6983                                 assert!(update_fail_htlcs.is_empty());
6984                                 assert!(update_fail_malformed_htlcs.is_empty());
6985                                 assert!(update_fee.is_none());
6986                                 update_fulfill_htlcs[0].clone()
6987                         },
6988                         _ => panic!("Unexpected event"),
6989                 }
6990         };
6991
6992         update_fulfill_msg.htlc_id = 1;
6993
6994         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &update_fulfill_msg);
6995
6996         assert!(nodes[0].node.list_channels().is_empty());
6997         let err_msg = check_closed_broadcast!(nodes[0], true).unwrap();
6998         assert_eq!(err_msg.data, "Remote tried to fulfill/fail an HTLC we couldn't find");
6999         check_added_monitors!(nodes[0], 1);
7000         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: err_msg.data });
7001 }
7002
7003 #[test]
7004 fn test_update_fulfill_htlc_bolt2_wrong_preimage() {
7005         //BOLT 2 Requirement: A receiving node: if the payment_preimage value in update_fulfill_htlc doesn't SHA256 hash to the corresponding HTLC payment_hash MUST fail the channel.
7006
7007         let chanmon_cfgs = create_chanmon_cfgs(2);
7008         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7009         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7010         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7011         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7012
7013         let (our_payment_preimage, our_payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 100_000);
7014
7015         nodes[1].node.claim_funds(our_payment_preimage);
7016         check_added_monitors!(nodes[1], 1);
7017         expect_payment_claimed!(nodes[1], our_payment_hash, 100_000);
7018
7019         let events = nodes[1].node.get_and_clear_pending_msg_events();
7020         assert_eq!(events.len(), 1);
7021         let mut update_fulfill_msg: msgs::UpdateFulfillHTLC = {
7022                 match events[0] {
7023                         MessageSendEvent::UpdateHTLCs { node_id: _ , updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, .. } } => {
7024                                 assert!(update_add_htlcs.is_empty());
7025                                 assert_eq!(update_fulfill_htlcs.len(), 1);
7026                                 assert!(update_fail_htlcs.is_empty());
7027                                 assert!(update_fail_malformed_htlcs.is_empty());
7028                                 assert!(update_fee.is_none());
7029                                 update_fulfill_htlcs[0].clone()
7030                         },
7031                         _ => panic!("Unexpected event"),
7032                 }
7033         };
7034
7035         update_fulfill_msg.payment_preimage = PaymentPreimage([1; 32]);
7036
7037         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &update_fulfill_msg);
7038
7039         assert!(nodes[0].node.list_channels().is_empty());
7040         let err_msg = check_closed_broadcast!(nodes[0], true).unwrap();
7041         assert!(regex::Regex::new(r"Remote tried to fulfill HTLC \(\d+\) with an incorrect preimage").unwrap().is_match(err_msg.data.as_str()));
7042         check_added_monitors!(nodes[0], 1);
7043         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: err_msg.data });
7044 }
7045
7046 #[test]
7047 fn test_update_fulfill_htlc_bolt2_missing_badonion_bit_for_malformed_htlc_message() {
7048         //BOLT 2 Requirement: A receiving node: if the BADONION bit in failure_code is not set for update_fail_malformed_htlc MUST fail the channel.
7049
7050         let chanmon_cfgs = create_chanmon_cfgs(2);
7051         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7052         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7053         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7054         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
7055
7056         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
7057         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
7058         check_added_monitors!(nodes[0], 1);
7059
7060         let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7061         updates.update_add_htlcs[0].onion_routing_packet.version = 1; //Produce a malformed HTLC message
7062
7063         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
7064         check_added_monitors!(nodes[1], 0);
7065         commitment_signed_dance!(nodes[1], nodes[0], updates.commitment_signed, false, true);
7066
7067         let events = nodes[1].node.get_and_clear_pending_msg_events();
7068
7069         let mut update_msg: msgs::UpdateFailMalformedHTLC = {
7070                 match events[0] {
7071                         MessageSendEvent::UpdateHTLCs { node_id: _ , updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, .. } } => {
7072                                 assert!(update_add_htlcs.is_empty());
7073                                 assert!(update_fulfill_htlcs.is_empty());
7074                                 assert!(update_fail_htlcs.is_empty());
7075                                 assert_eq!(update_fail_malformed_htlcs.len(), 1);
7076                                 assert!(update_fee.is_none());
7077                                 update_fail_malformed_htlcs[0].clone()
7078                         },
7079                         _ => panic!("Unexpected event"),
7080                 }
7081         };
7082         update_msg.failure_code &= !0x8000;
7083         nodes[0].node.handle_update_fail_malformed_htlc(&nodes[1].node.get_our_node_id(), &update_msg);
7084
7085         assert!(nodes[0].node.list_channels().is_empty());
7086         let err_msg = check_closed_broadcast!(nodes[0], true).unwrap();
7087         assert_eq!(err_msg.data, "Got update_fail_malformed_htlc with BADONION not set");
7088         check_added_monitors!(nodes[0], 1);
7089         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: err_msg.data });
7090 }
7091
7092 #[test]
7093 fn test_update_fulfill_htlc_bolt2_after_malformed_htlc_message_must_forward_update_fail_htlc() {
7094         //BOLT 2 Requirement: a receiving node which has an outgoing HTLC canceled by update_fail_malformed_htlc:
7095         //    * MUST return an error in the update_fail_htlc sent to the link which originally sent the HTLC, using the failure_code given and setting the data to sha256_of_onion.
7096
7097         let chanmon_cfgs = create_chanmon_cfgs(3);
7098         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
7099         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
7100         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
7101         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
7102         let chan_2 = create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
7103
7104         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 100000);
7105
7106         //First hop
7107         let mut payment_event = {
7108                 nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
7109                 check_added_monitors!(nodes[0], 1);
7110                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7111                 assert_eq!(events.len(), 1);
7112                 SendEvent::from_event(events.remove(0))
7113         };
7114         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7115         check_added_monitors!(nodes[1], 0);
7116         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7117         expect_pending_htlcs_forwardable!(nodes[1]);
7118         let mut events_2 = nodes[1].node.get_and_clear_pending_msg_events();
7119         assert_eq!(events_2.len(), 1);
7120         check_added_monitors!(nodes[1], 1);
7121         payment_event = SendEvent::from_event(events_2.remove(0));
7122         assert_eq!(payment_event.msgs.len(), 1);
7123
7124         //Second Hop
7125         payment_event.msgs[0].onion_routing_packet.version = 1; //Produce a malformed HTLC message
7126         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
7127         check_added_monitors!(nodes[2], 0);
7128         commitment_signed_dance!(nodes[2], nodes[1], payment_event.commitment_msg, false, true);
7129
7130         let events_3 = nodes[2].node.get_and_clear_pending_msg_events();
7131         assert_eq!(events_3.len(), 1);
7132         let update_msg : (msgs::UpdateFailMalformedHTLC, msgs::CommitmentSigned) = {
7133                 match events_3[0] {
7134                         MessageSendEvent::UpdateHTLCs { node_id: _ , updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
7135                                 assert!(update_add_htlcs.is_empty());
7136                                 assert!(update_fulfill_htlcs.is_empty());
7137                                 assert!(update_fail_htlcs.is_empty());
7138                                 assert_eq!(update_fail_malformed_htlcs.len(), 1);
7139                                 assert!(update_fee.is_none());
7140                                 (update_fail_malformed_htlcs[0].clone(), commitment_signed.clone())
7141                         },
7142                         _ => panic!("Unexpected event"),
7143                 }
7144         };
7145
7146         nodes[1].node.handle_update_fail_malformed_htlc(&nodes[2].node.get_our_node_id(), &update_msg.0);
7147
7148         check_added_monitors!(nodes[1], 0);
7149         commitment_signed_dance!(nodes[1], nodes[2], update_msg.1, false, true);
7150         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::NextHopChannel { node_id: Some(nodes[2].node.get_our_node_id()), channel_id: chan_2.2 }]);
7151         let events_4 = nodes[1].node.get_and_clear_pending_msg_events();
7152         assert_eq!(events_4.len(), 1);
7153
7154         //Confirm that handlinge the update_malformed_htlc message produces an update_fail_htlc message to be forwarded back along the route
7155         match events_4[0] {
7156                 MessageSendEvent::UpdateHTLCs { node_id: _ , updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, .. } } => {
7157                         assert!(update_add_htlcs.is_empty());
7158                         assert!(update_fulfill_htlcs.is_empty());
7159                         assert_eq!(update_fail_htlcs.len(), 1);
7160                         assert!(update_fail_malformed_htlcs.is_empty());
7161                         assert!(update_fee.is_none());
7162                 },
7163                 _ => panic!("Unexpected event"),
7164         };
7165
7166         check_added_monitors!(nodes[1], 1);
7167 }
7168
7169 fn do_test_failure_delay_dust_htlc_local_commitment(announce_latest: bool) {
7170         // Dust-HTLC failure updates must be delayed until failure-trigger tx (in this case local commitment) reach ANTI_REORG_DELAY
7171         // We can have at most two valid local commitment tx, so both cases must be covered, and both txs must be checked to get them all as
7172         // HTLC could have been removed from lastest local commitment tx but still valid until we get remote RAA
7173
7174         let mut chanmon_cfgs = create_chanmon_cfgs(2);
7175         chanmon_cfgs[0].keys_manager.disable_revocation_policy_check = true;
7176         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7177         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7178         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7179         let chan =create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7180
7181         let bs_dust_limit = nodes[1].node.channel_state.lock().unwrap().by_id.get(&chan.2).unwrap().holder_dust_limit_satoshis;
7182
7183         // We route 2 dust-HTLCs between A and B
7184         let (_, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], bs_dust_limit*1000);
7185         let (_, payment_hash_2, _) = route_payment(&nodes[0], &[&nodes[1]], bs_dust_limit*1000);
7186         route_payment(&nodes[0], &[&nodes[1]], 1000000);
7187
7188         // Cache one local commitment tx as previous
7189         let as_prev_commitment_tx = get_local_commitment_txn!(nodes[0], chan.2);
7190
7191         // Fail one HTLC to prune it in the will-be-latest-local commitment tx
7192         nodes[1].node.fail_htlc_backwards(&payment_hash_2);
7193         check_added_monitors!(nodes[1], 0);
7194         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: payment_hash_2 }]);
7195         check_added_monitors!(nodes[1], 1);
7196
7197         let remove = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7198         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &remove.update_fail_htlcs[0]);
7199         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &remove.commitment_signed);
7200         check_added_monitors!(nodes[0], 1);
7201
7202         // Cache one local commitment tx as lastest
7203         let as_last_commitment_tx = get_local_commitment_txn!(nodes[0], chan.2);
7204
7205         let events = nodes[0].node.get_and_clear_pending_msg_events();
7206         match events[0] {
7207                 MessageSendEvent::SendRevokeAndACK { node_id, .. } => {
7208                         assert_eq!(node_id, nodes[1].node.get_our_node_id());
7209                 },
7210                 _ => panic!("Unexpected event"),
7211         }
7212         match events[1] {
7213                 MessageSendEvent::UpdateHTLCs { node_id, .. } => {
7214                         assert_eq!(node_id, nodes[1].node.get_our_node_id());
7215                 },
7216                 _ => panic!("Unexpected event"),
7217         }
7218
7219         assert_ne!(as_prev_commitment_tx, as_last_commitment_tx);
7220         // Fail the 2 dust-HTLCs, move their failure in maturation buffer (htlc_updated_waiting_threshold_conf)
7221         if announce_latest {
7222                 mine_transaction(&nodes[0], &as_last_commitment_tx[0]);
7223         } else {
7224                 mine_transaction(&nodes[0], &as_prev_commitment_tx[0]);
7225         }
7226
7227         check_closed_broadcast!(nodes[0], true);
7228         check_added_monitors!(nodes[0], 1);
7229         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
7230
7231         assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7232         connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
7233         let events = nodes[0].node.get_and_clear_pending_events();
7234         // Only 2 PaymentPathFailed events should show up, over-dust HTLC has to be failed by timeout tx
7235         assert_eq!(events.len(), 2);
7236         let mut first_failed = false;
7237         for event in events {
7238                 match event {
7239                         Event::PaymentPathFailed { payment_hash, .. } => {
7240                                 if payment_hash == payment_hash_1 {
7241                                         assert!(!first_failed);
7242                                         first_failed = true;
7243                                 } else {
7244                                         assert_eq!(payment_hash, payment_hash_2);
7245                                 }
7246                         }
7247                         _ => panic!("Unexpected event"),
7248                 }
7249         }
7250 }
7251
7252 #[test]
7253 fn test_failure_delay_dust_htlc_local_commitment() {
7254         do_test_failure_delay_dust_htlc_local_commitment(true);
7255         do_test_failure_delay_dust_htlc_local_commitment(false);
7256 }
7257
7258 fn do_test_sweep_outbound_htlc_failure_update(revoked: bool, local: bool) {
7259         // Outbound HTLC-failure updates must be cancelled if we get a reorg before we reach ANTI_REORG_DELAY.
7260         // Broadcast of revoked remote commitment tx, trigger failure-update of dust/non-dust HTLCs
7261         // Broadcast of remote commitment tx, trigger failure-update of dust-HTLCs
7262         // Broadcast of timeout tx on remote commitment tx, trigger failure-udate of non-dust HTLCs
7263         // Broadcast of local commitment tx, trigger failure-update of dust-HTLCs
7264         // Broadcast of HTLC-timeout tx on local commitment tx, trigger failure-update of non-dust HTLCs
7265
7266         let chanmon_cfgs = create_chanmon_cfgs(3);
7267         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
7268         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
7269         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
7270         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7271
7272         let bs_dust_limit = nodes[1].node.channel_state.lock().unwrap().by_id.get(&chan.2).unwrap().holder_dust_limit_satoshis;
7273
7274         let (_payment_preimage_1, dust_hash, _payment_secret_1) = route_payment(&nodes[0], &[&nodes[1]], bs_dust_limit*1000);
7275         let (_payment_preimage_2, non_dust_hash, _payment_secret_2) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
7276
7277         let as_commitment_tx = get_local_commitment_txn!(nodes[0], chan.2);
7278         let bs_commitment_tx = get_local_commitment_txn!(nodes[1], chan.2);
7279
7280         // We revoked bs_commitment_tx
7281         if revoked {
7282                 let (payment_preimage_3, _, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
7283                 claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_3);
7284         }
7285
7286         let mut timeout_tx = Vec::new();
7287         if local {
7288                 // We fail dust-HTLC 1 by broadcast of local commitment tx
7289                 mine_transaction(&nodes[0], &as_commitment_tx[0]);
7290                 check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
7291                 connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
7292                 expect_payment_failed!(nodes[0], dust_hash, false);
7293
7294                 connect_blocks(&nodes[0], TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS - ANTI_REORG_DELAY);
7295                 check_closed_broadcast!(nodes[0], true);
7296                 check_added_monitors!(nodes[0], 1);
7297                 assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7298                 timeout_tx.push(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap()[1].clone());
7299                 assert_eq!(timeout_tx[0].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
7300                 // We fail non-dust-HTLC 2 by broadcast of local HTLC-timeout tx on local commitment tx
7301                 assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7302                 mine_transaction(&nodes[0], &timeout_tx[0]);
7303                 connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
7304                 expect_payment_failed!(nodes[0], non_dust_hash, false);
7305         } else {
7306                 // We fail dust-HTLC 1 by broadcast of remote commitment tx. If revoked, fail also non-dust HTLC
7307                 mine_transaction(&nodes[0], &bs_commitment_tx[0]);
7308                 check_closed_broadcast!(nodes[0], true);
7309                 check_added_monitors!(nodes[0], 1);
7310                 check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
7311                 assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7312
7313                 connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
7314                 timeout_tx = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().drain(..)
7315                         .filter(|tx| tx.input[0].previous_output.txid == bs_commitment_tx[0].txid()).collect();
7316                 check_spends!(timeout_tx[0], bs_commitment_tx[0]);
7317                 // For both a revoked or non-revoked commitment transaction, after ANTI_REORG_DELAY the
7318                 // dust HTLC should have been failed.
7319                 expect_payment_failed!(nodes[0], dust_hash, false);
7320
7321                 if !revoked {
7322                         assert_eq!(timeout_tx[0].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
7323                 } else {
7324                         assert_eq!(timeout_tx[0].lock_time.0, 0);
7325                 }
7326                 // We fail non-dust-HTLC 2 by broadcast of local timeout/revocation-claim tx
7327                 mine_transaction(&nodes[0], &timeout_tx[0]);
7328                 assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7329                 connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
7330                 expect_payment_failed!(nodes[0], non_dust_hash, false);
7331         }
7332 }
7333
7334 #[test]
7335 fn test_sweep_outbound_htlc_failure_update() {
7336         do_test_sweep_outbound_htlc_failure_update(false, true);
7337         do_test_sweep_outbound_htlc_failure_update(false, false);
7338         do_test_sweep_outbound_htlc_failure_update(true, false);
7339 }
7340
7341 #[test]
7342 fn test_user_configurable_csv_delay() {
7343         // We test our channel constructors yield errors when we pass them absurd csv delay
7344
7345         let mut low_our_to_self_config = UserConfig::default();
7346         low_our_to_self_config.channel_handshake_config.our_to_self_delay = 6;
7347         let mut high_their_to_self_config = UserConfig::default();
7348         high_their_to_self_config.channel_handshake_limits.their_to_self_delay = 100;
7349         let user_cfgs = [Some(high_their_to_self_config.clone()), None];
7350         let chanmon_cfgs = create_chanmon_cfgs(2);
7351         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7352         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &user_cfgs);
7353         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7354
7355         // We test config.our_to_self > BREAKDOWN_TIMEOUT is enforced in Channel::new_outbound()
7356         if let Err(error) = Channel::new_outbound(&LowerBoundedFeeEstimator::new(&test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) }),
7357                 &nodes[0].keys_manager, nodes[1].node.get_our_node_id(), &InitFeatures::known(), 1000000, 1000000, 0,
7358                 &low_our_to_self_config, 0, 42)
7359         {
7360                 match error {
7361                         APIError::APIMisuseError { err } => { assert!(regex::Regex::new(r"Configured with an unreasonable our_to_self_delay \(\d+\) putting user funds at risks").unwrap().is_match(err.as_str())); },
7362                         _ => panic!("Unexpected event"),
7363                 }
7364         } else { assert!(false) }
7365
7366         // We test config.our_to_self > BREAKDOWN_TIMEOUT is enforced in Channel::new_from_req()
7367         nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 1000000, 1000000, 42, None).unwrap();
7368         let mut open_channel = get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
7369         open_channel.to_self_delay = 200;
7370         if let Err(error) = Channel::new_from_req(&LowerBoundedFeeEstimator::new(&test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) }),
7371                 &nodes[0].keys_manager, nodes[1].node.get_our_node_id(), &InitFeatures::known(), &open_channel, 0,
7372                 &low_our_to_self_config, 0, &nodes[0].logger, 42)
7373         {
7374                 match error {
7375                         ChannelError::Close(err) => { assert!(regex::Regex::new(r"Configured with an unreasonable our_to_self_delay \(\d+\) putting user funds at risks").unwrap().is_match(err.as_str()));  },
7376                         _ => panic!("Unexpected event"),
7377                 }
7378         } else { assert!(false); }
7379
7380         // We test msg.to_self_delay <= config.their_to_self_delay is enforced in Chanel::accept_channel()
7381         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1000000, 1000000, 42, None).unwrap();
7382         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id()));
7383         let mut accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
7384         accept_channel.to_self_delay = 200;
7385         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel);
7386         let reason_msg;
7387         if let MessageSendEvent::HandleError { ref action, .. } = nodes[0].node.get_and_clear_pending_msg_events()[0] {
7388                 match action {
7389                         &ErrorAction::SendErrorMessage { ref msg } => {
7390                                 assert!(regex::Regex::new(r"They wanted our payments to be delayed by a needlessly long period\. Upper limit: \d+\. Actual: \d+").unwrap().is_match(msg.data.as_str()));
7391                                 reason_msg = msg.data.clone();
7392                         },
7393                         _ => { panic!(); }
7394                 }
7395         } else { panic!(); }
7396         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: reason_msg });
7397
7398         // We test msg.to_self_delay <= config.their_to_self_delay is enforced in Channel::new_from_req()
7399         nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 1000000, 1000000, 42, None).unwrap();
7400         let mut open_channel = get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
7401         open_channel.to_self_delay = 200;
7402         if let Err(error) = Channel::new_from_req(&LowerBoundedFeeEstimator::new(&test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) }),
7403                 &nodes[0].keys_manager, nodes[1].node.get_our_node_id(), &InitFeatures::known(), &open_channel, 0,
7404                 &high_their_to_self_config, 0, &nodes[0].logger, 42)
7405         {
7406                 match error {
7407                         ChannelError::Close(err) => { assert!(regex::Regex::new(r"They wanted our payments to be delayed by a needlessly long period\. Upper limit: \d+\. Actual: \d+").unwrap().is_match(err.as_str())); },
7408                         _ => panic!("Unexpected event"),
7409                 }
7410         } else { assert!(false); }
7411 }
7412
7413 fn do_test_data_loss_protect(reconnect_panicing: bool) {
7414         // When we get a data_loss_protect proving we're behind, we immediately panic as the
7415         // chain::Watch API requirements have been violated (e.g. the user restored from a backup). The
7416         // panic message informs the user they should force-close without broadcasting, which is tested
7417         // if `reconnect_panicing` is not set.
7418         let persister;
7419         let logger;
7420         let fee_estimator;
7421         let tx_broadcaster;
7422         let chain_source;
7423         let mut chanmon_cfgs = create_chanmon_cfgs(2);
7424         // We broadcast during Drop because chanmon is out of sync with chanmgr, which would cause a panic
7425         // during signing due to revoked tx
7426         chanmon_cfgs[0].keys_manager.disable_revocation_policy_check = true;
7427         let keys_manager = &chanmon_cfgs[0].keys_manager;
7428         let monitor;
7429         let node_state_0;
7430         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7431         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7432         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7433
7434         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
7435
7436         // Cache node A state before any channel update
7437         let previous_node_state = nodes[0].node.encode();
7438         let mut previous_chain_monitor_state = test_utils::TestVecWriter(Vec::new());
7439         get_monitor!(nodes[0], chan.2).write(&mut previous_chain_monitor_state).unwrap();
7440
7441         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
7442         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
7443
7444         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
7445         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
7446
7447         // Restore node A from previous state
7448         logger = test_utils::TestLogger::with_id(format!("node {}", 0));
7449         let mut chain_monitor = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(&mut io::Cursor::new(previous_chain_monitor_state.0), keys_manager).unwrap().1;
7450         chain_source = test_utils::TestChainSource::new(Network::Testnet);
7451         tx_broadcaster = test_utils::TestBroadcaster { txn_broadcasted: Mutex::new(Vec::new()), blocks: Arc::new(Mutex::new(Vec::new())) };
7452         fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
7453         persister = test_utils::TestPersister::new();
7454         monitor = test_utils::TestChainMonitor::new(Some(&chain_source), &tx_broadcaster, &logger, &fee_estimator, &persister, keys_manager);
7455         node_state_0 = {
7456                 let mut channel_monitors = HashMap::new();
7457                 channel_monitors.insert(OutPoint { txid: chan.3.txid(), index: 0 }, &mut chain_monitor);
7458                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut io::Cursor::new(previous_node_state), ChannelManagerReadArgs {
7459                         keys_manager: keys_manager,
7460                         fee_estimator: &fee_estimator,
7461                         chain_monitor: &monitor,
7462                         logger: &logger,
7463                         tx_broadcaster: &tx_broadcaster,
7464                         default_config: UserConfig::default(),
7465                         channel_monitors,
7466                 }).unwrap().1
7467         };
7468         nodes[0].node = &node_state_0;
7469         assert!(monitor.watch_channel(OutPoint { txid: chan.3.txid(), index: 0 }, chain_monitor).is_ok());
7470         nodes[0].chain_monitor = &monitor;
7471         nodes[0].chain_source = &chain_source;
7472
7473         check_added_monitors!(nodes[0], 1);
7474
7475         if reconnect_panicing {
7476                 nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7477                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7478
7479                 let reestablish_1 = get_chan_reestablish_msgs!(nodes[0], nodes[1]);
7480
7481                 // Check we close channel detecting A is fallen-behind
7482                 // Check that we sent the warning message when we detected that A has fallen behind,
7483                 // and give the possibility for A to recover from the warning.
7484                 nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[0]);
7485                 let warn_msg = "Peer attempted to reestablish channel with a very old local commitment transaction".to_owned();
7486                 assert!(check_warn_msg!(nodes[1], nodes[0].node.get_our_node_id(), chan.2).contains(&warn_msg));
7487
7488                 {
7489                         let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
7490                         // The node B should not broadcast the transaction to force close the channel!
7491                         assert!(node_txn.is_empty());
7492                 }
7493
7494                 let reestablish_0 = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
7495                 // Check A panics upon seeing proof it has fallen behind.
7496                 nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_0[0]);
7497                 return; // By this point we should have panic'ed!
7498         }
7499
7500         nodes[0].node.force_close_without_broadcasting_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
7501         check_added_monitors!(nodes[0], 1);
7502         check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed);
7503         {
7504                 let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
7505                 assert_eq!(node_txn.len(), 0);
7506         }
7507
7508         for msg in nodes[0].node.get_and_clear_pending_msg_events() {
7509                 if let MessageSendEvent::BroadcastChannelUpdate { .. } = msg {
7510                 } else if let MessageSendEvent::HandleError { ref action, .. } = msg {
7511                         match action {
7512                                 &ErrorAction::SendErrorMessage { ref msg } => {
7513                                         assert_eq!(msg.data, "Channel force-closed");
7514                                 },
7515                                 _ => panic!("Unexpected event!"),
7516                         }
7517                 } else {
7518                         panic!("Unexpected event {:?}", msg)
7519                 }
7520         }
7521
7522         // after the warning message sent by B, we should not able to
7523         // use the channel, or reconnect with success to the channel.
7524         assert!(nodes[0].node.list_usable_channels().is_empty());
7525         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7526         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7527         let retry_reestablish = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
7528
7529         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &retry_reestablish[0]);
7530         let mut err_msgs_0 = Vec::with_capacity(1);
7531         for msg in nodes[0].node.get_and_clear_pending_msg_events() {
7532                 if let MessageSendEvent::HandleError { ref action, .. } = msg {
7533                         match action {
7534                                 &ErrorAction::SendErrorMessage { ref msg } => {
7535                                         assert_eq!(msg.data, "Failed to find corresponding channel");
7536                                         err_msgs_0.push(msg.clone());
7537                                 },
7538                                 _ => panic!("Unexpected event!"),
7539                         }
7540                 } else {
7541                         panic!("Unexpected event!");
7542                 }
7543         }
7544         assert_eq!(err_msgs_0.len(), 1);
7545         nodes[1].node.handle_error(&nodes[0].node.get_our_node_id(), &err_msgs_0[0]);
7546         assert!(nodes[1].node.list_usable_channels().is_empty());
7547         check_added_monitors!(nodes[1], 1);
7548         check_closed_event!(nodes[1], 1, ClosureReason::CounterpartyForceClosed { peer_msg: "Failed to find corresponding channel".to_owned() });
7549         check_closed_broadcast!(nodes[1], false);
7550 }
7551
7552 #[test]
7553 #[should_panic]
7554 fn test_data_loss_protect_showing_stale_state_panics() {
7555         do_test_data_loss_protect(true);
7556 }
7557
7558 #[test]
7559 fn test_force_close_without_broadcast() {
7560         do_test_data_loss_protect(false);
7561 }
7562
7563 #[test]
7564 fn test_check_htlc_underpaying() {
7565         // Send payment through A -> B but A is maliciously
7566         // sending a probe payment (i.e less than expected value0
7567         // to B, B should refuse payment.
7568
7569         let chanmon_cfgs = create_chanmon_cfgs(2);
7570         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7571         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7572         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7573
7574         // Create some initial channels
7575         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7576
7577         let scorer = test_utils::TestScorer::with_penalty(0);
7578         let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7579         let payment_params = PaymentParameters::from_node_id(nodes[1].node.get_our_node_id()).with_features(InvoiceFeatures::known());
7580         let route = get_route(&nodes[0].node.get_our_node_id(), &payment_params, &nodes[0].network_graph.read_only(), None, 10_000, TEST_FINAL_CLTV, nodes[0].logger, &scorer, &random_seed_bytes).unwrap();
7581         let (_, our_payment_hash, _) = get_payment_preimage_hash!(nodes[0]);
7582         let our_payment_secret = nodes[1].node.create_inbound_payment_for_hash(our_payment_hash, Some(100_000), 7200).unwrap();
7583         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
7584         check_added_monitors!(nodes[0], 1);
7585
7586         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7587         assert_eq!(events.len(), 1);
7588         let mut payment_event = SendEvent::from_event(events.pop().unwrap());
7589         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7590         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7591
7592         // Note that we first have to wait a random delay before processing the receipt of the HTLC,
7593         // and then will wait a second random delay before failing the HTLC back:
7594         expect_pending_htlcs_forwardable!(nodes[1]);
7595         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
7596
7597         // Node 3 is expecting payment of 100_000 but received 10_000,
7598         // it should fail htlc like we didn't know the preimage.
7599         nodes[1].node.process_pending_htlc_forwards();
7600
7601         let events = nodes[1].node.get_and_clear_pending_msg_events();
7602         assert_eq!(events.len(), 1);
7603         let (update_fail_htlc, commitment_signed) = match events[0] {
7604                 MessageSendEvent::UpdateHTLCs { node_id: _ , updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
7605                         assert!(update_add_htlcs.is_empty());
7606                         assert!(update_fulfill_htlcs.is_empty());
7607                         assert_eq!(update_fail_htlcs.len(), 1);
7608                         assert!(update_fail_malformed_htlcs.is_empty());
7609                         assert!(update_fee.is_none());
7610                         (update_fail_htlcs[0].clone(), commitment_signed)
7611                 },
7612                 _ => panic!("Unexpected event"),
7613         };
7614         check_added_monitors!(nodes[1], 1);
7615
7616         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlc);
7617         commitment_signed_dance!(nodes[0], nodes[1], commitment_signed, false, true);
7618
7619         // 10_000 msat as u64, followed by a height of CHAN_CONFIRM_DEPTH as u32
7620         let mut expected_failure_data = byte_utils::be64_to_array(10_000).to_vec();
7621         expected_failure_data.extend_from_slice(&byte_utils::be32_to_array(CHAN_CONFIRM_DEPTH));
7622         expect_payment_failed!(nodes[0], our_payment_hash, true, 0x4000|15, &expected_failure_data[..]);
7623 }
7624
7625 #[test]
7626 fn test_announce_disable_channels() {
7627         // Create 2 channels between A and B. Disconnect B. Call timer_tick_occurred and check for generated
7628         // ChannelUpdate. Reconnect B, reestablish and check there is non-generated ChannelUpdate.
7629
7630         let chanmon_cfgs = create_chanmon_cfgs(2);
7631         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7632         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7633         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7634
7635         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7636         create_announced_chan_between_nodes(&nodes, 1, 0, InitFeatures::known(), InitFeatures::known());
7637         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7638
7639         // Disconnect peers
7640         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
7641         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
7642
7643         nodes[0].node.timer_tick_occurred(); // Enabled -> DisabledStaged
7644         nodes[0].node.timer_tick_occurred(); // DisabledStaged -> Disabled
7645         let msg_events = nodes[0].node.get_and_clear_pending_msg_events();
7646         assert_eq!(msg_events.len(), 3);
7647         let mut chans_disabled = HashMap::new();
7648         for e in msg_events {
7649                 match e {
7650                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
7651                                 assert_eq!(msg.contents.flags & (1<<1), 1<<1); // The "channel disabled" bit should be set
7652                                 // Check that each channel gets updated exactly once
7653                                 if chans_disabled.insert(msg.contents.short_channel_id, msg.contents.timestamp).is_some() {
7654                                         panic!("Generated ChannelUpdate for wrong chan!");
7655                                 }
7656                         },
7657                         _ => panic!("Unexpected event"),
7658                 }
7659         }
7660         // Reconnect peers
7661         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7662         let reestablish_1 = get_chan_reestablish_msgs!(nodes[0], nodes[1]);
7663         assert_eq!(reestablish_1.len(), 3);
7664         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7665         let reestablish_2 = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
7666         assert_eq!(reestablish_2.len(), 3);
7667
7668         // Reestablish chan_1
7669         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[0]);
7670         handle_chan_reestablish_msgs!(nodes[0], nodes[1]);
7671         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[0]);
7672         handle_chan_reestablish_msgs!(nodes[1], nodes[0]);
7673         // Reestablish chan_2
7674         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[1]);
7675         handle_chan_reestablish_msgs!(nodes[0], nodes[1]);
7676         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[1]);
7677         handle_chan_reestablish_msgs!(nodes[1], nodes[0]);
7678         // Reestablish chan_3
7679         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[2]);
7680         handle_chan_reestablish_msgs!(nodes[0], nodes[1]);
7681         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[2]);
7682         handle_chan_reestablish_msgs!(nodes[1], nodes[0]);
7683
7684         nodes[0].node.timer_tick_occurred();
7685         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
7686         nodes[0].node.timer_tick_occurred();
7687         let msg_events = nodes[0].node.get_and_clear_pending_msg_events();
7688         assert_eq!(msg_events.len(), 3);
7689         for e in msg_events {
7690                 match e {
7691                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
7692                                 assert_eq!(msg.contents.flags & (1<<1), 0); // The "channel disabled" bit should be off
7693                                 match chans_disabled.remove(&msg.contents.short_channel_id) {
7694                                         // Each update should have a higher timestamp than the previous one, replacing
7695                                         // the old one.
7696                                         Some(prev_timestamp) => assert!(msg.contents.timestamp > prev_timestamp),
7697                                         None => panic!("Generated ChannelUpdate for wrong chan!"),
7698                                 }
7699                         },
7700                         _ => panic!("Unexpected event"),
7701                 }
7702         }
7703         // Check that each channel gets updated exactly once
7704         assert!(chans_disabled.is_empty());
7705 }
7706
7707 #[test]
7708 fn test_bump_penalty_txn_on_revoked_commitment() {
7709         // In case of penalty txn with too low feerates for getting into mempools, RBF-bump them to be sure
7710         // we're able to claim outputs on revoked commitment transaction before timelocks expiration
7711
7712         let chanmon_cfgs = create_chanmon_cfgs(2);
7713         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7714         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7715         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7716
7717         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
7718
7719         let payment_preimage = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
7720         let payment_params = PaymentParameters::from_node_id(nodes[0].node.get_our_node_id())
7721                 .with_features(InvoiceFeatures::known());
7722         let (route,_, _, _) = get_route_and_payment_hash!(nodes[1], nodes[0], payment_params, 3000000, 30);
7723         send_along_route(&nodes[1], route, &vec!(&nodes[0])[..], 3000000);
7724
7725         let revoked_txn = get_local_commitment_txn!(nodes[0], chan.2);
7726         // Revoked commitment txn with 4 outputs : to_local, to_remote, 1 outgoing HTLC, 1 incoming HTLC
7727         assert_eq!(revoked_txn[0].output.len(), 4);
7728         assert_eq!(revoked_txn[0].input.len(), 1);
7729         assert_eq!(revoked_txn[0].input[0].previous_output.txid, chan.3.txid());
7730         let revoked_txid = revoked_txn[0].txid();
7731
7732         let mut penalty_sum = 0;
7733         for outp in revoked_txn[0].output.iter() {
7734                 if outp.script_pubkey.is_v0_p2wsh() {
7735                         penalty_sum += outp.value;
7736                 }
7737         }
7738
7739         // Connect blocks to change height_timer range to see if we use right soonest_timelock
7740         let header_114 = connect_blocks(&nodes[1], 14);
7741
7742         // Actually revoke tx by claiming a HTLC
7743         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage);
7744         let header = BlockHeader { version: 0x20000000, prev_blockhash: header_114, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7745         connect_block(&nodes[1], &Block { header, txdata: vec![revoked_txn[0].clone()] });
7746         check_added_monitors!(nodes[1], 1);
7747
7748         // One or more justice tx should have been broadcast, check it
7749         let penalty_1;
7750         let feerate_1;
7751         {
7752                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
7753                 assert_eq!(node_txn.len(), 2); // justice tx (broadcasted from ChannelMonitor) + local commitment tx
7754                 assert_eq!(node_txn[0].input.len(), 3); // Penalty txn claims to_local, offered_htlc and received_htlc outputs
7755                 assert_eq!(node_txn[0].output.len(), 1);
7756                 check_spends!(node_txn[0], revoked_txn[0]);
7757                 let fee_1 = penalty_sum - node_txn[0].output[0].value;
7758                 feerate_1 = fee_1 * 1000 / node_txn[0].weight() as u64;
7759                 penalty_1 = node_txn[0].txid();
7760                 node_txn.clear();
7761         };
7762
7763         // After exhaustion of height timer, a new bumped justice tx should have been broadcast, check it
7764         connect_blocks(&nodes[1], 15);
7765         let mut penalty_2 = penalty_1;
7766         let mut feerate_2 = 0;
7767         {
7768                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
7769                 assert_eq!(node_txn.len(), 1);
7770                 if node_txn[0].input[0].previous_output.txid == revoked_txid {
7771                         assert_eq!(node_txn[0].input.len(), 3); // Penalty txn claims to_local, offered_htlc and received_htlc outputs
7772                         assert_eq!(node_txn[0].output.len(), 1);
7773                         check_spends!(node_txn[0], revoked_txn[0]);
7774                         penalty_2 = node_txn[0].txid();
7775                         // Verify new bumped tx is different from last claiming transaction, we don't want spurrious rebroadcast
7776                         assert_ne!(penalty_2, penalty_1);
7777                         let fee_2 = penalty_sum - node_txn[0].output[0].value;
7778                         feerate_2 = fee_2 * 1000 / node_txn[0].weight() as u64;
7779                         // Verify 25% bump heuristic
7780                         assert!(feerate_2 * 100 >= feerate_1 * 125);
7781                         node_txn.clear();
7782                 }
7783         }
7784         assert_ne!(feerate_2, 0);
7785
7786         // After exhaustion of height timer for a 2nd time, a new bumped justice tx should have been broadcast, check it
7787         connect_blocks(&nodes[1], 1);
7788         let penalty_3;
7789         let mut feerate_3 = 0;
7790         {
7791                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
7792                 assert_eq!(node_txn.len(), 1);
7793                 if node_txn[0].input[0].previous_output.txid == revoked_txid {
7794                         assert_eq!(node_txn[0].input.len(), 3); // Penalty txn claims to_local, offered_htlc and received_htlc outputs
7795                         assert_eq!(node_txn[0].output.len(), 1);
7796                         check_spends!(node_txn[0], revoked_txn[0]);
7797                         penalty_3 = node_txn[0].txid();
7798                         // Verify new bumped tx is different from last claiming transaction, we don't want spurrious rebroadcast
7799                         assert_ne!(penalty_3, penalty_2);
7800                         let fee_3 = penalty_sum - node_txn[0].output[0].value;
7801                         feerate_3 = fee_3 * 1000 / node_txn[0].weight() as u64;
7802                         // Verify 25% bump heuristic
7803                         assert!(feerate_3 * 100 >= feerate_2 * 125);
7804                         node_txn.clear();
7805                 }
7806         }
7807         assert_ne!(feerate_3, 0);
7808
7809         nodes[1].node.get_and_clear_pending_events();
7810         nodes[1].node.get_and_clear_pending_msg_events();
7811 }
7812
7813 #[test]
7814 fn test_bump_penalty_txn_on_revoked_htlcs() {
7815         // In case of penalty txn with too low feerates for getting into mempools, RBF-bump them to sure
7816         // we're able to claim outputs on revoked HTLC transactions before timelocks expiration
7817
7818         let mut chanmon_cfgs = create_chanmon_cfgs(2);
7819         chanmon_cfgs[1].keys_manager.disable_revocation_policy_check = true;
7820         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7821         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7822         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7823
7824         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
7825         // Lock HTLC in both directions (using a slightly lower CLTV delay to provide timely RBF bumps)
7826         let payment_params = PaymentParameters::from_node_id(nodes[1].node.get_our_node_id()).with_features(InvoiceFeatures::known());
7827         let scorer = test_utils::TestScorer::with_penalty(0);
7828         let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7829         let route = get_route(&nodes[0].node.get_our_node_id(), &payment_params, &nodes[0].network_graph.read_only(), None,
7830                 3_000_000, 50, nodes[0].logger, &scorer, &random_seed_bytes).unwrap();
7831         let payment_preimage = send_along_route(&nodes[0], route, &[&nodes[1]], 3_000_000).0;
7832         let payment_params = PaymentParameters::from_node_id(nodes[0].node.get_our_node_id()).with_features(InvoiceFeatures::known());
7833         let route = get_route(&nodes[1].node.get_our_node_id(), &payment_params, &nodes[1].network_graph.read_only(), None,
7834                 3_000_000, 50, nodes[0].logger, &scorer, &random_seed_bytes).unwrap();
7835         send_along_route(&nodes[1], route, &[&nodes[0]], 3_000_000);
7836
7837         let revoked_local_txn = get_local_commitment_txn!(nodes[1], chan.2);
7838         assert_eq!(revoked_local_txn[0].input.len(), 1);
7839         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan.3.txid());
7840
7841         // Revoke local commitment tx
7842         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage);
7843
7844         let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7845         // B will generate both revoked HTLC-timeout/HTLC-preimage txn from revoked commitment tx
7846         connect_block(&nodes[1], &Block { header, txdata: vec![revoked_local_txn[0].clone()] });
7847         check_closed_broadcast!(nodes[1], true);
7848         check_added_monitors!(nodes[1], 1);
7849         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
7850         connect_blocks(&nodes[1], 49); // Confirm blocks until the HTLC expires (note CLTV was explicitly 50 above)
7851
7852         let revoked_htlc_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
7853         assert_eq!(revoked_htlc_txn.len(), 3);
7854         check_spends!(revoked_htlc_txn[1], chan.3);
7855
7856         assert_eq!(revoked_htlc_txn[0].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
7857         assert_eq!(revoked_htlc_txn[0].input.len(), 1);
7858         check_spends!(revoked_htlc_txn[0], revoked_local_txn[0]);
7859
7860         assert_eq!(revoked_htlc_txn[2].input.len(), 1);
7861         assert_eq!(revoked_htlc_txn[2].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
7862         assert_eq!(revoked_htlc_txn[2].output.len(), 1);
7863         check_spends!(revoked_htlc_txn[2], revoked_local_txn[0]);
7864
7865         // Broadcast set of revoked txn on A
7866         let hash_128 = connect_blocks(&nodes[0], 40);
7867         let header_11 = BlockHeader { version: 0x20000000, prev_blockhash: hash_128, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7868         connect_block(&nodes[0], &Block { header: header_11, txdata: vec![revoked_local_txn[0].clone()] });
7869         let header_129 = BlockHeader { version: 0x20000000, prev_blockhash: header_11.block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7870         connect_block(&nodes[0], &Block { header: header_129, txdata: vec![revoked_htlc_txn[0].clone(), revoked_htlc_txn[2].clone()] });
7871         let events = nodes[0].node.get_and_clear_pending_events();
7872         expect_pending_htlcs_forwardable_from_events!(nodes[0], events[0..1], true);
7873         match events.last().unwrap() {
7874                 Event::ChannelClosed { reason: ClosureReason::CommitmentTxConfirmed, .. } => {}
7875                 _ => panic!("Unexpected event"),
7876         }
7877         let first;
7878         let feerate_1;
7879         let penalty_txn;
7880         {
7881                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
7882                 assert_eq!(node_txn.len(), 5); // 3 penalty txn on revoked commitment tx + A commitment tx + 1 penalty tnx on revoked HTLC txn
7883                 // Verify claim tx are spending revoked HTLC txn
7884
7885                 // node_txn 0-2 each spend a separate revoked output from revoked_local_txn[0]
7886                 // Note that node_txn[0] and node_txn[1] are bogus - they double spend the revoked_htlc_txn
7887                 // which are included in the same block (they are broadcasted because we scan the
7888                 // transactions linearly and generate claims as we go, they likely should be removed in the
7889                 // future).
7890                 assert_eq!(node_txn[0].input.len(), 1);
7891                 check_spends!(node_txn[0], revoked_local_txn[0]);
7892                 assert_eq!(node_txn[1].input.len(), 1);
7893                 check_spends!(node_txn[1], revoked_local_txn[0]);
7894                 assert_eq!(node_txn[2].input.len(), 1);
7895                 check_spends!(node_txn[2], revoked_local_txn[0]);
7896
7897                 // Each of the three justice transactions claim a separate (single) output of the three
7898                 // available, which we check here:
7899                 assert_ne!(node_txn[0].input[0].previous_output, node_txn[1].input[0].previous_output);
7900                 assert_ne!(node_txn[0].input[0].previous_output, node_txn[2].input[0].previous_output);
7901                 assert_ne!(node_txn[1].input[0].previous_output, node_txn[2].input[0].previous_output);
7902
7903                 assert_eq!(node_txn[0].input[0].previous_output, revoked_htlc_txn[0].input[0].previous_output);
7904                 assert_eq!(node_txn[1].input[0].previous_output, revoked_htlc_txn[2].input[0].previous_output);
7905
7906                 // node_txn[3] is the local commitment tx broadcast just because (and somewhat in case of
7907                 // reorgs, though its not clear its ever worth broadcasting conflicting txn like this when
7908                 // a remote commitment tx has already been confirmed).
7909                 check_spends!(node_txn[3], chan.3);
7910
7911                 // node_txn[4] spends the revoked outputs from the revoked_htlc_txn (which only have one
7912                 // output, checked above).
7913                 assert_eq!(node_txn[4].input.len(), 2);
7914                 assert_eq!(node_txn[4].output.len(), 1);
7915                 check_spends!(node_txn[4], revoked_htlc_txn[0], revoked_htlc_txn[2]);
7916
7917                 first = node_txn[4].txid();
7918                 // Store both feerates for later comparison
7919                 let fee_1 = revoked_htlc_txn[0].output[0].value + revoked_htlc_txn[2].output[0].value - node_txn[4].output[0].value;
7920                 feerate_1 = fee_1 * 1000 / node_txn[4].weight() as u64;
7921                 penalty_txn = vec![node_txn[2].clone()];
7922                 node_txn.clear();
7923         }
7924
7925         // Connect one more block to see if bumped penalty are issued for HTLC txn
7926         let header_130 = BlockHeader { version: 0x20000000, prev_blockhash: header_129.block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7927         connect_block(&nodes[0], &Block { header: header_130, txdata: penalty_txn });
7928         let header_131 = BlockHeader { version: 0x20000000, prev_blockhash: header_130.block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7929         connect_block(&nodes[0], &Block { header: header_131, txdata: Vec::new() });
7930         {
7931                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
7932                 assert_eq!(node_txn.len(), 2); // 2 bumped penalty txn on revoked commitment tx
7933
7934                 check_spends!(node_txn[0], revoked_local_txn[0]);
7935                 check_spends!(node_txn[1], revoked_local_txn[0]);
7936                 // Note that these are both bogus - they spend outputs already claimed in block 129:
7937                 if node_txn[0].input[0].previous_output == revoked_htlc_txn[0].input[0].previous_output  {
7938                         assert_eq!(node_txn[1].input[0].previous_output, revoked_htlc_txn[2].input[0].previous_output);
7939                 } else {
7940                         assert_eq!(node_txn[0].input[0].previous_output, revoked_htlc_txn[2].input[0].previous_output);
7941                         assert_eq!(node_txn[1].input[0].previous_output, revoked_htlc_txn[0].input[0].previous_output);
7942                 }
7943
7944                 node_txn.clear();
7945         };
7946
7947         // Few more blocks to confirm penalty txn
7948         connect_blocks(&nodes[0], 4);
7949         assert!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().is_empty());
7950         let header_144 = connect_blocks(&nodes[0], 9);
7951         let node_txn = {
7952                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
7953                 assert_eq!(node_txn.len(), 1);
7954
7955                 assert_eq!(node_txn[0].input.len(), 2);
7956                 check_spends!(node_txn[0], revoked_htlc_txn[0], revoked_htlc_txn[2]);
7957                 // Verify bumped tx is different and 25% bump heuristic
7958                 assert_ne!(first, node_txn[0].txid());
7959                 let fee_2 = revoked_htlc_txn[0].output[0].value + revoked_htlc_txn[2].output[0].value - node_txn[0].output[0].value;
7960                 let feerate_2 = fee_2 * 1000 / node_txn[0].weight() as u64;
7961                 assert!(feerate_2 * 100 > feerate_1 * 125);
7962                 let txn = vec![node_txn[0].clone()];
7963                 node_txn.clear();
7964                 txn
7965         };
7966         // Broadcast claim txn and confirm blocks to avoid further bumps on this outputs
7967         let header_145 = BlockHeader { version: 0x20000000, prev_blockhash: header_144, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7968         connect_block(&nodes[0], &Block { header: header_145, txdata: node_txn });
7969         connect_blocks(&nodes[0], 20);
7970         {
7971                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
7972                 // We verify than no new transaction has been broadcast because previously
7973                 // we were buggy on this exact behavior by not tracking for monitoring remote HTLC outputs (see #411)
7974                 // which means we wouldn't see a spend of them by a justice tx and bumped justice tx
7975                 // were generated forever instead of safe cleaning after confirmation and ANTI_REORG_SAFE_DELAY blocks.
7976                 // Enforce spending of revoked htlc output by claiming transaction remove request as expected and dry
7977                 // up bumped justice generation.
7978                 assert_eq!(node_txn.len(), 0);
7979                 node_txn.clear();
7980         }
7981         check_closed_broadcast!(nodes[0], true);
7982         check_added_monitors!(nodes[0], 1);
7983 }
7984
7985 #[test]
7986 fn test_bump_penalty_txn_on_remote_commitment() {
7987         // In case of claim txn with too low feerates for getting into mempools, RBF-bump them to be sure
7988         // we're able to claim outputs on remote commitment transaction before timelocks expiration
7989
7990         // Create 2 HTLCs
7991         // Provide preimage for one
7992         // Check aggregation
7993
7994         let chanmon_cfgs = create_chanmon_cfgs(2);
7995         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7996         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7997         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7998
7999         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
8000         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 3_000_000);
8001         route_payment(&nodes[1], &vec!(&nodes[0])[..], 3000000).0;
8002
8003         // Remote commitment txn with 4 outputs : to_local, to_remote, 1 outgoing HTLC, 1 incoming HTLC
8004         let remote_txn = get_local_commitment_txn!(nodes[0], chan.2);
8005         assert_eq!(remote_txn[0].output.len(), 4);
8006         assert_eq!(remote_txn[0].input.len(), 1);
8007         assert_eq!(remote_txn[0].input[0].previous_output.txid, chan.3.txid());
8008
8009         // Claim a HTLC without revocation (provide B monitor with preimage)
8010         nodes[1].node.claim_funds(payment_preimage);
8011         expect_payment_claimed!(nodes[1], payment_hash, 3_000_000);
8012         mine_transaction(&nodes[1], &remote_txn[0]);
8013         check_added_monitors!(nodes[1], 2);
8014         connect_blocks(&nodes[1], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
8015
8016         // One or more claim tx should have been broadcast, check it
8017         let timeout;
8018         let preimage;
8019         let preimage_bump;
8020         let feerate_timeout;
8021         let feerate_preimage;
8022         {
8023                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
8024                 // 9 transactions including:
8025                 // 1*2 ChannelManager local broadcasts of commitment + HTLC-Success
8026                 // 1*3 ChannelManager local broadcasts of commitment + HTLC-Success + HTLC-Timeout
8027                 // 2 * HTLC-Success (one RBF bump we'll check later)
8028                 // 1 * HTLC-Timeout
8029                 assert_eq!(node_txn.len(), 8);
8030                 assert_eq!(node_txn[0].input.len(), 1);
8031                 assert_eq!(node_txn[6].input.len(), 1);
8032                 check_spends!(node_txn[0], remote_txn[0]);
8033                 check_spends!(node_txn[6], remote_txn[0]);
8034
8035                 check_spends!(node_txn[1], chan.3);
8036                 check_spends!(node_txn[2], node_txn[1]);
8037
8038                 if node_txn[0].input[0].previous_output == node_txn[3].input[0].previous_output {
8039                         preimage_bump = node_txn[3].clone();
8040                         check_spends!(node_txn[3], remote_txn[0]);
8041
8042                         assert_eq!(node_txn[1], node_txn[4]);
8043                         assert_eq!(node_txn[2], node_txn[5]);
8044                 } else {
8045                         preimage_bump = node_txn[7].clone();
8046                         check_spends!(node_txn[7], remote_txn[0]);
8047                         assert_eq!(node_txn[0].input[0].previous_output, node_txn[7].input[0].previous_output);
8048
8049                         assert_eq!(node_txn[1], node_txn[3]);
8050                         assert_eq!(node_txn[2], node_txn[4]);
8051                 }
8052
8053                 timeout = node_txn[6].txid();
8054                 let index = node_txn[6].input[0].previous_output.vout;
8055                 let fee = remote_txn[0].output[index as usize].value - node_txn[6].output[0].value;
8056                 feerate_timeout = fee * 1000 / node_txn[6].weight() as u64;
8057
8058                 preimage = node_txn[0].txid();
8059                 let index = node_txn[0].input[0].previous_output.vout;
8060                 let fee = remote_txn[0].output[index as usize].value - node_txn[0].output[0].value;
8061                 feerate_preimage = fee * 1000 / node_txn[0].weight() as u64;
8062
8063                 node_txn.clear();
8064         };
8065         assert_ne!(feerate_timeout, 0);
8066         assert_ne!(feerate_preimage, 0);
8067
8068         // After exhaustion of height timer, new bumped claim txn should have been broadcast, check it
8069         connect_blocks(&nodes[1], 15);
8070         {
8071                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
8072                 assert_eq!(node_txn.len(), 1);
8073                 assert_eq!(node_txn[0].input.len(), 1);
8074                 assert_eq!(preimage_bump.input.len(), 1);
8075                 check_spends!(node_txn[0], remote_txn[0]);
8076                 check_spends!(preimage_bump, remote_txn[0]);
8077
8078                 let index = preimage_bump.input[0].previous_output.vout;
8079                 let fee = remote_txn[0].output[index as usize].value - preimage_bump.output[0].value;
8080                 let new_feerate = fee * 1000 / preimage_bump.weight() as u64;
8081                 assert!(new_feerate * 100 > feerate_timeout * 125);
8082                 assert_ne!(timeout, preimage_bump.txid());
8083
8084                 let index = node_txn[0].input[0].previous_output.vout;
8085                 let fee = remote_txn[0].output[index as usize].value - node_txn[0].output[0].value;
8086                 let new_feerate = fee * 1000 / node_txn[0].weight() as u64;
8087                 assert!(new_feerate * 100 > feerate_preimage * 125);
8088                 assert_ne!(preimage, node_txn[0].txid());
8089
8090                 node_txn.clear();
8091         }
8092
8093         nodes[1].node.get_and_clear_pending_events();
8094         nodes[1].node.get_and_clear_pending_msg_events();
8095 }
8096
8097 #[test]
8098 fn test_counterparty_raa_skip_no_crash() {
8099         // Previously, if our counterparty sent two RAAs in a row without us having provided a
8100         // commitment transaction, we would have happily carried on and provided them the next
8101         // commitment transaction based on one RAA forward. This would probably eventually have led to
8102         // channel closure, but it would not have resulted in funds loss. Still, our
8103         // EnforcingSigner would have panicked as it doesn't like jumps into the future. Here, we
8104         // check simply that the channel is closed in response to such an RAA, but don't check whether
8105         // we decide to punish our counterparty for revoking their funds (as we don't currently
8106         // implement that).
8107         let chanmon_cfgs = create_chanmon_cfgs(2);
8108         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8109         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8110         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8111         let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
8112
8113         let per_commitment_secret;
8114         let next_per_commitment_point;
8115         {
8116                 let mut guard = nodes[0].node.channel_state.lock().unwrap();
8117                 let keys = guard.by_id.get_mut(&channel_id).unwrap().get_signer();
8118
8119                 const INITIAL_COMMITMENT_NUMBER: u64 = (1 << 48) - 1;
8120
8121                 // Make signer believe we got a counterparty signature, so that it allows the revocation
8122                 keys.get_enforcement_state().last_holder_commitment -= 1;
8123                 per_commitment_secret = keys.release_commitment_secret(INITIAL_COMMITMENT_NUMBER);
8124
8125                 // Must revoke without gaps
8126                 keys.get_enforcement_state().last_holder_commitment -= 1;
8127                 keys.release_commitment_secret(INITIAL_COMMITMENT_NUMBER - 1);
8128
8129                 keys.get_enforcement_state().last_holder_commitment -= 1;
8130                 next_per_commitment_point = PublicKey::from_secret_key(&Secp256k1::new(),
8131                         &SecretKey::from_slice(&keys.release_commitment_secret(INITIAL_COMMITMENT_NUMBER - 2)).unwrap());
8132         }
8133
8134         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(),
8135                 &msgs::RevokeAndACK { channel_id, per_commitment_secret, next_per_commitment_point });
8136         assert_eq!(check_closed_broadcast!(nodes[1], true).unwrap().data, "Received an unexpected revoke_and_ack");
8137         check_added_monitors!(nodes[1], 1);
8138         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: "Received an unexpected revoke_and_ack".to_string() });
8139 }
8140
8141 #[test]
8142 fn test_bump_txn_sanitize_tracking_maps() {
8143         // Sanitizing pendning_claim_request and claimable_outpoints used to be buggy,
8144         // verify we clean then right after expiration of ANTI_REORG_DELAY.
8145
8146         let chanmon_cfgs = create_chanmon_cfgs(2);
8147         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8148         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8149         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8150
8151         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
8152         // Lock HTLC in both directions
8153         let (payment_preimage_1, _, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 9_000_000);
8154         let (_, payment_hash_2, _) = route_payment(&nodes[1], &vec!(&nodes[0])[..], 9_000_000);
8155
8156         let revoked_local_txn = get_local_commitment_txn!(nodes[1], chan.2);
8157         assert_eq!(revoked_local_txn[0].input.len(), 1);
8158         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan.3.txid());
8159
8160         // Revoke local commitment tx
8161         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_1);
8162
8163         // Broadcast set of revoked txn on A
8164         connect_blocks(&nodes[0], TEST_FINAL_CLTV + 2 - CHAN_CONFIRM_DEPTH);
8165         expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore!(nodes[0], vec![HTLCDestination::FailedPayment { payment_hash: payment_hash_2 }]);
8166         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 0);
8167
8168         mine_transaction(&nodes[0], &revoked_local_txn[0]);
8169         check_closed_broadcast!(nodes[0], true);
8170         check_added_monitors!(nodes[0], 1);
8171         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
8172         let penalty_txn = {
8173                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8174                 assert_eq!(node_txn.len(), 4); //ChannelMonitor: justice txn * 3, ChannelManager: local commitment tx
8175                 check_spends!(node_txn[0], revoked_local_txn[0]);
8176                 check_spends!(node_txn[1], revoked_local_txn[0]);
8177                 check_spends!(node_txn[2], revoked_local_txn[0]);
8178                 let penalty_txn = vec![node_txn[0].clone(), node_txn[1].clone(), node_txn[2].clone()];
8179                 node_txn.clear();
8180                 penalty_txn
8181         };
8182         let header_130 = BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8183         connect_block(&nodes[0], &Block { header: header_130, txdata: penalty_txn });
8184         connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
8185         {
8186                 let monitor = nodes[0].chain_monitor.chain_monitor.get_monitor(OutPoint { txid: chan.3.txid(), index: 0 }).unwrap();
8187                 assert!(monitor.inner.lock().unwrap().onchain_tx_handler.pending_claim_requests.is_empty());
8188                 assert!(monitor.inner.lock().unwrap().onchain_tx_handler.claimable_outpoints.is_empty());
8189         }
8190 }
8191
8192 #[test]
8193 fn test_pending_claimed_htlc_no_balance_underflow() {
8194         // Tests that if we have a pending outbound HTLC as well as a claimed-but-not-fully-removed
8195         // HTLC we will not underflow when we call `Channel::get_balance_msat()`.
8196         let chanmon_cfgs = create_chanmon_cfgs(2);
8197         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8198         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8199         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8200         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
8201
8202         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 1_010_000);
8203         nodes[1].node.claim_funds(payment_preimage);
8204         expect_payment_claimed!(nodes[1], payment_hash, 1_010_000);
8205         check_added_monitors!(nodes[1], 1);
8206         let fulfill_ev = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8207
8208         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &fulfill_ev.update_fulfill_htlcs[0]);
8209         expect_payment_sent_without_paths!(nodes[0], payment_preimage);
8210         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &fulfill_ev.commitment_signed);
8211         check_added_monitors!(nodes[0], 1);
8212         let (_raa, _cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8213
8214         // At this point nodes[1] has received 1,010k msat (10k msat more than their reserve) and can
8215         // send an HTLC back (though it will go in the holding cell). Send an HTLC back and check we
8216         // can get our balance.
8217
8218         // Get a route from nodes[1] to nodes[0] by getting a route going the other way and then flip
8219         // the public key of the only hop. This works around ChannelDetails not showing the
8220         // almost-claimed HTLC as available balance.
8221         let (mut route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 10_000);
8222         route.payment_params = None; // This is all wrong, but unnecessary
8223         route.paths[0][0].pubkey = nodes[0].node.get_our_node_id();
8224         let (_, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[0]);
8225         nodes[1].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
8226
8227         assert_eq!(nodes[1].node.list_channels()[0].balance_msat, 1_000_000);
8228 }
8229
8230 #[test]
8231 fn test_channel_conf_timeout() {
8232         // Tests that, for inbound channels, we give up on them if the funding transaction does not
8233         // confirm within 2016 blocks, as recommended by BOLT 2.
8234         let chanmon_cfgs = create_chanmon_cfgs(2);
8235         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8236         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8237         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8238
8239         let _funding_tx = create_chan_between_nodes_with_value_init(&nodes[0], &nodes[1], 1_000_000, 100_000, InitFeatures::known(), InitFeatures::known());
8240
8241         // The outbound node should wait forever for confirmation:
8242         // This matches `channel::FUNDING_CONF_DEADLINE_BLOCKS` and BOLT 2's suggested timeout, thus is
8243         // copied here instead of directly referencing the constant.
8244         connect_blocks(&nodes[0], 2016);
8245         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
8246
8247         // The inbound node should fail the channel after exactly 2016 blocks
8248         connect_blocks(&nodes[1], 2015);
8249         check_added_monitors!(nodes[1], 0);
8250         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
8251
8252         connect_blocks(&nodes[1], 1);
8253         check_added_monitors!(nodes[1], 1);
8254         check_closed_event!(nodes[1], 1, ClosureReason::FundingTimedOut);
8255         let close_ev = nodes[1].node.get_and_clear_pending_msg_events();
8256         assert_eq!(close_ev.len(), 1);
8257         match close_ev[0] {
8258                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, ref node_id } => {
8259                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8260                         assert_eq!(msg.data, "Channel closed because funding transaction failed to confirm within 2016 blocks");
8261                 },
8262                 _ => panic!("Unexpected event"),
8263         }
8264 }
8265
8266 #[test]
8267 fn test_override_channel_config() {
8268         let chanmon_cfgs = create_chanmon_cfgs(2);
8269         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8270         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8271         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8272
8273         // Node0 initiates a channel to node1 using the override config.
8274         let mut override_config = UserConfig::default();
8275         override_config.channel_handshake_config.our_to_self_delay = 200;
8276
8277         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 16_000_000, 12_000_000, 42, Some(override_config)).unwrap();
8278
8279         // Assert the channel created by node0 is using the override config.
8280         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8281         assert_eq!(res.channel_flags, 0);
8282         assert_eq!(res.to_self_delay, 200);
8283 }
8284
8285 #[test]
8286 fn test_override_0msat_htlc_minimum() {
8287         let mut zero_config = UserConfig::default();
8288         zero_config.channel_handshake_config.our_htlc_minimum_msat = 0;
8289         let chanmon_cfgs = create_chanmon_cfgs(2);
8290         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8291         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(zero_config.clone())]);
8292         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8293
8294         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 16_000_000, 12_000_000, 42, Some(zero_config)).unwrap();
8295         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8296         assert_eq!(res.htlc_minimum_msat, 1);
8297
8298         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8299         let res = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
8300         assert_eq!(res.htlc_minimum_msat, 1);
8301 }
8302
8303 #[test]
8304 fn test_channel_update_has_correct_htlc_maximum_msat() {
8305         // Tests that the `ChannelUpdate` message has the correct values for `htlc_maximum_msat` set.
8306         // Bolt 7 specifies that if present `htlc_maximum_msat`:
8307         // 1. MUST be set to less than or equal to the channel capacity. In LDK, this is capped to
8308         // 90% of the `channel_value`.
8309         // 2. MUST be set to less than or equal to the `max_htlc_value_in_flight_msat` received from the peer.
8310
8311         let mut config_30_percent = UserConfig::default();
8312         config_30_percent.channel_handshake_config.announced_channel = true;
8313         config_30_percent.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 30;
8314         let mut config_50_percent = UserConfig::default();
8315         config_50_percent.channel_handshake_config.announced_channel = true;
8316         config_50_percent.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 50;
8317         let mut config_95_percent = UserConfig::default();
8318         config_95_percent.channel_handshake_config.announced_channel = true;
8319         config_95_percent.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 95;
8320         let mut config_100_percent = UserConfig::default();
8321         config_100_percent.channel_handshake_config.announced_channel = true;
8322         config_100_percent.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 100;
8323
8324         let chanmon_cfgs = create_chanmon_cfgs(4);
8325         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
8326         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[Some(config_30_percent), Some(config_50_percent), Some(config_95_percent), Some(config_100_percent)]);
8327         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
8328
8329         let channel_value_satoshis = 100000;
8330         let channel_value_msat = channel_value_satoshis * 1000;
8331         let channel_value_30_percent_msat = (channel_value_msat as f64 * 0.3) as u64;
8332         let channel_value_50_percent_msat = (channel_value_msat as f64 * 0.5) as u64;
8333         let channel_value_90_percent_msat = (channel_value_msat as f64 * 0.9) as u64;
8334
8335         let (node_0_chan_update, node_1_chan_update, _, _)  = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, channel_value_satoshis, 10001, InitFeatures::known(), InitFeatures::known());
8336         let (node_2_chan_update, node_3_chan_update, _, _)  = create_announced_chan_between_nodes_with_value(&nodes, 2, 3, channel_value_satoshis, 10001, InitFeatures::known(), InitFeatures::known());
8337
8338         // Assert that `node[0]`'s `ChannelUpdate` is capped at 50 percent of the `channel_value`, as
8339         // that's the value of `node[1]`'s `holder_max_htlc_value_in_flight_msat`.
8340         assert_eq!(node_0_chan_update.contents.htlc_maximum_msat, channel_value_50_percent_msat);
8341         // Assert that `node[1]`'s `ChannelUpdate` is capped at 30 percent of the `channel_value`, as
8342         // that's the value of `node[0]`'s `holder_max_htlc_value_in_flight_msat`.
8343         assert_eq!(node_1_chan_update.contents.htlc_maximum_msat, channel_value_30_percent_msat);
8344
8345         // Assert that `node[2]`'s `ChannelUpdate` is capped at 90 percent of the `channel_value`, as
8346         // the value of `node[3]`'s `holder_max_htlc_value_in_flight_msat` (100%), exceeds 90% of the
8347         // `channel_value`.
8348         assert_eq!(node_2_chan_update.contents.htlc_maximum_msat, channel_value_90_percent_msat);
8349         // Assert that `node[3]`'s `ChannelUpdate` is capped at 90 percent of the `channel_value`, as
8350         // the value of `node[2]`'s `holder_max_htlc_value_in_flight_msat` (95%), exceeds 90% of the
8351         // `channel_value`.
8352         assert_eq!(node_3_chan_update.contents.htlc_maximum_msat, channel_value_90_percent_msat);
8353 }
8354
8355 #[test]
8356 fn test_manually_accept_inbound_channel_request() {
8357         let mut manually_accept_conf = UserConfig::default();
8358         manually_accept_conf.manually_accept_inbound_channels = true;
8359         let chanmon_cfgs = create_chanmon_cfgs(2);
8360         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8361         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(manually_accept_conf.clone())]);
8362         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8363
8364         let temp_channel_id = nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, Some(manually_accept_conf)).unwrap();
8365         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8366
8367         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8368
8369         // Assert that `nodes[1]` has no `MessageSendEvent::SendAcceptChannel` in `msg_events` before
8370         // accepting the inbound channel request.
8371         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
8372
8373         let events = nodes[1].node.get_and_clear_pending_events();
8374         match events[0] {
8375                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
8376                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap();
8377                 }
8378                 _ => panic!("Unexpected event"),
8379         }
8380
8381         let accept_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8382         assert_eq!(accept_msg_ev.len(), 1);
8383
8384         match accept_msg_ev[0] {
8385                 MessageSendEvent::SendAcceptChannel { ref node_id, .. } => {
8386                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8387                 }
8388                 _ => panic!("Unexpected event"),
8389         }
8390
8391         nodes[1].node.force_close_broadcasting_latest_txn(&temp_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
8392
8393         let close_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8394         assert_eq!(close_msg_ev.len(), 1);
8395
8396         let events = nodes[1].node.get_and_clear_pending_events();
8397         match events[0] {
8398                 Event::ChannelClosed { user_channel_id, .. } => {
8399                         assert_eq!(user_channel_id, 23);
8400                 }
8401                 _ => panic!("Unexpected event"),
8402         }
8403 }
8404
8405 #[test]
8406 fn test_manually_reject_inbound_channel_request() {
8407         let mut manually_accept_conf = UserConfig::default();
8408         manually_accept_conf.manually_accept_inbound_channels = true;
8409         let chanmon_cfgs = create_chanmon_cfgs(2);
8410         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8411         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(manually_accept_conf.clone())]);
8412         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8413
8414         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, Some(manually_accept_conf)).unwrap();
8415         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8416
8417         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8418
8419         // Assert that `nodes[1]` has no `MessageSendEvent::SendAcceptChannel` in `msg_events` before
8420         // rejecting the inbound channel request.
8421         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
8422
8423         let events = nodes[1].node.get_and_clear_pending_events();
8424         match events[0] {
8425                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
8426                         nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
8427                 }
8428                 _ => panic!("Unexpected event"),
8429         }
8430
8431         let close_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8432         assert_eq!(close_msg_ev.len(), 1);
8433
8434         match close_msg_ev[0] {
8435                 MessageSendEvent::HandleError { ref node_id, .. } => {
8436                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8437                 }
8438                 _ => panic!("Unexpected event"),
8439         }
8440         check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
8441 }
8442
8443 #[test]
8444 fn test_reject_funding_before_inbound_channel_accepted() {
8445         // This tests that when `UserConfig::manually_accept_inbound_channels` is set to true, inbound
8446         // channels must to be manually accepted through `ChannelManager::accept_inbound_channel` by
8447         // the node operator before the counterparty sends a `FundingCreated` message. If a
8448         // `FundingCreated` message is received before the channel is accepted, it should be rejected
8449         // and the channel should be closed.
8450         let mut manually_accept_conf = UserConfig::default();
8451         manually_accept_conf.manually_accept_inbound_channels = true;
8452         let chanmon_cfgs = create_chanmon_cfgs(2);
8453         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8454         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(manually_accept_conf.clone())]);
8455         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8456
8457         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, Some(manually_accept_conf)).unwrap();
8458         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8459         let temp_channel_id = res.temporary_channel_id;
8460
8461         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8462
8463         // Assert that `nodes[1]` has no `MessageSendEvent::SendAcceptChannel` in the `msg_events`.
8464         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
8465
8466         // Clear the `Event::OpenChannelRequest` event without responding to the request.
8467         nodes[1].node.get_and_clear_pending_events();
8468
8469         // Get the `AcceptChannel` message of `nodes[1]` without calling
8470         // `ChannelManager::accept_inbound_channel`, which generates a
8471         // `MessageSendEvent::SendAcceptChannel` event. The message is passed to `nodes[0]`
8472         // `handle_accept_channel`, which is required in order for `create_funding_transaction` to
8473         // succeed when `nodes[0]` is passed to it.
8474         let accept_chan_msg = {
8475                 let mut lock;
8476                 let channel = get_channel_ref!(&nodes[1], lock, temp_channel_id);
8477                 channel.get_accept_channel_message()
8478         };
8479         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_chan_msg);
8480
8481         let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42);
8482
8483         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
8484         let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
8485
8486         // The `funding_created_msg` should be rejected by `nodes[1]` as it hasn't accepted the channel
8487         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
8488
8489         let close_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8490         assert_eq!(close_msg_ev.len(), 1);
8491
8492         let expected_err = "FundingCreated message received before the channel was accepted";
8493         match close_msg_ev[0] {
8494                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, ref node_id, } => {
8495                         assert_eq!(msg.channel_id, temp_channel_id);
8496                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8497                         assert_eq!(msg.data, expected_err);
8498                 }
8499                 _ => panic!("Unexpected event"),
8500         }
8501
8502         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: expected_err.to_string() });
8503 }
8504
8505 #[test]
8506 fn test_can_not_accept_inbound_channel_twice() {
8507         let mut manually_accept_conf = UserConfig::default();
8508         manually_accept_conf.manually_accept_inbound_channels = true;
8509         let chanmon_cfgs = create_chanmon_cfgs(2);
8510         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8511         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(manually_accept_conf.clone())]);
8512         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8513
8514         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, Some(manually_accept_conf)).unwrap();
8515         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8516
8517         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8518
8519         // Assert that `nodes[1]` has no `MessageSendEvent::SendAcceptChannel` in `msg_events` before
8520         // accepting the inbound channel request.
8521         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
8522
8523         let events = nodes[1].node.get_and_clear_pending_events();
8524         match events[0] {
8525                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
8526                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 0).unwrap();
8527                         let api_res = nodes[1].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 0);
8528                         match api_res {
8529                                 Err(APIError::APIMisuseError { err }) => {
8530                                         assert_eq!(err, "The channel isn't currently awaiting to be accepted.");
8531                                 },
8532                                 Ok(_) => panic!("Channel shouldn't be possible to be accepted twice"),
8533                                 Err(_) => panic!("Unexpected Error"),
8534                         }
8535                 }
8536                 _ => panic!("Unexpected event"),
8537         }
8538
8539         // Ensure that the channel wasn't closed after attempting to accept it twice.
8540         let accept_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8541         assert_eq!(accept_msg_ev.len(), 1);
8542
8543         match accept_msg_ev[0] {
8544                 MessageSendEvent::SendAcceptChannel { ref node_id, .. } => {
8545                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8546                 }
8547                 _ => panic!("Unexpected event"),
8548         }
8549 }
8550
8551 #[test]
8552 fn test_can_not_accept_unknown_inbound_channel() {
8553         let chanmon_cfg = create_chanmon_cfgs(2);
8554         let node_cfg = create_node_cfgs(2, &chanmon_cfg);
8555         let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
8556         let nodes = create_network(2, &node_cfg, &node_chanmgr);
8557
8558         let unknown_channel_id = [0; 32];
8559         let api_res = nodes[0].node.accept_inbound_channel(&unknown_channel_id, &nodes[1].node.get_our_node_id(), 0);
8560         match api_res {
8561                 Err(APIError::ChannelUnavailable { err }) => {
8562                         assert_eq!(err, "Can't accept a channel that doesn't exist");
8563                 },
8564                 Ok(_) => panic!("It shouldn't be possible to accept an unkown channel"),
8565                 Err(_) => panic!("Unexpected Error"),
8566         }
8567 }
8568
8569 #[test]
8570 fn test_simple_mpp() {
8571         // Simple test of sending a multi-path payment.
8572         let chanmon_cfgs = create_chanmon_cfgs(4);
8573         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
8574         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
8575         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
8576
8577         let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8578         let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8579         let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8580         let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8581
8582         let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
8583         let path = route.paths[0].clone();
8584         route.paths.push(path);
8585         route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
8586         route.paths[0][0].short_channel_id = chan_1_id;
8587         route.paths[0][1].short_channel_id = chan_3_id;
8588         route.paths[1][0].pubkey = nodes[2].node.get_our_node_id();
8589         route.paths[1][0].short_channel_id = chan_2_id;
8590         route.paths[1][1].short_channel_id = chan_4_id;
8591         send_along_route_with_secret(&nodes[0], route, &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], 200_000, payment_hash, payment_secret);
8592         claim_payment_along_route(&nodes[0], &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], false, payment_preimage);
8593 }
8594
8595 #[test]
8596 fn test_preimage_storage() {
8597         // Simple test of payment preimage storage allowing no client-side storage to claim payments
8598         let chanmon_cfgs = create_chanmon_cfgs(2);
8599         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8600         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8601         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8602
8603         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8604
8605         {
8606                 let (payment_hash, payment_secret) = nodes[1].node.create_inbound_payment(Some(100_000), 7200).unwrap();
8607                 let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
8608                 nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
8609                 check_added_monitors!(nodes[0], 1);
8610                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8611                 let mut payment_event = SendEvent::from_event(events.pop().unwrap());
8612                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8613                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8614         }
8615         // Note that after leaving the above scope we have no knowledge of any arguments or return
8616         // values from previous calls.
8617         expect_pending_htlcs_forwardable!(nodes[1]);
8618         let events = nodes[1].node.get_and_clear_pending_events();
8619         assert_eq!(events.len(), 1);
8620         match events[0] {
8621                 Event::PaymentReceived { ref purpose, .. } => {
8622                         match &purpose {
8623                                 PaymentPurpose::InvoicePayment { payment_preimage, .. } => {
8624                                         claim_payment(&nodes[0], &[&nodes[1]], payment_preimage.unwrap());
8625                                 },
8626                                 _ => panic!("expected PaymentPurpose::InvoicePayment")
8627                         }
8628                 },
8629                 _ => panic!("Unexpected event"),
8630         }
8631 }
8632
8633 #[test]
8634 #[allow(deprecated)]
8635 fn test_secret_timeout() {
8636         // Simple test of payment secret storage time outs. After
8637         // `create_inbound_payment(_for_hash)_legacy` is removed, this test will be removed as well.
8638         let chanmon_cfgs = create_chanmon_cfgs(2);
8639         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8640         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8641         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8642
8643         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8644
8645         let (payment_hash, payment_secret_1) = nodes[1].node.create_inbound_payment_legacy(Some(100_000), 2).unwrap();
8646
8647         // We should fail to register the same payment hash twice, at least until we've connected a
8648         // block with time 7200 + CHAN_CONFIRM_DEPTH + 1.
8649         if let Err(APIError::APIMisuseError { err }) = nodes[1].node.create_inbound_payment_for_hash_legacy(payment_hash, Some(100_000), 2) {
8650                 assert_eq!(err, "Duplicate payment hash");
8651         } else { panic!(); }
8652         let mut block = {
8653                 let node_1_blocks = nodes[1].blocks.lock().unwrap();
8654                 Block {
8655                         header: BlockHeader {
8656                                 version: 0x2000000,
8657                                 prev_blockhash: node_1_blocks.last().unwrap().0.block_hash(),
8658                                 merkle_root: TxMerkleNode::all_zeros(),
8659                                 time: node_1_blocks.len() as u32 + 7200, bits: 42, nonce: 42 },
8660                         txdata: vec![],
8661                 }
8662         };
8663         connect_block(&nodes[1], &block);
8664         if let Err(APIError::APIMisuseError { err }) = nodes[1].node.create_inbound_payment_for_hash_legacy(payment_hash, Some(100_000), 2) {
8665                 assert_eq!(err, "Duplicate payment hash");
8666         } else { panic!(); }
8667
8668         // If we then connect the second block, we should be able to register the same payment hash
8669         // again (this time getting a new payment secret).
8670         block.header.prev_blockhash = block.header.block_hash();
8671         block.header.time += 1;
8672         connect_block(&nodes[1], &block);
8673         let our_payment_secret = nodes[1].node.create_inbound_payment_for_hash_legacy(payment_hash, Some(100_000), 2).unwrap();
8674         assert_ne!(payment_secret_1, our_payment_secret);
8675
8676         {
8677                 let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
8678                 nodes[0].node.send_payment(&route, payment_hash, &Some(our_payment_secret)).unwrap();
8679                 check_added_monitors!(nodes[0], 1);
8680                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8681                 let mut payment_event = SendEvent::from_event(events.pop().unwrap());
8682                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8683                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8684         }
8685         // Note that after leaving the above scope we have no knowledge of any arguments or return
8686         // values from previous calls.
8687         expect_pending_htlcs_forwardable!(nodes[1]);
8688         let events = nodes[1].node.get_and_clear_pending_events();
8689         assert_eq!(events.len(), 1);
8690         match events[0] {
8691                 Event::PaymentReceived { purpose: PaymentPurpose::InvoicePayment { payment_preimage, payment_secret }, .. } => {
8692                         assert!(payment_preimage.is_none());
8693                         assert_eq!(payment_secret, our_payment_secret);
8694                         // We don't actually have the payment preimage with which to claim this payment!
8695                 },
8696                 _ => panic!("Unexpected event"),
8697         }
8698 }
8699
8700 #[test]
8701 fn test_bad_secret_hash() {
8702         // Simple test of unregistered payment hash/invalid payment secret handling
8703         let chanmon_cfgs = create_chanmon_cfgs(2);
8704         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8705         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8706         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8707
8708         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8709
8710         let random_payment_hash = PaymentHash([42; 32]);
8711         let random_payment_secret = PaymentSecret([43; 32]);
8712         let (our_payment_hash, our_payment_secret) = nodes[1].node.create_inbound_payment(Some(100_000), 2).unwrap();
8713         let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
8714
8715         // All the below cases should end up being handled exactly identically, so we macro the
8716         // resulting events.
8717         macro_rules! handle_unknown_invalid_payment_data {
8718                 ($payment_hash: expr) => {
8719                         check_added_monitors!(nodes[0], 1);
8720                         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8721                         let payment_event = SendEvent::from_event(events.pop().unwrap());
8722                         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8723                         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8724
8725                         // We have to forward pending HTLCs once to process the receipt of the HTLC and then
8726                         // again to process the pending backwards-failure of the HTLC
8727                         expect_pending_htlcs_forwardable!(nodes[1]);
8728                         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment{ payment_hash: $payment_hash }]);
8729                         check_added_monitors!(nodes[1], 1);
8730
8731                         // We should fail the payment back
8732                         let mut events = nodes[1].node.get_and_clear_pending_msg_events();
8733                         match events.pop().unwrap() {
8734                                 MessageSendEvent::UpdateHTLCs { node_id: _, updates: msgs::CommitmentUpdate { update_fail_htlcs, commitment_signed, .. } } => {
8735                                         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlcs[0]);
8736                                         commitment_signed_dance!(nodes[0], nodes[1], commitment_signed, false);
8737                                 },
8738                                 _ => panic!("Unexpected event"),
8739                         }
8740                 }
8741         }
8742
8743         let expected_error_code = 0x4000|15; // incorrect_or_unknown_payment_details
8744         // Error data is the HTLC value (100,000) and current block height
8745         let expected_error_data = [0, 0, 0, 0, 0, 1, 0x86, 0xa0, 0, 0, 0, CHAN_CONFIRM_DEPTH as u8];
8746
8747         // Send a payment with the right payment hash but the wrong payment secret
8748         nodes[0].node.send_payment(&route, our_payment_hash, &Some(random_payment_secret)).unwrap();
8749         handle_unknown_invalid_payment_data!(our_payment_hash);
8750         expect_payment_failed!(nodes[0], our_payment_hash, true, expected_error_code, expected_error_data);
8751
8752         // Send a payment with a random payment hash, but the right payment secret
8753         nodes[0].node.send_payment(&route, random_payment_hash, &Some(our_payment_secret)).unwrap();
8754         handle_unknown_invalid_payment_data!(random_payment_hash);
8755         expect_payment_failed!(nodes[0], random_payment_hash, true, expected_error_code, expected_error_data);
8756
8757         // Send a payment with a random payment hash and random payment secret
8758         nodes[0].node.send_payment(&route, random_payment_hash, &Some(random_payment_secret)).unwrap();
8759         handle_unknown_invalid_payment_data!(random_payment_hash);
8760         expect_payment_failed!(nodes[0], random_payment_hash, true, expected_error_code, expected_error_data);
8761 }
8762
8763 #[test]
8764 fn test_update_err_monitor_lockdown() {
8765         // Our monitor will lock update of local commitment transaction if a broadcastion condition
8766         // has been fulfilled (either force-close from Channel or block height requiring a HTLC-
8767         // timeout). Trying to update monitor after lockdown should return a ChannelMonitorUpdateErr.
8768         //
8769         // This scenario may happen in a watchtower setup, where watchtower process a block height
8770         // triggering a timeout while a slow-block-processing ChannelManager receives a local signed
8771         // commitment at same time.
8772
8773         let chanmon_cfgs = create_chanmon_cfgs(2);
8774         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8775         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8776         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8777
8778         // Create some initial channel
8779         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
8780         let outpoint = OutPoint { txid: chan_1.3.txid(), index: 0 };
8781
8782         // Rebalance the network to generate htlc in the two directions
8783         send_payment(&nodes[0], &vec!(&nodes[1])[..], 10_000_000);
8784
8785         // Route a HTLC from node 0 to node 1 (but don't settle)
8786         let (preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 9_000_000);
8787
8788         // Copy ChainMonitor to simulate a watchtower and update block height of node 0 until its ChannelMonitor timeout HTLC onchain
8789         let chain_source = test_utils::TestChainSource::new(Network::Testnet);
8790         let logger = test_utils::TestLogger::with_id(format!("node {}", 0));
8791         let persister = test_utils::TestPersister::new();
8792         let watchtower = {
8793                 let monitor = nodes[0].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap();
8794                 let mut w = test_utils::TestVecWriter(Vec::new());
8795                 monitor.write(&mut w).unwrap();
8796                 let new_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::read(
8797                                 &mut io::Cursor::new(&w.0), &test_utils::OnlyReadsKeysInterface {}).unwrap().1;
8798                 assert!(new_monitor == *monitor);
8799                 let watchtower = test_utils::TestChainMonitor::new(Some(&chain_source), &chanmon_cfgs[0].tx_broadcaster, &logger, &chanmon_cfgs[0].fee_estimator, &persister, &node_cfgs[0].keys_manager);
8800                 assert!(watchtower.watch_channel(outpoint, new_monitor).is_ok());
8801                 watchtower
8802         };
8803         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8804         let block = Block { header, txdata: vec![] };
8805         // Make the tx_broadcaster aware of enough blocks that it doesn't think we're violating
8806         // transaction lock time requirements here.
8807         chanmon_cfgs[0].tx_broadcaster.blocks.lock().unwrap().resize(200, (block.clone(), 0));
8808         watchtower.chain_monitor.block_connected(&block, 200);
8809
8810         // Try to update ChannelMonitor
8811         nodes[1].node.claim_funds(preimage);
8812         check_added_monitors!(nodes[1], 1);
8813         expect_payment_claimed!(nodes[1], payment_hash, 9_000_000);
8814
8815         let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8816         assert_eq!(updates.update_fulfill_htlcs.len(), 1);
8817         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
8818         if let Some(ref mut channel) = nodes[0].node.channel_state.lock().unwrap().by_id.get_mut(&chan_1.2) {
8819                 if let Ok((_, _, update)) = channel.commitment_signed(&updates.commitment_signed, &node_cfgs[0].logger) {
8820                         if let Err(_) =  watchtower.chain_monitor.update_channel(outpoint, update.clone()) {} else { assert!(false); }
8821                         if let Ok(_) = nodes[0].chain_monitor.update_channel(outpoint, update) {} else { assert!(false); }
8822                 } else { assert!(false); }
8823         } else { assert!(false); };
8824         // Our local monitor is in-sync and hasn't processed yet timeout
8825         check_added_monitors!(nodes[0], 1);
8826         let events = nodes[0].node.get_and_clear_pending_events();
8827         assert_eq!(events.len(), 1);
8828 }
8829
8830 #[test]
8831 fn test_concurrent_monitor_claim() {
8832         // Watchtower A receives block, broadcasts state N, then channel receives new state N+1,
8833         // sending it to both watchtowers, Bob accepts N+1, then receives block and broadcasts
8834         // the latest state N+1, Alice rejects state N+1, but Bob has already broadcast it,
8835         // state N+1 confirms. Alice claims output from state N+1.
8836
8837         let chanmon_cfgs = create_chanmon_cfgs(2);
8838         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8839         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8840         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8841
8842         // Create some initial channel
8843         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
8844         let outpoint = OutPoint { txid: chan_1.3.txid(), index: 0 };
8845
8846         // Rebalance the network to generate htlc in the two directions
8847         send_payment(&nodes[0], &vec!(&nodes[1])[..], 10_000_000);
8848
8849         // Route a HTLC from node 0 to node 1 (but don't settle)
8850         route_payment(&nodes[0], &vec!(&nodes[1])[..], 9_000_000).0;
8851
8852         // Copy ChainMonitor to simulate watchtower Alice and update block height her ChannelMonitor timeout HTLC onchain
8853         let chain_source = test_utils::TestChainSource::new(Network::Testnet);
8854         let logger = test_utils::TestLogger::with_id(format!("node {}", "Alice"));
8855         let persister = test_utils::TestPersister::new();
8856         let watchtower_alice = {
8857                 let monitor = nodes[0].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap();
8858                 let mut w = test_utils::TestVecWriter(Vec::new());
8859                 monitor.write(&mut w).unwrap();
8860                 let new_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::read(
8861                                 &mut io::Cursor::new(&w.0), &test_utils::OnlyReadsKeysInterface {}).unwrap().1;
8862                 assert!(new_monitor == *monitor);
8863                 let watchtower = test_utils::TestChainMonitor::new(Some(&chain_source), &chanmon_cfgs[0].tx_broadcaster, &logger, &chanmon_cfgs[0].fee_estimator, &persister, &node_cfgs[0].keys_manager);
8864                 assert!(watchtower.watch_channel(outpoint, new_monitor).is_ok());
8865                 watchtower
8866         };
8867         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8868         let block = Block { header, txdata: vec![] };
8869         // Make the tx_broadcaster aware of enough blocks that it doesn't think we're violating
8870         // transaction lock time requirements here.
8871         chanmon_cfgs[0].tx_broadcaster.blocks.lock().unwrap().resize((CHAN_CONFIRM_DEPTH + 1 + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS) as usize, (block.clone(), 0));
8872         watchtower_alice.chain_monitor.block_connected(&block, CHAN_CONFIRM_DEPTH + 1 + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
8873
8874         // Watchtower Alice should have broadcast a commitment/HTLC-timeout
8875         {
8876                 let mut txn = chanmon_cfgs[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8877                 assert_eq!(txn.len(), 2);
8878                 txn.clear();
8879         }
8880
8881         // Copy ChainMonitor to simulate watchtower Bob and make it receive a commitment update first.
8882         let chain_source = test_utils::TestChainSource::new(Network::Testnet);
8883         let logger = test_utils::TestLogger::with_id(format!("node {}", "Bob"));
8884         let persister = test_utils::TestPersister::new();
8885         let watchtower_bob = {
8886                 let monitor = nodes[0].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap();
8887                 let mut w = test_utils::TestVecWriter(Vec::new());
8888                 monitor.write(&mut w).unwrap();
8889                 let new_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::read(
8890                                 &mut io::Cursor::new(&w.0), &test_utils::OnlyReadsKeysInterface {}).unwrap().1;
8891                 assert!(new_monitor == *monitor);
8892                 let watchtower = test_utils::TestChainMonitor::new(Some(&chain_source), &chanmon_cfgs[0].tx_broadcaster, &logger, &chanmon_cfgs[0].fee_estimator, &persister, &node_cfgs[0].keys_manager);
8893                 assert!(watchtower.watch_channel(outpoint, new_monitor).is_ok());
8894                 watchtower
8895         };
8896         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8897         watchtower_bob.chain_monitor.block_connected(&Block { header, txdata: vec![] }, CHAN_CONFIRM_DEPTH + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
8898
8899         // Route another payment to generate another update with still previous HTLC pending
8900         let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 3000000);
8901         {
8902                 nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
8903         }
8904         check_added_monitors!(nodes[1], 1);
8905
8906         let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8907         assert_eq!(updates.update_add_htlcs.len(), 1);
8908         nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &updates.update_add_htlcs[0]);
8909         if let Some(ref mut channel) = nodes[0].node.channel_state.lock().unwrap().by_id.get_mut(&chan_1.2) {
8910                 if let Ok((_, _, update)) = channel.commitment_signed(&updates.commitment_signed, &node_cfgs[0].logger) {
8911                         // Watchtower Alice should already have seen the block and reject the update
8912                         if let Err(_) =  watchtower_alice.chain_monitor.update_channel(outpoint, update.clone()) {} else { assert!(false); }
8913                         if let Ok(_) = watchtower_bob.chain_monitor.update_channel(outpoint, update.clone()) {} else { assert!(false); }
8914                         if let Ok(_) = nodes[0].chain_monitor.update_channel(outpoint, update) {} else { assert!(false); }
8915                 } else { assert!(false); }
8916         } else { assert!(false); };
8917         // Our local monitor is in-sync and hasn't processed yet timeout
8918         check_added_monitors!(nodes[0], 1);
8919
8920         //// Provide one more block to watchtower Bob, expect broadcast of commitment and HTLC-Timeout
8921         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8922         watchtower_bob.chain_monitor.block_connected(&Block { header, txdata: vec![] }, CHAN_CONFIRM_DEPTH + 1 + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
8923
8924         // Watchtower Bob should have broadcast a commitment/HTLC-timeout
8925         let bob_state_y;
8926         {
8927                 let mut txn = chanmon_cfgs[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8928                 assert_eq!(txn.len(), 2);
8929                 bob_state_y = txn[0].clone();
8930                 txn.clear();
8931         };
8932
8933         // We confirm Bob's state Y on Alice, she should broadcast a HTLC-timeout
8934         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8935         watchtower_alice.chain_monitor.block_connected(&Block { header, txdata: vec![bob_state_y.clone()] }, CHAN_CONFIRM_DEPTH + 2 + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
8936         {
8937                 let htlc_txn = chanmon_cfgs[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8938                 // We broadcast twice the transaction, once due to the HTLC-timeout, once due
8939                 // the onchain detection of the HTLC output
8940                 assert_eq!(htlc_txn.len(), 2);
8941                 check_spends!(htlc_txn[0], bob_state_y);
8942                 check_spends!(htlc_txn[1], bob_state_y);
8943         }
8944 }
8945
8946 #[test]
8947 fn test_pre_lockin_no_chan_closed_update() {
8948         // Test that if a peer closes a channel in response to a funding_created message we don't
8949         // generate a channel update (as the channel cannot appear on chain without a funding_signed
8950         // message).
8951         //
8952         // Doing so would imply a channel monitor update before the initial channel monitor
8953         // registration, violating our API guarantees.
8954         //
8955         // Previously, full_stack_target managed to hit this case by opening then closing a channel,
8956         // then opening a second channel with the same funding output as the first (which is not
8957         // rejected because the first channel does not exist in the ChannelManager) and closing it
8958         // before receiving funding_signed.
8959         let chanmon_cfgs = create_chanmon_cfgs(2);
8960         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8961         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8962         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8963
8964         // Create an initial channel
8965         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, None).unwrap();
8966         let mut open_chan_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8967         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_msg);
8968         let accept_chan_msg = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
8969         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_chan_msg);
8970
8971         // Move the first channel through the funding flow...
8972         let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42);
8973
8974         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
8975         check_added_monitors!(nodes[0], 0);
8976
8977         let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
8978         let channel_id = ::chain::transaction::OutPoint { txid: funding_created_msg.funding_txid, index: funding_created_msg.funding_output_index }.to_channel_id();
8979         nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &msgs::ErrorMessage { channel_id, data: "Hi".to_owned() });
8980         assert!(nodes[0].chain_monitor.added_monitors.lock().unwrap().is_empty());
8981         check_closed_event!(nodes[0], 2, ClosureReason::CounterpartyForceClosed { peer_msg: "Hi".to_string() }, true);
8982 }
8983
8984 #[test]
8985 fn test_htlc_no_detection() {
8986         // This test is a mutation to underscore the detection logic bug we had
8987         // before #653. HTLC value routed is above the remaining balance, thus
8988         // inverting HTLC and `to_remote` output. HTLC will come second and
8989         // it wouldn't be seen by pre-#653 detection as we were enumerate()'ing
8990         // on a watched outputs vector (Vec<TxOut>) thus implicitly relying on
8991         // outputs order detection for correct spending children filtring.
8992
8993         let chanmon_cfgs = create_chanmon_cfgs(2);
8994         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8995         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8996         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8997
8998         // Create some initial channels
8999         let chan_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9000
9001         send_payment(&nodes[0], &vec!(&nodes[1])[..], 1_000_000);
9002         let (_, our_payment_hash, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 2_000_000);
9003         let local_txn = get_local_commitment_txn!(nodes[0], chan_1.2);
9004         assert_eq!(local_txn[0].input.len(), 1);
9005         assert_eq!(local_txn[0].output.len(), 3);
9006         check_spends!(local_txn[0], chan_1.3);
9007
9008         // Timeout HTLC on A's chain and so it can generate a HTLC-Timeout tx
9009         let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
9010         connect_block(&nodes[0], &Block { header, txdata: vec![local_txn[0].clone()] });
9011         // We deliberately connect the local tx twice as this should provoke a failure calling
9012         // this test before #653 fix.
9013         chain::Listen::block_connected(&nodes[0].chain_monitor.chain_monitor, &Block { header, txdata: vec![local_txn[0].clone()] }, nodes[0].best_block_info().1 + 1);
9014         check_closed_broadcast!(nodes[0], true);
9015         check_added_monitors!(nodes[0], 1);
9016         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
9017         connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1);
9018
9019         let htlc_timeout = {
9020                 let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
9021                 assert_eq!(node_txn[1].input.len(), 1);
9022                 assert_eq!(node_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
9023                 check_spends!(node_txn[1], local_txn[0]);
9024                 node_txn[1].clone()
9025         };
9026
9027         let header_201 = BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
9028         connect_block(&nodes[0], &Block { header: header_201, txdata: vec![htlc_timeout.clone()] });
9029         connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
9030         expect_payment_failed!(nodes[0], our_payment_hash, false);
9031 }
9032
9033 fn do_test_onchain_htlc_settlement_after_close(broadcast_alice: bool, go_onchain_before_fulfill: bool) {
9034         // If we route an HTLC, then learn the HTLC's preimage after the upstream channel has been
9035         // force-closed, we must claim that HTLC on-chain. (Given an HTLC forwarded from Alice --> Bob -->
9036         // Carol, Alice would be the upstream node, and Carol the downstream.)
9037         //
9038         // Steps of the test:
9039         // 1) Alice sends a HTLC to Carol through Bob.
9040         // 2) Carol doesn't settle the HTLC.
9041         // 3) If broadcast_alice is true, Alice force-closes her channel with Bob. Else Bob force closes.
9042         // Steps 4 and 5 may be reordered depending on go_onchain_before_fulfill.
9043         // 4) Bob sees the Alice's commitment on his chain or vice versa. An offered output is present
9044         //    but can't be claimed as Bob doesn't have yet knowledge of the preimage.
9045         // 5) Carol release the preimage to Bob off-chain.
9046         // 6) Bob claims the offered output on the broadcasted commitment.
9047         let chanmon_cfgs = create_chanmon_cfgs(3);
9048         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9049         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9050         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9051
9052         // Create some initial channels
9053         let chan_ab = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9054         create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9055
9056         // Steps (1) and (2):
9057         // Send an HTLC Alice --> Bob --> Carol, but Carol doesn't settle the HTLC back.
9058         let (payment_preimage, payment_hash, _payment_secret) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 3_000_000);
9059
9060         // Check that Alice's commitment transaction now contains an output for this HTLC.
9061         let alice_txn = get_local_commitment_txn!(nodes[0], chan_ab.2);
9062         check_spends!(alice_txn[0], chan_ab.3);
9063         assert_eq!(alice_txn[0].output.len(), 2);
9064         check_spends!(alice_txn[1], alice_txn[0]); // 2nd transaction is a non-final HTLC-timeout
9065         assert_eq!(alice_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
9066         assert_eq!(alice_txn.len(), 2);
9067
9068         // Steps (3) and (4):
9069         // If `go_onchain_before_fufill`, broadcast the relevant commitment transaction and check that Bob
9070         // responds by (1) broadcasting a channel update and (2) adding a new ChannelMonitor.
9071         let mut force_closing_node = 0; // Alice force-closes
9072         let mut counterparty_node = 1; // Bob if Alice force-closes
9073
9074         // Bob force-closes
9075         if !broadcast_alice {
9076                 force_closing_node = 1;
9077                 counterparty_node = 0;
9078         }
9079         nodes[force_closing_node].node.force_close_broadcasting_latest_txn(&chan_ab.2, &nodes[counterparty_node].node.get_our_node_id()).unwrap();
9080         check_closed_broadcast!(nodes[force_closing_node], true);
9081         check_added_monitors!(nodes[force_closing_node], 1);
9082         check_closed_event!(nodes[force_closing_node], 1, ClosureReason::HolderForceClosed);
9083         if go_onchain_before_fulfill {
9084                 let txn_to_broadcast = match broadcast_alice {
9085                         true => alice_txn.clone(),
9086                         false => get_local_commitment_txn!(nodes[1], chan_ab.2)
9087                 };
9088                 let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42};
9089                 connect_block(&nodes[1], &Block { header, txdata: vec![txn_to_broadcast[0].clone()]});
9090                 let mut bob_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
9091                 if broadcast_alice {
9092                         check_closed_broadcast!(nodes[1], true);
9093                         check_added_monitors!(nodes[1], 1);
9094                         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
9095                 }
9096                 assert_eq!(bob_txn.len(), 1);
9097                 check_spends!(bob_txn[0], chan_ab.3);
9098         }
9099
9100         // Step (5):
9101         // Carol then claims the funds and sends an update_fulfill message to Bob, and they go through the
9102         // process of removing the HTLC from their commitment transactions.
9103         nodes[2].node.claim_funds(payment_preimage);
9104         check_added_monitors!(nodes[2], 1);
9105         expect_payment_claimed!(nodes[2], payment_hash, 3_000_000);
9106
9107         let carol_updates = get_htlc_update_msgs!(nodes[2], nodes[1].node.get_our_node_id());
9108         assert!(carol_updates.update_add_htlcs.is_empty());
9109         assert!(carol_updates.update_fail_htlcs.is_empty());
9110         assert!(carol_updates.update_fail_malformed_htlcs.is_empty());
9111         assert!(carol_updates.update_fee.is_none());
9112         assert_eq!(carol_updates.update_fulfill_htlcs.len(), 1);
9113
9114         nodes[1].node.handle_update_fulfill_htlc(&nodes[2].node.get_our_node_id(), &carol_updates.update_fulfill_htlcs[0]);
9115         expect_payment_forwarded!(nodes[1], nodes[0], nodes[2], if go_onchain_before_fulfill || force_closing_node == 1 { None } else { Some(1000) }, false, false);
9116         // If Alice broadcasted but Bob doesn't know yet, here he prepares to tell her about the preimage.
9117         if !go_onchain_before_fulfill && broadcast_alice {
9118                 let events = nodes[1].node.get_and_clear_pending_msg_events();
9119                 assert_eq!(events.len(), 1);
9120                 match events[0] {
9121                         MessageSendEvent::UpdateHTLCs { ref node_id, .. } => {
9122                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
9123                         },
9124                         _ => panic!("Unexpected event"),
9125                 };
9126         }
9127         nodes[1].node.handle_commitment_signed(&nodes[2].node.get_our_node_id(), &carol_updates.commitment_signed);
9128         // One monitor update for the preimage to update the Bob<->Alice channel, one monitor update
9129         // Carol<->Bob's updated commitment transaction info.
9130         check_added_monitors!(nodes[1], 2);
9131
9132         let events = nodes[1].node.get_and_clear_pending_msg_events();
9133         assert_eq!(events.len(), 2);
9134         let bob_revocation = match events[0] {
9135                 MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
9136                         assert_eq!(*node_id, nodes[2].node.get_our_node_id());
9137                         (*msg).clone()
9138                 },
9139                 _ => panic!("Unexpected event"),
9140         };
9141         let bob_updates = match events[1] {
9142                 MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
9143                         assert_eq!(*node_id, nodes[2].node.get_our_node_id());
9144                         (*updates).clone()
9145                 },
9146                 _ => panic!("Unexpected event"),
9147         };
9148
9149         nodes[2].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bob_revocation);
9150         check_added_monitors!(nodes[2], 1);
9151         nodes[2].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bob_updates.commitment_signed);
9152         check_added_monitors!(nodes[2], 1);
9153
9154         let events = nodes[2].node.get_and_clear_pending_msg_events();
9155         assert_eq!(events.len(), 1);
9156         let carol_revocation = match events[0] {
9157                 MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
9158                         assert_eq!(*node_id, nodes[1].node.get_our_node_id());
9159                         (*msg).clone()
9160                 },
9161                 _ => panic!("Unexpected event"),
9162         };
9163         nodes[1].node.handle_revoke_and_ack(&nodes[2].node.get_our_node_id(), &carol_revocation);
9164         check_added_monitors!(nodes[1], 1);
9165
9166         // If this test requires the force-closed channel to not be on-chain until after the fulfill,
9167         // here's where we put said channel's commitment tx on-chain.
9168         let mut txn_to_broadcast = alice_txn.clone();
9169         if !broadcast_alice { txn_to_broadcast = get_local_commitment_txn!(nodes[1], chan_ab.2); }
9170         if !go_onchain_before_fulfill {
9171                 let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42};
9172                 connect_block(&nodes[1], &Block { header, txdata: vec![txn_to_broadcast[0].clone()]});
9173                 // If Bob was the one to force-close, he will have already passed these checks earlier.
9174                 if broadcast_alice {
9175                         check_closed_broadcast!(nodes[1], true);
9176                         check_added_monitors!(nodes[1], 1);
9177                         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
9178                 }
9179                 let mut bob_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
9180                 if broadcast_alice {
9181                         // In `connect_block()`, the ChainMonitor and ChannelManager are separately notified about a
9182                         // new block being connected. The ChannelManager being notified triggers a monitor update,
9183                         // which triggers broadcasting our commitment tx and an HTLC-claiming tx. The ChainMonitor
9184                         // being notified triggers the HTLC-claiming tx redundantly, resulting in 3 total txs being
9185                         // broadcasted.
9186                         assert_eq!(bob_txn.len(), 3);
9187                         check_spends!(bob_txn[1], chan_ab.3);
9188                 } else {
9189                         assert_eq!(bob_txn.len(), 2);
9190                         check_spends!(bob_txn[0], chan_ab.3);
9191                 }
9192         }
9193
9194         // Step (6):
9195         // Finally, check that Bob broadcasted a preimage-claiming transaction for the HTLC output on the
9196         // broadcasted commitment transaction.
9197         {
9198                 let bob_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
9199                 if go_onchain_before_fulfill {
9200                         // Bob should now have an extra broadcasted tx, for the preimage-claiming transaction.
9201                         assert_eq!(bob_txn.len(), 2);
9202                 }
9203                 let script_weight = match broadcast_alice {
9204                         true => OFFERED_HTLC_SCRIPT_WEIGHT,
9205                         false => ACCEPTED_HTLC_SCRIPT_WEIGHT
9206                 };
9207                 // If Alice force-closed and Bob didn't receive her commitment transaction until after he
9208                 // received Carol's fulfill, he broadcasts the HTLC-output-claiming transaction first. Else if
9209                 // Bob force closed or if he found out about Alice's commitment tx before receiving Carol's
9210                 // fulfill, then he broadcasts the HTLC-output-claiming transaction second.
9211                 if broadcast_alice && !go_onchain_before_fulfill {
9212                         check_spends!(bob_txn[0], txn_to_broadcast[0]);
9213                         assert_eq!(bob_txn[0].input[0].witness.last().unwrap().len(), script_weight);
9214                 } else {
9215                         check_spends!(bob_txn[1], txn_to_broadcast[0]);
9216                         assert_eq!(bob_txn[1].input[0].witness.last().unwrap().len(), script_weight);
9217                 }
9218         }
9219 }
9220
9221 #[test]
9222 fn test_onchain_htlc_settlement_after_close() {
9223         do_test_onchain_htlc_settlement_after_close(true, true);
9224         do_test_onchain_htlc_settlement_after_close(false, true); // Technically redundant, but may as well
9225         do_test_onchain_htlc_settlement_after_close(true, false);
9226         do_test_onchain_htlc_settlement_after_close(false, false);
9227 }
9228
9229 #[test]
9230 fn test_duplicate_chan_id() {
9231         // Test that if a given peer tries to open a channel with the same channel_id as one that is
9232         // already open we reject it and keep the old channel.
9233         //
9234         // Previously, full_stack_target managed to figure out that if you tried to open two channels
9235         // with the same funding output (ie post-funding channel_id), we'd create a monitor update for
9236         // the existing channel when we detect the duplicate new channel, screwing up our monitor
9237         // updating logic for the existing channel.
9238         let chanmon_cfgs = create_chanmon_cfgs(2);
9239         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9240         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9241         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9242
9243         // Create an initial channel
9244         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, None).unwrap();
9245         let mut open_chan_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9246         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_msg);
9247         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id()));
9248
9249         // Try to create a second channel with the same temporary_channel_id as the first and check
9250         // that it is rejected.
9251         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_msg);
9252         {
9253                 let events = nodes[1].node.get_and_clear_pending_msg_events();
9254                 assert_eq!(events.len(), 1);
9255                 match events[0] {
9256                         MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id } => {
9257                                 // Technically, at this point, nodes[1] would be justified in thinking both the
9258                                 // first (valid) and second (invalid) channels are closed, given they both have
9259                                 // the same non-temporary channel_id. However, currently we do not, so we just
9260                                 // move forward with it.
9261                                 assert_eq!(msg.channel_id, open_chan_msg.temporary_channel_id);
9262                                 assert_eq!(node_id, nodes[0].node.get_our_node_id());
9263                         },
9264                         _ => panic!("Unexpected event"),
9265                 }
9266         }
9267
9268         // Move the first channel through the funding flow...
9269         let (temporary_channel_id, tx, funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42);
9270
9271         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
9272         check_added_monitors!(nodes[0], 0);
9273
9274         let mut funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9275         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
9276         {
9277                 let mut added_monitors = nodes[1].chain_monitor.added_monitors.lock().unwrap();
9278                 assert_eq!(added_monitors.len(), 1);
9279                 assert_eq!(added_monitors[0].0, funding_output);
9280                 added_monitors.clear();
9281         }
9282         let funding_signed_msg = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
9283
9284         let funding_outpoint = ::chain::transaction::OutPoint { txid: funding_created_msg.funding_txid, index: funding_created_msg.funding_output_index };
9285         let channel_id = funding_outpoint.to_channel_id();
9286
9287         // Now we have the first channel past funding_created (ie it has a txid-based channel_id, not a
9288         // temporary one).
9289
9290         // First try to open a second channel with a temporary channel id equal to the txid-based one.
9291         // Technically this is allowed by the spec, but we don't support it and there's little reason
9292         // to. Still, it shouldn't cause any other issues.
9293         open_chan_msg.temporary_channel_id = channel_id;
9294         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_msg);
9295         {
9296                 let events = nodes[1].node.get_and_clear_pending_msg_events();
9297                 assert_eq!(events.len(), 1);
9298                 match events[0] {
9299                         MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id } => {
9300                                 // Technically, at this point, nodes[1] would be justified in thinking both
9301                                 // channels are closed, but currently we do not, so we just move forward with it.
9302                                 assert_eq!(msg.channel_id, open_chan_msg.temporary_channel_id);
9303                                 assert_eq!(node_id, nodes[0].node.get_our_node_id());
9304                         },
9305                         _ => panic!("Unexpected event"),
9306                 }
9307         }
9308
9309         // Now try to create a second channel which has a duplicate funding output.
9310         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, None).unwrap();
9311         let open_chan_2_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9312         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_2_msg);
9313         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id()));
9314         create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42); // Get and check the FundingGenerationReady event
9315
9316         let funding_created = {
9317                 let mut a_channel_lock = nodes[0].node.channel_state.lock().unwrap();
9318                 // Once we call `get_outbound_funding_created` the channel has a duplicate channel_id as
9319                 // another channel in the ChannelManager - an invalid state. Thus, we'd panic later when we
9320                 // try to create another channel. Instead, we drop the channel entirely here (leaving the
9321                 // channelmanager in a possibly nonsense state instead).
9322                 let mut as_chan = a_channel_lock.by_id.remove(&open_chan_2_msg.temporary_channel_id).unwrap();
9323                 let logger = test_utils::TestLogger::new();
9324                 as_chan.get_outbound_funding_created(tx.clone(), funding_outpoint, &&logger).unwrap()
9325         };
9326         check_added_monitors!(nodes[0], 0);
9327         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created);
9328         // At this point we'll try to add a duplicate channel monitor, which will be rejected, but
9329         // still needs to be cleared here.
9330         check_added_monitors!(nodes[1], 1);
9331
9332         // ...still, nodes[1] will reject the duplicate channel.
9333         {
9334                 let events = nodes[1].node.get_and_clear_pending_msg_events();
9335                 assert_eq!(events.len(), 1);
9336                 match events[0] {
9337                         MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id } => {
9338                                 // Technically, at this point, nodes[1] would be justified in thinking both
9339                                 // channels are closed, but currently we do not, so we just move forward with it.
9340                                 assert_eq!(msg.channel_id, channel_id);
9341                                 assert_eq!(node_id, nodes[0].node.get_our_node_id());
9342                         },
9343                         _ => panic!("Unexpected event"),
9344                 }
9345         }
9346
9347         // finally, finish creating the original channel and send a payment over it to make sure
9348         // everything is functional.
9349         nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed_msg);
9350         {
9351                 let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
9352                 assert_eq!(added_monitors.len(), 1);
9353                 assert_eq!(added_monitors[0].0, funding_output);
9354                 added_monitors.clear();
9355         }
9356
9357         let events_4 = nodes[0].node.get_and_clear_pending_events();
9358         assert_eq!(events_4.len(), 0);
9359         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
9360         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap()[0], tx);
9361
9362         let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
9363         let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
9364         update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &as_update, &bs_update);
9365         send_payment(&nodes[0], &[&nodes[1]], 8000000);
9366 }
9367
9368 #[test]
9369 fn test_error_chans_closed() {
9370         // Test that we properly handle error messages, closing appropriate channels.
9371         //
9372         // Prior to #787 we'd allow a peer to make us force-close a channel we had with a different
9373         // peer. The "real" fix for that is to index channels with peers_ids, however in the mean time
9374         // we can test various edge cases around it to ensure we don't regress.
9375         let chanmon_cfgs = create_chanmon_cfgs(3);
9376         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9377         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9378         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9379
9380         // Create some initial channels
9381         let chan_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9382         let chan_2 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9383         let chan_3 = create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9384
9385         assert_eq!(nodes[0].node.list_usable_channels().len(), 3);
9386         assert_eq!(nodes[1].node.list_usable_channels().len(), 2);
9387         assert_eq!(nodes[2].node.list_usable_channels().len(), 1);
9388
9389         // Closing a channel from a different peer has no effect
9390         nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &msgs::ErrorMessage { channel_id: chan_3.2, data: "ERR".to_owned() });
9391         assert_eq!(nodes[0].node.list_usable_channels().len(), 3);
9392
9393         // Closing one channel doesn't impact others
9394         nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &msgs::ErrorMessage { channel_id: chan_2.2, data: "ERR".to_owned() });
9395         check_added_monitors!(nodes[0], 1);
9396         check_closed_broadcast!(nodes[0], false);
9397         check_closed_event!(nodes[0], 1, ClosureReason::CounterpartyForceClosed { peer_msg: "ERR".to_string() });
9398         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0).len(), 1);
9399         assert_eq!(nodes[0].node.list_usable_channels().len(), 2);
9400         assert!(nodes[0].node.list_usable_channels()[0].channel_id == chan_1.2 || nodes[0].node.list_usable_channels()[1].channel_id == chan_1.2);
9401         assert!(nodes[0].node.list_usable_channels()[0].channel_id == chan_3.2 || nodes[0].node.list_usable_channels()[1].channel_id == chan_3.2);
9402
9403         // A null channel ID should close all channels
9404         let _chan_4 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9405         nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &msgs::ErrorMessage { channel_id: [0; 32], data: "ERR".to_owned() });
9406         check_added_monitors!(nodes[0], 2);
9407         check_closed_event!(nodes[0], 2, ClosureReason::CounterpartyForceClosed { peer_msg: "ERR".to_string() });
9408         let events = nodes[0].node.get_and_clear_pending_msg_events();
9409         assert_eq!(events.len(), 2);
9410         match events[0] {
9411                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
9412                         assert_eq!(msg.contents.flags & 2, 2);
9413                 },
9414                 _ => panic!("Unexpected event"),
9415         }
9416         match events[1] {
9417                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
9418                         assert_eq!(msg.contents.flags & 2, 2);
9419                 },
9420                 _ => panic!("Unexpected event"),
9421         }
9422         // Note that at this point users of a standard PeerHandler will end up calling
9423         // peer_disconnected with no_connection_possible set to false, duplicating the
9424         // close-all-channels logic. That's OK, we don't want to end up not force-closing channels for
9425         // users with their own peer handling logic. We duplicate the call here, however.
9426         assert_eq!(nodes[0].node.list_usable_channels().len(), 1);
9427         assert!(nodes[0].node.list_usable_channels()[0].channel_id == chan_3.2);
9428
9429         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), true);
9430         assert_eq!(nodes[0].node.list_usable_channels().len(), 1);
9431         assert!(nodes[0].node.list_usable_channels()[0].channel_id == chan_3.2);
9432 }
9433
9434 #[test]
9435 fn test_invalid_funding_tx() {
9436         // Test that we properly handle invalid funding transactions sent to us from a peer.
9437         //
9438         // Previously, all other major lightning implementations had failed to properly sanitize
9439         // funding transactions from their counterparties, leading to a multi-implementation critical
9440         // security vulnerability (though we always sanitized properly, we've previously had
9441         // un-released crashes in the sanitization process).
9442         //
9443         // Further, if the funding transaction is consensus-valid, confirms, and is later spent, we'd
9444         // previously have crashed in `ChannelMonitor` even though we closed the channel as bogus and
9445         // gave up on it. We test this here by generating such a transaction.
9446         let chanmon_cfgs = create_chanmon_cfgs(2);
9447         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9448         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9449         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9450
9451         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 10_000, 42, None).unwrap();
9452         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id()));
9453         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id()));
9454
9455         let (temporary_channel_id, mut tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
9456
9457         // Create a witness program which can be spent by a 4-empty-stack-elements witness and which is
9458         // 136 bytes long. This matches our "accepted HTLC preimage spend" matching, previously causing
9459         // a panic as we'd try to extract a 32 byte preimage from a witness element without checking
9460         // its length.
9461         let mut wit_program: Vec<u8> = channelmonitor::deliberately_bogus_accepted_htlc_witness_program();
9462         assert!(chan_utils::HTLCType::scriptlen_to_htlctype(wit_program.len()).unwrap() ==
9463                 chan_utils::HTLCType::AcceptedHTLC);
9464
9465         let wit_program_script: Script = wit_program.clone().into();
9466         for output in tx.output.iter_mut() {
9467                 // Make the confirmed funding transaction have a bogus script_pubkey
9468                 output.script_pubkey = Script::new_v0_p2wsh(&wit_program_script.wscript_hash());
9469         }
9470
9471         nodes[0].node.funding_transaction_generated_unchecked(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone(), 0).unwrap();
9472         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id()));
9473         check_added_monitors!(nodes[1], 1);
9474
9475         nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id()));
9476         check_added_monitors!(nodes[0], 1);
9477
9478         let events_1 = nodes[0].node.get_and_clear_pending_events();
9479         assert_eq!(events_1.len(), 0);
9480
9481         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
9482         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap()[0], tx);
9483         nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().clear();
9484
9485         let expected_err = "funding tx had wrong script/value or output index";
9486         confirm_transaction_at(&nodes[1], &tx, 1);
9487         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: expected_err.to_string() });
9488         check_added_monitors!(nodes[1], 1);
9489         let events_2 = nodes[1].node.get_and_clear_pending_msg_events();
9490         assert_eq!(events_2.len(), 1);
9491         if let MessageSendEvent::HandleError { node_id, action } = &events_2[0] {
9492                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
9493                 if let msgs::ErrorAction::SendErrorMessage { msg } = action {
9494                         assert_eq!(msg.data, "Channel closed because of an exception: ".to_owned() + expected_err);
9495                 } else { panic!(); }
9496         } else { panic!(); }
9497         assert_eq!(nodes[1].node.list_channels().len(), 0);
9498
9499         // Now confirm a spend of the (bogus) funding transaction. As long as the witness is 5 elements
9500         // long the ChannelMonitor will try to read 32 bytes from the second-to-last element, panicing
9501         // as its not 32 bytes long.
9502         let mut spend_tx = Transaction {
9503                 version: 2i32, lock_time: PackedLockTime::ZERO,
9504                 input: tx.output.iter().enumerate().map(|(idx, _)| TxIn {
9505                         previous_output: BitcoinOutPoint {
9506                                 txid: tx.txid(),
9507                                 vout: idx as u32,
9508                         },
9509                         script_sig: Script::new(),
9510                         sequence: Sequence::ENABLE_RBF_NO_LOCKTIME,
9511                         witness: Witness::from_vec(channelmonitor::deliberately_bogus_accepted_htlc_witness())
9512                 }).collect(),
9513                 output: vec![TxOut {
9514                         value: 1000,
9515                         script_pubkey: Script::new(),
9516                 }]
9517         };
9518         check_spends!(spend_tx, tx);
9519         mine_transaction(&nodes[1], &spend_tx);
9520 }
9521
9522 fn do_test_tx_confirmed_skipping_blocks_immediate_broadcast(test_height_before_timelock: bool) {
9523         // In the first version of the chain::Confirm interface, after a refactor was made to not
9524         // broadcast CSV-locked transactions until their CSV lock is up, we wouldn't reliably broadcast
9525         // transactions after a `transactions_confirmed` call. Specifically, if the chain, provided via
9526         // `best_block_updated` is at height N, and a transaction output which we wish to spend at
9527         // height N-1 (due to a CSV to height N-1) is provided at height N, we will not broadcast the
9528         // spending transaction until height N+1 (or greater). This was due to the way
9529         // `ChannelMonitor::transactions_confirmed` worked, only checking if we should broadcast a
9530         // spending transaction at the height the input transaction was confirmed at, not whether we
9531         // should broadcast a spending transaction at the current height.
9532         // A second, similar, issue involved failing HTLCs backwards - because we only provided the
9533         // height at which transactions were confirmed to `OnchainTx::update_claims_view`, it wasn't
9534         // aware that the anti-reorg-delay had, in fact, already expired, waiting to fail-backwards
9535         // until we learned about an additional block.
9536         //
9537         // As an additional check, if `test_height_before_timelock` is set, we instead test that we
9538         // aren't broadcasting transactions too early (ie not broadcasting them at all).
9539         let chanmon_cfgs = create_chanmon_cfgs(3);
9540         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9541         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9542         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9543         *nodes[0].connect_style.borrow_mut() = ConnectStyle::BestBlockFirstSkippingBlocks;
9544
9545         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
9546         let (chan_announce, _, channel_id, _) = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
9547         let (_, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 1_000_000);
9548         nodes[1].node.peer_disconnected(&nodes[2].node.get_our_node_id(), false);
9549         nodes[2].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
9550
9551         nodes[1].node.force_close_broadcasting_latest_txn(&channel_id, &nodes[2].node.get_our_node_id()).unwrap();
9552         check_closed_broadcast!(nodes[1], true);
9553         check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
9554         check_added_monitors!(nodes[1], 1);
9555         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
9556         assert_eq!(node_txn.len(), 1);
9557
9558         let conf_height = nodes[1].best_block_info().1;
9559         if !test_height_before_timelock {
9560                 connect_blocks(&nodes[1], 24 * 6);
9561         }
9562         nodes[1].chain_monitor.chain_monitor.transactions_confirmed(
9563                 &nodes[1].get_block_header(conf_height), &[(0, &node_txn[0])], conf_height);
9564         if test_height_before_timelock {
9565                 // If we confirmed the close transaction, but timelocks have not yet expired, we should not
9566                 // generate any events or broadcast any transactions
9567                 assert!(nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().is_empty());
9568                 assert!(nodes[1].chain_monitor.chain_monitor.get_and_clear_pending_events().is_empty());
9569         } else {
9570                 // We should broadcast an HTLC transaction spending our funding transaction first
9571                 let spending_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
9572                 assert_eq!(spending_txn.len(), 2);
9573                 assert_eq!(spending_txn[0], node_txn[0]);
9574                 check_spends!(spending_txn[1], node_txn[0]);
9575                 // We should also generate a SpendableOutputs event with the to_self output (as its
9576                 // timelock is up).
9577                 let descriptor_spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
9578                 assert_eq!(descriptor_spend_txn.len(), 1);
9579
9580                 // If we also discover that the HTLC-Timeout transaction was confirmed some time ago, we
9581                 // should immediately fail-backwards the HTLC to the previous hop, without waiting for an
9582                 // additional block built on top of the current chain.
9583                 nodes[1].chain_monitor.chain_monitor.transactions_confirmed(
9584                         &nodes[1].get_block_header(conf_height + 1), &[(0, &spending_txn[1])], conf_height + 1);
9585                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::NextHopChannel { node_id: Some(nodes[2].node.get_our_node_id()), channel_id: channel_id }]);
9586                 check_added_monitors!(nodes[1], 1);
9587
9588                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9589                 assert!(updates.update_add_htlcs.is_empty());
9590                 assert!(updates.update_fulfill_htlcs.is_empty());
9591                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9592                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9593                 assert!(updates.update_fee.is_none());
9594                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9595                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9596                 expect_payment_failed_with_update!(nodes[0], payment_hash, false, chan_announce.contents.short_channel_id, true);
9597         }
9598 }
9599
9600 #[test]
9601 fn test_tx_confirmed_skipping_blocks_immediate_broadcast() {
9602         do_test_tx_confirmed_skipping_blocks_immediate_broadcast(false);
9603         do_test_tx_confirmed_skipping_blocks_immediate_broadcast(true);
9604 }
9605
9606 #[test]
9607 fn test_forwardable_regen() {
9608         // Tests that if we reload a ChannelManager while forwards are pending we will regenerate the
9609         // PendingHTLCsForwardable event automatically, ensuring we don't forget to forward/receive
9610         // HTLCs.
9611         // We test it for both payment receipt and payment forwarding.
9612
9613         let chanmon_cfgs = create_chanmon_cfgs(3);
9614         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9615         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9616         let persister: test_utils::TestPersister;
9617         let new_chain_monitor: test_utils::TestChainMonitor;
9618         let nodes_1_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
9619         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9620         let chan_id_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
9621         let chan_id_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known()).2;
9622
9623         // First send a payment to nodes[1]
9624         let (route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
9625         nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
9626         check_added_monitors!(nodes[0], 1);
9627
9628         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9629         assert_eq!(events.len(), 1);
9630         let payment_event = SendEvent::from_event(events.pop().unwrap());
9631         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9632         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9633
9634         expect_pending_htlcs_forwardable_ignore!(nodes[1]);
9635
9636         // Next send a payment which is forwarded by nodes[1]
9637         let (route_2, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[2], 200_000);
9638         nodes[0].node.send_payment(&route_2, payment_hash_2, &Some(payment_secret_2)).unwrap();
9639         check_added_monitors!(nodes[0], 1);
9640
9641         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9642         assert_eq!(events.len(), 1);
9643         let payment_event = SendEvent::from_event(events.pop().unwrap());
9644         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9645         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9646
9647         // There is already a PendingHTLCsForwardable event "pending" so another one will not be
9648         // generated
9649         assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
9650
9651         // Now restart nodes[1] and make sure it regenerates a single PendingHTLCsForwardable
9652         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
9653         nodes[2].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
9654
9655         let nodes_1_serialized = nodes[1].node.encode();
9656         let mut chan_0_monitor_serialized = test_utils::TestVecWriter(Vec::new());
9657         let mut chan_1_monitor_serialized = test_utils::TestVecWriter(Vec::new());
9658         get_monitor!(nodes[1], chan_id_1).write(&mut chan_0_monitor_serialized).unwrap();
9659         get_monitor!(nodes[1], chan_id_2).write(&mut chan_1_monitor_serialized).unwrap();
9660
9661         persister = test_utils::TestPersister::new();
9662         let keys_manager = &chanmon_cfgs[1].keys_manager;
9663         new_chain_monitor = test_utils::TestChainMonitor::new(Some(nodes[1].chain_source), nodes[1].tx_broadcaster.clone(), nodes[1].logger, node_cfgs[1].fee_estimator, &persister, keys_manager);
9664         nodes[1].chain_monitor = &new_chain_monitor;
9665
9666         let mut chan_0_monitor_read = &chan_0_monitor_serialized.0[..];
9667         let (_, mut chan_0_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
9668                 &mut chan_0_monitor_read, keys_manager).unwrap();
9669         assert!(chan_0_monitor_read.is_empty());
9670         let mut chan_1_monitor_read = &chan_1_monitor_serialized.0[..];
9671         let (_, mut chan_1_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
9672                 &mut chan_1_monitor_read, keys_manager).unwrap();
9673         assert!(chan_1_monitor_read.is_empty());
9674
9675         let mut nodes_1_read = &nodes_1_serialized[..];
9676         let (_, nodes_1_deserialized_tmp) = {
9677                 let mut channel_monitors = HashMap::new();
9678                 channel_monitors.insert(chan_0_monitor.get_funding_txo().0, &mut chan_0_monitor);
9679                 channel_monitors.insert(chan_1_monitor.get_funding_txo().0, &mut chan_1_monitor);
9680                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut nodes_1_read, ChannelManagerReadArgs {
9681                         default_config: UserConfig::default(),
9682                         keys_manager,
9683                         fee_estimator: node_cfgs[1].fee_estimator,
9684                         chain_monitor: nodes[1].chain_monitor,
9685                         tx_broadcaster: nodes[1].tx_broadcaster.clone(),
9686                         logger: nodes[1].logger,
9687                         channel_monitors,
9688                 }).unwrap()
9689         };
9690         nodes_1_deserialized = nodes_1_deserialized_tmp;
9691         assert!(nodes_1_read.is_empty());
9692
9693         assert!(nodes[1].chain_monitor.watch_channel(chan_0_monitor.get_funding_txo().0, chan_0_monitor).is_ok());
9694         assert!(nodes[1].chain_monitor.watch_channel(chan_1_monitor.get_funding_txo().0, chan_1_monitor).is_ok());
9695         nodes[1].node = &nodes_1_deserialized;
9696         check_added_monitors!(nodes[1], 2);
9697
9698         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
9699         // Note that nodes[1] and nodes[2] resend their channel_ready here since they haven't updated
9700         // the commitment state.
9701         reconnect_nodes(&nodes[1], &nodes[2], (true, true), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
9702
9703         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
9704
9705         expect_pending_htlcs_forwardable!(nodes[1]);
9706         expect_payment_received!(nodes[1], payment_hash, payment_secret, 100_000);
9707         check_added_monitors!(nodes[1], 1);
9708
9709         let mut events = nodes[1].node.get_and_clear_pending_msg_events();
9710         assert_eq!(events.len(), 1);
9711         let payment_event = SendEvent::from_event(events.pop().unwrap());
9712         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
9713         commitment_signed_dance!(nodes[2], nodes[1], payment_event.commitment_msg, false);
9714         expect_pending_htlcs_forwardable!(nodes[2]);
9715         expect_payment_received!(nodes[2], payment_hash_2, payment_secret_2, 200_000);
9716
9717         claim_payment(&nodes[0], &[&nodes[1]], payment_preimage);
9718         claim_payment(&nodes[0], &[&nodes[1], &nodes[2]], payment_preimage_2);
9719 }
9720
9721 fn do_test_dup_htlc_second_rejected(test_for_second_fail_panic: bool) {
9722         let chanmon_cfgs = create_chanmon_cfgs(2);
9723         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9724         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9725         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9726
9727         let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9728
9729         let payment_params = PaymentParameters::from_node_id(nodes[1].node.get_our_node_id())
9730                 .with_features(InvoiceFeatures::known());
9731         let route = get_route!(nodes[0], payment_params, 10_000, TEST_FINAL_CLTV).unwrap();
9732
9733         let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(&nodes[1]);
9734
9735         {
9736                 nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
9737                 check_added_monitors!(nodes[0], 1);
9738                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9739                 assert_eq!(events.len(), 1);
9740                 let mut payment_event = SendEvent::from_event(events.pop().unwrap());
9741                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9742                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9743         }
9744         expect_pending_htlcs_forwardable!(nodes[1]);
9745         expect_payment_received!(nodes[1], our_payment_hash, our_payment_secret, 10_000);
9746
9747         {
9748                 nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
9749                 check_added_monitors!(nodes[0], 1);
9750                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9751                 assert_eq!(events.len(), 1);
9752                 let mut payment_event = SendEvent::from_event(events.pop().unwrap());
9753                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9754                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9755                 // At this point, nodes[1] would notice it has too much value for the payment. It will
9756                 // assume the second is a privacy attack (no longer particularly relevant
9757                 // post-payment_secrets) and fail back the new HTLC. Previously, it'd also have failed back
9758                 // the first HTLC delivered above.
9759         }
9760
9761         expect_pending_htlcs_forwardable_ignore!(nodes[1]);
9762         nodes[1].node.process_pending_htlc_forwards();
9763
9764         if test_for_second_fail_panic {
9765                 // Now we go fail back the first HTLC from the user end.
9766                 nodes[1].node.fail_htlc_backwards(&our_payment_hash);
9767
9768                 let expected_destinations = vec![
9769                         HTLCDestination::FailedPayment { payment_hash: our_payment_hash },
9770                         HTLCDestination::FailedPayment { payment_hash: our_payment_hash },
9771                 ];
9772                 expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore!(nodes[1],  expected_destinations);
9773                 nodes[1].node.process_pending_htlc_forwards();
9774
9775                 check_added_monitors!(nodes[1], 1);
9776                 let fail_updates_1 = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9777                 assert_eq!(fail_updates_1.update_fail_htlcs.len(), 2);
9778
9779                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &fail_updates_1.update_fail_htlcs[0]);
9780                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &fail_updates_1.update_fail_htlcs[1]);
9781                 commitment_signed_dance!(nodes[0], nodes[1], fail_updates_1.commitment_signed, false);
9782
9783                 let failure_events = nodes[0].node.get_and_clear_pending_events();
9784                 assert_eq!(failure_events.len(), 2);
9785                 if let Event::PaymentPathFailed { .. } = failure_events[0] {} else { panic!(); }
9786                 if let Event::PaymentPathFailed { .. } = failure_events[1] {} else { panic!(); }
9787         } else {
9788                 // Let the second HTLC fail and claim the first
9789                 expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
9790                 nodes[1].node.process_pending_htlc_forwards();
9791
9792                 check_added_monitors!(nodes[1], 1);
9793                 let fail_updates_1 = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9794                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &fail_updates_1.update_fail_htlcs[0]);
9795                 commitment_signed_dance!(nodes[0], nodes[1], fail_updates_1.commitment_signed, false);
9796
9797                 expect_payment_failed_conditions(&nodes[0], our_payment_hash, true, PaymentFailedConditions::new().mpp_parts_remain());
9798
9799                 claim_payment(&nodes[0], &[&nodes[1]], our_payment_preimage);
9800         }
9801 }
9802
9803 #[test]
9804 fn test_dup_htlc_second_fail_panic() {
9805         // Previously, if we received two HTLCs back-to-back, where the second overran the expected
9806         // value for the payment, we'd fail back both HTLCs after generating a `PaymentReceived` event.
9807         // Then, if the user failed the second payment, they'd hit a "tried to fail an already failed
9808         // HTLC" debug panic. This tests for this behavior, checking that only one HTLC is auto-failed.
9809         do_test_dup_htlc_second_rejected(true);
9810 }
9811
9812 #[test]
9813 fn test_dup_htlc_second_rejected() {
9814         // Test that if we receive a second HTLC for an MPP payment that overruns the payment amount we
9815         // simply reject the second HTLC but are still able to claim the first HTLC.
9816         do_test_dup_htlc_second_rejected(false);
9817 }
9818
9819 #[test]
9820 fn test_inconsistent_mpp_params() {
9821         // Test that if we recieve two HTLCs with different payment parameters we fail back the first
9822         // such HTLC and allow the second to stay.
9823         let chanmon_cfgs = create_chanmon_cfgs(4);
9824         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
9825         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
9826         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
9827
9828         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9829         create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9830         create_announced_chan_between_nodes_with_value(&nodes, 1, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9831         let chan_2_3 =create_announced_chan_between_nodes_with_value(&nodes, 2, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9832
9833         let payment_params = PaymentParameters::from_node_id(nodes[3].node.get_our_node_id())
9834                 .with_features(InvoiceFeatures::known());
9835         let mut route = get_route!(nodes[0], payment_params, 15_000_000, TEST_FINAL_CLTV).unwrap();
9836         assert_eq!(route.paths.len(), 2);
9837         route.paths.sort_by(|path_a, _| {
9838                 // Sort the path so that the path through nodes[1] comes first
9839                 if path_a[0].pubkey == nodes[1].node.get_our_node_id() {
9840                         core::cmp::Ordering::Less } else { core::cmp::Ordering::Greater }
9841         });
9842         let payment_params_opt = Some(payment_params);
9843
9844         let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(&nodes[3]);
9845
9846         let cur_height = nodes[0].best_block_info().1;
9847         let payment_id = PaymentId([42; 32]);
9848         {
9849                 nodes[0].node.send_payment_along_path(&route.paths[0], &payment_params_opt, &our_payment_hash, &Some(our_payment_secret), 15_000_000, cur_height, payment_id, &None).unwrap();
9850                 check_added_monitors!(nodes[0], 1);
9851
9852                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9853                 assert_eq!(events.len(), 1);
9854                 pass_along_path(&nodes[0], &[&nodes[1], &nodes[3]], 15_000_000, our_payment_hash, Some(our_payment_secret), events.pop().unwrap(), false, None);
9855         }
9856         assert!(nodes[3].node.get_and_clear_pending_events().is_empty());
9857
9858         {
9859                 nodes[0].node.send_payment_along_path(&route.paths[1], &payment_params_opt, &our_payment_hash, &Some(our_payment_secret), 14_000_000, cur_height, payment_id, &None).unwrap();
9860                 check_added_monitors!(nodes[0], 1);
9861
9862                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9863                 assert_eq!(events.len(), 1);
9864                 let payment_event = SendEvent::from_event(events.pop().unwrap());
9865
9866                 nodes[2].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9867                 commitment_signed_dance!(nodes[2], nodes[0], payment_event.commitment_msg, false);
9868
9869                 expect_pending_htlcs_forwardable!(nodes[2]);
9870                 check_added_monitors!(nodes[2], 1);
9871
9872                 let mut events = nodes[2].node.get_and_clear_pending_msg_events();
9873                 assert_eq!(events.len(), 1);
9874                 let payment_event = SendEvent::from_event(events.pop().unwrap());
9875
9876                 nodes[3].node.handle_update_add_htlc(&nodes[2].node.get_our_node_id(), &payment_event.msgs[0]);
9877                 check_added_monitors!(nodes[3], 0);
9878                 commitment_signed_dance!(nodes[3], nodes[2], payment_event.commitment_msg, true, true);
9879
9880                 // At this point, nodes[3] should notice the two HTLCs don't contain the same total payment
9881                 // amount. It will assume the second is a privacy attack (no longer particularly relevant
9882                 // post-payment_secrets) and fail back the new HTLC.
9883         }
9884         expect_pending_htlcs_forwardable_ignore!(nodes[3]);
9885         nodes[3].node.process_pending_htlc_forwards();
9886         expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore!(nodes[3], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
9887         nodes[3].node.process_pending_htlc_forwards();
9888
9889         check_added_monitors!(nodes[3], 1);
9890
9891         let fail_updates_1 = get_htlc_update_msgs!(nodes[3], nodes[2].node.get_our_node_id());
9892         nodes[2].node.handle_update_fail_htlc(&nodes[3].node.get_our_node_id(), &fail_updates_1.update_fail_htlcs[0]);
9893         commitment_signed_dance!(nodes[2], nodes[3], fail_updates_1.commitment_signed, false);
9894
9895         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[2], vec![HTLCDestination::NextHopChannel { node_id: Some(nodes[3].node.get_our_node_id()), channel_id: chan_2_3.2 }]);
9896         check_added_monitors!(nodes[2], 1);
9897
9898         let fail_updates_2 = get_htlc_update_msgs!(nodes[2], nodes[0].node.get_our_node_id());
9899         nodes[0].node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &fail_updates_2.update_fail_htlcs[0]);
9900         commitment_signed_dance!(nodes[0], nodes[2], fail_updates_2.commitment_signed, false);
9901
9902         expect_payment_failed_conditions(&nodes[0], our_payment_hash, true, PaymentFailedConditions::new().mpp_parts_remain());
9903
9904         nodes[0].node.send_payment_along_path(&route.paths[1], &payment_params_opt, &our_payment_hash, &Some(our_payment_secret), 15_000_000, cur_height, payment_id, &None).unwrap();
9905         check_added_monitors!(nodes[0], 1);
9906
9907         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9908         assert_eq!(events.len(), 1);
9909         pass_along_path(&nodes[0], &[&nodes[2], &nodes[3]], 15_000_000, our_payment_hash, Some(our_payment_secret), events.pop().unwrap(), true, None);
9910
9911         claim_payment_along_route(&nodes[0], &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], false, our_payment_preimage);
9912 }
9913
9914 #[test]
9915 fn test_keysend_payments_to_public_node() {
9916         let chanmon_cfgs = create_chanmon_cfgs(2);
9917         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9918         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9919         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9920
9921         let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9922         let network_graph = nodes[0].network_graph;
9923         let payer_pubkey = nodes[0].node.get_our_node_id();
9924         let payee_pubkey = nodes[1].node.get_our_node_id();
9925         let route_params = RouteParameters {
9926                 payment_params: PaymentParameters::for_keysend(payee_pubkey),
9927                 final_value_msat: 10000,
9928                 final_cltv_expiry_delta: 40,
9929         };
9930         let scorer = test_utils::TestScorer::with_penalty(0);
9931         let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9932         let route = find_route(&payer_pubkey, &route_params, &network_graph, None, nodes[0].logger, &scorer, &random_seed_bytes).unwrap();
9933
9934         let test_preimage = PaymentPreimage([42; 32]);
9935         let (payment_hash, _) = nodes[0].node.send_spontaneous_payment(&route, Some(test_preimage)).unwrap();
9936         check_added_monitors!(nodes[0], 1);
9937         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9938         assert_eq!(events.len(), 1);
9939         let event = events.pop().unwrap();
9940         let path = vec![&nodes[1]];
9941         pass_along_path(&nodes[0], &path, 10000, payment_hash, None, event, true, Some(test_preimage));
9942         claim_payment(&nodes[0], &path, test_preimage);
9943 }
9944
9945 #[test]
9946 fn test_keysend_payments_to_private_node() {
9947         let chanmon_cfgs = create_chanmon_cfgs(2);
9948         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9949         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9950         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9951
9952         let payer_pubkey = nodes[0].node.get_our_node_id();
9953         let payee_pubkey = nodes[1].node.get_our_node_id();
9954         nodes[0].node.peer_connected(&payee_pubkey, &msgs::Init { features: InitFeatures::known(), remote_network_address: None });
9955         nodes[1].node.peer_connected(&payer_pubkey, &msgs::Init { features: InitFeatures::known(), remote_network_address: None });
9956
9957         let _chan = create_chan_between_nodes(&nodes[0], &nodes[1], InitFeatures::known(), InitFeatures::known());
9958         let route_params = RouteParameters {
9959                 payment_params: PaymentParameters::for_keysend(payee_pubkey),
9960                 final_value_msat: 10000,
9961                 final_cltv_expiry_delta: 40,
9962         };
9963         let network_graph = nodes[0].network_graph;
9964         let first_hops = nodes[0].node.list_usable_channels();
9965         let scorer = test_utils::TestScorer::with_penalty(0);
9966         let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9967         let route = find_route(
9968                 &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
9969                 nodes[0].logger, &scorer, &random_seed_bytes
9970         ).unwrap();
9971
9972         let test_preimage = PaymentPreimage([42; 32]);
9973         let (payment_hash, _) = nodes[0].node.send_spontaneous_payment(&route, Some(test_preimage)).unwrap();
9974         check_added_monitors!(nodes[0], 1);
9975         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9976         assert_eq!(events.len(), 1);
9977         let event = events.pop().unwrap();
9978         let path = vec![&nodes[1]];
9979         pass_along_path(&nodes[0], &path, 10000, payment_hash, None, event, true, Some(test_preimage));
9980         claim_payment(&nodes[0], &path, test_preimage);
9981 }
9982
9983 #[test]
9984 fn test_double_partial_claim() {
9985         // Test what happens if a node receives a payment, generates a PaymentReceived event, the HTLCs
9986         // time out, the sender resends only some of the MPP parts, then the user processes the
9987         // PaymentReceived event, ensuring they don't inadvertently claim only part of the full payment
9988         // amount.
9989         let chanmon_cfgs = create_chanmon_cfgs(4);
9990         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
9991         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
9992         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
9993
9994         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9995         create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9996         create_announced_chan_between_nodes_with_value(&nodes, 1, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9997         create_announced_chan_between_nodes_with_value(&nodes, 2, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9998
9999         let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[3], 15_000_000);
10000         assert_eq!(route.paths.len(), 2);
10001         route.paths.sort_by(|path_a, _| {
10002                 // Sort the path so that the path through nodes[1] comes first
10003                 if path_a[0].pubkey == nodes[1].node.get_our_node_id() {
10004                         core::cmp::Ordering::Less } else { core::cmp::Ordering::Greater }
10005         });
10006
10007         send_along_route_with_secret(&nodes[0], route.clone(), &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], 15_000_000, payment_hash, payment_secret);
10008         // nodes[3] has now received a PaymentReceived event...which it will take some (exorbitant)
10009         // amount of time to respond to.
10010
10011         // Connect some blocks to time out the payment
10012         connect_blocks(&nodes[3], TEST_FINAL_CLTV);
10013         connect_blocks(&nodes[0], TEST_FINAL_CLTV); // To get the same height for sending later
10014
10015         let failed_destinations = vec![
10016                 HTLCDestination::FailedPayment { payment_hash },
10017                 HTLCDestination::FailedPayment { payment_hash },
10018         ];
10019         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[3], failed_destinations);
10020
10021         pass_failed_payment_back(&nodes[0], &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], false, payment_hash);
10022
10023         // nodes[1] now retries one of the two paths...
10024         nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
10025         check_added_monitors!(nodes[0], 2);
10026
10027         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10028         assert_eq!(events.len(), 2);
10029         pass_along_path(&nodes[0], &[&nodes[1], &nodes[3]], 15_000_000, payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
10030
10031         // At this point nodes[3] has received one half of the payment, and the user goes to handle
10032         // that PaymentReceived event they got hours ago and never handled...we should refuse to claim.
10033         nodes[3].node.claim_funds(payment_preimage);
10034         check_added_monitors!(nodes[3], 0);
10035         assert!(nodes[3].node.get_and_clear_pending_msg_events().is_empty());
10036 }
10037
10038 fn do_test_partial_claim_before_restart(persist_both_monitors: bool) {
10039         // Test what happens if a node receives an MPP payment, claims it, but crashes before
10040         // persisting the ChannelManager. If `persist_both_monitors` is false, also crash after only
10041         // updating one of the two channels' ChannelMonitors. As a result, on startup, we'll (a) still
10042         // have the PaymentReceived event, (b) have one (or two) channel(s) that goes on chain with the
10043         // HTLC preimage in them, and (c) optionally have one channel that is live off-chain but does
10044         // not have the preimage tied to the still-pending HTLC.
10045         //
10046         // To get to the correct state, on startup we should propagate the preimage to the
10047         // still-off-chain channel, claiming the HTLC as soon as the peer connects, with the monitor
10048         // receiving the preimage without a state update.
10049         //
10050         // Further, we should generate a `PaymentClaimed` event to inform the user that the payment was
10051         // definitely claimed.
10052         let chanmon_cfgs = create_chanmon_cfgs(4);
10053         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10054         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10055
10056         let persister: test_utils::TestPersister;
10057         let new_chain_monitor: test_utils::TestChainMonitor;
10058         let nodes_3_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
10059
10060         let mut nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10061
10062         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
10063         create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100_000, 0, InitFeatures::known(), InitFeatures::known());
10064         let chan_id_persisted = create_announced_chan_between_nodes_with_value(&nodes, 1, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known()).2;
10065         let chan_id_not_persisted = create_announced_chan_between_nodes_with_value(&nodes, 2, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known()).2;
10066
10067         // Create an MPP route for 15k sats, more than the default htlc-max of 10%
10068         let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[3], 15_000_000);
10069         assert_eq!(route.paths.len(), 2);
10070         route.paths.sort_by(|path_a, _| {
10071                 // Sort the path so that the path through nodes[1] comes first
10072                 if path_a[0].pubkey == nodes[1].node.get_our_node_id() {
10073                         core::cmp::Ordering::Less } else { core::cmp::Ordering::Greater }
10074         });
10075
10076         nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
10077         check_added_monitors!(nodes[0], 2);
10078
10079         // Send the payment through to nodes[3] *without* clearing the PaymentReceived event
10080         let mut send_events = nodes[0].node.get_and_clear_pending_msg_events();
10081         assert_eq!(send_events.len(), 2);
10082         do_pass_along_path(&nodes[0], &[&nodes[1], &nodes[3]], 15_000_000, payment_hash, Some(payment_secret), send_events[0].clone(), true, false, None);
10083         do_pass_along_path(&nodes[0], &[&nodes[2], &nodes[3]], 15_000_000, payment_hash, Some(payment_secret), send_events[1].clone(), true, false, None);
10084
10085         // Now that we have an MPP payment pending, get the latest encoded copies of nodes[3]'s
10086         // monitors and ChannelManager, for use later, if we don't want to persist both monitors.
10087         let mut original_monitor = test_utils::TestVecWriter(Vec::new());
10088         if !persist_both_monitors {
10089                 for outpoint in nodes[3].chain_monitor.chain_monitor.list_monitors() {
10090                         if outpoint.to_channel_id() == chan_id_not_persisted {
10091                                 assert!(original_monitor.0.is_empty());
10092                                 nodes[3].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap().write(&mut original_monitor).unwrap();
10093                         }
10094                 }
10095         }
10096
10097         let mut original_manager = test_utils::TestVecWriter(Vec::new());
10098         nodes[3].node.write(&mut original_manager).unwrap();
10099
10100         expect_payment_received!(nodes[3], payment_hash, payment_secret, 15_000_000);
10101
10102         nodes[3].node.claim_funds(payment_preimage);
10103         check_added_monitors!(nodes[3], 2);
10104         expect_payment_claimed!(nodes[3], payment_hash, 15_000_000);
10105
10106         // Now fetch one of the two updated ChannelMonitors from nodes[3], and restart pretending we
10107         // crashed in between the two persistence calls - using one old ChannelMonitor and one new one,
10108         // with the old ChannelManager.
10109         let mut updated_monitor = test_utils::TestVecWriter(Vec::new());
10110         for outpoint in nodes[3].chain_monitor.chain_monitor.list_monitors() {
10111                 if outpoint.to_channel_id() == chan_id_persisted {
10112                         assert!(updated_monitor.0.is_empty());
10113                         nodes[3].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap().write(&mut updated_monitor).unwrap();
10114                 }
10115         }
10116         // If `persist_both_monitors` is set, get the second monitor here as well
10117         if persist_both_monitors {
10118                 for outpoint in nodes[3].chain_monitor.chain_monitor.list_monitors() {
10119                         if outpoint.to_channel_id() == chan_id_not_persisted {
10120                                 assert!(original_monitor.0.is_empty());
10121                                 nodes[3].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap().write(&mut original_monitor).unwrap();
10122                         }
10123                 }
10124         }
10125
10126         // Now restart nodes[3].
10127         persister = test_utils::TestPersister::new();
10128         let keys_manager = &chanmon_cfgs[3].keys_manager;
10129         new_chain_monitor = test_utils::TestChainMonitor::new(Some(nodes[3].chain_source), nodes[3].tx_broadcaster.clone(), nodes[3].logger, node_cfgs[3].fee_estimator, &persister, keys_manager);
10130         nodes[3].chain_monitor = &new_chain_monitor;
10131         let mut monitors = Vec::new();
10132         for mut monitor_data in [original_monitor, updated_monitor].iter() {
10133                 let (_, mut deserialized_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(&mut &monitor_data.0[..], keys_manager).unwrap();
10134                 monitors.push(deserialized_monitor);
10135         }
10136
10137         let config = UserConfig::default();
10138         nodes_3_deserialized = {
10139                 let mut channel_monitors = HashMap::new();
10140                 for monitor in monitors.iter_mut() {
10141                         channel_monitors.insert(monitor.get_funding_txo().0, monitor);
10142                 }
10143                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut &original_manager.0[..], ChannelManagerReadArgs {
10144                         default_config: config,
10145                         keys_manager,
10146                         fee_estimator: node_cfgs[3].fee_estimator,
10147                         chain_monitor: nodes[3].chain_monitor,
10148                         tx_broadcaster: nodes[3].tx_broadcaster.clone(),
10149                         logger: nodes[3].logger,
10150                         channel_monitors,
10151                 }).unwrap().1
10152         };
10153         nodes[3].node = &nodes_3_deserialized;
10154
10155         for monitor in monitors {
10156                 // On startup the preimage should have been copied into the non-persisted monitor:
10157                 assert!(monitor.get_stored_preimages().contains_key(&payment_hash));
10158                 nodes[3].chain_monitor.watch_channel(monitor.get_funding_txo().0.clone(), monitor).unwrap();
10159         }
10160         check_added_monitors!(nodes[3], 2);
10161
10162         nodes[1].node.peer_disconnected(&nodes[3].node.get_our_node_id(), false);
10163         nodes[2].node.peer_disconnected(&nodes[3].node.get_our_node_id(), false);
10164
10165         // During deserialization, we should have closed one channel and broadcast its latest
10166         // commitment transaction. We should also still have the original PaymentReceived event we
10167         // never finished processing.
10168         let events = nodes[3].node.get_and_clear_pending_events();
10169         assert_eq!(events.len(), if persist_both_monitors { 4 } else { 3 });
10170         if let Event::PaymentReceived { amount_msat: 15_000_000, .. } = events[0] { } else { panic!(); }
10171         if let Event::ChannelClosed { reason: ClosureReason::OutdatedChannelManager, .. } = events[1] { } else { panic!(); }
10172         if persist_both_monitors {
10173                 if let Event::ChannelClosed { reason: ClosureReason::OutdatedChannelManager, .. } = events[2] { } else { panic!(); }
10174         }
10175
10176         // On restart, we should also get a duplicate PaymentClaimed event as we persisted the
10177         // ChannelManager prior to handling the original one.
10178         if let Event::PaymentClaimed { payment_hash: our_payment_hash, amount_msat: 15_000_000, .. } =
10179                 events[if persist_both_monitors { 3 } else { 2 }]
10180         {
10181                 assert_eq!(payment_hash, our_payment_hash);
10182         } else { panic!(); }
10183
10184         assert_eq!(nodes[3].node.list_channels().len(), if persist_both_monitors { 0 } else { 1 });
10185         if !persist_both_monitors {
10186                 // If one of the two channels is still live, reveal the payment preimage over it.
10187
10188                 nodes[3].node.peer_connected(&nodes[2].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
10189                 let reestablish_1 = get_chan_reestablish_msgs!(nodes[3], nodes[2]);
10190                 nodes[2].node.peer_connected(&nodes[3].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
10191                 let reestablish_2 = get_chan_reestablish_msgs!(nodes[2], nodes[3]);
10192
10193                 nodes[2].node.handle_channel_reestablish(&nodes[3].node.get_our_node_id(), &reestablish_1[0]);
10194                 get_event_msg!(nodes[2], MessageSendEvent::SendChannelUpdate, nodes[3].node.get_our_node_id());
10195                 assert!(nodes[2].node.get_and_clear_pending_msg_events().is_empty());
10196
10197                 nodes[3].node.handle_channel_reestablish(&nodes[2].node.get_our_node_id(), &reestablish_2[0]);
10198
10199                 // Once we call `get_and_clear_pending_msg_events` the holding cell is cleared and the HTLC
10200                 // claim should fly.
10201                 let ds_msgs = nodes[3].node.get_and_clear_pending_msg_events();
10202                 check_added_monitors!(nodes[3], 1);
10203                 assert_eq!(ds_msgs.len(), 2);
10204                 if let MessageSendEvent::SendChannelUpdate { .. } = ds_msgs[1] {} else { panic!(); }
10205
10206                 let cs_updates = match ds_msgs[0] {
10207                         MessageSendEvent::UpdateHTLCs { ref updates, .. } => {
10208                                 nodes[2].node.handle_update_fulfill_htlc(&nodes[3].node.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
10209                                 check_added_monitors!(nodes[2], 1);
10210                                 let cs_updates = get_htlc_update_msgs!(nodes[2], nodes[0].node.get_our_node_id());
10211                                 expect_payment_forwarded!(nodes[2], nodes[0], nodes[3], Some(1000), false, false);
10212                                 commitment_signed_dance!(nodes[2], nodes[3], updates.commitment_signed, false, true);
10213                                 cs_updates
10214                         }
10215                         _ => panic!(),
10216                 };
10217
10218                 nodes[0].node.handle_update_fulfill_htlc(&nodes[2].node.get_our_node_id(), &cs_updates.update_fulfill_htlcs[0]);
10219                 commitment_signed_dance!(nodes[0], nodes[2], cs_updates.commitment_signed, false, true);
10220                 expect_payment_sent!(nodes[0], payment_preimage);
10221         }
10222 }
10223
10224 #[test]
10225 fn test_partial_claim_before_restart() {
10226         do_test_partial_claim_before_restart(false);
10227         do_test_partial_claim_before_restart(true);
10228 }
10229
10230 /// The possible events which may trigger a `max_dust_htlc_exposure` breach
10231 #[derive(Clone, Copy, PartialEq)]
10232 enum ExposureEvent {
10233         /// Breach occurs at HTLC forwarding (see `send_htlc`)
10234         AtHTLCForward,
10235         /// Breach occurs at HTLC reception (see `update_add_htlc`)
10236         AtHTLCReception,
10237         /// Breach occurs at outbound update_fee (see `send_update_fee`)
10238         AtUpdateFeeOutbound,
10239 }
10240
10241 fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_event: ExposureEvent, on_holder_tx: bool) {
10242         // Test that we properly reject dust HTLC violating our `max_dust_htlc_exposure_msat`
10243         // policy.
10244         //
10245         // At HTLC forward (`send_payment()`), if the sum of the trimmed-to-dust HTLC inbound and
10246         // trimmed-to-dust HTLC outbound balance and this new payment as included on next
10247         // counterparty commitment are above our `max_dust_htlc_exposure_msat`, we'll reject the
10248         // update. At HTLC reception (`update_add_htlc()`), if the sum of the trimmed-to-dust HTLC
10249         // inbound and trimmed-to-dust HTLC outbound balance and this new received HTLC as included
10250         // on next counterparty commitment are above our `max_dust_htlc_exposure_msat`, we'll fail
10251         // the update. Note, we return a `temporary_channel_failure` (0x1000 | 7), as the channel
10252         // might be available again for HTLC processing once the dust bandwidth has cleared up.
10253
10254         let chanmon_cfgs = create_chanmon_cfgs(2);
10255         let mut config = test_default_channel_config();
10256         config.channel_config.max_dust_htlc_exposure_msat = 5_000_000; // default setting value
10257         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10258         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config), None]);
10259         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10260
10261         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10262         let mut open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10263         open_channel.max_htlc_value_in_flight_msat = 50_000_000;
10264         open_channel.max_accepted_htlcs = 60;
10265         if on_holder_tx {
10266                 open_channel.dust_limit_satoshis = 546;
10267         }
10268         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_channel);
10269         let mut accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10270         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel);
10271
10272         let opt_anchors = false;
10273
10274         let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10275
10276         if on_holder_tx {
10277                 if let Some(mut chan) = nodes[0].node.channel_state.lock().unwrap().by_id.get_mut(&temporary_channel_id) {
10278                         chan.holder_dust_limit_satoshis = 546;
10279                 }
10280         }
10281
10282         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10283         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id()));
10284         check_added_monitors!(nodes[1], 1);
10285
10286         nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id()));
10287         check_added_monitors!(nodes[0], 1);
10288
10289         let (channel_ready, channel_id) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10290         let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10291         update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &as_update, &bs_update);
10292
10293         let dust_buffer_feerate = {
10294                 let chan_lock = nodes[0].node.channel_state.lock().unwrap();
10295                 let chan = chan_lock.by_id.get(&channel_id).unwrap();
10296                 chan.get_dust_buffer_feerate(None) as u64
10297         };
10298         let dust_outbound_htlc_on_holder_tx_msat: u64 = (dust_buffer_feerate * htlc_timeout_tx_weight(opt_anchors) / 1000 + open_channel.dust_limit_satoshis - 1) * 1000;
10299         let dust_outbound_htlc_on_holder_tx: u64 = config.channel_config.max_dust_htlc_exposure_msat / dust_outbound_htlc_on_holder_tx_msat;
10300
10301         let dust_inbound_htlc_on_holder_tx_msat: u64 = (dust_buffer_feerate * htlc_success_tx_weight(opt_anchors) / 1000 + open_channel.dust_limit_satoshis - 1) * 1000;
10302         let dust_inbound_htlc_on_holder_tx: u64 = config.channel_config.max_dust_htlc_exposure_msat / dust_inbound_htlc_on_holder_tx_msat;
10303
10304         let dust_htlc_on_counterparty_tx: u64 = 25;
10305         let dust_htlc_on_counterparty_tx_msat: u64 = config.channel_config.max_dust_htlc_exposure_msat / dust_htlc_on_counterparty_tx;
10306
10307         if on_holder_tx {
10308                 if dust_outbound_balance {
10309                         // Outbound dust threshold: 2223 sats (`dust_buffer_feerate` * HTLC_TIMEOUT_TX_WEIGHT / 1000 + holder's `dust_limit_satoshis`)
10310                         // Outbound dust balance: 4372 sats
10311                         // Note, we need sent payment to be above outbound dust threshold on counterparty_tx of 2132 sats
10312                         for i in 0..dust_outbound_htlc_on_holder_tx {
10313                                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], dust_outbound_htlc_on_holder_tx_msat);
10314                                 if let Err(_) = nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)) { panic!("Unexpected event at dust HTLC {}", i); }
10315                         }
10316                 } else {
10317                         // Inbound dust threshold: 2324 sats (`dust_buffer_feerate` * HTLC_SUCCESS_TX_WEIGHT / 1000 + holder's `dust_limit_satoshis`)
10318                         // Inbound dust balance: 4372 sats
10319                         // Note, we need sent payment to be above outbound dust threshold on counterparty_tx of 2031 sats
10320                         for _ in 0..dust_inbound_htlc_on_holder_tx {
10321                                 route_payment(&nodes[1], &[&nodes[0]], dust_inbound_htlc_on_holder_tx_msat);
10322                         }
10323                 }
10324         } else {
10325                 if dust_outbound_balance {
10326                         // Outbound dust threshold: 2132 sats (`dust_buffer_feerate` * HTLC_TIMEOUT_TX_WEIGHT / 1000 + counteparty's `dust_limit_satoshis`)
10327                         // Outbound dust balance: 5000 sats
10328                         for i in 0..dust_htlc_on_counterparty_tx {
10329                                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], dust_htlc_on_counterparty_tx_msat);
10330                                 if let Err(_) = nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)) { panic!("Unexpected event at dust HTLC {}", i); }
10331                         }
10332                 } else {
10333                         // Inbound dust threshold: 2031 sats (`dust_buffer_feerate` * HTLC_TIMEOUT_TX_WEIGHT / 1000 + counteparty's `dust_limit_satoshis`)
10334                         // Inbound dust balance: 5000 sats
10335                         for _ in 0..dust_htlc_on_counterparty_tx {
10336                                 route_payment(&nodes[1], &[&nodes[0]], dust_htlc_on_counterparty_tx_msat);
10337                         }
10338                 }
10339         }
10340
10341         let dust_overflow = dust_htlc_on_counterparty_tx_msat * (dust_htlc_on_counterparty_tx + 1);
10342         if exposure_breach_event == ExposureEvent::AtHTLCForward {
10343                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], if on_holder_tx { dust_outbound_htlc_on_holder_tx_msat } else { dust_htlc_on_counterparty_tx_msat });
10344                 let mut config = UserConfig::default();
10345                 // With default dust exposure: 5000 sats
10346                 if on_holder_tx {
10347                         let dust_outbound_overflow = dust_outbound_htlc_on_holder_tx_msat * (dust_outbound_htlc_on_holder_tx + 1);
10348                         let dust_inbound_overflow = dust_inbound_htlc_on_holder_tx_msat * dust_inbound_htlc_on_holder_tx + dust_outbound_htlc_on_holder_tx_msat;
10349                         unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)), true, APIError::ChannelUnavailable { ref err }, assert_eq!(err, &format!("Cannot send value that would put our exposure to dust HTLCs at {} over the limit {} on holder commitment tx", if dust_outbound_balance { dust_outbound_overflow } else { dust_inbound_overflow }, config.channel_config.max_dust_htlc_exposure_msat)));
10350                 } else {
10351                         unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)), true, APIError::ChannelUnavailable { ref err }, assert_eq!(err, &format!("Cannot send value that would put our exposure to dust HTLCs at {} over the limit {} on counterparty commitment tx", dust_overflow, config.channel_config.max_dust_htlc_exposure_msat)));
10352                 }
10353         } else if exposure_breach_event == ExposureEvent::AtHTLCReception {
10354                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], if on_holder_tx { dust_inbound_htlc_on_holder_tx_msat } else { dust_htlc_on_counterparty_tx_msat });
10355                 nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
10356                 check_added_monitors!(nodes[1], 1);
10357                 let mut events = nodes[1].node.get_and_clear_pending_msg_events();
10358                 assert_eq!(events.len(), 1);
10359                 let payment_event = SendEvent::from_event(events.remove(0));
10360                 nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
10361                 // With default dust exposure: 5000 sats
10362                 if on_holder_tx {
10363                         // Outbound dust balance: 6399 sats
10364                         let dust_inbound_overflow = dust_inbound_htlc_on_holder_tx_msat * (dust_inbound_htlc_on_holder_tx + 1);
10365                         let dust_outbound_overflow = dust_outbound_htlc_on_holder_tx_msat * dust_outbound_htlc_on_holder_tx + dust_inbound_htlc_on_holder_tx_msat;
10366                         nodes[0].logger.assert_log("lightning::ln::channel".to_string(), format!("Cannot accept value that would put our exposure to dust HTLCs at {} over the limit {} on holder commitment tx", if dust_outbound_balance { dust_outbound_overflow } else { dust_inbound_overflow }, config.channel_config.max_dust_htlc_exposure_msat), 1);
10367                 } else {
10368                         // Outbound dust balance: 5200 sats
10369                         nodes[0].logger.assert_log("lightning::ln::channel".to_string(), format!("Cannot accept value that would put our exposure to dust HTLCs at {} over the limit {} on counterparty commitment tx", dust_overflow, config.channel_config.max_dust_htlc_exposure_msat), 1);
10370                 }
10371         } else if exposure_breach_event == ExposureEvent::AtUpdateFeeOutbound {
10372                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 2_500_000);
10373                 if let Err(_) = nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)) { panic!("Unexpected event at update_fee-swallowed HTLC", ); }
10374                 {
10375                         let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
10376                         *feerate_lock = *feerate_lock * 10;
10377                 }
10378                 nodes[0].node.timer_tick_occurred();
10379                 check_added_monitors!(nodes[0], 1);
10380                 nodes[0].logger.assert_log_contains("lightning::ln::channel".to_string(), "Cannot afford to send new feerate at 2530 without infringing max dust htlc exposure".to_string(), 1);
10381         }
10382
10383         let _ = nodes[0].node.get_and_clear_pending_msg_events();
10384         let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
10385         added_monitors.clear();
10386 }
10387
10388 #[test]
10389 fn test_max_dust_htlc_exposure() {
10390         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCForward, true);
10391         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCForward, true);
10392         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCReception, true);
10393         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCReception, false);
10394         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCForward, false);
10395         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCReception, false);
10396         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCReception, true);
10397         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCForward, false);
10398         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtUpdateFeeOutbound, true);
10399         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtUpdateFeeOutbound, false);
10400         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtUpdateFeeOutbound, false);
10401         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtUpdateFeeOutbound, true);
10402 }
10403
10404 #[test]
10405 fn test_non_final_funding_tx() {
10406         let chanmon_cfgs = create_chanmon_cfgs(2);
10407         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10408         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10409         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10410
10411         let temp_channel_id = nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10412         let open_channel_message = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10413         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_channel_message);
10414         let accept_channel_message = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10415         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel_message);
10416
10417         let best_height = nodes[0].node.best_block.read().unwrap().height();
10418
10419         let chan_id = *nodes[0].network_chan_count.borrow();
10420         let events = nodes[0].node.get_and_clear_pending_events();
10421         let input = TxIn { previous_output: BitcoinOutPoint::null(), script_sig: bitcoin::Script::new(), sequence: Sequence(1), witness: Witness::from_vec(vec!(vec!(1))) };
10422         assert_eq!(events.len(), 1);
10423         let mut tx = match events[0] {
10424                 Event::FundingGenerationReady { ref channel_value_satoshis, ref output_script, .. } => {
10425                         // Timelock the transaction _beyond_ the best client height + 2.
10426                         Transaction { version: chan_id as i32, lock_time: PackedLockTime(best_height + 3), input: vec![input], output: vec![TxOut {
10427                                 value: *channel_value_satoshis, script_pubkey: output_script.clone(),
10428                         }]}
10429                 },
10430                 _ => panic!("Unexpected event"),
10431         };
10432         // Transaction should fail as it's evaluated as non-final for propagation.
10433         match nodes[0].node.funding_transaction_generated(&temp_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()) {
10434                 Err(APIError::APIMisuseError { err }) => {
10435                         assert_eq!(format!("Funding transaction absolute timelock is non-final"), err);
10436                 },
10437                 _ => panic!()
10438         }
10439
10440         // However, transaction should be accepted if it's in a +2 headroom from best block.
10441         tx.lock_time = PackedLockTime(tx.lock_time.0 - 1);
10442         assert!(nodes[0].node.funding_transaction_generated(&temp_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).is_ok());
10443         get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10444 }