699444a640cf1ad90020d8c6dac78b643c8b865a
[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, NetworkUpdate};
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 #[test]
7170 fn test_channel_failed_after_message_with_badonion_node_perm_bits_set() {
7171         let chanmon_cfgs = create_chanmon_cfgs(3);
7172         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
7173         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
7174         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
7175         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7176         let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
7177
7178         let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 100_000);
7179
7180         // First hop
7181         let mut payment_event = {
7182                 nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
7183                 check_added_monitors!(nodes[0], 1);
7184                 SendEvent::from_node(&nodes[0])
7185         };
7186
7187         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7188         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7189         expect_pending_htlcs_forwardable!(nodes[1]);
7190         check_added_monitors!(nodes[1], 1);
7191         payment_event = SendEvent::from_node(&nodes[1]);
7192         assert_eq!(payment_event.msgs.len(), 1);
7193
7194         // Second Hop
7195         payment_event.msgs[0].onion_routing_packet.version = 1; // Trigger an invalid_onion_version error
7196         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
7197         check_added_monitors!(nodes[2], 0);
7198         commitment_signed_dance!(nodes[2], nodes[1], payment_event.commitment_msg, false, true);
7199
7200         let events_3 = nodes[2].node.get_and_clear_pending_msg_events();
7201         assert_eq!(events_3.len(), 1);
7202         match events_3[0] {
7203                 MessageSendEvent::UpdateHTLCs { ref updates, .. } => {
7204                         let mut update_msg = updates.update_fail_malformed_htlcs[0].clone();
7205                         // Set the NODE bit (BADONION and PERM already set in invalid_onion_version error)
7206                         update_msg.failure_code |= 0x2000;
7207
7208                         nodes[1].node.handle_update_fail_malformed_htlc(&nodes[2].node.get_our_node_id(), &update_msg);
7209                         commitment_signed_dance!(nodes[1], nodes[2], updates.commitment_signed, false, true);
7210                 },
7211                 _ => panic!("Unexpected event"),
7212         }
7213
7214         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1],
7215                 vec![HTLCDestination::NextHopChannel {
7216                         node_id: Some(nodes[2].node.get_our_node_id()), channel_id: chan_2.2 }]);
7217         let events_4 = nodes[1].node.get_and_clear_pending_msg_events();
7218         assert_eq!(events_4.len(), 1);
7219         check_added_monitors!(nodes[1], 1);
7220
7221         match events_4[0] {
7222                 MessageSendEvent::UpdateHTLCs { ref updates, .. } => {
7223                         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
7224                         commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, false, true);
7225                 },
7226                 _ => panic!("Unexpected event"),
7227         }
7228
7229         let events_5 = nodes[0].node.get_and_clear_pending_events();
7230         assert_eq!(events_5.len(), 1);
7231
7232         // Expect a PaymentPathFailed event with a ChannelFailure network update for the channel between
7233         // the node originating the error to its next hop.
7234         match events_5[0] {
7235                 Event::PaymentPathFailed { network_update:
7236                         Some(NetworkUpdate::ChannelFailure { short_channel_id, is_permanent }), error_code, ..
7237                 } => {
7238                         assert_eq!(short_channel_id, chan_2.0.contents.short_channel_id);
7239                         assert!(is_permanent);
7240                         assert_eq!(error_code, Some(0x8000|0x4000|0x2000|4));
7241                 },
7242                 _ => panic!("Unexpected event"),
7243         }
7244
7245         // TODO: Test actual removal of channel from NetworkGraph when it's implemented.
7246 }
7247
7248 fn do_test_failure_delay_dust_htlc_local_commitment(announce_latest: bool) {
7249         // Dust-HTLC failure updates must be delayed until failure-trigger tx (in this case local commitment) reach ANTI_REORG_DELAY
7250         // 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
7251         // HTLC could have been removed from lastest local commitment tx but still valid until we get remote RAA
7252
7253         let mut chanmon_cfgs = create_chanmon_cfgs(2);
7254         chanmon_cfgs[0].keys_manager.disable_revocation_policy_check = true;
7255         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7256         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7257         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7258         let chan =create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7259
7260         let bs_dust_limit = nodes[1].node.channel_state.lock().unwrap().by_id.get(&chan.2).unwrap().holder_dust_limit_satoshis;
7261
7262         // We route 2 dust-HTLCs between A and B
7263         let (_, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], bs_dust_limit*1000);
7264         let (_, payment_hash_2, _) = route_payment(&nodes[0], &[&nodes[1]], bs_dust_limit*1000);
7265         route_payment(&nodes[0], &[&nodes[1]], 1000000);
7266
7267         // Cache one local commitment tx as previous
7268         let as_prev_commitment_tx = get_local_commitment_txn!(nodes[0], chan.2);
7269
7270         // Fail one HTLC to prune it in the will-be-latest-local commitment tx
7271         nodes[1].node.fail_htlc_backwards(&payment_hash_2);
7272         check_added_monitors!(nodes[1], 0);
7273         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: payment_hash_2 }]);
7274         check_added_monitors!(nodes[1], 1);
7275
7276         let remove = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7277         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &remove.update_fail_htlcs[0]);
7278         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &remove.commitment_signed);
7279         check_added_monitors!(nodes[0], 1);
7280
7281         // Cache one local commitment tx as lastest
7282         let as_last_commitment_tx = get_local_commitment_txn!(nodes[0], chan.2);
7283
7284         let events = nodes[0].node.get_and_clear_pending_msg_events();
7285         match events[0] {
7286                 MessageSendEvent::SendRevokeAndACK { node_id, .. } => {
7287                         assert_eq!(node_id, nodes[1].node.get_our_node_id());
7288                 },
7289                 _ => panic!("Unexpected event"),
7290         }
7291         match events[1] {
7292                 MessageSendEvent::UpdateHTLCs { node_id, .. } => {
7293                         assert_eq!(node_id, nodes[1].node.get_our_node_id());
7294                 },
7295                 _ => panic!("Unexpected event"),
7296         }
7297
7298         assert_ne!(as_prev_commitment_tx, as_last_commitment_tx);
7299         // Fail the 2 dust-HTLCs, move their failure in maturation buffer (htlc_updated_waiting_threshold_conf)
7300         if announce_latest {
7301                 mine_transaction(&nodes[0], &as_last_commitment_tx[0]);
7302         } else {
7303                 mine_transaction(&nodes[0], &as_prev_commitment_tx[0]);
7304         }
7305
7306         check_closed_broadcast!(nodes[0], true);
7307         check_added_monitors!(nodes[0], 1);
7308         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
7309
7310         assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7311         connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
7312         let events = nodes[0].node.get_and_clear_pending_events();
7313         // Only 2 PaymentPathFailed events should show up, over-dust HTLC has to be failed by timeout tx
7314         assert_eq!(events.len(), 2);
7315         let mut first_failed = false;
7316         for event in events {
7317                 match event {
7318                         Event::PaymentPathFailed { payment_hash, .. } => {
7319                                 if payment_hash == payment_hash_1 {
7320                                         assert!(!first_failed);
7321                                         first_failed = true;
7322                                 } else {
7323                                         assert_eq!(payment_hash, payment_hash_2);
7324                                 }
7325                         }
7326                         _ => panic!("Unexpected event"),
7327                 }
7328         }
7329 }
7330
7331 #[test]
7332 fn test_failure_delay_dust_htlc_local_commitment() {
7333         do_test_failure_delay_dust_htlc_local_commitment(true);
7334         do_test_failure_delay_dust_htlc_local_commitment(false);
7335 }
7336
7337 fn do_test_sweep_outbound_htlc_failure_update(revoked: bool, local: bool) {
7338         // Outbound HTLC-failure updates must be cancelled if we get a reorg before we reach ANTI_REORG_DELAY.
7339         // Broadcast of revoked remote commitment tx, trigger failure-update of dust/non-dust HTLCs
7340         // Broadcast of remote commitment tx, trigger failure-update of dust-HTLCs
7341         // Broadcast of timeout tx on remote commitment tx, trigger failure-udate of non-dust HTLCs
7342         // Broadcast of local commitment tx, trigger failure-update of dust-HTLCs
7343         // Broadcast of HTLC-timeout tx on local commitment tx, trigger failure-update of non-dust HTLCs
7344
7345         let chanmon_cfgs = create_chanmon_cfgs(3);
7346         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
7347         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
7348         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
7349         let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7350
7351         let bs_dust_limit = nodes[1].node.channel_state.lock().unwrap().by_id.get(&chan.2).unwrap().holder_dust_limit_satoshis;
7352
7353         let (_payment_preimage_1, dust_hash, _payment_secret_1) = route_payment(&nodes[0], &[&nodes[1]], bs_dust_limit*1000);
7354         let (_payment_preimage_2, non_dust_hash, _payment_secret_2) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
7355
7356         let as_commitment_tx = get_local_commitment_txn!(nodes[0], chan.2);
7357         let bs_commitment_tx = get_local_commitment_txn!(nodes[1], chan.2);
7358
7359         // We revoked bs_commitment_tx
7360         if revoked {
7361                 let (payment_preimage_3, _, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
7362                 claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_3);
7363         }
7364
7365         let mut timeout_tx = Vec::new();
7366         if local {
7367                 // We fail dust-HTLC 1 by broadcast of local commitment tx
7368                 mine_transaction(&nodes[0], &as_commitment_tx[0]);
7369                 check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
7370                 connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
7371                 expect_payment_failed!(nodes[0], dust_hash, false);
7372
7373                 connect_blocks(&nodes[0], TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS - ANTI_REORG_DELAY);
7374                 check_closed_broadcast!(nodes[0], true);
7375                 check_added_monitors!(nodes[0], 1);
7376                 assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7377                 timeout_tx.push(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap()[1].clone());
7378                 assert_eq!(timeout_tx[0].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
7379                 // We fail non-dust-HTLC 2 by broadcast of local HTLC-timeout tx on local commitment tx
7380                 assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7381                 mine_transaction(&nodes[0], &timeout_tx[0]);
7382                 connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
7383                 expect_payment_failed!(nodes[0], non_dust_hash, false);
7384         } else {
7385                 // We fail dust-HTLC 1 by broadcast of remote commitment tx. If revoked, fail also non-dust HTLC
7386                 mine_transaction(&nodes[0], &bs_commitment_tx[0]);
7387                 check_closed_broadcast!(nodes[0], true);
7388                 check_added_monitors!(nodes[0], 1);
7389                 check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
7390                 assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7391
7392                 connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
7393                 timeout_tx = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().drain(..)
7394                         .filter(|tx| tx.input[0].previous_output.txid == bs_commitment_tx[0].txid()).collect();
7395                 check_spends!(timeout_tx[0], bs_commitment_tx[0]);
7396                 // For both a revoked or non-revoked commitment transaction, after ANTI_REORG_DELAY the
7397                 // dust HTLC should have been failed.
7398                 expect_payment_failed!(nodes[0], dust_hash, false);
7399
7400                 if !revoked {
7401                         assert_eq!(timeout_tx[0].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
7402                 } else {
7403                         assert_eq!(timeout_tx[0].lock_time.0, 0);
7404                 }
7405                 // We fail non-dust-HTLC 2 by broadcast of local timeout/revocation-claim tx
7406                 mine_transaction(&nodes[0], &timeout_tx[0]);
7407                 assert_eq!(nodes[0].node.get_and_clear_pending_events().len(), 0);
7408                 connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
7409                 expect_payment_failed!(nodes[0], non_dust_hash, false);
7410         }
7411 }
7412
7413 #[test]
7414 fn test_sweep_outbound_htlc_failure_update() {
7415         do_test_sweep_outbound_htlc_failure_update(false, true);
7416         do_test_sweep_outbound_htlc_failure_update(false, false);
7417         do_test_sweep_outbound_htlc_failure_update(true, false);
7418 }
7419
7420 #[test]
7421 fn test_user_configurable_csv_delay() {
7422         // We test our channel constructors yield errors when we pass them absurd csv delay
7423
7424         let mut low_our_to_self_config = UserConfig::default();
7425         low_our_to_self_config.channel_handshake_config.our_to_self_delay = 6;
7426         let mut high_their_to_self_config = UserConfig::default();
7427         high_their_to_self_config.channel_handshake_limits.their_to_self_delay = 100;
7428         let user_cfgs = [Some(high_their_to_self_config.clone()), None];
7429         let chanmon_cfgs = create_chanmon_cfgs(2);
7430         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7431         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &user_cfgs);
7432         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7433
7434         // We test config.our_to_self > BREAKDOWN_TIMEOUT is enforced in Channel::new_outbound()
7435         if let Err(error) = Channel::new_outbound(&LowerBoundedFeeEstimator::new(&test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) }),
7436                 &nodes[0].keys_manager, nodes[1].node.get_our_node_id(), &InitFeatures::known(), 1000000, 1000000, 0,
7437                 &low_our_to_self_config, 0, 42)
7438         {
7439                 match error {
7440                         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())); },
7441                         _ => panic!("Unexpected event"),
7442                 }
7443         } else { assert!(false) }
7444
7445         // We test config.our_to_self > BREAKDOWN_TIMEOUT is enforced in Channel::new_from_req()
7446         nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 1000000, 1000000, 42, None).unwrap();
7447         let mut open_channel = get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
7448         open_channel.to_self_delay = 200;
7449         if let Err(error) = Channel::new_from_req(&LowerBoundedFeeEstimator::new(&test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) }),
7450                 &nodes[0].keys_manager, nodes[1].node.get_our_node_id(), &InitFeatures::known(), &open_channel, 0,
7451                 &low_our_to_self_config, 0, &nodes[0].logger, 42)
7452         {
7453                 match error {
7454                         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()));  },
7455                         _ => panic!("Unexpected event"),
7456                 }
7457         } else { assert!(false); }
7458
7459         // We test msg.to_self_delay <= config.their_to_self_delay is enforced in Chanel::accept_channel()
7460         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1000000, 1000000, 42, None).unwrap();
7461         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()));
7462         let mut accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
7463         accept_channel.to_self_delay = 200;
7464         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel);
7465         let reason_msg;
7466         if let MessageSendEvent::HandleError { ref action, .. } = nodes[0].node.get_and_clear_pending_msg_events()[0] {
7467                 match action {
7468                         &ErrorAction::SendErrorMessage { ref msg } => {
7469                                 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()));
7470                                 reason_msg = msg.data.clone();
7471                         },
7472                         _ => { panic!(); }
7473                 }
7474         } else { panic!(); }
7475         check_closed_event!(nodes[0], 1, ClosureReason::ProcessingError { err: reason_msg });
7476
7477         // We test msg.to_self_delay <= config.their_to_self_delay is enforced in Channel::new_from_req()
7478         nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 1000000, 1000000, 42, None).unwrap();
7479         let mut open_channel = get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
7480         open_channel.to_self_delay = 200;
7481         if let Err(error) = Channel::new_from_req(&LowerBoundedFeeEstimator::new(&test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) }),
7482                 &nodes[0].keys_manager, nodes[1].node.get_our_node_id(), &InitFeatures::known(), &open_channel, 0,
7483                 &high_their_to_self_config, 0, &nodes[0].logger, 42)
7484         {
7485                 match error {
7486                         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())); },
7487                         _ => panic!("Unexpected event"),
7488                 }
7489         } else { assert!(false); }
7490 }
7491
7492 fn do_test_data_loss_protect(reconnect_panicing: bool) {
7493         // When we get a data_loss_protect proving we're behind, we immediately panic as the
7494         // chain::Watch API requirements have been violated (e.g. the user restored from a backup). The
7495         // panic message informs the user they should force-close without broadcasting, which is tested
7496         // if `reconnect_panicing` is not set.
7497         let persister;
7498         let logger;
7499         let fee_estimator;
7500         let tx_broadcaster;
7501         let chain_source;
7502         let mut chanmon_cfgs = create_chanmon_cfgs(2);
7503         // We broadcast during Drop because chanmon is out of sync with chanmgr, which would cause a panic
7504         // during signing due to revoked tx
7505         chanmon_cfgs[0].keys_manager.disable_revocation_policy_check = true;
7506         let keys_manager = &chanmon_cfgs[0].keys_manager;
7507         let monitor;
7508         let node_state_0;
7509         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7510         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7511         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7512
7513         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
7514
7515         // Cache node A state before any channel update
7516         let previous_node_state = nodes[0].node.encode();
7517         let mut previous_chain_monitor_state = test_utils::TestVecWriter(Vec::new());
7518         get_monitor!(nodes[0], chan.2).write(&mut previous_chain_monitor_state).unwrap();
7519
7520         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
7521         send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
7522
7523         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
7524         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
7525
7526         // Restore node A from previous state
7527         logger = test_utils::TestLogger::with_id(format!("node {}", 0));
7528         let mut chain_monitor = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(&mut io::Cursor::new(previous_chain_monitor_state.0), keys_manager).unwrap().1;
7529         chain_source = test_utils::TestChainSource::new(Network::Testnet);
7530         tx_broadcaster = test_utils::TestBroadcaster { txn_broadcasted: Mutex::new(Vec::new()), blocks: Arc::new(Mutex::new(Vec::new())) };
7531         fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
7532         persister = test_utils::TestPersister::new();
7533         monitor = test_utils::TestChainMonitor::new(Some(&chain_source), &tx_broadcaster, &logger, &fee_estimator, &persister, keys_manager);
7534         node_state_0 = {
7535                 let mut channel_monitors = HashMap::new();
7536                 channel_monitors.insert(OutPoint { txid: chan.3.txid(), index: 0 }, &mut chain_monitor);
7537                 <(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 {
7538                         keys_manager: keys_manager,
7539                         fee_estimator: &fee_estimator,
7540                         chain_monitor: &monitor,
7541                         logger: &logger,
7542                         tx_broadcaster: &tx_broadcaster,
7543                         default_config: UserConfig::default(),
7544                         channel_monitors,
7545                 }).unwrap().1
7546         };
7547         nodes[0].node = &node_state_0;
7548         assert!(monitor.watch_channel(OutPoint { txid: chan.3.txid(), index: 0 }, chain_monitor).is_ok());
7549         nodes[0].chain_monitor = &monitor;
7550         nodes[0].chain_source = &chain_source;
7551
7552         check_added_monitors!(nodes[0], 1);
7553
7554         if reconnect_panicing {
7555                 nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7556                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7557
7558                 let reestablish_1 = get_chan_reestablish_msgs!(nodes[0], nodes[1]);
7559
7560                 // Check we close channel detecting A is fallen-behind
7561                 // Check that we sent the warning message when we detected that A has fallen behind,
7562                 // and give the possibility for A to recover from the warning.
7563                 nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[0]);
7564                 let warn_msg = "Peer attempted to reestablish channel with a very old local commitment transaction".to_owned();
7565                 assert!(check_warn_msg!(nodes[1], nodes[0].node.get_our_node_id(), chan.2).contains(&warn_msg));
7566
7567                 {
7568                         let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
7569                         // The node B should not broadcast the transaction to force close the channel!
7570                         assert!(node_txn.is_empty());
7571                 }
7572
7573                 let reestablish_0 = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
7574                 // Check A panics upon seeing proof it has fallen behind.
7575                 nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_0[0]);
7576                 return; // By this point we should have panic'ed!
7577         }
7578
7579         nodes[0].node.force_close_without_broadcasting_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
7580         check_added_monitors!(nodes[0], 1);
7581         check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed);
7582         {
7583                 let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
7584                 assert_eq!(node_txn.len(), 0);
7585         }
7586
7587         for msg in nodes[0].node.get_and_clear_pending_msg_events() {
7588                 if let MessageSendEvent::BroadcastChannelUpdate { .. } = msg {
7589                 } else if let MessageSendEvent::HandleError { ref action, .. } = msg {
7590                         match action {
7591                                 &ErrorAction::SendErrorMessage { ref msg } => {
7592                                         assert_eq!(msg.data, "Channel force-closed");
7593                                 },
7594                                 _ => panic!("Unexpected event!"),
7595                         }
7596                 } else {
7597                         panic!("Unexpected event {:?}", msg)
7598                 }
7599         }
7600
7601         // after the warning message sent by B, we should not able to
7602         // use the channel, or reconnect with success to the channel.
7603         assert!(nodes[0].node.list_usable_channels().is_empty());
7604         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7605         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7606         let retry_reestablish = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
7607
7608         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &retry_reestablish[0]);
7609         let mut err_msgs_0 = Vec::with_capacity(1);
7610         for msg in nodes[0].node.get_and_clear_pending_msg_events() {
7611                 if let MessageSendEvent::HandleError { ref action, .. } = msg {
7612                         match action {
7613                                 &ErrorAction::SendErrorMessage { ref msg } => {
7614                                         assert_eq!(msg.data, "Failed to find corresponding channel");
7615                                         err_msgs_0.push(msg.clone());
7616                                 },
7617                                 _ => panic!("Unexpected event!"),
7618                         }
7619                 } else {
7620                         panic!("Unexpected event!");
7621                 }
7622         }
7623         assert_eq!(err_msgs_0.len(), 1);
7624         nodes[1].node.handle_error(&nodes[0].node.get_our_node_id(), &err_msgs_0[0]);
7625         assert!(nodes[1].node.list_usable_channels().is_empty());
7626         check_added_monitors!(nodes[1], 1);
7627         check_closed_event!(nodes[1], 1, ClosureReason::CounterpartyForceClosed { peer_msg: "Failed to find corresponding channel".to_owned() });
7628         check_closed_broadcast!(nodes[1], false);
7629 }
7630
7631 #[test]
7632 #[should_panic]
7633 fn test_data_loss_protect_showing_stale_state_panics() {
7634         do_test_data_loss_protect(true);
7635 }
7636
7637 #[test]
7638 fn test_force_close_without_broadcast() {
7639         do_test_data_loss_protect(false);
7640 }
7641
7642 #[test]
7643 fn test_check_htlc_underpaying() {
7644         // Send payment through A -> B but A is maliciously
7645         // sending a probe payment (i.e less than expected value0
7646         // to B, B should refuse payment.
7647
7648         let chanmon_cfgs = create_chanmon_cfgs(2);
7649         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7650         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7651         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7652
7653         // Create some initial channels
7654         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7655
7656         let scorer = test_utils::TestScorer::with_penalty(0);
7657         let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7658         let payment_params = PaymentParameters::from_node_id(nodes[1].node.get_our_node_id()).with_features(InvoiceFeatures::known());
7659         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();
7660         let (_, our_payment_hash, _) = get_payment_preimage_hash!(nodes[0]);
7661         let our_payment_secret = nodes[1].node.create_inbound_payment_for_hash(our_payment_hash, Some(100_000), 7200).unwrap();
7662         nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
7663         check_added_monitors!(nodes[0], 1);
7664
7665         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7666         assert_eq!(events.len(), 1);
7667         let mut payment_event = SendEvent::from_event(events.pop().unwrap());
7668         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7669         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7670
7671         // Note that we first have to wait a random delay before processing the receipt of the HTLC,
7672         // and then will wait a second random delay before failing the HTLC back:
7673         expect_pending_htlcs_forwardable!(nodes[1]);
7674         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
7675
7676         // Node 3 is expecting payment of 100_000 but received 10_000,
7677         // it should fail htlc like we didn't know the preimage.
7678         nodes[1].node.process_pending_htlc_forwards();
7679
7680         let events = nodes[1].node.get_and_clear_pending_msg_events();
7681         assert_eq!(events.len(), 1);
7682         let (update_fail_htlc, commitment_signed) = match events[0] {
7683                 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 } } => {
7684                         assert!(update_add_htlcs.is_empty());
7685                         assert!(update_fulfill_htlcs.is_empty());
7686                         assert_eq!(update_fail_htlcs.len(), 1);
7687                         assert!(update_fail_malformed_htlcs.is_empty());
7688                         assert!(update_fee.is_none());
7689                         (update_fail_htlcs[0].clone(), commitment_signed)
7690                 },
7691                 _ => panic!("Unexpected event"),
7692         };
7693         check_added_monitors!(nodes[1], 1);
7694
7695         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlc);
7696         commitment_signed_dance!(nodes[0], nodes[1], commitment_signed, false, true);
7697
7698         // 10_000 msat as u64, followed by a height of CHAN_CONFIRM_DEPTH as u32
7699         let mut expected_failure_data = byte_utils::be64_to_array(10_000).to_vec();
7700         expected_failure_data.extend_from_slice(&byte_utils::be32_to_array(CHAN_CONFIRM_DEPTH));
7701         expect_payment_failed!(nodes[0], our_payment_hash, true, 0x4000|15, &expected_failure_data[..]);
7702 }
7703
7704 #[test]
7705 fn test_announce_disable_channels() {
7706         // Create 2 channels between A and B. Disconnect B. Call timer_tick_occurred and check for generated
7707         // ChannelUpdate. Reconnect B, reestablish and check there is non-generated ChannelUpdate.
7708
7709         let chanmon_cfgs = create_chanmon_cfgs(2);
7710         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7711         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7712         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7713
7714         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7715         create_announced_chan_between_nodes(&nodes, 1, 0, InitFeatures::known(), InitFeatures::known());
7716         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
7717
7718         // Disconnect peers
7719         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
7720         nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id(), false);
7721
7722         nodes[0].node.timer_tick_occurred(); // Enabled -> DisabledStaged
7723         nodes[0].node.timer_tick_occurred(); // DisabledStaged -> Disabled
7724         let msg_events = nodes[0].node.get_and_clear_pending_msg_events();
7725         assert_eq!(msg_events.len(), 3);
7726         let mut chans_disabled = HashMap::new();
7727         for e in msg_events {
7728                 match e {
7729                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
7730                                 assert_eq!(msg.contents.flags & (1<<1), 1<<1); // The "channel disabled" bit should be set
7731                                 // Check that each channel gets updated exactly once
7732                                 if chans_disabled.insert(msg.contents.short_channel_id, msg.contents.timestamp).is_some() {
7733                                         panic!("Generated ChannelUpdate for wrong chan!");
7734                                 }
7735                         },
7736                         _ => panic!("Unexpected event"),
7737                 }
7738         }
7739         // Reconnect peers
7740         nodes[0].node.peer_connected(&nodes[1].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7741         let reestablish_1 = get_chan_reestablish_msgs!(nodes[0], nodes[1]);
7742         assert_eq!(reestablish_1.len(), 3);
7743         nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
7744         let reestablish_2 = get_chan_reestablish_msgs!(nodes[1], nodes[0]);
7745         assert_eq!(reestablish_2.len(), 3);
7746
7747         // Reestablish chan_1
7748         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[0]);
7749         handle_chan_reestablish_msgs!(nodes[0], nodes[1]);
7750         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[0]);
7751         handle_chan_reestablish_msgs!(nodes[1], nodes[0]);
7752         // Reestablish chan_2
7753         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[1]);
7754         handle_chan_reestablish_msgs!(nodes[0], nodes[1]);
7755         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[1]);
7756         handle_chan_reestablish_msgs!(nodes[1], nodes[0]);
7757         // Reestablish chan_3
7758         nodes[0].node.handle_channel_reestablish(&nodes[1].node.get_our_node_id(), &reestablish_2[2]);
7759         handle_chan_reestablish_msgs!(nodes[0], nodes[1]);
7760         nodes[1].node.handle_channel_reestablish(&nodes[0].node.get_our_node_id(), &reestablish_1[2]);
7761         handle_chan_reestablish_msgs!(nodes[1], nodes[0]);
7762
7763         nodes[0].node.timer_tick_occurred();
7764         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
7765         nodes[0].node.timer_tick_occurred();
7766         let msg_events = nodes[0].node.get_and_clear_pending_msg_events();
7767         assert_eq!(msg_events.len(), 3);
7768         for e in msg_events {
7769                 match e {
7770                         MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
7771                                 assert_eq!(msg.contents.flags & (1<<1), 0); // The "channel disabled" bit should be off
7772                                 match chans_disabled.remove(&msg.contents.short_channel_id) {
7773                                         // Each update should have a higher timestamp than the previous one, replacing
7774                                         // the old one.
7775                                         Some(prev_timestamp) => assert!(msg.contents.timestamp > prev_timestamp),
7776                                         None => panic!("Generated ChannelUpdate for wrong chan!"),
7777                                 }
7778                         },
7779                         _ => panic!("Unexpected event"),
7780                 }
7781         }
7782         // Check that each channel gets updated exactly once
7783         assert!(chans_disabled.is_empty());
7784 }
7785
7786 #[test]
7787 fn test_bump_penalty_txn_on_revoked_commitment() {
7788         // In case of penalty txn with too low feerates for getting into mempools, RBF-bump them to be sure
7789         // we're able to claim outputs on revoked commitment transaction before timelocks expiration
7790
7791         let chanmon_cfgs = create_chanmon_cfgs(2);
7792         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7793         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7794         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7795
7796         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
7797
7798         let payment_preimage = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
7799         let payment_params = PaymentParameters::from_node_id(nodes[0].node.get_our_node_id())
7800                 .with_features(InvoiceFeatures::known());
7801         let (route,_, _, _) = get_route_and_payment_hash!(nodes[1], nodes[0], payment_params, 3000000, 30);
7802         send_along_route(&nodes[1], route, &vec!(&nodes[0])[..], 3000000);
7803
7804         let revoked_txn = get_local_commitment_txn!(nodes[0], chan.2);
7805         // Revoked commitment txn with 4 outputs : to_local, to_remote, 1 outgoing HTLC, 1 incoming HTLC
7806         assert_eq!(revoked_txn[0].output.len(), 4);
7807         assert_eq!(revoked_txn[0].input.len(), 1);
7808         assert_eq!(revoked_txn[0].input[0].previous_output.txid, chan.3.txid());
7809         let revoked_txid = revoked_txn[0].txid();
7810
7811         let mut penalty_sum = 0;
7812         for outp in revoked_txn[0].output.iter() {
7813                 if outp.script_pubkey.is_v0_p2wsh() {
7814                         penalty_sum += outp.value;
7815                 }
7816         }
7817
7818         // Connect blocks to change height_timer range to see if we use right soonest_timelock
7819         let header_114 = connect_blocks(&nodes[1], 14);
7820
7821         // Actually revoke tx by claiming a HTLC
7822         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage);
7823         let header = BlockHeader { version: 0x20000000, prev_blockhash: header_114, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7824         connect_block(&nodes[1], &Block { header, txdata: vec![revoked_txn[0].clone()] });
7825         check_added_monitors!(nodes[1], 1);
7826
7827         // One or more justice tx should have been broadcast, check it
7828         let penalty_1;
7829         let feerate_1;
7830         {
7831                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
7832                 assert_eq!(node_txn.len(), 2); // justice tx (broadcasted from ChannelMonitor) + local commitment tx
7833                 assert_eq!(node_txn[0].input.len(), 3); // Penalty txn claims to_local, offered_htlc and received_htlc outputs
7834                 assert_eq!(node_txn[0].output.len(), 1);
7835                 check_spends!(node_txn[0], revoked_txn[0]);
7836                 let fee_1 = penalty_sum - node_txn[0].output[0].value;
7837                 feerate_1 = fee_1 * 1000 / node_txn[0].weight() as u64;
7838                 penalty_1 = node_txn[0].txid();
7839                 node_txn.clear();
7840         };
7841
7842         // After exhaustion of height timer, a new bumped justice tx should have been broadcast, check it
7843         connect_blocks(&nodes[1], 15);
7844         let mut penalty_2 = penalty_1;
7845         let mut feerate_2 = 0;
7846         {
7847                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
7848                 assert_eq!(node_txn.len(), 1);
7849                 if node_txn[0].input[0].previous_output.txid == revoked_txid {
7850                         assert_eq!(node_txn[0].input.len(), 3); // Penalty txn claims to_local, offered_htlc and received_htlc outputs
7851                         assert_eq!(node_txn[0].output.len(), 1);
7852                         check_spends!(node_txn[0], revoked_txn[0]);
7853                         penalty_2 = node_txn[0].txid();
7854                         // Verify new bumped tx is different from last claiming transaction, we don't want spurrious rebroadcast
7855                         assert_ne!(penalty_2, penalty_1);
7856                         let fee_2 = penalty_sum - node_txn[0].output[0].value;
7857                         feerate_2 = fee_2 * 1000 / node_txn[0].weight() as u64;
7858                         // Verify 25% bump heuristic
7859                         assert!(feerate_2 * 100 >= feerate_1 * 125);
7860                         node_txn.clear();
7861                 }
7862         }
7863         assert_ne!(feerate_2, 0);
7864
7865         // After exhaustion of height timer for a 2nd time, a new bumped justice tx should have been broadcast, check it
7866         connect_blocks(&nodes[1], 1);
7867         let penalty_3;
7868         let mut feerate_3 = 0;
7869         {
7870                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
7871                 assert_eq!(node_txn.len(), 1);
7872                 if node_txn[0].input[0].previous_output.txid == revoked_txid {
7873                         assert_eq!(node_txn[0].input.len(), 3); // Penalty txn claims to_local, offered_htlc and received_htlc outputs
7874                         assert_eq!(node_txn[0].output.len(), 1);
7875                         check_spends!(node_txn[0], revoked_txn[0]);
7876                         penalty_3 = node_txn[0].txid();
7877                         // Verify new bumped tx is different from last claiming transaction, we don't want spurrious rebroadcast
7878                         assert_ne!(penalty_3, penalty_2);
7879                         let fee_3 = penalty_sum - node_txn[0].output[0].value;
7880                         feerate_3 = fee_3 * 1000 / node_txn[0].weight() as u64;
7881                         // Verify 25% bump heuristic
7882                         assert!(feerate_3 * 100 >= feerate_2 * 125);
7883                         node_txn.clear();
7884                 }
7885         }
7886         assert_ne!(feerate_3, 0);
7887
7888         nodes[1].node.get_and_clear_pending_events();
7889         nodes[1].node.get_and_clear_pending_msg_events();
7890 }
7891
7892 #[test]
7893 fn test_bump_penalty_txn_on_revoked_htlcs() {
7894         // In case of penalty txn with too low feerates for getting into mempools, RBF-bump them to sure
7895         // we're able to claim outputs on revoked HTLC transactions before timelocks expiration
7896
7897         let mut chanmon_cfgs = create_chanmon_cfgs(2);
7898         chanmon_cfgs[1].keys_manager.disable_revocation_policy_check = true;
7899         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7900         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7901         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7902
7903         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
7904         // Lock HTLC in both directions (using a slightly lower CLTV delay to provide timely RBF bumps)
7905         let payment_params = PaymentParameters::from_node_id(nodes[1].node.get_our_node_id()).with_features(InvoiceFeatures::known());
7906         let scorer = test_utils::TestScorer::with_penalty(0);
7907         let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7908         let route = get_route(&nodes[0].node.get_our_node_id(), &payment_params, &nodes[0].network_graph.read_only(), None,
7909                 3_000_000, 50, nodes[0].logger, &scorer, &random_seed_bytes).unwrap();
7910         let payment_preimage = send_along_route(&nodes[0], route, &[&nodes[1]], 3_000_000).0;
7911         let payment_params = PaymentParameters::from_node_id(nodes[0].node.get_our_node_id()).with_features(InvoiceFeatures::known());
7912         let route = get_route(&nodes[1].node.get_our_node_id(), &payment_params, &nodes[1].network_graph.read_only(), None,
7913                 3_000_000, 50, nodes[0].logger, &scorer, &random_seed_bytes).unwrap();
7914         send_along_route(&nodes[1], route, &[&nodes[0]], 3_000_000);
7915
7916         let revoked_local_txn = get_local_commitment_txn!(nodes[1], chan.2);
7917         assert_eq!(revoked_local_txn[0].input.len(), 1);
7918         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan.3.txid());
7919
7920         // Revoke local commitment tx
7921         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage);
7922
7923         let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7924         // B will generate both revoked HTLC-timeout/HTLC-preimage txn from revoked commitment tx
7925         connect_block(&nodes[1], &Block { header, txdata: vec![revoked_local_txn[0].clone()] });
7926         check_closed_broadcast!(nodes[1], true);
7927         check_added_monitors!(nodes[1], 1);
7928         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
7929         connect_blocks(&nodes[1], 49); // Confirm blocks until the HTLC expires (note CLTV was explicitly 50 above)
7930
7931         let revoked_htlc_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
7932         assert_eq!(revoked_htlc_txn.len(), 3);
7933         check_spends!(revoked_htlc_txn[1], chan.3);
7934
7935         assert_eq!(revoked_htlc_txn[0].input[0].witness.last().unwrap().len(), ACCEPTED_HTLC_SCRIPT_WEIGHT);
7936         assert_eq!(revoked_htlc_txn[0].input.len(), 1);
7937         check_spends!(revoked_htlc_txn[0], revoked_local_txn[0]);
7938
7939         assert_eq!(revoked_htlc_txn[2].input.len(), 1);
7940         assert_eq!(revoked_htlc_txn[2].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
7941         assert_eq!(revoked_htlc_txn[2].output.len(), 1);
7942         check_spends!(revoked_htlc_txn[2], revoked_local_txn[0]);
7943
7944         // Broadcast set of revoked txn on A
7945         let hash_128 = connect_blocks(&nodes[0], 40);
7946         let header_11 = BlockHeader { version: 0x20000000, prev_blockhash: hash_128, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7947         connect_block(&nodes[0], &Block { header: header_11, txdata: vec![revoked_local_txn[0].clone()] });
7948         let header_129 = BlockHeader { version: 0x20000000, prev_blockhash: header_11.block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
7949         connect_block(&nodes[0], &Block { header: header_129, txdata: vec![revoked_htlc_txn[0].clone(), revoked_htlc_txn[2].clone()] });
7950         let events = nodes[0].node.get_and_clear_pending_events();
7951         expect_pending_htlcs_forwardable_from_events!(nodes[0], events[0..1], true);
7952         match events.last().unwrap() {
7953                 Event::ChannelClosed { reason: ClosureReason::CommitmentTxConfirmed, .. } => {}
7954                 _ => panic!("Unexpected event"),
7955         }
7956         let first;
7957         let feerate_1;
7958         let penalty_txn;
7959         {
7960                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
7961                 assert_eq!(node_txn.len(), 5); // 3 penalty txn on revoked commitment tx + A commitment tx + 1 penalty tnx on revoked HTLC txn
7962                 // Verify claim tx are spending revoked HTLC txn
7963
7964                 // node_txn 0-2 each spend a separate revoked output from revoked_local_txn[0]
7965                 // Note that node_txn[0] and node_txn[1] are bogus - they double spend the revoked_htlc_txn
7966                 // which are included in the same block (they are broadcasted because we scan the
7967                 // transactions linearly and generate claims as we go, they likely should be removed in the
7968                 // future).
7969                 assert_eq!(node_txn[0].input.len(), 1);
7970                 check_spends!(node_txn[0], revoked_local_txn[0]);
7971                 assert_eq!(node_txn[1].input.len(), 1);
7972                 check_spends!(node_txn[1], revoked_local_txn[0]);
7973                 assert_eq!(node_txn[2].input.len(), 1);
7974                 check_spends!(node_txn[2], revoked_local_txn[0]);
7975
7976                 // Each of the three justice transactions claim a separate (single) output of the three
7977                 // available, which we check here:
7978                 assert_ne!(node_txn[0].input[0].previous_output, node_txn[1].input[0].previous_output);
7979                 assert_ne!(node_txn[0].input[0].previous_output, node_txn[2].input[0].previous_output);
7980                 assert_ne!(node_txn[1].input[0].previous_output, node_txn[2].input[0].previous_output);
7981
7982                 assert_eq!(node_txn[0].input[0].previous_output, revoked_htlc_txn[0].input[0].previous_output);
7983                 assert_eq!(node_txn[1].input[0].previous_output, revoked_htlc_txn[2].input[0].previous_output);
7984
7985                 // node_txn[3] is the local commitment tx broadcast just because (and somewhat in case of
7986                 // reorgs, though its not clear its ever worth broadcasting conflicting txn like this when
7987                 // a remote commitment tx has already been confirmed).
7988                 check_spends!(node_txn[3], chan.3);
7989
7990                 // node_txn[4] spends the revoked outputs from the revoked_htlc_txn (which only have one
7991                 // output, checked above).
7992                 assert_eq!(node_txn[4].input.len(), 2);
7993                 assert_eq!(node_txn[4].output.len(), 1);
7994                 check_spends!(node_txn[4], revoked_htlc_txn[0], revoked_htlc_txn[2]);
7995
7996                 first = node_txn[4].txid();
7997                 // Store both feerates for later comparison
7998                 let fee_1 = revoked_htlc_txn[0].output[0].value + revoked_htlc_txn[2].output[0].value - node_txn[4].output[0].value;
7999                 feerate_1 = fee_1 * 1000 / node_txn[4].weight() as u64;
8000                 penalty_txn = vec![node_txn[2].clone()];
8001                 node_txn.clear();
8002         }
8003
8004         // Connect one more block to see if bumped penalty are issued for HTLC txn
8005         let header_130 = BlockHeader { version: 0x20000000, prev_blockhash: header_129.block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8006         connect_block(&nodes[0], &Block { header: header_130, txdata: penalty_txn });
8007         let header_131 = BlockHeader { version: 0x20000000, prev_blockhash: header_130.block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8008         connect_block(&nodes[0], &Block { header: header_131, txdata: Vec::new() });
8009         {
8010                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8011                 assert_eq!(node_txn.len(), 2); // 2 bumped penalty txn on revoked commitment tx
8012
8013                 check_spends!(node_txn[0], revoked_local_txn[0]);
8014                 check_spends!(node_txn[1], revoked_local_txn[0]);
8015                 // Note that these are both bogus - they spend outputs already claimed in block 129:
8016                 if node_txn[0].input[0].previous_output == revoked_htlc_txn[0].input[0].previous_output  {
8017                         assert_eq!(node_txn[1].input[0].previous_output, revoked_htlc_txn[2].input[0].previous_output);
8018                 } else {
8019                         assert_eq!(node_txn[0].input[0].previous_output, revoked_htlc_txn[2].input[0].previous_output);
8020                         assert_eq!(node_txn[1].input[0].previous_output, revoked_htlc_txn[0].input[0].previous_output);
8021                 }
8022
8023                 node_txn.clear();
8024         };
8025
8026         // Few more blocks to confirm penalty txn
8027         connect_blocks(&nodes[0], 4);
8028         assert!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().is_empty());
8029         let header_144 = connect_blocks(&nodes[0], 9);
8030         let node_txn = {
8031                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8032                 assert_eq!(node_txn.len(), 1);
8033
8034                 assert_eq!(node_txn[0].input.len(), 2);
8035                 check_spends!(node_txn[0], revoked_htlc_txn[0], revoked_htlc_txn[2]);
8036                 // Verify bumped tx is different and 25% bump heuristic
8037                 assert_ne!(first, node_txn[0].txid());
8038                 let fee_2 = revoked_htlc_txn[0].output[0].value + revoked_htlc_txn[2].output[0].value - node_txn[0].output[0].value;
8039                 let feerate_2 = fee_2 * 1000 / node_txn[0].weight() as u64;
8040                 assert!(feerate_2 * 100 > feerate_1 * 125);
8041                 let txn = vec![node_txn[0].clone()];
8042                 node_txn.clear();
8043                 txn
8044         };
8045         // Broadcast claim txn and confirm blocks to avoid further bumps on this outputs
8046         let header_145 = BlockHeader { version: 0x20000000, prev_blockhash: header_144, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8047         connect_block(&nodes[0], &Block { header: header_145, txdata: node_txn });
8048         connect_blocks(&nodes[0], 20);
8049         {
8050                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8051                 // We verify than no new transaction has been broadcast because previously
8052                 // we were buggy on this exact behavior by not tracking for monitoring remote HTLC outputs (see #411)
8053                 // which means we wouldn't see a spend of them by a justice tx and bumped justice tx
8054                 // were generated forever instead of safe cleaning after confirmation and ANTI_REORG_SAFE_DELAY blocks.
8055                 // Enforce spending of revoked htlc output by claiming transaction remove request as expected and dry
8056                 // up bumped justice generation.
8057                 assert_eq!(node_txn.len(), 0);
8058                 node_txn.clear();
8059         }
8060         check_closed_broadcast!(nodes[0], true);
8061         check_added_monitors!(nodes[0], 1);
8062 }
8063
8064 #[test]
8065 fn test_bump_penalty_txn_on_remote_commitment() {
8066         // In case of claim txn with too low feerates for getting into mempools, RBF-bump them to be sure
8067         // we're able to claim outputs on remote commitment transaction before timelocks expiration
8068
8069         // Create 2 HTLCs
8070         // Provide preimage for one
8071         // Check aggregation
8072
8073         let chanmon_cfgs = create_chanmon_cfgs(2);
8074         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8075         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8076         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8077
8078         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
8079         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 3_000_000);
8080         route_payment(&nodes[1], &vec!(&nodes[0])[..], 3000000).0;
8081
8082         // Remote commitment txn with 4 outputs : to_local, to_remote, 1 outgoing HTLC, 1 incoming HTLC
8083         let remote_txn = get_local_commitment_txn!(nodes[0], chan.2);
8084         assert_eq!(remote_txn[0].output.len(), 4);
8085         assert_eq!(remote_txn[0].input.len(), 1);
8086         assert_eq!(remote_txn[0].input[0].previous_output.txid, chan.3.txid());
8087
8088         // Claim a HTLC without revocation (provide B monitor with preimage)
8089         nodes[1].node.claim_funds(payment_preimage);
8090         expect_payment_claimed!(nodes[1], payment_hash, 3_000_000);
8091         mine_transaction(&nodes[1], &remote_txn[0]);
8092         check_added_monitors!(nodes[1], 2);
8093         connect_blocks(&nodes[1], TEST_FINAL_CLTV - 1); // Confirm blocks until the HTLC expires
8094
8095         // One or more claim tx should have been broadcast, check it
8096         let timeout;
8097         let preimage;
8098         let preimage_bump;
8099         let feerate_timeout;
8100         let feerate_preimage;
8101         {
8102                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
8103                 // 9 transactions including:
8104                 // 1*2 ChannelManager local broadcasts of commitment + HTLC-Success
8105                 // 1*3 ChannelManager local broadcasts of commitment + HTLC-Success + HTLC-Timeout
8106                 // 2 * HTLC-Success (one RBF bump we'll check later)
8107                 // 1 * HTLC-Timeout
8108                 assert_eq!(node_txn.len(), 8);
8109                 assert_eq!(node_txn[0].input.len(), 1);
8110                 assert_eq!(node_txn[6].input.len(), 1);
8111                 check_spends!(node_txn[0], remote_txn[0]);
8112                 check_spends!(node_txn[6], remote_txn[0]);
8113
8114                 check_spends!(node_txn[1], chan.3);
8115                 check_spends!(node_txn[2], node_txn[1]);
8116
8117                 if node_txn[0].input[0].previous_output == node_txn[3].input[0].previous_output {
8118                         preimage_bump = node_txn[3].clone();
8119                         check_spends!(node_txn[3], remote_txn[0]);
8120
8121                         assert_eq!(node_txn[1], node_txn[4]);
8122                         assert_eq!(node_txn[2], node_txn[5]);
8123                 } else {
8124                         preimage_bump = node_txn[7].clone();
8125                         check_spends!(node_txn[7], remote_txn[0]);
8126                         assert_eq!(node_txn[0].input[0].previous_output, node_txn[7].input[0].previous_output);
8127
8128                         assert_eq!(node_txn[1], node_txn[3]);
8129                         assert_eq!(node_txn[2], node_txn[4]);
8130                 }
8131
8132                 timeout = node_txn[6].txid();
8133                 let index = node_txn[6].input[0].previous_output.vout;
8134                 let fee = remote_txn[0].output[index as usize].value - node_txn[6].output[0].value;
8135                 feerate_timeout = fee * 1000 / node_txn[6].weight() as u64;
8136
8137                 preimage = node_txn[0].txid();
8138                 let index = node_txn[0].input[0].previous_output.vout;
8139                 let fee = remote_txn[0].output[index as usize].value - node_txn[0].output[0].value;
8140                 feerate_preimage = fee * 1000 / node_txn[0].weight() as u64;
8141
8142                 node_txn.clear();
8143         };
8144         assert_ne!(feerate_timeout, 0);
8145         assert_ne!(feerate_preimage, 0);
8146
8147         // After exhaustion of height timer, new bumped claim txn should have been broadcast, check it
8148         connect_blocks(&nodes[1], 15);
8149         {
8150                 let mut node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
8151                 assert_eq!(node_txn.len(), 1);
8152                 assert_eq!(node_txn[0].input.len(), 1);
8153                 assert_eq!(preimage_bump.input.len(), 1);
8154                 check_spends!(node_txn[0], remote_txn[0]);
8155                 check_spends!(preimage_bump, remote_txn[0]);
8156
8157                 let index = preimage_bump.input[0].previous_output.vout;
8158                 let fee = remote_txn[0].output[index as usize].value - preimage_bump.output[0].value;
8159                 let new_feerate = fee * 1000 / preimage_bump.weight() as u64;
8160                 assert!(new_feerate * 100 > feerate_timeout * 125);
8161                 assert_ne!(timeout, preimage_bump.txid());
8162
8163                 let index = node_txn[0].input[0].previous_output.vout;
8164                 let fee = remote_txn[0].output[index as usize].value - node_txn[0].output[0].value;
8165                 let new_feerate = fee * 1000 / node_txn[0].weight() as u64;
8166                 assert!(new_feerate * 100 > feerate_preimage * 125);
8167                 assert_ne!(preimage, node_txn[0].txid());
8168
8169                 node_txn.clear();
8170         }
8171
8172         nodes[1].node.get_and_clear_pending_events();
8173         nodes[1].node.get_and_clear_pending_msg_events();
8174 }
8175
8176 #[test]
8177 fn test_counterparty_raa_skip_no_crash() {
8178         // Previously, if our counterparty sent two RAAs in a row without us having provided a
8179         // commitment transaction, we would have happily carried on and provided them the next
8180         // commitment transaction based on one RAA forward. This would probably eventually have led to
8181         // channel closure, but it would not have resulted in funds loss. Still, our
8182         // EnforcingSigner would have panicked as it doesn't like jumps into the future. Here, we
8183         // check simply that the channel is closed in response to such an RAA, but don't check whether
8184         // we decide to punish our counterparty for revoking their funds (as we don't currently
8185         // implement that).
8186         let chanmon_cfgs = create_chanmon_cfgs(2);
8187         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8188         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8189         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8190         let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
8191
8192         let per_commitment_secret;
8193         let next_per_commitment_point;
8194         {
8195                 let mut guard = nodes[0].node.channel_state.lock().unwrap();
8196                 let keys = guard.by_id.get_mut(&channel_id).unwrap().get_signer();
8197
8198                 const INITIAL_COMMITMENT_NUMBER: u64 = (1 << 48) - 1;
8199
8200                 // Make signer believe we got a counterparty signature, so that it allows the revocation
8201                 keys.get_enforcement_state().last_holder_commitment -= 1;
8202                 per_commitment_secret = keys.release_commitment_secret(INITIAL_COMMITMENT_NUMBER);
8203
8204                 // Must revoke without gaps
8205                 keys.get_enforcement_state().last_holder_commitment -= 1;
8206                 keys.release_commitment_secret(INITIAL_COMMITMENT_NUMBER - 1);
8207
8208                 keys.get_enforcement_state().last_holder_commitment -= 1;
8209                 next_per_commitment_point = PublicKey::from_secret_key(&Secp256k1::new(),
8210                         &SecretKey::from_slice(&keys.release_commitment_secret(INITIAL_COMMITMENT_NUMBER - 2)).unwrap());
8211         }
8212
8213         nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(),
8214                 &msgs::RevokeAndACK { channel_id, per_commitment_secret, next_per_commitment_point });
8215         assert_eq!(check_closed_broadcast!(nodes[1], true).unwrap().data, "Received an unexpected revoke_and_ack");
8216         check_added_monitors!(nodes[1], 1);
8217         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: "Received an unexpected revoke_and_ack".to_string() });
8218 }
8219
8220 #[test]
8221 fn test_bump_txn_sanitize_tracking_maps() {
8222         // Sanitizing pendning_claim_request and claimable_outpoints used to be buggy,
8223         // verify we clean then right after expiration of ANTI_REORG_DELAY.
8224
8225         let chanmon_cfgs = create_chanmon_cfgs(2);
8226         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8227         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8228         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8229
8230         let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
8231         // Lock HTLC in both directions
8232         let (payment_preimage_1, _, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 9_000_000);
8233         let (_, payment_hash_2, _) = route_payment(&nodes[1], &vec!(&nodes[0])[..], 9_000_000);
8234
8235         let revoked_local_txn = get_local_commitment_txn!(nodes[1], chan.2);
8236         assert_eq!(revoked_local_txn[0].input.len(), 1);
8237         assert_eq!(revoked_local_txn[0].input[0].previous_output.txid, chan.3.txid());
8238
8239         // Revoke local commitment tx
8240         claim_payment(&nodes[0], &vec!(&nodes[1])[..], payment_preimage_1);
8241
8242         // Broadcast set of revoked txn on A
8243         connect_blocks(&nodes[0], TEST_FINAL_CLTV + 2 - CHAN_CONFIRM_DEPTH);
8244         expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore!(nodes[0], vec![HTLCDestination::FailedPayment { payment_hash: payment_hash_2 }]);
8245         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 0);
8246
8247         mine_transaction(&nodes[0], &revoked_local_txn[0]);
8248         check_closed_broadcast!(nodes[0], true);
8249         check_added_monitors!(nodes[0], 1);
8250         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
8251         let penalty_txn = {
8252                 let mut node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8253                 assert_eq!(node_txn.len(), 4); //ChannelMonitor: justice txn * 3, ChannelManager: local commitment tx
8254                 check_spends!(node_txn[0], revoked_local_txn[0]);
8255                 check_spends!(node_txn[1], revoked_local_txn[0]);
8256                 check_spends!(node_txn[2], revoked_local_txn[0]);
8257                 let penalty_txn = vec![node_txn[0].clone(), node_txn[1].clone(), node_txn[2].clone()];
8258                 node_txn.clear();
8259                 penalty_txn
8260         };
8261         let header_130 = BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8262         connect_block(&nodes[0], &Block { header: header_130, txdata: penalty_txn });
8263         connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
8264         {
8265                 let monitor = nodes[0].chain_monitor.chain_monitor.get_monitor(OutPoint { txid: chan.3.txid(), index: 0 }).unwrap();
8266                 assert!(monitor.inner.lock().unwrap().onchain_tx_handler.pending_claim_requests.is_empty());
8267                 assert!(monitor.inner.lock().unwrap().onchain_tx_handler.claimable_outpoints.is_empty());
8268         }
8269 }
8270
8271 #[test]
8272 fn test_pending_claimed_htlc_no_balance_underflow() {
8273         // Tests that if we have a pending outbound HTLC as well as a claimed-but-not-fully-removed
8274         // HTLC we will not underflow when we call `Channel::get_balance_msat()`.
8275         let chanmon_cfgs = create_chanmon_cfgs(2);
8276         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8277         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8278         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8279         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
8280
8281         let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 1_010_000);
8282         nodes[1].node.claim_funds(payment_preimage);
8283         expect_payment_claimed!(nodes[1], payment_hash, 1_010_000);
8284         check_added_monitors!(nodes[1], 1);
8285         let fulfill_ev = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8286
8287         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &fulfill_ev.update_fulfill_htlcs[0]);
8288         expect_payment_sent_without_paths!(nodes[0], payment_preimage);
8289         nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &fulfill_ev.commitment_signed);
8290         check_added_monitors!(nodes[0], 1);
8291         let (_raa, _cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8292
8293         // At this point nodes[1] has received 1,010k msat (10k msat more than their reserve) and can
8294         // send an HTLC back (though it will go in the holding cell). Send an HTLC back and check we
8295         // can get our balance.
8296
8297         // Get a route from nodes[1] to nodes[0] by getting a route going the other way and then flip
8298         // the public key of the only hop. This works around ChannelDetails not showing the
8299         // almost-claimed HTLC as available balance.
8300         let (mut route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 10_000);
8301         route.payment_params = None; // This is all wrong, but unnecessary
8302         route.paths[0][0].pubkey = nodes[0].node.get_our_node_id();
8303         let (_, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[0]);
8304         nodes[1].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
8305
8306         assert_eq!(nodes[1].node.list_channels()[0].balance_msat, 1_000_000);
8307 }
8308
8309 #[test]
8310 fn test_channel_conf_timeout() {
8311         // Tests that, for inbound channels, we give up on them if the funding transaction does not
8312         // confirm within 2016 blocks, as recommended by BOLT 2.
8313         let chanmon_cfgs = create_chanmon_cfgs(2);
8314         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8315         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8316         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8317
8318         let _funding_tx = create_chan_between_nodes_with_value_init(&nodes[0], &nodes[1], 1_000_000, 100_000, InitFeatures::known(), InitFeatures::known());
8319
8320         // The outbound node should wait forever for confirmation:
8321         // This matches `channel::FUNDING_CONF_DEADLINE_BLOCKS` and BOLT 2's suggested timeout, thus is
8322         // copied here instead of directly referencing the constant.
8323         connect_blocks(&nodes[0], 2016);
8324         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
8325
8326         // The inbound node should fail the channel after exactly 2016 blocks
8327         connect_blocks(&nodes[1], 2015);
8328         check_added_monitors!(nodes[1], 0);
8329         assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
8330
8331         connect_blocks(&nodes[1], 1);
8332         check_added_monitors!(nodes[1], 1);
8333         check_closed_event!(nodes[1], 1, ClosureReason::FundingTimedOut);
8334         let close_ev = nodes[1].node.get_and_clear_pending_msg_events();
8335         assert_eq!(close_ev.len(), 1);
8336         match close_ev[0] {
8337                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, ref node_id } => {
8338                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8339                         assert_eq!(msg.data, "Channel closed because funding transaction failed to confirm within 2016 blocks");
8340                 },
8341                 _ => panic!("Unexpected event"),
8342         }
8343 }
8344
8345 #[test]
8346 fn test_override_channel_config() {
8347         let chanmon_cfgs = create_chanmon_cfgs(2);
8348         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8349         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8350         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8351
8352         // Node0 initiates a channel to node1 using the override config.
8353         let mut override_config = UserConfig::default();
8354         override_config.channel_handshake_config.our_to_self_delay = 200;
8355
8356         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 16_000_000, 12_000_000, 42, Some(override_config)).unwrap();
8357
8358         // Assert the channel created by node0 is using the override config.
8359         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8360         assert_eq!(res.channel_flags, 0);
8361         assert_eq!(res.to_self_delay, 200);
8362 }
8363
8364 #[test]
8365 fn test_override_0msat_htlc_minimum() {
8366         let mut zero_config = UserConfig::default();
8367         zero_config.channel_handshake_config.our_htlc_minimum_msat = 0;
8368         let chanmon_cfgs = create_chanmon_cfgs(2);
8369         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8370         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(zero_config.clone())]);
8371         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8372
8373         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 16_000_000, 12_000_000, 42, Some(zero_config)).unwrap();
8374         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8375         assert_eq!(res.htlc_minimum_msat, 1);
8376
8377         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8378         let res = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
8379         assert_eq!(res.htlc_minimum_msat, 1);
8380 }
8381
8382 #[test]
8383 fn test_channel_update_has_correct_htlc_maximum_msat() {
8384         // Tests that the `ChannelUpdate` message has the correct values for `htlc_maximum_msat` set.
8385         // Bolt 7 specifies that if present `htlc_maximum_msat`:
8386         // 1. MUST be set to less than or equal to the channel capacity. In LDK, this is capped to
8387         // 90% of the `channel_value`.
8388         // 2. MUST be set to less than or equal to the `max_htlc_value_in_flight_msat` received from the peer.
8389
8390         let mut config_30_percent = UserConfig::default();
8391         config_30_percent.channel_handshake_config.announced_channel = true;
8392         config_30_percent.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 30;
8393         let mut config_50_percent = UserConfig::default();
8394         config_50_percent.channel_handshake_config.announced_channel = true;
8395         config_50_percent.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 50;
8396         let mut config_95_percent = UserConfig::default();
8397         config_95_percent.channel_handshake_config.announced_channel = true;
8398         config_95_percent.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 95;
8399         let mut config_100_percent = UserConfig::default();
8400         config_100_percent.channel_handshake_config.announced_channel = true;
8401         config_100_percent.channel_handshake_config.max_inbound_htlc_value_in_flight_percent_of_channel = 100;
8402
8403         let chanmon_cfgs = create_chanmon_cfgs(4);
8404         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
8405         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)]);
8406         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
8407
8408         let channel_value_satoshis = 100000;
8409         let channel_value_msat = channel_value_satoshis * 1000;
8410         let channel_value_30_percent_msat = (channel_value_msat as f64 * 0.3) as u64;
8411         let channel_value_50_percent_msat = (channel_value_msat as f64 * 0.5) as u64;
8412         let channel_value_90_percent_msat = (channel_value_msat as f64 * 0.9) as u64;
8413
8414         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());
8415         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());
8416
8417         // Assert that `node[0]`'s `ChannelUpdate` is capped at 50 percent of the `channel_value`, as
8418         // that's the value of `node[1]`'s `holder_max_htlc_value_in_flight_msat`.
8419         assert_eq!(node_0_chan_update.contents.htlc_maximum_msat, channel_value_50_percent_msat);
8420         // Assert that `node[1]`'s `ChannelUpdate` is capped at 30 percent of the `channel_value`, as
8421         // that's the value of `node[0]`'s `holder_max_htlc_value_in_flight_msat`.
8422         assert_eq!(node_1_chan_update.contents.htlc_maximum_msat, channel_value_30_percent_msat);
8423
8424         // Assert that `node[2]`'s `ChannelUpdate` is capped at 90 percent of the `channel_value`, as
8425         // the value of `node[3]`'s `holder_max_htlc_value_in_flight_msat` (100%), exceeds 90% of the
8426         // `channel_value`.
8427         assert_eq!(node_2_chan_update.contents.htlc_maximum_msat, channel_value_90_percent_msat);
8428         // Assert that `node[3]`'s `ChannelUpdate` is capped at 90 percent of the `channel_value`, as
8429         // the value of `node[2]`'s `holder_max_htlc_value_in_flight_msat` (95%), exceeds 90% of the
8430         // `channel_value`.
8431         assert_eq!(node_3_chan_update.contents.htlc_maximum_msat, channel_value_90_percent_msat);
8432 }
8433
8434 #[test]
8435 fn test_manually_accept_inbound_channel_request() {
8436         let mut manually_accept_conf = UserConfig::default();
8437         manually_accept_conf.manually_accept_inbound_channels = true;
8438         let chanmon_cfgs = create_chanmon_cfgs(2);
8439         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8440         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(manually_accept_conf.clone())]);
8441         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8442
8443         let temp_channel_id = nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, Some(manually_accept_conf)).unwrap();
8444         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8445
8446         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8447
8448         // Assert that `nodes[1]` has no `MessageSendEvent::SendAcceptChannel` in `msg_events` before
8449         // accepting the inbound channel request.
8450         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
8451
8452         let events = nodes[1].node.get_and_clear_pending_events();
8453         match events[0] {
8454                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
8455                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap();
8456                 }
8457                 _ => panic!("Unexpected event"),
8458         }
8459
8460         let accept_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8461         assert_eq!(accept_msg_ev.len(), 1);
8462
8463         match accept_msg_ev[0] {
8464                 MessageSendEvent::SendAcceptChannel { ref node_id, .. } => {
8465                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8466                 }
8467                 _ => panic!("Unexpected event"),
8468         }
8469
8470         nodes[1].node.force_close_broadcasting_latest_txn(&temp_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
8471
8472         let close_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8473         assert_eq!(close_msg_ev.len(), 1);
8474
8475         let events = nodes[1].node.get_and_clear_pending_events();
8476         match events[0] {
8477                 Event::ChannelClosed { user_channel_id, .. } => {
8478                         assert_eq!(user_channel_id, 23);
8479                 }
8480                 _ => panic!("Unexpected event"),
8481         }
8482 }
8483
8484 #[test]
8485 fn test_manually_reject_inbound_channel_request() {
8486         let mut manually_accept_conf = UserConfig::default();
8487         manually_accept_conf.manually_accept_inbound_channels = true;
8488         let chanmon_cfgs = create_chanmon_cfgs(2);
8489         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8490         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(manually_accept_conf.clone())]);
8491         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8492
8493         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, Some(manually_accept_conf)).unwrap();
8494         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8495
8496         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8497
8498         // Assert that `nodes[1]` has no `MessageSendEvent::SendAcceptChannel` in `msg_events` before
8499         // rejecting the inbound channel request.
8500         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
8501
8502         let events = nodes[1].node.get_and_clear_pending_events();
8503         match events[0] {
8504                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
8505                         nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
8506                 }
8507                 _ => panic!("Unexpected event"),
8508         }
8509
8510         let close_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8511         assert_eq!(close_msg_ev.len(), 1);
8512
8513         match close_msg_ev[0] {
8514                 MessageSendEvent::HandleError { ref node_id, .. } => {
8515                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8516                 }
8517                 _ => panic!("Unexpected event"),
8518         }
8519         check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
8520 }
8521
8522 #[test]
8523 fn test_reject_funding_before_inbound_channel_accepted() {
8524         // This tests that when `UserConfig::manually_accept_inbound_channels` is set to true, inbound
8525         // channels must to be manually accepted through `ChannelManager::accept_inbound_channel` by
8526         // the node operator before the counterparty sends a `FundingCreated` message. If a
8527         // `FundingCreated` message is received before the channel is accepted, it should be rejected
8528         // and the channel should be closed.
8529         let mut manually_accept_conf = UserConfig::default();
8530         manually_accept_conf.manually_accept_inbound_channels = true;
8531         let chanmon_cfgs = create_chanmon_cfgs(2);
8532         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8533         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(manually_accept_conf.clone())]);
8534         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8535
8536         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, Some(manually_accept_conf)).unwrap();
8537         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8538         let temp_channel_id = res.temporary_channel_id;
8539
8540         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8541
8542         // Assert that `nodes[1]` has no `MessageSendEvent::SendAcceptChannel` in the `msg_events`.
8543         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
8544
8545         // Clear the `Event::OpenChannelRequest` event without responding to the request.
8546         nodes[1].node.get_and_clear_pending_events();
8547
8548         // Get the `AcceptChannel` message of `nodes[1]` without calling
8549         // `ChannelManager::accept_inbound_channel`, which generates a
8550         // `MessageSendEvent::SendAcceptChannel` event. The message is passed to `nodes[0]`
8551         // `handle_accept_channel`, which is required in order for `create_funding_transaction` to
8552         // succeed when `nodes[0]` is passed to it.
8553         let accept_chan_msg = {
8554                 let mut lock;
8555                 let channel = get_channel_ref!(&nodes[1], lock, temp_channel_id);
8556                 channel.get_accept_channel_message()
8557         };
8558         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_chan_msg);
8559
8560         let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42);
8561
8562         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
8563         let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
8564
8565         // The `funding_created_msg` should be rejected by `nodes[1]` as it hasn't accepted the channel
8566         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
8567
8568         let close_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8569         assert_eq!(close_msg_ev.len(), 1);
8570
8571         let expected_err = "FundingCreated message received before the channel was accepted";
8572         match close_msg_ev[0] {
8573                 MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, ref node_id, } => {
8574                         assert_eq!(msg.channel_id, temp_channel_id);
8575                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8576                         assert_eq!(msg.data, expected_err);
8577                 }
8578                 _ => panic!("Unexpected event"),
8579         }
8580
8581         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: expected_err.to_string() });
8582 }
8583
8584 #[test]
8585 fn test_can_not_accept_inbound_channel_twice() {
8586         let mut manually_accept_conf = UserConfig::default();
8587         manually_accept_conf.manually_accept_inbound_channels = true;
8588         let chanmon_cfgs = create_chanmon_cfgs(2);
8589         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8590         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(manually_accept_conf.clone())]);
8591         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8592
8593         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, Some(manually_accept_conf)).unwrap();
8594         let res = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8595
8596         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &res);
8597
8598         // Assert that `nodes[1]` has no `MessageSendEvent::SendAcceptChannel` in `msg_events` before
8599         // accepting the inbound channel request.
8600         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
8601
8602         let events = nodes[1].node.get_and_clear_pending_events();
8603         match events[0] {
8604                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
8605                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 0).unwrap();
8606                         let api_res = nodes[1].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 0);
8607                         match api_res {
8608                                 Err(APIError::APIMisuseError { err }) => {
8609                                         assert_eq!(err, "The channel isn't currently awaiting to be accepted.");
8610                                 },
8611                                 Ok(_) => panic!("Channel shouldn't be possible to be accepted twice"),
8612                                 Err(_) => panic!("Unexpected Error"),
8613                         }
8614                 }
8615                 _ => panic!("Unexpected event"),
8616         }
8617
8618         // Ensure that the channel wasn't closed after attempting to accept it twice.
8619         let accept_msg_ev = nodes[1].node.get_and_clear_pending_msg_events();
8620         assert_eq!(accept_msg_ev.len(), 1);
8621
8622         match accept_msg_ev[0] {
8623                 MessageSendEvent::SendAcceptChannel { ref node_id, .. } => {
8624                         assert_eq!(*node_id, nodes[0].node.get_our_node_id());
8625                 }
8626                 _ => panic!("Unexpected event"),
8627         }
8628 }
8629
8630 #[test]
8631 fn test_can_not_accept_unknown_inbound_channel() {
8632         let chanmon_cfg = create_chanmon_cfgs(2);
8633         let node_cfg = create_node_cfgs(2, &chanmon_cfg);
8634         let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
8635         let nodes = create_network(2, &node_cfg, &node_chanmgr);
8636
8637         let unknown_channel_id = [0; 32];
8638         let api_res = nodes[0].node.accept_inbound_channel(&unknown_channel_id, &nodes[1].node.get_our_node_id(), 0);
8639         match api_res {
8640                 Err(APIError::ChannelUnavailable { err }) => {
8641                         assert_eq!(err, "Can't accept a channel that doesn't exist");
8642                 },
8643                 Ok(_) => panic!("It shouldn't be possible to accept an unkown channel"),
8644                 Err(_) => panic!("Unexpected Error"),
8645         }
8646 }
8647
8648 #[test]
8649 fn test_simple_mpp() {
8650         // Simple test of sending a multi-path payment.
8651         let chanmon_cfgs = create_chanmon_cfgs(4);
8652         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
8653         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
8654         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
8655
8656         let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8657         let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8658         let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8659         let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8660
8661         let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
8662         let path = route.paths[0].clone();
8663         route.paths.push(path);
8664         route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
8665         route.paths[0][0].short_channel_id = chan_1_id;
8666         route.paths[0][1].short_channel_id = chan_3_id;
8667         route.paths[1][0].pubkey = nodes[2].node.get_our_node_id();
8668         route.paths[1][0].short_channel_id = chan_2_id;
8669         route.paths[1][1].short_channel_id = chan_4_id;
8670         send_along_route_with_secret(&nodes[0], route, &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], 200_000, payment_hash, payment_secret);
8671         claim_payment_along_route(&nodes[0], &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], false, payment_preimage);
8672 }
8673
8674 #[test]
8675 fn test_preimage_storage() {
8676         // Simple test of payment preimage storage allowing no client-side storage to claim payments
8677         let chanmon_cfgs = create_chanmon_cfgs(2);
8678         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8679         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8680         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8681
8682         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8683
8684         {
8685                 let (payment_hash, payment_secret) = nodes[1].node.create_inbound_payment(Some(100_000), 7200).unwrap();
8686                 let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
8687                 nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
8688                 check_added_monitors!(nodes[0], 1);
8689                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8690                 let mut payment_event = SendEvent::from_event(events.pop().unwrap());
8691                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8692                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8693         }
8694         // Note that after leaving the above scope we have no knowledge of any arguments or return
8695         // values from previous calls.
8696         expect_pending_htlcs_forwardable!(nodes[1]);
8697         let events = nodes[1].node.get_and_clear_pending_events();
8698         assert_eq!(events.len(), 1);
8699         match events[0] {
8700                 Event::PaymentReceived { ref purpose, .. } => {
8701                         match &purpose {
8702                                 PaymentPurpose::InvoicePayment { payment_preimage, .. } => {
8703                                         claim_payment(&nodes[0], &[&nodes[1]], payment_preimage.unwrap());
8704                                 },
8705                                 _ => panic!("expected PaymentPurpose::InvoicePayment")
8706                         }
8707                 },
8708                 _ => panic!("Unexpected event"),
8709         }
8710 }
8711
8712 #[test]
8713 #[allow(deprecated)]
8714 fn test_secret_timeout() {
8715         // Simple test of payment secret storage time outs. After
8716         // `create_inbound_payment(_for_hash)_legacy` is removed, this test will be removed as well.
8717         let chanmon_cfgs = create_chanmon_cfgs(2);
8718         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8719         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8720         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8721
8722         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8723
8724         let (payment_hash, payment_secret_1) = nodes[1].node.create_inbound_payment_legacy(Some(100_000), 2).unwrap();
8725
8726         // We should fail to register the same payment hash twice, at least until we've connected a
8727         // block with time 7200 + CHAN_CONFIRM_DEPTH + 1.
8728         if let Err(APIError::APIMisuseError { err }) = nodes[1].node.create_inbound_payment_for_hash_legacy(payment_hash, Some(100_000), 2) {
8729                 assert_eq!(err, "Duplicate payment hash");
8730         } else { panic!(); }
8731         let mut block = {
8732                 let node_1_blocks = nodes[1].blocks.lock().unwrap();
8733                 Block {
8734                         header: BlockHeader {
8735                                 version: 0x2000000,
8736                                 prev_blockhash: node_1_blocks.last().unwrap().0.block_hash(),
8737                                 merkle_root: TxMerkleNode::all_zeros(),
8738                                 time: node_1_blocks.len() as u32 + 7200, bits: 42, nonce: 42 },
8739                         txdata: vec![],
8740                 }
8741         };
8742         connect_block(&nodes[1], &block);
8743         if let Err(APIError::APIMisuseError { err }) = nodes[1].node.create_inbound_payment_for_hash_legacy(payment_hash, Some(100_000), 2) {
8744                 assert_eq!(err, "Duplicate payment hash");
8745         } else { panic!(); }
8746
8747         // If we then connect the second block, we should be able to register the same payment hash
8748         // again (this time getting a new payment secret).
8749         block.header.prev_blockhash = block.header.block_hash();
8750         block.header.time += 1;
8751         connect_block(&nodes[1], &block);
8752         let our_payment_secret = nodes[1].node.create_inbound_payment_for_hash_legacy(payment_hash, Some(100_000), 2).unwrap();
8753         assert_ne!(payment_secret_1, our_payment_secret);
8754
8755         {
8756                 let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
8757                 nodes[0].node.send_payment(&route, payment_hash, &Some(our_payment_secret)).unwrap();
8758                 check_added_monitors!(nodes[0], 1);
8759                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8760                 let mut payment_event = SendEvent::from_event(events.pop().unwrap());
8761                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8762                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8763         }
8764         // Note that after leaving the above scope we have no knowledge of any arguments or return
8765         // values from previous calls.
8766         expect_pending_htlcs_forwardable!(nodes[1]);
8767         let events = nodes[1].node.get_and_clear_pending_events();
8768         assert_eq!(events.len(), 1);
8769         match events[0] {
8770                 Event::PaymentReceived { purpose: PaymentPurpose::InvoicePayment { payment_preimage, payment_secret }, .. } => {
8771                         assert!(payment_preimage.is_none());
8772                         assert_eq!(payment_secret, our_payment_secret);
8773                         // We don't actually have the payment preimage with which to claim this payment!
8774                 },
8775                 _ => panic!("Unexpected event"),
8776         }
8777 }
8778
8779 #[test]
8780 fn test_bad_secret_hash() {
8781         // Simple test of unregistered payment hash/invalid payment secret handling
8782         let chanmon_cfgs = create_chanmon_cfgs(2);
8783         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8784         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8785         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8786
8787         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
8788
8789         let random_payment_hash = PaymentHash([42; 32]);
8790         let random_payment_secret = PaymentSecret([43; 32]);
8791         let (our_payment_hash, our_payment_secret) = nodes[1].node.create_inbound_payment(Some(100_000), 2).unwrap();
8792         let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
8793
8794         // All the below cases should end up being handled exactly identically, so we macro the
8795         // resulting events.
8796         macro_rules! handle_unknown_invalid_payment_data {
8797                 ($payment_hash: expr) => {
8798                         check_added_monitors!(nodes[0], 1);
8799                         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8800                         let payment_event = SendEvent::from_event(events.pop().unwrap());
8801                         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8802                         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8803
8804                         // We have to forward pending HTLCs once to process the receipt of the HTLC and then
8805                         // again to process the pending backwards-failure of the HTLC
8806                         expect_pending_htlcs_forwardable!(nodes[1]);
8807                         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment{ payment_hash: $payment_hash }]);
8808                         check_added_monitors!(nodes[1], 1);
8809
8810                         // We should fail the payment back
8811                         let mut events = nodes[1].node.get_and_clear_pending_msg_events();
8812                         match events.pop().unwrap() {
8813                                 MessageSendEvent::UpdateHTLCs { node_id: _, updates: msgs::CommitmentUpdate { update_fail_htlcs, commitment_signed, .. } } => {
8814                                         nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &update_fail_htlcs[0]);
8815                                         commitment_signed_dance!(nodes[0], nodes[1], commitment_signed, false);
8816                                 },
8817                                 _ => panic!("Unexpected event"),
8818                         }
8819                 }
8820         }
8821
8822         let expected_error_code = 0x4000|15; // incorrect_or_unknown_payment_details
8823         // Error data is the HTLC value (100,000) and current block height
8824         let expected_error_data = [0, 0, 0, 0, 0, 1, 0x86, 0xa0, 0, 0, 0, CHAN_CONFIRM_DEPTH as u8];
8825
8826         // Send a payment with the right payment hash but the wrong payment secret
8827         nodes[0].node.send_payment(&route, our_payment_hash, &Some(random_payment_secret)).unwrap();
8828         handle_unknown_invalid_payment_data!(our_payment_hash);
8829         expect_payment_failed!(nodes[0], our_payment_hash, true, expected_error_code, expected_error_data);
8830
8831         // Send a payment with a random payment hash, but the right payment secret
8832         nodes[0].node.send_payment(&route, random_payment_hash, &Some(our_payment_secret)).unwrap();
8833         handle_unknown_invalid_payment_data!(random_payment_hash);
8834         expect_payment_failed!(nodes[0], random_payment_hash, true, expected_error_code, expected_error_data);
8835
8836         // Send a payment with a random payment hash and random payment secret
8837         nodes[0].node.send_payment(&route, random_payment_hash, &Some(random_payment_secret)).unwrap();
8838         handle_unknown_invalid_payment_data!(random_payment_hash);
8839         expect_payment_failed!(nodes[0], random_payment_hash, true, expected_error_code, expected_error_data);
8840 }
8841
8842 #[test]
8843 fn test_update_err_monitor_lockdown() {
8844         // Our monitor will lock update of local commitment transaction if a broadcastion condition
8845         // has been fulfilled (either force-close from Channel or block height requiring a HTLC-
8846         // timeout). Trying to update monitor after lockdown should return a ChannelMonitorUpdateErr.
8847         //
8848         // This scenario may happen in a watchtower setup, where watchtower process a block height
8849         // triggering a timeout while a slow-block-processing ChannelManager receives a local signed
8850         // commitment at same time.
8851
8852         let chanmon_cfgs = create_chanmon_cfgs(2);
8853         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8854         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8855         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8856
8857         // Create some initial channel
8858         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
8859         let outpoint = OutPoint { txid: chan_1.3.txid(), index: 0 };
8860
8861         // Rebalance the network to generate htlc in the two directions
8862         send_payment(&nodes[0], &vec!(&nodes[1])[..], 10_000_000);
8863
8864         // Route a HTLC from node 0 to node 1 (but don't settle)
8865         let (preimage, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1]], 9_000_000);
8866
8867         // Copy ChainMonitor to simulate a watchtower and update block height of node 0 until its ChannelMonitor timeout HTLC onchain
8868         let chain_source = test_utils::TestChainSource::new(Network::Testnet);
8869         let logger = test_utils::TestLogger::with_id(format!("node {}", 0));
8870         let persister = test_utils::TestPersister::new();
8871         let watchtower = {
8872                 let monitor = nodes[0].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap();
8873                 let mut w = test_utils::TestVecWriter(Vec::new());
8874                 monitor.write(&mut w).unwrap();
8875                 let new_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::read(
8876                                 &mut io::Cursor::new(&w.0), &test_utils::OnlyReadsKeysInterface {}).unwrap().1;
8877                 assert!(new_monitor == *monitor);
8878                 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);
8879                 assert!(watchtower.watch_channel(outpoint, new_monitor).is_ok());
8880                 watchtower
8881         };
8882         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8883         let block = Block { header, txdata: vec![] };
8884         // Make the tx_broadcaster aware of enough blocks that it doesn't think we're violating
8885         // transaction lock time requirements here.
8886         chanmon_cfgs[0].tx_broadcaster.blocks.lock().unwrap().resize(200, (block.clone(), 0));
8887         watchtower.chain_monitor.block_connected(&block, 200);
8888
8889         // Try to update ChannelMonitor
8890         nodes[1].node.claim_funds(preimage);
8891         check_added_monitors!(nodes[1], 1);
8892         expect_payment_claimed!(nodes[1], payment_hash, 9_000_000);
8893
8894         let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8895         assert_eq!(updates.update_fulfill_htlcs.len(), 1);
8896         nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
8897         if let Some(ref mut channel) = nodes[0].node.channel_state.lock().unwrap().by_id.get_mut(&chan_1.2) {
8898                 if let Ok((_, _, update)) = channel.commitment_signed(&updates.commitment_signed, &node_cfgs[0].logger) {
8899                         if let Err(_) =  watchtower.chain_monitor.update_channel(outpoint, update.clone()) {} else { assert!(false); }
8900                         if let Ok(_) = nodes[0].chain_monitor.update_channel(outpoint, update) {} else { assert!(false); }
8901                 } else { assert!(false); }
8902         } else { assert!(false); };
8903         // Our local monitor is in-sync and hasn't processed yet timeout
8904         check_added_monitors!(nodes[0], 1);
8905         let events = nodes[0].node.get_and_clear_pending_events();
8906         assert_eq!(events.len(), 1);
8907 }
8908
8909 #[test]
8910 fn test_concurrent_monitor_claim() {
8911         // Watchtower A receives block, broadcasts state N, then channel receives new state N+1,
8912         // sending it to both watchtowers, Bob accepts N+1, then receives block and broadcasts
8913         // the latest state N+1, Alice rejects state N+1, but Bob has already broadcast it,
8914         // state N+1 confirms. Alice claims output from state N+1.
8915
8916         let chanmon_cfgs = create_chanmon_cfgs(2);
8917         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8918         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8919         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8920
8921         // Create some initial channel
8922         let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
8923         let outpoint = OutPoint { txid: chan_1.3.txid(), index: 0 };
8924
8925         // Rebalance the network to generate htlc in the two directions
8926         send_payment(&nodes[0], &vec!(&nodes[1])[..], 10_000_000);
8927
8928         // Route a HTLC from node 0 to node 1 (but don't settle)
8929         route_payment(&nodes[0], &vec!(&nodes[1])[..], 9_000_000).0;
8930
8931         // Copy ChainMonitor to simulate watchtower Alice and update block height her ChannelMonitor timeout HTLC onchain
8932         let chain_source = test_utils::TestChainSource::new(Network::Testnet);
8933         let logger = test_utils::TestLogger::with_id(format!("node {}", "Alice"));
8934         let persister = test_utils::TestPersister::new();
8935         let watchtower_alice = {
8936                 let monitor = nodes[0].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap();
8937                 let mut w = test_utils::TestVecWriter(Vec::new());
8938                 monitor.write(&mut w).unwrap();
8939                 let new_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::read(
8940                                 &mut io::Cursor::new(&w.0), &test_utils::OnlyReadsKeysInterface {}).unwrap().1;
8941                 assert!(new_monitor == *monitor);
8942                 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);
8943                 assert!(watchtower.watch_channel(outpoint, new_monitor).is_ok());
8944                 watchtower
8945         };
8946         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8947         let block = Block { header, txdata: vec![] };
8948         // Make the tx_broadcaster aware of enough blocks that it doesn't think we're violating
8949         // transaction lock time requirements here.
8950         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));
8951         watchtower_alice.chain_monitor.block_connected(&block, CHAN_CONFIRM_DEPTH + 1 + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
8952
8953         // Watchtower Alice should have broadcast a commitment/HTLC-timeout
8954         {
8955                 let mut txn = chanmon_cfgs[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
8956                 assert_eq!(txn.len(), 2);
8957                 txn.clear();
8958         }
8959
8960         // Copy ChainMonitor to simulate watchtower Bob and make it receive a commitment update first.
8961         let chain_source = test_utils::TestChainSource::new(Network::Testnet);
8962         let logger = test_utils::TestLogger::with_id(format!("node {}", "Bob"));
8963         let persister = test_utils::TestPersister::new();
8964         let watchtower_bob = {
8965                 let monitor = nodes[0].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap();
8966                 let mut w = test_utils::TestVecWriter(Vec::new());
8967                 monitor.write(&mut w).unwrap();
8968                 let new_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::read(
8969                                 &mut io::Cursor::new(&w.0), &test_utils::OnlyReadsKeysInterface {}).unwrap().1;
8970                 assert!(new_monitor == *monitor);
8971                 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);
8972                 assert!(watchtower.watch_channel(outpoint, new_monitor).is_ok());
8973                 watchtower
8974         };
8975         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
8976         watchtower_bob.chain_monitor.block_connected(&Block { header, txdata: vec![] }, CHAN_CONFIRM_DEPTH + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
8977
8978         // Route another payment to generate another update with still previous HTLC pending
8979         let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 3000000);
8980         {
8981                 nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
8982         }
8983         check_added_monitors!(nodes[1], 1);
8984
8985         let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8986         assert_eq!(updates.update_add_htlcs.len(), 1);
8987         nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &updates.update_add_htlcs[0]);
8988         if let Some(ref mut channel) = nodes[0].node.channel_state.lock().unwrap().by_id.get_mut(&chan_1.2) {
8989                 if let Ok((_, _, update)) = channel.commitment_signed(&updates.commitment_signed, &node_cfgs[0].logger) {
8990                         // Watchtower Alice should already have seen the block and reject the update
8991                         if let Err(_) =  watchtower_alice.chain_monitor.update_channel(outpoint, update.clone()) {} else { assert!(false); }
8992                         if let Ok(_) = watchtower_bob.chain_monitor.update_channel(outpoint, update.clone()) {} else { assert!(false); }
8993                         if let Ok(_) = nodes[0].chain_monitor.update_channel(outpoint, update) {} else { assert!(false); }
8994                 } else { assert!(false); }
8995         } else { assert!(false); };
8996         // Our local monitor is in-sync and hasn't processed yet timeout
8997         check_added_monitors!(nodes[0], 1);
8998
8999         //// Provide one more block to watchtower Bob, expect broadcast of commitment and HTLC-Timeout
9000         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
9001         watchtower_bob.chain_monitor.block_connected(&Block { header, txdata: vec![] }, CHAN_CONFIRM_DEPTH + 1 + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
9002
9003         // Watchtower Bob should have broadcast a commitment/HTLC-timeout
9004         let bob_state_y;
9005         {
9006                 let mut txn = chanmon_cfgs[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
9007                 assert_eq!(txn.len(), 2);
9008                 bob_state_y = txn[0].clone();
9009                 txn.clear();
9010         };
9011
9012         // We confirm Bob's state Y on Alice, she should broadcast a HTLC-timeout
9013         let header = BlockHeader { version: 0x20000000, prev_blockhash: BlockHash::all_zeros(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
9014         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);
9015         {
9016                 let htlc_txn = chanmon_cfgs[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
9017                 // We broadcast twice the transaction, once due to the HTLC-timeout, once due
9018                 // the onchain detection of the HTLC output
9019                 assert_eq!(htlc_txn.len(), 2);
9020                 check_spends!(htlc_txn[0], bob_state_y);
9021                 check_spends!(htlc_txn[1], bob_state_y);
9022         }
9023 }
9024
9025 #[test]
9026 fn test_pre_lockin_no_chan_closed_update() {
9027         // Test that if a peer closes a channel in response to a funding_created message we don't
9028         // generate a channel update (as the channel cannot appear on chain without a funding_signed
9029         // message).
9030         //
9031         // Doing so would imply a channel monitor update before the initial channel monitor
9032         // registration, violating our API guarantees.
9033         //
9034         // Previously, full_stack_target managed to hit this case by opening then closing a channel,
9035         // then opening a second channel with the same funding output as the first (which is not
9036         // rejected because the first channel does not exist in the ChannelManager) and closing it
9037         // before receiving funding_signed.
9038         let chanmon_cfgs = create_chanmon_cfgs(2);
9039         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9040         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9041         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9042
9043         // Create an initial channel
9044         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, None).unwrap();
9045         let mut open_chan_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9046         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_msg);
9047         let accept_chan_msg = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9048         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_chan_msg);
9049
9050         // Move the first channel through the funding flow...
9051         let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42);
9052
9053         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
9054         check_added_monitors!(nodes[0], 0);
9055
9056         let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9057         let channel_id = ::chain::transaction::OutPoint { txid: funding_created_msg.funding_txid, index: funding_created_msg.funding_output_index }.to_channel_id();
9058         nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &msgs::ErrorMessage { channel_id, data: "Hi".to_owned() });
9059         assert!(nodes[0].chain_monitor.added_monitors.lock().unwrap().is_empty());
9060         check_closed_event!(nodes[0], 2, ClosureReason::CounterpartyForceClosed { peer_msg: "Hi".to_string() }, true);
9061 }
9062
9063 #[test]
9064 fn test_htlc_no_detection() {
9065         // This test is a mutation to underscore the detection logic bug we had
9066         // before #653. HTLC value routed is above the remaining balance, thus
9067         // inverting HTLC and `to_remote` output. HTLC will come second and
9068         // it wouldn't be seen by pre-#653 detection as we were enumerate()'ing
9069         // on a watched outputs vector (Vec<TxOut>) thus implicitly relying on
9070         // outputs order detection for correct spending children filtring.
9071
9072         let chanmon_cfgs = create_chanmon_cfgs(2);
9073         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9074         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9075         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9076
9077         // Create some initial channels
9078         let chan_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9079
9080         send_payment(&nodes[0], &vec!(&nodes[1])[..], 1_000_000);
9081         let (_, our_payment_hash, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 2_000_000);
9082         let local_txn = get_local_commitment_txn!(nodes[0], chan_1.2);
9083         assert_eq!(local_txn[0].input.len(), 1);
9084         assert_eq!(local_txn[0].output.len(), 3);
9085         check_spends!(local_txn[0], chan_1.3);
9086
9087         // Timeout HTLC on A's chain and so it can generate a HTLC-Timeout tx
9088         let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
9089         connect_block(&nodes[0], &Block { header, txdata: vec![local_txn[0].clone()] });
9090         // We deliberately connect the local tx twice as this should provoke a failure calling
9091         // this test before #653 fix.
9092         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);
9093         check_closed_broadcast!(nodes[0], true);
9094         check_added_monitors!(nodes[0], 1);
9095         check_closed_event!(nodes[0], 1, ClosureReason::CommitmentTxConfirmed);
9096         connect_blocks(&nodes[0], TEST_FINAL_CLTV - 1);
9097
9098         let htlc_timeout = {
9099                 let node_txn = nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap();
9100                 assert_eq!(node_txn[1].input.len(), 1);
9101                 assert_eq!(node_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
9102                 check_spends!(node_txn[1], local_txn[0]);
9103                 node_txn[1].clone()
9104         };
9105
9106         let header_201 = BlockHeader { version: 0x20000000, prev_blockhash: nodes[0].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 };
9107         connect_block(&nodes[0], &Block { header: header_201, txdata: vec![htlc_timeout.clone()] });
9108         connect_blocks(&nodes[0], ANTI_REORG_DELAY - 1);
9109         expect_payment_failed!(nodes[0], our_payment_hash, false);
9110 }
9111
9112 fn do_test_onchain_htlc_settlement_after_close(broadcast_alice: bool, go_onchain_before_fulfill: bool) {
9113         // If we route an HTLC, then learn the HTLC's preimage after the upstream channel has been
9114         // force-closed, we must claim that HTLC on-chain. (Given an HTLC forwarded from Alice --> Bob -->
9115         // Carol, Alice would be the upstream node, and Carol the downstream.)
9116         //
9117         // Steps of the test:
9118         // 1) Alice sends a HTLC to Carol through Bob.
9119         // 2) Carol doesn't settle the HTLC.
9120         // 3) If broadcast_alice is true, Alice force-closes her channel with Bob. Else Bob force closes.
9121         // Steps 4 and 5 may be reordered depending on go_onchain_before_fulfill.
9122         // 4) Bob sees the Alice's commitment on his chain or vice versa. An offered output is present
9123         //    but can't be claimed as Bob doesn't have yet knowledge of the preimage.
9124         // 5) Carol release the preimage to Bob off-chain.
9125         // 6) Bob claims the offered output on the broadcasted commitment.
9126         let chanmon_cfgs = create_chanmon_cfgs(3);
9127         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9128         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9129         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9130
9131         // Create some initial channels
9132         let chan_ab = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9133         create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9134
9135         // Steps (1) and (2):
9136         // Send an HTLC Alice --> Bob --> Carol, but Carol doesn't settle the HTLC back.
9137         let (payment_preimage, payment_hash, _payment_secret) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 3_000_000);
9138
9139         // Check that Alice's commitment transaction now contains an output for this HTLC.
9140         let alice_txn = get_local_commitment_txn!(nodes[0], chan_ab.2);
9141         check_spends!(alice_txn[0], chan_ab.3);
9142         assert_eq!(alice_txn[0].output.len(), 2);
9143         check_spends!(alice_txn[1], alice_txn[0]); // 2nd transaction is a non-final HTLC-timeout
9144         assert_eq!(alice_txn[1].input[0].witness.last().unwrap().len(), OFFERED_HTLC_SCRIPT_WEIGHT);
9145         assert_eq!(alice_txn.len(), 2);
9146
9147         // Steps (3) and (4):
9148         // If `go_onchain_before_fufill`, broadcast the relevant commitment transaction and check that Bob
9149         // responds by (1) broadcasting a channel update and (2) adding a new ChannelMonitor.
9150         let mut force_closing_node = 0; // Alice force-closes
9151         let mut counterparty_node = 1; // Bob if Alice force-closes
9152
9153         // Bob force-closes
9154         if !broadcast_alice {
9155                 force_closing_node = 1;
9156                 counterparty_node = 0;
9157         }
9158         nodes[force_closing_node].node.force_close_broadcasting_latest_txn(&chan_ab.2, &nodes[counterparty_node].node.get_our_node_id()).unwrap();
9159         check_closed_broadcast!(nodes[force_closing_node], true);
9160         check_added_monitors!(nodes[force_closing_node], 1);
9161         check_closed_event!(nodes[force_closing_node], 1, ClosureReason::HolderForceClosed);
9162         if go_onchain_before_fulfill {
9163                 let txn_to_broadcast = match broadcast_alice {
9164                         true => alice_txn.clone(),
9165                         false => get_local_commitment_txn!(nodes[1], chan_ab.2)
9166                 };
9167                 let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42};
9168                 connect_block(&nodes[1], &Block { header, txdata: vec![txn_to_broadcast[0].clone()]});
9169                 let mut bob_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
9170                 if broadcast_alice {
9171                         check_closed_broadcast!(nodes[1], true);
9172                         check_added_monitors!(nodes[1], 1);
9173                         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
9174                 }
9175                 assert_eq!(bob_txn.len(), 1);
9176                 check_spends!(bob_txn[0], chan_ab.3);
9177         }
9178
9179         // Step (5):
9180         // Carol then claims the funds and sends an update_fulfill message to Bob, and they go through the
9181         // process of removing the HTLC from their commitment transactions.
9182         nodes[2].node.claim_funds(payment_preimage);
9183         check_added_monitors!(nodes[2], 1);
9184         expect_payment_claimed!(nodes[2], payment_hash, 3_000_000);
9185
9186         let carol_updates = get_htlc_update_msgs!(nodes[2], nodes[1].node.get_our_node_id());
9187         assert!(carol_updates.update_add_htlcs.is_empty());
9188         assert!(carol_updates.update_fail_htlcs.is_empty());
9189         assert!(carol_updates.update_fail_malformed_htlcs.is_empty());
9190         assert!(carol_updates.update_fee.is_none());
9191         assert_eq!(carol_updates.update_fulfill_htlcs.len(), 1);
9192
9193         nodes[1].node.handle_update_fulfill_htlc(&nodes[2].node.get_our_node_id(), &carol_updates.update_fulfill_htlcs[0]);
9194         expect_payment_forwarded!(nodes[1], nodes[0], nodes[2], if go_onchain_before_fulfill || force_closing_node == 1 { None } else { Some(1000) }, false, false);
9195         // If Alice broadcasted but Bob doesn't know yet, here he prepares to tell her about the preimage.
9196         if !go_onchain_before_fulfill && broadcast_alice {
9197                 let events = nodes[1].node.get_and_clear_pending_msg_events();
9198                 assert_eq!(events.len(), 1);
9199                 match events[0] {
9200                         MessageSendEvent::UpdateHTLCs { ref node_id, .. } => {
9201                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
9202                         },
9203                         _ => panic!("Unexpected event"),
9204                 };
9205         }
9206         nodes[1].node.handle_commitment_signed(&nodes[2].node.get_our_node_id(), &carol_updates.commitment_signed);
9207         // One monitor update for the preimage to update the Bob<->Alice channel, one monitor update
9208         // Carol<->Bob's updated commitment transaction info.
9209         check_added_monitors!(nodes[1], 2);
9210
9211         let events = nodes[1].node.get_and_clear_pending_msg_events();
9212         assert_eq!(events.len(), 2);
9213         let bob_revocation = match events[0] {
9214                 MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
9215                         assert_eq!(*node_id, nodes[2].node.get_our_node_id());
9216                         (*msg).clone()
9217                 },
9218                 _ => panic!("Unexpected event"),
9219         };
9220         let bob_updates = match events[1] {
9221                 MessageSendEvent::UpdateHTLCs { ref node_id, ref updates } => {
9222                         assert_eq!(*node_id, nodes[2].node.get_our_node_id());
9223                         (*updates).clone()
9224                 },
9225                 _ => panic!("Unexpected event"),
9226         };
9227
9228         nodes[2].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bob_revocation);
9229         check_added_monitors!(nodes[2], 1);
9230         nodes[2].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bob_updates.commitment_signed);
9231         check_added_monitors!(nodes[2], 1);
9232
9233         let events = nodes[2].node.get_and_clear_pending_msg_events();
9234         assert_eq!(events.len(), 1);
9235         let carol_revocation = match events[0] {
9236                 MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
9237                         assert_eq!(*node_id, nodes[1].node.get_our_node_id());
9238                         (*msg).clone()
9239                 },
9240                 _ => panic!("Unexpected event"),
9241         };
9242         nodes[1].node.handle_revoke_and_ack(&nodes[2].node.get_our_node_id(), &carol_revocation);
9243         check_added_monitors!(nodes[1], 1);
9244
9245         // If this test requires the force-closed channel to not be on-chain until after the fulfill,
9246         // here's where we put said channel's commitment tx on-chain.
9247         let mut txn_to_broadcast = alice_txn.clone();
9248         if !broadcast_alice { txn_to_broadcast = get_local_commitment_txn!(nodes[1], chan_ab.2); }
9249         if !go_onchain_before_fulfill {
9250                 let header = BlockHeader { version: 0x20000000, prev_blockhash: nodes[1].best_block_hash(), merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42};
9251                 connect_block(&nodes[1], &Block { header, txdata: vec![txn_to_broadcast[0].clone()]});
9252                 // If Bob was the one to force-close, he will have already passed these checks earlier.
9253                 if broadcast_alice {
9254                         check_closed_broadcast!(nodes[1], true);
9255                         check_added_monitors!(nodes[1], 1);
9256                         check_closed_event!(nodes[1], 1, ClosureReason::CommitmentTxConfirmed);
9257                 }
9258                 let mut bob_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap();
9259                 if broadcast_alice {
9260                         // In `connect_block()`, the ChainMonitor and ChannelManager are separately notified about a
9261                         // new block being connected. The ChannelManager being notified triggers a monitor update,
9262                         // which triggers broadcasting our commitment tx and an HTLC-claiming tx. The ChainMonitor
9263                         // being notified triggers the HTLC-claiming tx redundantly, resulting in 3 total txs being
9264                         // broadcasted.
9265                         assert_eq!(bob_txn.len(), 3);
9266                         check_spends!(bob_txn[1], chan_ab.3);
9267                 } else {
9268                         assert_eq!(bob_txn.len(), 2);
9269                         check_spends!(bob_txn[0], chan_ab.3);
9270                 }
9271         }
9272
9273         // Step (6):
9274         // Finally, check that Bob broadcasted a preimage-claiming transaction for the HTLC output on the
9275         // broadcasted commitment transaction.
9276         {
9277                 let bob_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().clone();
9278                 if go_onchain_before_fulfill {
9279                         // Bob should now have an extra broadcasted tx, for the preimage-claiming transaction.
9280                         assert_eq!(bob_txn.len(), 2);
9281                 }
9282                 let script_weight = match broadcast_alice {
9283                         true => OFFERED_HTLC_SCRIPT_WEIGHT,
9284                         false => ACCEPTED_HTLC_SCRIPT_WEIGHT
9285                 };
9286                 // If Alice force-closed and Bob didn't receive her commitment transaction until after he
9287                 // received Carol's fulfill, he broadcasts the HTLC-output-claiming transaction first. Else if
9288                 // Bob force closed or if he found out about Alice's commitment tx before receiving Carol's
9289                 // fulfill, then he broadcasts the HTLC-output-claiming transaction second.
9290                 if broadcast_alice && !go_onchain_before_fulfill {
9291                         check_spends!(bob_txn[0], txn_to_broadcast[0]);
9292                         assert_eq!(bob_txn[0].input[0].witness.last().unwrap().len(), script_weight);
9293                 } else {
9294                         check_spends!(bob_txn[1], txn_to_broadcast[0]);
9295                         assert_eq!(bob_txn[1].input[0].witness.last().unwrap().len(), script_weight);
9296                 }
9297         }
9298 }
9299
9300 #[test]
9301 fn test_onchain_htlc_settlement_after_close() {
9302         do_test_onchain_htlc_settlement_after_close(true, true);
9303         do_test_onchain_htlc_settlement_after_close(false, true); // Technically redundant, but may as well
9304         do_test_onchain_htlc_settlement_after_close(true, false);
9305         do_test_onchain_htlc_settlement_after_close(false, false);
9306 }
9307
9308 #[test]
9309 fn test_duplicate_chan_id() {
9310         // Test that if a given peer tries to open a channel with the same channel_id as one that is
9311         // already open we reject it and keep the old channel.
9312         //
9313         // Previously, full_stack_target managed to figure out that if you tried to open two channels
9314         // with the same funding output (ie post-funding channel_id), we'd create a monitor update for
9315         // the existing channel when we detect the duplicate new channel, screwing up our monitor
9316         // updating logic for the existing channel.
9317         let chanmon_cfgs = create_chanmon_cfgs(2);
9318         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9319         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9320         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9321
9322         // Create an initial channel
9323         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, None).unwrap();
9324         let mut open_chan_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9325         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_msg);
9326         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()));
9327
9328         // Try to create a second channel with the same temporary_channel_id as the first and check
9329         // that it is rejected.
9330         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_msg);
9331         {
9332                 let events = nodes[1].node.get_and_clear_pending_msg_events();
9333                 assert_eq!(events.len(), 1);
9334                 match events[0] {
9335                         MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id } => {
9336                                 // Technically, at this point, nodes[1] would be justified in thinking both the
9337                                 // first (valid) and second (invalid) channels are closed, given they both have
9338                                 // the same non-temporary channel_id. However, currently we do not, so we just
9339                                 // move forward with it.
9340                                 assert_eq!(msg.channel_id, open_chan_msg.temporary_channel_id);
9341                                 assert_eq!(node_id, nodes[0].node.get_our_node_id());
9342                         },
9343                         _ => panic!("Unexpected event"),
9344                 }
9345         }
9346
9347         // Move the first channel through the funding flow...
9348         let (temporary_channel_id, tx, funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42);
9349
9350         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
9351         check_added_monitors!(nodes[0], 0);
9352
9353         let mut funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9354         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
9355         {
9356                 let mut added_monitors = nodes[1].chain_monitor.added_monitors.lock().unwrap();
9357                 assert_eq!(added_monitors.len(), 1);
9358                 assert_eq!(added_monitors[0].0, funding_output);
9359                 added_monitors.clear();
9360         }
9361         let funding_signed_msg = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
9362
9363         let funding_outpoint = ::chain::transaction::OutPoint { txid: funding_created_msg.funding_txid, index: funding_created_msg.funding_output_index };
9364         let channel_id = funding_outpoint.to_channel_id();
9365
9366         // Now we have the first channel past funding_created (ie it has a txid-based channel_id, not a
9367         // temporary one).
9368
9369         // First try to open a second channel with a temporary channel id equal to the txid-based one.
9370         // Technically this is allowed by the spec, but we don't support it and there's little reason
9371         // to. Still, it shouldn't cause any other issues.
9372         open_chan_msg.temporary_channel_id = channel_id;
9373         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_msg);
9374         {
9375                 let events = nodes[1].node.get_and_clear_pending_msg_events();
9376                 assert_eq!(events.len(), 1);
9377                 match events[0] {
9378                         MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id } => {
9379                                 // Technically, at this point, nodes[1] would be justified in thinking both
9380                                 // channels are closed, but currently we do not, so we just move forward with it.
9381                                 assert_eq!(msg.channel_id, open_chan_msg.temporary_channel_id);
9382                                 assert_eq!(node_id, nodes[0].node.get_our_node_id());
9383                         },
9384                         _ => panic!("Unexpected event"),
9385                 }
9386         }
9387
9388         // Now try to create a second channel which has a duplicate funding output.
9389         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100000, 10001, 42, None).unwrap();
9390         let open_chan_2_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9391         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_chan_2_msg);
9392         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()));
9393         create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100000, 42); // Get and check the FundingGenerationReady event
9394
9395         let funding_created = {
9396                 let mut a_channel_lock = nodes[0].node.channel_state.lock().unwrap();
9397                 // Once we call `get_outbound_funding_created` the channel has a duplicate channel_id as
9398                 // another channel in the ChannelManager - an invalid state. Thus, we'd panic later when we
9399                 // try to create another channel. Instead, we drop the channel entirely here (leaving the
9400                 // channelmanager in a possibly nonsense state instead).
9401                 let mut as_chan = a_channel_lock.by_id.remove(&open_chan_2_msg.temporary_channel_id).unwrap();
9402                 let logger = test_utils::TestLogger::new();
9403                 as_chan.get_outbound_funding_created(tx.clone(), funding_outpoint, &&logger).unwrap()
9404         };
9405         check_added_monitors!(nodes[0], 0);
9406         nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created);
9407         // At this point we'll try to add a duplicate channel monitor, which will be rejected, but
9408         // still needs to be cleared here.
9409         check_added_monitors!(nodes[1], 1);
9410
9411         // ...still, nodes[1] will reject the duplicate channel.
9412         {
9413                 let events = nodes[1].node.get_and_clear_pending_msg_events();
9414                 assert_eq!(events.len(), 1);
9415                 match events[0] {
9416                         MessageSendEvent::HandleError { action: ErrorAction::SendErrorMessage { ref msg }, node_id } => {
9417                                 // Technically, at this point, nodes[1] would be justified in thinking both
9418                                 // channels are closed, but currently we do not, so we just move forward with it.
9419                                 assert_eq!(msg.channel_id, channel_id);
9420                                 assert_eq!(node_id, nodes[0].node.get_our_node_id());
9421                         },
9422                         _ => panic!("Unexpected event"),
9423                 }
9424         }
9425
9426         // finally, finish creating the original channel and send a payment over it to make sure
9427         // everything is functional.
9428         nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed_msg);
9429         {
9430                 let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
9431                 assert_eq!(added_monitors.len(), 1);
9432                 assert_eq!(added_monitors[0].0, funding_output);
9433                 added_monitors.clear();
9434         }
9435
9436         let events_4 = nodes[0].node.get_and_clear_pending_events();
9437         assert_eq!(events_4.len(), 0);
9438         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
9439         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap()[0], tx);
9440
9441         let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
9442         let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
9443         update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &as_update, &bs_update);
9444         send_payment(&nodes[0], &[&nodes[1]], 8000000);
9445 }
9446
9447 #[test]
9448 fn test_error_chans_closed() {
9449         // Test that we properly handle error messages, closing appropriate channels.
9450         //
9451         // Prior to #787 we'd allow a peer to make us force-close a channel we had with a different
9452         // peer. The "real" fix for that is to index channels with peers_ids, however in the mean time
9453         // we can test various edge cases around it to ensure we don't regress.
9454         let chanmon_cfgs = create_chanmon_cfgs(3);
9455         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9456         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9457         let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9458
9459         // Create some initial channels
9460         let chan_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9461         let chan_2 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9462         let chan_3 = create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9463
9464         assert_eq!(nodes[0].node.list_usable_channels().len(), 3);
9465         assert_eq!(nodes[1].node.list_usable_channels().len(), 2);
9466         assert_eq!(nodes[2].node.list_usable_channels().len(), 1);
9467
9468         // Closing a channel from a different peer has no effect
9469         nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &msgs::ErrorMessage { channel_id: chan_3.2, data: "ERR".to_owned() });
9470         assert_eq!(nodes[0].node.list_usable_channels().len(), 3);
9471
9472         // Closing one channel doesn't impact others
9473         nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &msgs::ErrorMessage { channel_id: chan_2.2, data: "ERR".to_owned() });
9474         check_added_monitors!(nodes[0], 1);
9475         check_closed_broadcast!(nodes[0], false);
9476         check_closed_event!(nodes[0], 1, ClosureReason::CounterpartyForceClosed { peer_msg: "ERR".to_string() });
9477         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0).len(), 1);
9478         assert_eq!(nodes[0].node.list_usable_channels().len(), 2);
9479         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);
9480         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);
9481
9482         // A null channel ID should close all channels
9483         let _chan_4 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9484         nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &msgs::ErrorMessage { channel_id: [0; 32], data: "ERR".to_owned() });
9485         check_added_monitors!(nodes[0], 2);
9486         check_closed_event!(nodes[0], 2, ClosureReason::CounterpartyForceClosed { peer_msg: "ERR".to_string() });
9487         let events = nodes[0].node.get_and_clear_pending_msg_events();
9488         assert_eq!(events.len(), 2);
9489         match events[0] {
9490                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
9491                         assert_eq!(msg.contents.flags & 2, 2);
9492                 },
9493                 _ => panic!("Unexpected event"),
9494         }
9495         match events[1] {
9496                 MessageSendEvent::BroadcastChannelUpdate { ref msg } => {
9497                         assert_eq!(msg.contents.flags & 2, 2);
9498                 },
9499                 _ => panic!("Unexpected event"),
9500         }
9501         // Note that at this point users of a standard PeerHandler will end up calling
9502         // peer_disconnected with no_connection_possible set to false, duplicating the
9503         // close-all-channels logic. That's OK, we don't want to end up not force-closing channels for
9504         // users with their own peer handling logic. We duplicate the call here, however.
9505         assert_eq!(nodes[0].node.list_usable_channels().len(), 1);
9506         assert!(nodes[0].node.list_usable_channels()[0].channel_id == chan_3.2);
9507
9508         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), true);
9509         assert_eq!(nodes[0].node.list_usable_channels().len(), 1);
9510         assert!(nodes[0].node.list_usable_channels()[0].channel_id == chan_3.2);
9511 }
9512
9513 #[test]
9514 fn test_invalid_funding_tx() {
9515         // Test that we properly handle invalid funding transactions sent to us from a peer.
9516         //
9517         // Previously, all other major lightning implementations had failed to properly sanitize
9518         // funding transactions from their counterparties, leading to a multi-implementation critical
9519         // security vulnerability (though we always sanitized properly, we've previously had
9520         // un-released crashes in the sanitization process).
9521         //
9522         // Further, if the funding transaction is consensus-valid, confirms, and is later spent, we'd
9523         // previously have crashed in `ChannelMonitor` even though we closed the channel as bogus and
9524         // gave up on it. We test this here by generating such a transaction.
9525         let chanmon_cfgs = create_chanmon_cfgs(2);
9526         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9527         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9528         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9529
9530         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 10_000, 42, None).unwrap();
9531         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()));
9532         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()));
9533
9534         let (temporary_channel_id, mut tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
9535
9536         // Create a witness program which can be spent by a 4-empty-stack-elements witness and which is
9537         // 136 bytes long. This matches our "accepted HTLC preimage spend" matching, previously causing
9538         // a panic as we'd try to extract a 32 byte preimage from a witness element without checking
9539         // its length.
9540         let mut wit_program: Vec<u8> = channelmonitor::deliberately_bogus_accepted_htlc_witness_program();
9541         assert!(chan_utils::HTLCType::scriptlen_to_htlctype(wit_program.len()).unwrap() ==
9542                 chan_utils::HTLCType::AcceptedHTLC);
9543
9544         let wit_program_script: Script = wit_program.clone().into();
9545         for output in tx.output.iter_mut() {
9546                 // Make the confirmed funding transaction have a bogus script_pubkey
9547                 output.script_pubkey = Script::new_v0_p2wsh(&wit_program_script.wscript_hash());
9548         }
9549
9550         nodes[0].node.funding_transaction_generated_unchecked(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone(), 0).unwrap();
9551         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()));
9552         check_added_monitors!(nodes[1], 1);
9553
9554         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()));
9555         check_added_monitors!(nodes[0], 1);
9556
9557         let events_1 = nodes[0].node.get_and_clear_pending_events();
9558         assert_eq!(events_1.len(), 0);
9559
9560         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().len(), 1);
9561         assert_eq!(nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap()[0], tx);
9562         nodes[0].tx_broadcaster.txn_broadcasted.lock().unwrap().clear();
9563
9564         let expected_err = "funding tx had wrong script/value or output index";
9565         confirm_transaction_at(&nodes[1], &tx, 1);
9566         check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: expected_err.to_string() });
9567         check_added_monitors!(nodes[1], 1);
9568         let events_2 = nodes[1].node.get_and_clear_pending_msg_events();
9569         assert_eq!(events_2.len(), 1);
9570         if let MessageSendEvent::HandleError { node_id, action } = &events_2[0] {
9571                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
9572                 if let msgs::ErrorAction::SendErrorMessage { msg } = action {
9573                         assert_eq!(msg.data, "Channel closed because of an exception: ".to_owned() + expected_err);
9574                 } else { panic!(); }
9575         } else { panic!(); }
9576         assert_eq!(nodes[1].node.list_channels().len(), 0);
9577
9578         // Now confirm a spend of the (bogus) funding transaction. As long as the witness is 5 elements
9579         // long the ChannelMonitor will try to read 32 bytes from the second-to-last element, panicing
9580         // as its not 32 bytes long.
9581         let mut spend_tx = Transaction {
9582                 version: 2i32, lock_time: PackedLockTime::ZERO,
9583                 input: tx.output.iter().enumerate().map(|(idx, _)| TxIn {
9584                         previous_output: BitcoinOutPoint {
9585                                 txid: tx.txid(),
9586                                 vout: idx as u32,
9587                         },
9588                         script_sig: Script::new(),
9589                         sequence: Sequence::ENABLE_RBF_NO_LOCKTIME,
9590                         witness: Witness::from_vec(channelmonitor::deliberately_bogus_accepted_htlc_witness())
9591                 }).collect(),
9592                 output: vec![TxOut {
9593                         value: 1000,
9594                         script_pubkey: Script::new(),
9595                 }]
9596         };
9597         check_spends!(spend_tx, tx);
9598         mine_transaction(&nodes[1], &spend_tx);
9599 }
9600
9601 fn do_test_tx_confirmed_skipping_blocks_immediate_broadcast(test_height_before_timelock: bool) {
9602         // In the first version of the chain::Confirm interface, after a refactor was made to not
9603         // broadcast CSV-locked transactions until their CSV lock is up, we wouldn't reliably broadcast
9604         // transactions after a `transactions_confirmed` call. Specifically, if the chain, provided via
9605         // `best_block_updated` is at height N, and a transaction output which we wish to spend at
9606         // height N-1 (due to a CSV to height N-1) is provided at height N, we will not broadcast the
9607         // spending transaction until height N+1 (or greater). This was due to the way
9608         // `ChannelMonitor::transactions_confirmed` worked, only checking if we should broadcast a
9609         // spending transaction at the height the input transaction was confirmed at, not whether we
9610         // should broadcast a spending transaction at the current height.
9611         // A second, similar, issue involved failing HTLCs backwards - because we only provided the
9612         // height at which transactions were confirmed to `OnchainTx::update_claims_view`, it wasn't
9613         // aware that the anti-reorg-delay had, in fact, already expired, waiting to fail-backwards
9614         // until we learned about an additional block.
9615         //
9616         // As an additional check, if `test_height_before_timelock` is set, we instead test that we
9617         // aren't broadcasting transactions too early (ie not broadcasting them at all).
9618         let chanmon_cfgs = create_chanmon_cfgs(3);
9619         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9620         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9621         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9622         *nodes[0].connect_style.borrow_mut() = ConnectStyle::BestBlockFirstSkippingBlocks;
9623
9624         create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
9625         let (chan_announce, _, channel_id, _) = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
9626         let (_, payment_hash, _) = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 1_000_000);
9627         nodes[1].node.peer_disconnected(&nodes[2].node.get_our_node_id(), false);
9628         nodes[2].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
9629
9630         nodes[1].node.force_close_broadcasting_latest_txn(&channel_id, &nodes[2].node.get_our_node_id()).unwrap();
9631         check_closed_broadcast!(nodes[1], true);
9632         check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
9633         check_added_monitors!(nodes[1], 1);
9634         let node_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
9635         assert_eq!(node_txn.len(), 1);
9636
9637         let conf_height = nodes[1].best_block_info().1;
9638         if !test_height_before_timelock {
9639                 connect_blocks(&nodes[1], 24 * 6);
9640         }
9641         nodes[1].chain_monitor.chain_monitor.transactions_confirmed(
9642                 &nodes[1].get_block_header(conf_height), &[(0, &node_txn[0])], conf_height);
9643         if test_height_before_timelock {
9644                 // If we confirmed the close transaction, but timelocks have not yet expired, we should not
9645                 // generate any events or broadcast any transactions
9646                 assert!(nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().is_empty());
9647                 assert!(nodes[1].chain_monitor.chain_monitor.get_and_clear_pending_events().is_empty());
9648         } else {
9649                 // We should broadcast an HTLC transaction spending our funding transaction first
9650                 let spending_txn = nodes[1].tx_broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
9651                 assert_eq!(spending_txn.len(), 2);
9652                 assert_eq!(spending_txn[0], node_txn[0]);
9653                 check_spends!(spending_txn[1], node_txn[0]);
9654                 // We should also generate a SpendableOutputs event with the to_self output (as its
9655                 // timelock is up).
9656                 let descriptor_spend_txn = check_spendable_outputs!(nodes[1], node_cfgs[1].keys_manager);
9657                 assert_eq!(descriptor_spend_txn.len(), 1);
9658
9659                 // If we also discover that the HTLC-Timeout transaction was confirmed some time ago, we
9660                 // should immediately fail-backwards the HTLC to the previous hop, without waiting for an
9661                 // additional block built on top of the current chain.
9662                 nodes[1].chain_monitor.chain_monitor.transactions_confirmed(
9663                         &nodes[1].get_block_header(conf_height + 1), &[(0, &spending_txn[1])], conf_height + 1);
9664                 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 }]);
9665                 check_added_monitors!(nodes[1], 1);
9666
9667                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9668                 assert!(updates.update_add_htlcs.is_empty());
9669                 assert!(updates.update_fulfill_htlcs.is_empty());
9670                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9671                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9672                 assert!(updates.update_fee.is_none());
9673                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9674                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9675                 expect_payment_failed_with_update!(nodes[0], payment_hash, false, chan_announce.contents.short_channel_id, true);
9676         }
9677 }
9678
9679 #[test]
9680 fn test_tx_confirmed_skipping_blocks_immediate_broadcast() {
9681         do_test_tx_confirmed_skipping_blocks_immediate_broadcast(false);
9682         do_test_tx_confirmed_skipping_blocks_immediate_broadcast(true);
9683 }
9684
9685 #[test]
9686 fn test_forwardable_regen() {
9687         // Tests that if we reload a ChannelManager while forwards are pending we will regenerate the
9688         // PendingHTLCsForwardable event automatically, ensuring we don't forget to forward/receive
9689         // HTLCs.
9690         // We test it for both payment receipt and payment forwarding.
9691
9692         let chanmon_cfgs = create_chanmon_cfgs(3);
9693         let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9694         let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9695         let persister: test_utils::TestPersister;
9696         let new_chain_monitor: test_utils::TestChainMonitor;
9697         let nodes_1_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
9698         let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9699         let chan_id_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
9700         let chan_id_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known()).2;
9701
9702         // First send a payment to nodes[1]
9703         let (route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
9704         nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
9705         check_added_monitors!(nodes[0], 1);
9706
9707         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9708         assert_eq!(events.len(), 1);
9709         let payment_event = SendEvent::from_event(events.pop().unwrap());
9710         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9711         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9712
9713         expect_pending_htlcs_forwardable_ignore!(nodes[1]);
9714
9715         // Next send a payment which is forwarded by nodes[1]
9716         let (route_2, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[2], 200_000);
9717         nodes[0].node.send_payment(&route_2, payment_hash_2, &Some(payment_secret_2)).unwrap();
9718         check_added_monitors!(nodes[0], 1);
9719
9720         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9721         assert_eq!(events.len(), 1);
9722         let payment_event = SendEvent::from_event(events.pop().unwrap());
9723         nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9724         commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9725
9726         // There is already a PendingHTLCsForwardable event "pending" so another one will not be
9727         // generated
9728         assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
9729
9730         // Now restart nodes[1] and make sure it regenerates a single PendingHTLCsForwardable
9731         nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
9732         nodes[2].node.peer_disconnected(&nodes[1].node.get_our_node_id(), false);
9733
9734         let nodes_1_serialized = nodes[1].node.encode();
9735         let mut chan_0_monitor_serialized = test_utils::TestVecWriter(Vec::new());
9736         let mut chan_1_monitor_serialized = test_utils::TestVecWriter(Vec::new());
9737         get_monitor!(nodes[1], chan_id_1).write(&mut chan_0_monitor_serialized).unwrap();
9738         get_monitor!(nodes[1], chan_id_2).write(&mut chan_1_monitor_serialized).unwrap();
9739
9740         persister = test_utils::TestPersister::new();
9741         let keys_manager = &chanmon_cfgs[1].keys_manager;
9742         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);
9743         nodes[1].chain_monitor = &new_chain_monitor;
9744
9745         let mut chan_0_monitor_read = &chan_0_monitor_serialized.0[..];
9746         let (_, mut chan_0_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
9747                 &mut chan_0_monitor_read, keys_manager).unwrap();
9748         assert!(chan_0_monitor_read.is_empty());
9749         let mut chan_1_monitor_read = &chan_1_monitor_serialized.0[..];
9750         let (_, mut chan_1_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(
9751                 &mut chan_1_monitor_read, keys_manager).unwrap();
9752         assert!(chan_1_monitor_read.is_empty());
9753
9754         let mut nodes_1_read = &nodes_1_serialized[..];
9755         let (_, nodes_1_deserialized_tmp) = {
9756                 let mut channel_monitors = HashMap::new();
9757                 channel_monitors.insert(chan_0_monitor.get_funding_txo().0, &mut chan_0_monitor);
9758                 channel_monitors.insert(chan_1_monitor.get_funding_txo().0, &mut chan_1_monitor);
9759                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut nodes_1_read, ChannelManagerReadArgs {
9760                         default_config: UserConfig::default(),
9761                         keys_manager,
9762                         fee_estimator: node_cfgs[1].fee_estimator,
9763                         chain_monitor: nodes[1].chain_monitor,
9764                         tx_broadcaster: nodes[1].tx_broadcaster.clone(),
9765                         logger: nodes[1].logger,
9766                         channel_monitors,
9767                 }).unwrap()
9768         };
9769         nodes_1_deserialized = nodes_1_deserialized_tmp;
9770         assert!(nodes_1_read.is_empty());
9771
9772         assert!(nodes[1].chain_monitor.watch_channel(chan_0_monitor.get_funding_txo().0, chan_0_monitor).is_ok());
9773         assert!(nodes[1].chain_monitor.watch_channel(chan_1_monitor.get_funding_txo().0, chan_1_monitor).is_ok());
9774         nodes[1].node = &nodes_1_deserialized;
9775         check_added_monitors!(nodes[1], 2);
9776
9777         reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
9778         // Note that nodes[1] and nodes[2] resend their channel_ready here since they haven't updated
9779         // the commitment state.
9780         reconnect_nodes(&nodes[1], &nodes[2], (true, true), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
9781
9782         assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
9783
9784         expect_pending_htlcs_forwardable!(nodes[1]);
9785         expect_payment_received!(nodes[1], payment_hash, payment_secret, 100_000);
9786         check_added_monitors!(nodes[1], 1);
9787
9788         let mut events = nodes[1].node.get_and_clear_pending_msg_events();
9789         assert_eq!(events.len(), 1);
9790         let payment_event = SendEvent::from_event(events.pop().unwrap());
9791         nodes[2].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
9792         commitment_signed_dance!(nodes[2], nodes[1], payment_event.commitment_msg, false);
9793         expect_pending_htlcs_forwardable!(nodes[2]);
9794         expect_payment_received!(nodes[2], payment_hash_2, payment_secret_2, 200_000);
9795
9796         claim_payment(&nodes[0], &[&nodes[1]], payment_preimage);
9797         claim_payment(&nodes[0], &[&nodes[1], &nodes[2]], payment_preimage_2);
9798 }
9799
9800 fn do_test_dup_htlc_second_rejected(test_for_second_fail_panic: bool) {
9801         let chanmon_cfgs = create_chanmon_cfgs(2);
9802         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9803         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9804         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9805
9806         let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
9807
9808         let payment_params = PaymentParameters::from_node_id(nodes[1].node.get_our_node_id())
9809                 .with_features(InvoiceFeatures::known());
9810         let route = get_route!(nodes[0], payment_params, 10_000, TEST_FINAL_CLTV).unwrap();
9811
9812         let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(&nodes[1]);
9813
9814         {
9815                 nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
9816                 check_added_monitors!(nodes[0], 1);
9817                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9818                 assert_eq!(events.len(), 1);
9819                 let mut payment_event = SendEvent::from_event(events.pop().unwrap());
9820                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9821                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9822         }
9823         expect_pending_htlcs_forwardable!(nodes[1]);
9824         expect_payment_received!(nodes[1], our_payment_hash, our_payment_secret, 10_000);
9825
9826         {
9827                 nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
9828                 check_added_monitors!(nodes[0], 1);
9829                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9830                 assert_eq!(events.len(), 1);
9831                 let mut payment_event = SendEvent::from_event(events.pop().unwrap());
9832                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9833                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9834                 // At this point, nodes[1] would notice it has too much value for the payment. It will
9835                 // assume the second is a privacy attack (no longer particularly relevant
9836                 // post-payment_secrets) and fail back the new HTLC. Previously, it'd also have failed back
9837                 // the first HTLC delivered above.
9838         }
9839
9840         expect_pending_htlcs_forwardable_ignore!(nodes[1]);
9841         nodes[1].node.process_pending_htlc_forwards();
9842
9843         if test_for_second_fail_panic {
9844                 // Now we go fail back the first HTLC from the user end.
9845                 nodes[1].node.fail_htlc_backwards(&our_payment_hash);
9846
9847                 let expected_destinations = vec![
9848                         HTLCDestination::FailedPayment { payment_hash: our_payment_hash },
9849                         HTLCDestination::FailedPayment { payment_hash: our_payment_hash },
9850                 ];
9851                 expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore!(nodes[1],  expected_destinations);
9852                 nodes[1].node.process_pending_htlc_forwards();
9853
9854                 check_added_monitors!(nodes[1], 1);
9855                 let fail_updates_1 = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9856                 assert_eq!(fail_updates_1.update_fail_htlcs.len(), 2);
9857
9858                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &fail_updates_1.update_fail_htlcs[0]);
9859                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &fail_updates_1.update_fail_htlcs[1]);
9860                 commitment_signed_dance!(nodes[0], nodes[1], fail_updates_1.commitment_signed, false);
9861
9862                 let failure_events = nodes[0].node.get_and_clear_pending_events();
9863                 assert_eq!(failure_events.len(), 2);
9864                 if let Event::PaymentPathFailed { .. } = failure_events[0] {} else { panic!(); }
9865                 if let Event::PaymentPathFailed { .. } = failure_events[1] {} else { panic!(); }
9866         } else {
9867                 // Let the second HTLC fail and claim the first
9868                 expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
9869                 nodes[1].node.process_pending_htlc_forwards();
9870
9871                 check_added_monitors!(nodes[1], 1);
9872                 let fail_updates_1 = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9873                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &fail_updates_1.update_fail_htlcs[0]);
9874                 commitment_signed_dance!(nodes[0], nodes[1], fail_updates_1.commitment_signed, false);
9875
9876                 expect_payment_failed_conditions(&nodes[0], our_payment_hash, true, PaymentFailedConditions::new().mpp_parts_remain());
9877
9878                 claim_payment(&nodes[0], &[&nodes[1]], our_payment_preimage);
9879         }
9880 }
9881
9882 #[test]
9883 fn test_dup_htlc_second_fail_panic() {
9884         // Previously, if we received two HTLCs back-to-back, where the second overran the expected
9885         // value for the payment, we'd fail back both HTLCs after generating a `PaymentReceived` event.
9886         // Then, if the user failed the second payment, they'd hit a "tried to fail an already failed
9887         // HTLC" debug panic. This tests for this behavior, checking that only one HTLC is auto-failed.
9888         do_test_dup_htlc_second_rejected(true);
9889 }
9890
9891 #[test]
9892 fn test_dup_htlc_second_rejected() {
9893         // Test that if we receive a second HTLC for an MPP payment that overruns the payment amount we
9894         // simply reject the second HTLC but are still able to claim the first HTLC.
9895         do_test_dup_htlc_second_rejected(false);
9896 }
9897
9898 #[test]
9899 fn test_inconsistent_mpp_params() {
9900         // Test that if we recieve two HTLCs with different payment parameters we fail back the first
9901         // such HTLC and allow the second to stay.
9902         let chanmon_cfgs = create_chanmon_cfgs(4);
9903         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
9904         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
9905         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
9906
9907         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9908         create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9909         create_announced_chan_between_nodes_with_value(&nodes, 1, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9910         let chan_2_3 =create_announced_chan_between_nodes_with_value(&nodes, 2, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
9911
9912         let payment_params = PaymentParameters::from_node_id(nodes[3].node.get_our_node_id())
9913                 .with_features(InvoiceFeatures::known());
9914         let mut route = get_route!(nodes[0], payment_params, 15_000_000, TEST_FINAL_CLTV).unwrap();
9915         assert_eq!(route.paths.len(), 2);
9916         route.paths.sort_by(|path_a, _| {
9917                 // Sort the path so that the path through nodes[1] comes first
9918                 if path_a[0].pubkey == nodes[1].node.get_our_node_id() {
9919                         core::cmp::Ordering::Less } else { core::cmp::Ordering::Greater }
9920         });
9921         let payment_params_opt = Some(payment_params);
9922
9923         let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(&nodes[3]);
9924
9925         let cur_height = nodes[0].best_block_info().1;
9926         let payment_id = PaymentId([42; 32]);
9927         {
9928                 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();
9929                 check_added_monitors!(nodes[0], 1);
9930
9931                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9932                 assert_eq!(events.len(), 1);
9933                 pass_along_path(&nodes[0], &[&nodes[1], &nodes[3]], 15_000_000, our_payment_hash, Some(our_payment_secret), events.pop().unwrap(), false, None);
9934         }
9935         assert!(nodes[3].node.get_and_clear_pending_events().is_empty());
9936
9937         {
9938                 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();
9939                 check_added_monitors!(nodes[0], 1);
9940
9941                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9942                 assert_eq!(events.len(), 1);
9943                 let payment_event = SendEvent::from_event(events.pop().unwrap());
9944
9945                 nodes[2].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9946                 commitment_signed_dance!(nodes[2], nodes[0], payment_event.commitment_msg, false);
9947
9948                 expect_pending_htlcs_forwardable!(nodes[2]);
9949                 check_added_monitors!(nodes[2], 1);
9950
9951                 let mut events = nodes[2].node.get_and_clear_pending_msg_events();
9952                 assert_eq!(events.len(), 1);
9953                 let payment_event = SendEvent::from_event(events.pop().unwrap());
9954
9955                 nodes[3].node.handle_update_add_htlc(&nodes[2].node.get_our_node_id(), &payment_event.msgs[0]);
9956                 check_added_monitors!(nodes[3], 0);
9957                 commitment_signed_dance!(nodes[3], nodes[2], payment_event.commitment_msg, true, true);
9958
9959                 // At this point, nodes[3] should notice the two HTLCs don't contain the same total payment
9960                 // amount. It will assume the second is a privacy attack (no longer particularly relevant
9961                 // post-payment_secrets) and fail back the new HTLC.
9962         }
9963         expect_pending_htlcs_forwardable_ignore!(nodes[3]);
9964         nodes[3].node.process_pending_htlc_forwards();
9965         expect_pending_htlcs_forwardable_and_htlc_handling_failed_ignore!(nodes[3], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
9966         nodes[3].node.process_pending_htlc_forwards();
9967
9968         check_added_monitors!(nodes[3], 1);
9969
9970         let fail_updates_1 = get_htlc_update_msgs!(nodes[3], nodes[2].node.get_our_node_id());
9971         nodes[2].node.handle_update_fail_htlc(&nodes[3].node.get_our_node_id(), &fail_updates_1.update_fail_htlcs[0]);
9972         commitment_signed_dance!(nodes[2], nodes[3], fail_updates_1.commitment_signed, false);
9973
9974         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 }]);
9975         check_added_monitors!(nodes[2], 1);
9976
9977         let fail_updates_2 = get_htlc_update_msgs!(nodes[2], nodes[0].node.get_our_node_id());
9978         nodes[0].node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &fail_updates_2.update_fail_htlcs[0]);
9979         commitment_signed_dance!(nodes[0], nodes[2], fail_updates_2.commitment_signed, false);
9980
9981         expect_payment_failed_conditions(&nodes[0], our_payment_hash, true, PaymentFailedConditions::new().mpp_parts_remain());
9982
9983         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();
9984         check_added_monitors!(nodes[0], 1);
9985
9986         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9987         assert_eq!(events.len(), 1);
9988         pass_along_path(&nodes[0], &[&nodes[2], &nodes[3]], 15_000_000, our_payment_hash, Some(our_payment_secret), events.pop().unwrap(), true, None);
9989
9990         claim_payment_along_route(&nodes[0], &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], false, our_payment_preimage);
9991 }
9992
9993 #[test]
9994 fn test_keysend_payments_to_public_node() {
9995         let chanmon_cfgs = create_chanmon_cfgs(2);
9996         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9997         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9998         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9999
10000         let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 10001, InitFeatures::known(), InitFeatures::known());
10001         let network_graph = nodes[0].network_graph;
10002         let payer_pubkey = nodes[0].node.get_our_node_id();
10003         let payee_pubkey = nodes[1].node.get_our_node_id();
10004         let route_params = RouteParameters {
10005                 payment_params: PaymentParameters::for_keysend(payee_pubkey),
10006                 final_value_msat: 10000,
10007                 final_cltv_expiry_delta: 40,
10008         };
10009         let scorer = test_utils::TestScorer::with_penalty(0);
10010         let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10011         let route = find_route(&payer_pubkey, &route_params, &network_graph, None, nodes[0].logger, &scorer, &random_seed_bytes).unwrap();
10012
10013         let test_preimage = PaymentPreimage([42; 32]);
10014         let (payment_hash, _) = nodes[0].node.send_spontaneous_payment(&route, Some(test_preimage)).unwrap();
10015         check_added_monitors!(nodes[0], 1);
10016         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10017         assert_eq!(events.len(), 1);
10018         let event = events.pop().unwrap();
10019         let path = vec![&nodes[1]];
10020         pass_along_path(&nodes[0], &path, 10000, payment_hash, None, event, true, Some(test_preimage));
10021         claim_payment(&nodes[0], &path, test_preimage);
10022 }
10023
10024 #[test]
10025 fn test_keysend_payments_to_private_node() {
10026         let chanmon_cfgs = create_chanmon_cfgs(2);
10027         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10028         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10029         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10030
10031         let payer_pubkey = nodes[0].node.get_our_node_id();
10032         let payee_pubkey = nodes[1].node.get_our_node_id();
10033         nodes[0].node.peer_connected(&payee_pubkey, &msgs::Init { features: InitFeatures::known(), remote_network_address: None });
10034         nodes[1].node.peer_connected(&payer_pubkey, &msgs::Init { features: InitFeatures::known(), remote_network_address: None });
10035
10036         let _chan = create_chan_between_nodes(&nodes[0], &nodes[1], InitFeatures::known(), InitFeatures::known());
10037         let route_params = RouteParameters {
10038                 payment_params: PaymentParameters::for_keysend(payee_pubkey),
10039                 final_value_msat: 10000,
10040                 final_cltv_expiry_delta: 40,
10041         };
10042         let network_graph = nodes[0].network_graph;
10043         let first_hops = nodes[0].node.list_usable_channels();
10044         let scorer = test_utils::TestScorer::with_penalty(0);
10045         let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10046         let route = find_route(
10047                 &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10048                 nodes[0].logger, &scorer, &random_seed_bytes
10049         ).unwrap();
10050
10051         let test_preimage = PaymentPreimage([42; 32]);
10052         let (payment_hash, _) = nodes[0].node.send_spontaneous_payment(&route, Some(test_preimage)).unwrap();
10053         check_added_monitors!(nodes[0], 1);
10054         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10055         assert_eq!(events.len(), 1);
10056         let event = events.pop().unwrap();
10057         let path = vec![&nodes[1]];
10058         pass_along_path(&nodes[0], &path, 10000, payment_hash, None, event, true, Some(test_preimage));
10059         claim_payment(&nodes[0], &path, test_preimage);
10060 }
10061
10062 #[test]
10063 fn test_double_partial_claim() {
10064         // Test what happens if a node receives a payment, generates a PaymentReceived event, the HTLCs
10065         // time out, the sender resends only some of the MPP parts, then the user processes the
10066         // PaymentReceived event, ensuring they don't inadvertently claim only part of the full payment
10067         // amount.
10068         let chanmon_cfgs = create_chanmon_cfgs(4);
10069         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10070         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10071         let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10072
10073         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
10074         create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100_000, 0, InitFeatures::known(), InitFeatures::known());
10075         create_announced_chan_between_nodes_with_value(&nodes, 1, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
10076         create_announced_chan_between_nodes_with_value(&nodes, 2, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known());
10077
10078         let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[3], 15_000_000);
10079         assert_eq!(route.paths.len(), 2);
10080         route.paths.sort_by(|path_a, _| {
10081                 // Sort the path so that the path through nodes[1] comes first
10082                 if path_a[0].pubkey == nodes[1].node.get_our_node_id() {
10083                         core::cmp::Ordering::Less } else { core::cmp::Ordering::Greater }
10084         });
10085
10086         send_along_route_with_secret(&nodes[0], route.clone(), &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], 15_000_000, payment_hash, payment_secret);
10087         // nodes[3] has now received a PaymentReceived event...which it will take some (exorbitant)
10088         // amount of time to respond to.
10089
10090         // Connect some blocks to time out the payment
10091         connect_blocks(&nodes[3], TEST_FINAL_CLTV);
10092         connect_blocks(&nodes[0], TEST_FINAL_CLTV); // To get the same height for sending later
10093
10094         let failed_destinations = vec![
10095                 HTLCDestination::FailedPayment { payment_hash },
10096                 HTLCDestination::FailedPayment { payment_hash },
10097         ];
10098         expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[3], failed_destinations);
10099
10100         pass_failed_payment_back(&nodes[0], &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], false, payment_hash);
10101
10102         // nodes[1] now retries one of the two paths...
10103         nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
10104         check_added_monitors!(nodes[0], 2);
10105
10106         let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10107         assert_eq!(events.len(), 2);
10108         pass_along_path(&nodes[0], &[&nodes[1], &nodes[3]], 15_000_000, payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
10109
10110         // At this point nodes[3] has received one half of the payment, and the user goes to handle
10111         // that PaymentReceived event they got hours ago and never handled...we should refuse to claim.
10112         nodes[3].node.claim_funds(payment_preimage);
10113         check_added_monitors!(nodes[3], 0);
10114         assert!(nodes[3].node.get_and_clear_pending_msg_events().is_empty());
10115 }
10116
10117 fn do_test_partial_claim_before_restart(persist_both_monitors: bool) {
10118         // Test what happens if a node receives an MPP payment, claims it, but crashes before
10119         // persisting the ChannelManager. If `persist_both_monitors` is false, also crash after only
10120         // updating one of the two channels' ChannelMonitors. As a result, on startup, we'll (a) still
10121         // have the PaymentReceived event, (b) have one (or two) channel(s) that goes on chain with the
10122         // HTLC preimage in them, and (c) optionally have one channel that is live off-chain but does
10123         // not have the preimage tied to the still-pending HTLC.
10124         //
10125         // To get to the correct state, on startup we should propagate the preimage to the
10126         // still-off-chain channel, claiming the HTLC as soon as the peer connects, with the monitor
10127         // receiving the preimage without a state update.
10128         //
10129         // Further, we should generate a `PaymentClaimed` event to inform the user that the payment was
10130         // definitely claimed.
10131         let chanmon_cfgs = create_chanmon_cfgs(4);
10132         let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10133         let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10134
10135         let persister: test_utils::TestPersister;
10136         let new_chain_monitor: test_utils::TestChainMonitor;
10137         let nodes_3_deserialized: ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>;
10138
10139         let mut nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10140
10141         create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 0, InitFeatures::known(), InitFeatures::known());
10142         create_announced_chan_between_nodes_with_value(&nodes, 0, 2, 100_000, 0, InitFeatures::known(), InitFeatures::known());
10143         let chan_id_persisted = create_announced_chan_between_nodes_with_value(&nodes, 1, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known()).2;
10144         let chan_id_not_persisted = create_announced_chan_between_nodes_with_value(&nodes, 2, 3, 100_000, 0, InitFeatures::known(), InitFeatures::known()).2;
10145
10146         // Create an MPP route for 15k sats, more than the default htlc-max of 10%
10147         let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[3], 15_000_000);
10148         assert_eq!(route.paths.len(), 2);
10149         route.paths.sort_by(|path_a, _| {
10150                 // Sort the path so that the path through nodes[1] comes first
10151                 if path_a[0].pubkey == nodes[1].node.get_our_node_id() {
10152                         core::cmp::Ordering::Less } else { core::cmp::Ordering::Greater }
10153         });
10154
10155         nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
10156         check_added_monitors!(nodes[0], 2);
10157
10158         // Send the payment through to nodes[3] *without* clearing the PaymentReceived event
10159         let mut send_events = nodes[0].node.get_and_clear_pending_msg_events();
10160         assert_eq!(send_events.len(), 2);
10161         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);
10162         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);
10163
10164         // Now that we have an MPP payment pending, get the latest encoded copies of nodes[3]'s
10165         // monitors and ChannelManager, for use later, if we don't want to persist both monitors.
10166         let mut original_monitor = test_utils::TestVecWriter(Vec::new());
10167         if !persist_both_monitors {
10168                 for outpoint in nodes[3].chain_monitor.chain_monitor.list_monitors() {
10169                         if outpoint.to_channel_id() == chan_id_not_persisted {
10170                                 assert!(original_monitor.0.is_empty());
10171                                 nodes[3].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap().write(&mut original_monitor).unwrap();
10172                         }
10173                 }
10174         }
10175
10176         let mut original_manager = test_utils::TestVecWriter(Vec::new());
10177         nodes[3].node.write(&mut original_manager).unwrap();
10178
10179         expect_payment_received!(nodes[3], payment_hash, payment_secret, 15_000_000);
10180
10181         nodes[3].node.claim_funds(payment_preimage);
10182         check_added_monitors!(nodes[3], 2);
10183         expect_payment_claimed!(nodes[3], payment_hash, 15_000_000);
10184
10185         // Now fetch one of the two updated ChannelMonitors from nodes[3], and restart pretending we
10186         // crashed in between the two persistence calls - using one old ChannelMonitor and one new one,
10187         // with the old ChannelManager.
10188         let mut updated_monitor = test_utils::TestVecWriter(Vec::new());
10189         for outpoint in nodes[3].chain_monitor.chain_monitor.list_monitors() {
10190                 if outpoint.to_channel_id() == chan_id_persisted {
10191                         assert!(updated_monitor.0.is_empty());
10192                         nodes[3].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap().write(&mut updated_monitor).unwrap();
10193                 }
10194         }
10195         // If `persist_both_monitors` is set, get the second monitor here as well
10196         if persist_both_monitors {
10197                 for outpoint in nodes[3].chain_monitor.chain_monitor.list_monitors() {
10198                         if outpoint.to_channel_id() == chan_id_not_persisted {
10199                                 assert!(original_monitor.0.is_empty());
10200                                 nodes[3].chain_monitor.chain_monitor.get_monitor(outpoint).unwrap().write(&mut original_monitor).unwrap();
10201                         }
10202                 }
10203         }
10204
10205         // Now restart nodes[3].
10206         persister = test_utils::TestPersister::new();
10207         let keys_manager = &chanmon_cfgs[3].keys_manager;
10208         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);
10209         nodes[3].chain_monitor = &new_chain_monitor;
10210         let mut monitors = Vec::new();
10211         for mut monitor_data in [original_monitor, updated_monitor].iter() {
10212                 let (_, mut deserialized_monitor) = <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(&mut &monitor_data.0[..], keys_manager).unwrap();
10213                 monitors.push(deserialized_monitor);
10214         }
10215
10216         let config = UserConfig::default();
10217         nodes_3_deserialized = {
10218                 let mut channel_monitors = HashMap::new();
10219                 for monitor in monitors.iter_mut() {
10220                         channel_monitors.insert(monitor.get_funding_txo().0, monitor);
10221                 }
10222                 <(BlockHash, ChannelManager<EnforcingSigner, &test_utils::TestChainMonitor, &test_utils::TestBroadcaster, &test_utils::TestKeysInterface, &test_utils::TestFeeEstimator, &test_utils::TestLogger>)>::read(&mut &original_manager.0[..], ChannelManagerReadArgs {
10223                         default_config: config,
10224                         keys_manager,
10225                         fee_estimator: node_cfgs[3].fee_estimator,
10226                         chain_monitor: nodes[3].chain_monitor,
10227                         tx_broadcaster: nodes[3].tx_broadcaster.clone(),
10228                         logger: nodes[3].logger,
10229                         channel_monitors,
10230                 }).unwrap().1
10231         };
10232         nodes[3].node = &nodes_3_deserialized;
10233
10234         for monitor in monitors {
10235                 // On startup the preimage should have been copied into the non-persisted monitor:
10236                 assert!(monitor.get_stored_preimages().contains_key(&payment_hash));
10237                 nodes[3].chain_monitor.watch_channel(monitor.get_funding_txo().0.clone(), monitor).unwrap();
10238         }
10239         check_added_monitors!(nodes[3], 2);
10240
10241         nodes[1].node.peer_disconnected(&nodes[3].node.get_our_node_id(), false);
10242         nodes[2].node.peer_disconnected(&nodes[3].node.get_our_node_id(), false);
10243
10244         // During deserialization, we should have closed one channel and broadcast its latest
10245         // commitment transaction. We should also still have the original PaymentReceived event we
10246         // never finished processing.
10247         let events = nodes[3].node.get_and_clear_pending_events();
10248         assert_eq!(events.len(), if persist_both_monitors { 4 } else { 3 });
10249         if let Event::PaymentReceived { amount_msat: 15_000_000, .. } = events[0] { } else { panic!(); }
10250         if let Event::ChannelClosed { reason: ClosureReason::OutdatedChannelManager, .. } = events[1] { } else { panic!(); }
10251         if persist_both_monitors {
10252                 if let Event::ChannelClosed { reason: ClosureReason::OutdatedChannelManager, .. } = events[2] { } else { panic!(); }
10253         }
10254
10255         // On restart, we should also get a duplicate PaymentClaimed event as we persisted the
10256         // ChannelManager prior to handling the original one.
10257         if let Event::PaymentClaimed { payment_hash: our_payment_hash, amount_msat: 15_000_000, .. } =
10258                 events[if persist_both_monitors { 3 } else { 2 }]
10259         {
10260                 assert_eq!(payment_hash, our_payment_hash);
10261         } else { panic!(); }
10262
10263         assert_eq!(nodes[3].node.list_channels().len(), if persist_both_monitors { 0 } else { 1 });
10264         if !persist_both_monitors {
10265                 // If one of the two channels is still live, reveal the payment preimage over it.
10266
10267                 nodes[3].node.peer_connected(&nodes[2].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
10268                 let reestablish_1 = get_chan_reestablish_msgs!(nodes[3], nodes[2]);
10269                 nodes[2].node.peer_connected(&nodes[3].node.get_our_node_id(), &msgs::Init { features: InitFeatures::empty(), remote_network_address: None });
10270                 let reestablish_2 = get_chan_reestablish_msgs!(nodes[2], nodes[3]);
10271
10272                 nodes[2].node.handle_channel_reestablish(&nodes[3].node.get_our_node_id(), &reestablish_1[0]);
10273                 get_event_msg!(nodes[2], MessageSendEvent::SendChannelUpdate, nodes[3].node.get_our_node_id());
10274                 assert!(nodes[2].node.get_and_clear_pending_msg_events().is_empty());
10275
10276                 nodes[3].node.handle_channel_reestablish(&nodes[2].node.get_our_node_id(), &reestablish_2[0]);
10277
10278                 // Once we call `get_and_clear_pending_msg_events` the holding cell is cleared and the HTLC
10279                 // claim should fly.
10280                 let ds_msgs = nodes[3].node.get_and_clear_pending_msg_events();
10281                 check_added_monitors!(nodes[3], 1);
10282                 assert_eq!(ds_msgs.len(), 2);
10283                 if let MessageSendEvent::SendChannelUpdate { .. } = ds_msgs[1] {} else { panic!(); }
10284
10285                 let cs_updates = match ds_msgs[0] {
10286                         MessageSendEvent::UpdateHTLCs { ref updates, .. } => {
10287                                 nodes[2].node.handle_update_fulfill_htlc(&nodes[3].node.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
10288                                 check_added_monitors!(nodes[2], 1);
10289                                 let cs_updates = get_htlc_update_msgs!(nodes[2], nodes[0].node.get_our_node_id());
10290                                 expect_payment_forwarded!(nodes[2], nodes[0], nodes[3], Some(1000), false, false);
10291                                 commitment_signed_dance!(nodes[2], nodes[3], updates.commitment_signed, false, true);
10292                                 cs_updates
10293                         }
10294                         _ => panic!(),
10295                 };
10296
10297                 nodes[0].node.handle_update_fulfill_htlc(&nodes[2].node.get_our_node_id(), &cs_updates.update_fulfill_htlcs[0]);
10298                 commitment_signed_dance!(nodes[0], nodes[2], cs_updates.commitment_signed, false, true);
10299                 expect_payment_sent!(nodes[0], payment_preimage);
10300         }
10301 }
10302
10303 #[test]
10304 fn test_partial_claim_before_restart() {
10305         do_test_partial_claim_before_restart(false);
10306         do_test_partial_claim_before_restart(true);
10307 }
10308
10309 /// The possible events which may trigger a `max_dust_htlc_exposure` breach
10310 #[derive(Clone, Copy, PartialEq)]
10311 enum ExposureEvent {
10312         /// Breach occurs at HTLC forwarding (see `send_htlc`)
10313         AtHTLCForward,
10314         /// Breach occurs at HTLC reception (see `update_add_htlc`)
10315         AtHTLCReception,
10316         /// Breach occurs at outbound update_fee (see `send_update_fee`)
10317         AtUpdateFeeOutbound,
10318 }
10319
10320 fn do_test_max_dust_htlc_exposure(dust_outbound_balance: bool, exposure_breach_event: ExposureEvent, on_holder_tx: bool) {
10321         // Test that we properly reject dust HTLC violating our `max_dust_htlc_exposure_msat`
10322         // policy.
10323         //
10324         // At HTLC forward (`send_payment()`), if the sum of the trimmed-to-dust HTLC inbound and
10325         // trimmed-to-dust HTLC outbound balance and this new payment as included on next
10326         // counterparty commitment are above our `max_dust_htlc_exposure_msat`, we'll reject the
10327         // update. At HTLC reception (`update_add_htlc()`), if the sum of the trimmed-to-dust HTLC
10328         // inbound and trimmed-to-dust HTLC outbound balance and this new received HTLC as included
10329         // on next counterparty commitment are above our `max_dust_htlc_exposure_msat`, we'll fail
10330         // the update. Note, we return a `temporary_channel_failure` (0x1000 | 7), as the channel
10331         // might be available again for HTLC processing once the dust bandwidth has cleared up.
10332
10333         let chanmon_cfgs = create_chanmon_cfgs(2);
10334         let mut config = test_default_channel_config();
10335         config.channel_config.max_dust_htlc_exposure_msat = 5_000_000; // default setting value
10336         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10337         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(config), None]);
10338         let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10339
10340         nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10341         let mut open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10342         open_channel.max_htlc_value_in_flight_msat = 50_000_000;
10343         open_channel.max_accepted_htlcs = 60;
10344         if on_holder_tx {
10345                 open_channel.dust_limit_satoshis = 546;
10346         }
10347         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_channel);
10348         let mut accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10349         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel);
10350
10351         let opt_anchors = false;
10352
10353         let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10354
10355         if on_holder_tx {
10356                 if let Some(mut chan) = nodes[0].node.channel_state.lock().unwrap().by_id.get_mut(&temporary_channel_id) {
10357                         chan.holder_dust_limit_satoshis = 546;
10358                 }
10359         }
10360
10361         nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10362         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()));
10363         check_added_monitors!(nodes[1], 1);
10364
10365         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()));
10366         check_added_monitors!(nodes[0], 1);
10367
10368         let (channel_ready, channel_id) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10369         let (announcement, as_update, bs_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10370         update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &as_update, &bs_update);
10371
10372         let dust_buffer_feerate = {
10373                 let chan_lock = nodes[0].node.channel_state.lock().unwrap();
10374                 let chan = chan_lock.by_id.get(&channel_id).unwrap();
10375                 chan.get_dust_buffer_feerate(None) as u64
10376         };
10377         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;
10378         let dust_outbound_htlc_on_holder_tx: u64 = config.channel_config.max_dust_htlc_exposure_msat / dust_outbound_htlc_on_holder_tx_msat;
10379
10380         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;
10381         let dust_inbound_htlc_on_holder_tx: u64 = config.channel_config.max_dust_htlc_exposure_msat / dust_inbound_htlc_on_holder_tx_msat;
10382
10383         let dust_htlc_on_counterparty_tx: u64 = 25;
10384         let dust_htlc_on_counterparty_tx_msat: u64 = config.channel_config.max_dust_htlc_exposure_msat / dust_htlc_on_counterparty_tx;
10385
10386         if on_holder_tx {
10387                 if dust_outbound_balance {
10388                         // Outbound dust threshold: 2223 sats (`dust_buffer_feerate` * HTLC_TIMEOUT_TX_WEIGHT / 1000 + holder's `dust_limit_satoshis`)
10389                         // Outbound dust balance: 4372 sats
10390                         // Note, we need sent payment to be above outbound dust threshold on counterparty_tx of 2132 sats
10391                         for i in 0..dust_outbound_htlc_on_holder_tx {
10392                                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], dust_outbound_htlc_on_holder_tx_msat);
10393                                 if let Err(_) = nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)) { panic!("Unexpected event at dust HTLC {}", i); }
10394                         }
10395                 } else {
10396                         // Inbound dust threshold: 2324 sats (`dust_buffer_feerate` * HTLC_SUCCESS_TX_WEIGHT / 1000 + holder's `dust_limit_satoshis`)
10397                         // Inbound dust balance: 4372 sats
10398                         // Note, we need sent payment to be above outbound dust threshold on counterparty_tx of 2031 sats
10399                         for _ in 0..dust_inbound_htlc_on_holder_tx {
10400                                 route_payment(&nodes[1], &[&nodes[0]], dust_inbound_htlc_on_holder_tx_msat);
10401                         }
10402                 }
10403         } else {
10404                 if dust_outbound_balance {
10405                         // Outbound dust threshold: 2132 sats (`dust_buffer_feerate` * HTLC_TIMEOUT_TX_WEIGHT / 1000 + counteparty's `dust_limit_satoshis`)
10406                         // Outbound dust balance: 5000 sats
10407                         for i in 0..dust_htlc_on_counterparty_tx {
10408                                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], dust_htlc_on_counterparty_tx_msat);
10409                                 if let Err(_) = nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)) { panic!("Unexpected event at dust HTLC {}", i); }
10410                         }
10411                 } else {
10412                         // Inbound dust threshold: 2031 sats (`dust_buffer_feerate` * HTLC_TIMEOUT_TX_WEIGHT / 1000 + counteparty's `dust_limit_satoshis`)
10413                         // Inbound dust balance: 5000 sats
10414                         for _ in 0..dust_htlc_on_counterparty_tx {
10415                                 route_payment(&nodes[1], &[&nodes[0]], dust_htlc_on_counterparty_tx_msat);
10416                         }
10417                 }
10418         }
10419
10420         let dust_overflow = dust_htlc_on_counterparty_tx_msat * (dust_htlc_on_counterparty_tx + 1);
10421         if exposure_breach_event == ExposureEvent::AtHTLCForward {
10422                 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 });
10423                 let mut config = UserConfig::default();
10424                 // With default dust exposure: 5000 sats
10425                 if on_holder_tx {
10426                         let dust_outbound_overflow = dust_outbound_htlc_on_holder_tx_msat * (dust_outbound_htlc_on_holder_tx + 1);
10427                         let dust_inbound_overflow = dust_inbound_htlc_on_holder_tx_msat * dust_inbound_htlc_on_holder_tx + dust_outbound_htlc_on_holder_tx_msat;
10428                         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)));
10429                 } else {
10430                         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)));
10431                 }
10432         } else if exposure_breach_event == ExposureEvent::AtHTLCReception {
10433                 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 });
10434                 nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
10435                 check_added_monitors!(nodes[1], 1);
10436                 let mut events = nodes[1].node.get_and_clear_pending_msg_events();
10437                 assert_eq!(events.len(), 1);
10438                 let payment_event = SendEvent::from_event(events.remove(0));
10439                 nodes[0].node.handle_update_add_htlc(&nodes[1].node.get_our_node_id(), &payment_event.msgs[0]);
10440                 // With default dust exposure: 5000 sats
10441                 if on_holder_tx {
10442                         // Outbound dust balance: 6399 sats
10443                         let dust_inbound_overflow = dust_inbound_htlc_on_holder_tx_msat * (dust_inbound_htlc_on_holder_tx + 1);
10444                         let dust_outbound_overflow = dust_outbound_htlc_on_holder_tx_msat * dust_outbound_htlc_on_holder_tx + dust_inbound_htlc_on_holder_tx_msat;
10445                         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);
10446                 } else {
10447                         // Outbound dust balance: 5200 sats
10448                         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);
10449                 }
10450         } else if exposure_breach_event == ExposureEvent::AtUpdateFeeOutbound {
10451                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 2_500_000);
10452                 if let Err(_) = nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)) { panic!("Unexpected event at update_fee-swallowed HTLC", ); }
10453                 {
10454                         let mut feerate_lock = chanmon_cfgs[0].fee_estimator.sat_per_kw.lock().unwrap();
10455                         *feerate_lock = *feerate_lock * 10;
10456                 }
10457                 nodes[0].node.timer_tick_occurred();
10458                 check_added_monitors!(nodes[0], 1);
10459                 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);
10460         }
10461
10462         let _ = nodes[0].node.get_and_clear_pending_msg_events();
10463         let mut added_monitors = nodes[0].chain_monitor.added_monitors.lock().unwrap();
10464         added_monitors.clear();
10465 }
10466
10467 #[test]
10468 fn test_max_dust_htlc_exposure() {
10469         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCForward, true);
10470         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCForward, true);
10471         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCReception, true);
10472         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCReception, false);
10473         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCForward, false);
10474         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCReception, false);
10475         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtHTLCReception, true);
10476         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtHTLCForward, false);
10477         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtUpdateFeeOutbound, true);
10478         do_test_max_dust_htlc_exposure(true, ExposureEvent::AtUpdateFeeOutbound, false);
10479         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtUpdateFeeOutbound, false);
10480         do_test_max_dust_htlc_exposure(false, ExposureEvent::AtUpdateFeeOutbound, true);
10481 }
10482
10483 #[test]
10484 fn test_non_final_funding_tx() {
10485         let chanmon_cfgs = create_chanmon_cfgs(2);
10486         let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10487         let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10488         let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10489
10490         let temp_channel_id = nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10491         let open_channel_message = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10492         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), InitFeatures::known(), &open_channel_message);
10493         let accept_channel_message = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10494         nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), InitFeatures::known(), &accept_channel_message);
10495
10496         let best_height = nodes[0].node.best_block.read().unwrap().height();
10497
10498         let chan_id = *nodes[0].network_chan_count.borrow();
10499         let events = nodes[0].node.get_and_clear_pending_events();
10500         let input = TxIn { previous_output: BitcoinOutPoint::null(), script_sig: bitcoin::Script::new(), sequence: Sequence(1), witness: Witness::from_vec(vec!(vec!(1))) };
10501         assert_eq!(events.len(), 1);
10502         let mut tx = match events[0] {
10503                 Event::FundingGenerationReady { ref channel_value_satoshis, ref output_script, .. } => {
10504                         // Timelock the transaction _beyond_ the best client height + 2.
10505                         Transaction { version: chan_id as i32, lock_time: PackedLockTime(best_height + 3), input: vec![input], output: vec![TxOut {
10506                                 value: *channel_value_satoshis, script_pubkey: output_script.clone(),
10507                         }]}
10508                 },
10509                 _ => panic!("Unexpected event"),
10510         };
10511         // Transaction should fail as it's evaluated as non-final for propagation.
10512         match nodes[0].node.funding_transaction_generated(&temp_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()) {
10513                 Err(APIError::APIMisuseError { err }) => {
10514                         assert_eq!(format!("Funding transaction absolute timelock is non-final"), err);
10515                 },
10516                 _ => panic!()
10517         }
10518
10519         // However, transaction should be accepted if it's in a +2 headroom from best block.
10520         tx.lock_time = PackedLockTime(tx.lock_time.0 - 1);
10521         assert!(nodes[0].node.funding_transaction_generated(&temp_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).is_ok());
10522         get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10523 }