Merge pull request #909 from TheBlueMatt/2021-04-0.0.14
[rust-lightning] / fuzz / src / chanmon_consistency.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 //! Test that monitor update failures don't get our channel state out of sync.
11 //! One of the biggest concern with the monitor update failure handling code is that messages
12 //! resent after monitor updating is restored are delivered out-of-order, resulting in
13 //! commitment_signed messages having "invalid signatures".
14 //! To test this we stand up a network of three nodes and read bytes from the fuzz input to denote
15 //! actions such as sending payments, handling events, or changing monitor update return values on
16 //! a per-node basis. This should allow it to find any cases where the ordering of actions results
17 //! in us getting out of sync with ourselves, and, assuming at least one of our recieve- or
18 //! send-side handling is correct, other peers. We consider it a failure if any action results in a
19 //! channel being force-closed.
20
21 use bitcoin::blockdata::block::BlockHeader;
22 use bitcoin::blockdata::constants::genesis_block;
23 use bitcoin::blockdata::transaction::{Transaction, TxOut};
24 use bitcoin::blockdata::script::{Builder, Script};
25 use bitcoin::blockdata::opcodes;
26 use bitcoin::network::constants::Network;
27
28 use bitcoin::hashes::Hash as TraitImport;
29 use bitcoin::hashes::sha256::Hash as Sha256;
30 use bitcoin::hash_types::{BlockHash, WPubkeyHash};
31
32 use lightning::chain;
33 use lightning::chain::Confirm;
34 use lightning::chain::chainmonitor;
35 use lightning::chain::channelmonitor;
36 use lightning::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdateErr, MonitorEvent};
37 use lightning::chain::transaction::OutPoint;
38 use lightning::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator};
39 use lightning::chain::keysinterface::{KeysInterface, InMemorySigner};
40 use lightning::ln::{PaymentHash, PaymentPreimage, PaymentSecret};
41 use lightning::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentSendFailure, ChannelManagerReadArgs};
42 use lightning::ln::features::{ChannelFeatures, InitFeatures, NodeFeatures};
43 use lightning::ln::msgs::{CommitmentUpdate, ChannelMessageHandler, DecodeError, ErrorAction, UpdateAddHTLC, Init};
44 use lightning::util::enforcing_trait_impls::{EnforcingSigner, INITIAL_REVOKED_COMMITMENT_NUMBER};
45 use lightning::util::errors::APIError;
46 use lightning::util::events;
47 use lightning::util::logger::Logger;
48 use lightning::util::config::UserConfig;
49 use lightning::util::events::{EventsProvider, MessageSendEventsProvider};
50 use lightning::util::ser::{Readable, ReadableArgs, Writeable, Writer};
51 use lightning::util::test_utils::OnlyReadsKeysInterface;
52 use lightning::routing::router::{Route, RouteHop};
53
54
55 use utils::test_logger;
56 use utils::test_persister::TestPersister;
57
58 use bitcoin::secp256k1::key::{PublicKey,SecretKey};
59 use bitcoin::secp256k1::recovery::RecoverableSignature;
60 use bitcoin::secp256k1::Secp256k1;
61
62 use std::mem;
63 use std::cmp::Ordering;
64 use std::collections::{HashSet, hash_map, HashMap};
65 use std::sync::{Arc,Mutex};
66 use std::sync::atomic;
67 use std::io::Cursor;
68
69 struct FuzzEstimator {}
70 impl FeeEstimator for FuzzEstimator {
71         fn get_est_sat_per_1000_weight(&self, _: ConfirmationTarget) -> u32 {
72                 253
73         }
74 }
75
76 pub struct TestBroadcaster {}
77 impl BroadcasterInterface for TestBroadcaster {
78         fn broadcast_transaction(&self, _tx: &Transaction) { }
79 }
80
81 pub struct VecWriter(pub Vec<u8>);
82 impl Writer for VecWriter {
83         fn write_all(&mut self, buf: &[u8]) -> Result<(), ::std::io::Error> {
84                 self.0.extend_from_slice(buf);
85                 Ok(())
86         }
87         fn size_hint(&mut self, size: usize) {
88                 self.0.reserve_exact(size);
89         }
90 }
91
92 struct TestChainMonitor {
93         pub logger: Arc<dyn Logger>,
94         pub chain_monitor: Arc<chainmonitor::ChainMonitor<EnforcingSigner, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>, Arc<TestPersister>>>,
95         pub update_ret: Mutex<Result<(), channelmonitor::ChannelMonitorUpdateErr>>,
96         // If we reload a node with an old copy of ChannelMonitors, the ChannelManager deserialization
97         // logic will automatically force-close our channels for us (as we don't have an up-to-date
98         // monitor implying we are not able to punish misbehaving counterparties). Because this test
99         // "fails" if we ever force-close a channel, we avoid doing so, always saving the latest
100         // fully-serialized monitor state here, as well as the corresponding update_id.
101         pub latest_monitors: Mutex<HashMap<OutPoint, (u64, Vec<u8>)>>,
102         pub should_update_manager: atomic::AtomicBool,
103 }
104 impl TestChainMonitor {
105         pub fn new(broadcaster: Arc<TestBroadcaster>, logger: Arc<dyn Logger>, feeest: Arc<FuzzEstimator>, persister: Arc<TestPersister>) -> Self {
106                 Self {
107                         chain_monitor: Arc::new(chainmonitor::ChainMonitor::new(None, broadcaster, logger.clone(), feeest, persister)),
108                         logger,
109                         update_ret: Mutex::new(Ok(())),
110                         latest_monitors: Mutex::new(HashMap::new()),
111                         should_update_manager: atomic::AtomicBool::new(false),
112                 }
113         }
114 }
115 impl chain::Watch<EnforcingSigner> for TestChainMonitor {
116         fn watch_channel(&self, funding_txo: OutPoint, monitor: channelmonitor::ChannelMonitor<EnforcingSigner>) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> {
117                 let mut ser = VecWriter(Vec::new());
118                 monitor.write(&mut ser).unwrap();
119                 if let Some(_) = self.latest_monitors.lock().unwrap().insert(funding_txo, (monitor.get_latest_update_id(), ser.0)) {
120                         panic!("Already had monitor pre-watch_channel");
121                 }
122                 self.should_update_manager.store(true, atomic::Ordering::Relaxed);
123                 assert!(self.chain_monitor.watch_channel(funding_txo, monitor).is_ok());
124                 self.update_ret.lock().unwrap().clone()
125         }
126
127         fn update_channel(&self, funding_txo: OutPoint, update: channelmonitor::ChannelMonitorUpdate) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> {
128                 let mut map_lock = self.latest_monitors.lock().unwrap();
129                 let mut map_entry = match map_lock.entry(funding_txo) {
130                         hash_map::Entry::Occupied(entry) => entry,
131                         hash_map::Entry::Vacant(_) => panic!("Didn't have monitor on update call"),
132                 };
133                 let deserialized_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::
134                         read(&mut Cursor::new(&map_entry.get().1), &OnlyReadsKeysInterface {}).unwrap().1;
135                 deserialized_monitor.update_monitor(&update, &&TestBroadcaster{}, &&FuzzEstimator{}, &self.logger).unwrap();
136                 let mut ser = VecWriter(Vec::new());
137                 deserialized_monitor.write(&mut ser).unwrap();
138                 map_entry.insert((update.update_id, ser.0));
139                 self.should_update_manager.store(true, atomic::Ordering::Relaxed);
140                 self.update_ret.lock().unwrap().clone()
141         }
142
143         fn release_pending_monitor_events(&self) -> Vec<MonitorEvent> {
144                 return self.chain_monitor.release_pending_monitor_events();
145         }
146 }
147
148 struct KeyProvider {
149         node_id: u8,
150         rand_bytes_id: atomic::AtomicU8,
151         revoked_commitments: Mutex<HashMap<[u8;32], Arc<Mutex<u64>>>>,
152 }
153 impl KeysInterface for KeyProvider {
154         type Signer = EnforcingSigner;
155
156         fn get_node_secret(&self) -> SecretKey {
157                 SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, self.node_id]).unwrap()
158         }
159
160         fn get_destination_script(&self) -> Script {
161                 let secp_ctx = Secp256k1::signing_only();
162                 let channel_monitor_claim_key = SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, self.node_id]).unwrap();
163                 let our_channel_monitor_claim_key_hash = WPubkeyHash::hash(&PublicKey::from_secret_key(&secp_ctx, &channel_monitor_claim_key).serialize());
164                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&our_channel_monitor_claim_key_hash[..]).into_script()
165         }
166
167         fn get_shutdown_pubkey(&self) -> PublicKey {
168                 let secp_ctx = Secp256k1::signing_only();
169                 PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, self.node_id]).unwrap())
170         }
171
172         fn get_channel_signer(&self, _inbound: bool, channel_value_satoshis: u64) -> EnforcingSigner {
173                 let secp_ctx = Secp256k1::signing_only();
174                 let id = self.rand_bytes_id.fetch_add(1, atomic::Ordering::Relaxed);
175                 let keys = InMemorySigner::new(
176                         &secp_ctx,
177                         SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, self.node_id]).unwrap(),
178                         SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, self.node_id]).unwrap(),
179                         SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, self.node_id]).unwrap(),
180                         SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, self.node_id]).unwrap(),
181                         SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, self.node_id]).unwrap(),
182                         [id, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, self.node_id],
183                         channel_value_satoshis,
184                         [0; 32],
185                 );
186                 let revoked_commitment = self.make_revoked_commitment_cell(keys.commitment_seed);
187                 EnforcingSigner::new_with_revoked(keys, revoked_commitment, false)
188         }
189
190         fn get_secure_random_bytes(&self) -> [u8; 32] {
191                 let id = self.rand_bytes_id.fetch_add(1, atomic::Ordering::Relaxed);
192                 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, id, 11, self.node_id]
193         }
194
195         fn read_chan_signer(&self, buffer: &[u8]) -> Result<Self::Signer, DecodeError> {
196                 let mut reader = std::io::Cursor::new(buffer);
197
198                 let inner: InMemorySigner = Readable::read(&mut reader)?;
199                 let revoked_commitment = self.make_revoked_commitment_cell(inner.commitment_seed);
200
201                 let last_commitment_number = Readable::read(&mut reader)?;
202
203                 Ok(EnforcingSigner {
204                         inner,
205                         last_commitment_number: Arc::new(Mutex::new(last_commitment_number)),
206                         revoked_commitment,
207                         disable_revocation_policy_check: false,
208                 })
209         }
210
211         fn sign_invoice(&self, _invoice_preimage: Vec<u8>) -> Result<RecoverableSignature, ()> {
212                 unreachable!()
213         }
214 }
215
216 impl KeyProvider {
217         fn make_revoked_commitment_cell(&self, commitment_seed: [u8; 32]) -> Arc<Mutex<u64>> {
218                 let mut revoked_commitments = self.revoked_commitments.lock().unwrap();
219                 if !revoked_commitments.contains_key(&commitment_seed) {
220                         revoked_commitments.insert(commitment_seed, Arc::new(Mutex::new(INITIAL_REVOKED_COMMITMENT_NUMBER)));
221                 }
222                 let cell = revoked_commitments.get(&commitment_seed).unwrap();
223                 Arc::clone(cell)
224         }
225 }
226
227 #[inline]
228 fn check_api_err(api_err: APIError) {
229         match api_err {
230                 APIError::APIMisuseError { .. } => panic!("We can't misuse the API"),
231                 APIError::FeeRateTooHigh { .. } => panic!("We can't send too much fee?"),
232                 APIError::RouteError { .. } => panic!("Our routes should work"),
233                 APIError::ChannelUnavailable { err } => {
234                         // Test the error against a list of errors we can hit, and reject
235                         // all others. If you hit this panic, the list of acceptable errors
236                         // is probably just stale and you should add new messages here.
237                         match err.as_str() {
238                                 "Peer for first hop currently disconnected/pending monitor update!" => {},
239                                 _ if err.starts_with("Cannot push more than their max accepted HTLCs ") => {},
240                                 _ if err.starts_with("Cannot send value that would put us over the max HTLC value in flight our peer will accept ") => {},
241                                 _ if err.starts_with("Cannot send value that would put our balance under counterparty-announced channel reserve value") => {},
242                                 _ if err.starts_with("Cannot send value that would overdraw remaining funds.") => {},
243                                 _ if err.starts_with("Cannot send value that would not leave enough to pay for fees.") => {},
244                                 _ => panic!("{}", err),
245                         }
246                 },
247                 APIError::MonitorUpdateFailed => {
248                         // We can (obviously) temp-fail a monitor update
249                 },
250         }
251 }
252 #[inline]
253 fn check_payment_err(send_err: PaymentSendFailure) {
254         match send_err {
255                 PaymentSendFailure::ParameterError(api_err) => check_api_err(api_err),
256                 PaymentSendFailure::PathParameterError(per_path_results) => {
257                         for res in per_path_results { if let Err(api_err) = res { check_api_err(api_err); } }
258                 },
259                 PaymentSendFailure::AllFailedRetrySafe(per_path_results) => {
260                         for api_err in per_path_results { check_api_err(api_err); }
261                 },
262                 PaymentSendFailure::PartialFailure(per_path_results) => {
263                         for res in per_path_results { if let Err(api_err) = res { check_api_err(api_err); } }
264                 },
265         }
266 }
267
268 type ChanMan = ChannelManager<EnforcingSigner, Arc<TestChainMonitor>, Arc<TestBroadcaster>, Arc<KeyProvider>, Arc<FuzzEstimator>, Arc<dyn Logger>>;
269
270 #[inline]
271 fn get_payment_secret_hash(dest: &ChanMan, payment_id: &mut u8) -> Option<(PaymentSecret, PaymentHash)> {
272         let mut payment_hash;
273         for _ in 0..256 {
274                 payment_hash = PaymentHash(Sha256::hash(&[*payment_id; 1]).into_inner());
275                 if let Ok(payment_secret) = dest.create_inbound_payment_for_hash(payment_hash, None, 7200, 0) {
276                         return Some((payment_secret, payment_hash));
277                 }
278                 *payment_id = payment_id.wrapping_add(1);
279         }
280         None
281 }
282
283 #[inline]
284 fn send_payment(source: &ChanMan, dest: &ChanMan, dest_chan_id: u64, amt: u64, payment_id: &mut u8) -> bool {
285         let (payment_secret, payment_hash) =
286                 if let Some((secret, hash)) = get_payment_secret_hash(dest, payment_id) { (secret, hash) } else { return true; };
287         if let Err(err) = source.send_payment(&Route {
288                 paths: vec![vec![RouteHop {
289                         pubkey: dest.get_our_node_id(),
290                         node_features: NodeFeatures::known(),
291                         short_channel_id: dest_chan_id,
292                         channel_features: ChannelFeatures::known(),
293                         fee_msat: amt,
294                         cltv_expiry_delta: 200,
295                 }]],
296         }, payment_hash, &Some(payment_secret)) {
297                 check_payment_err(err);
298                 false
299         } else { true }
300 }
301 #[inline]
302 fn send_hop_payment(source: &ChanMan, middle: &ChanMan, middle_chan_id: u64, dest: &ChanMan, dest_chan_id: u64, amt: u64, payment_id: &mut u8) -> bool {
303         let (payment_secret, payment_hash) =
304                 if let Some((secret, hash)) = get_payment_secret_hash(dest, payment_id) { (secret, hash) } else { return true; };
305         if let Err(err) = source.send_payment(&Route {
306                 paths: vec![vec![RouteHop {
307                         pubkey: middle.get_our_node_id(),
308                         node_features: NodeFeatures::known(),
309                         short_channel_id: middle_chan_id,
310                         channel_features: ChannelFeatures::known(),
311                         fee_msat: 50000,
312                         cltv_expiry_delta: 100,
313                 },RouteHop {
314                         pubkey: dest.get_our_node_id(),
315                         node_features: NodeFeatures::known(),
316                         short_channel_id: dest_chan_id,
317                         channel_features: ChannelFeatures::known(),
318                         fee_msat: amt,
319                         cltv_expiry_delta: 200,
320                 }]],
321         }, payment_hash, &Some(payment_secret)) {
322                 check_payment_err(err);
323                 false
324         } else { true }
325 }
326
327 #[inline]
328 pub fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) {
329         let fee_est = Arc::new(FuzzEstimator{});
330         let broadcast = Arc::new(TestBroadcaster{});
331
332         macro_rules! make_node {
333                 ($node_id: expr) => { {
334                         let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new($node_id.to_string(), out.clone()));
335                         let monitor = Arc::new(TestChainMonitor::new(broadcast.clone(), logger.clone(), fee_est.clone(), Arc::new(TestPersister{})));
336
337                         let keys_manager = Arc::new(KeyProvider { node_id: $node_id, rand_bytes_id: atomic::AtomicU8::new(0), revoked_commitments: Mutex::new(HashMap::new()) });
338                         let mut config = UserConfig::default();
339                         config.channel_options.fee_proportional_millionths = 0;
340                         config.channel_options.announced_channel = true;
341                         let network = Network::Bitcoin;
342                         let params = ChainParameters {
343                                 network,
344                                 best_block: BestBlock::from_genesis(network),
345                         };
346                         (ChannelManager::new(fee_est.clone(), monitor.clone(), broadcast.clone(), Arc::clone(&logger), keys_manager.clone(), config, params),
347                         monitor, keys_manager)
348                 } }
349         }
350
351         macro_rules! reload_node {
352                 ($ser: expr, $node_id: expr, $old_monitors: expr, $keys_manager: expr) => { {
353                     let keys_manager = Arc::clone(& $keys_manager);
354                         let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new($node_id.to_string(), out.clone()));
355                         let chain_monitor = Arc::new(TestChainMonitor::new(broadcast.clone(), logger.clone(), fee_est.clone(), Arc::new(TestPersister{})));
356
357                         let mut config = UserConfig::default();
358                         config.channel_options.fee_proportional_millionths = 0;
359                         config.channel_options.announced_channel = true;
360
361                         let mut monitors = HashMap::new();
362                         let mut old_monitors = $old_monitors.latest_monitors.lock().unwrap();
363                         for (outpoint, (update_id, monitor_ser)) in old_monitors.drain() {
364                                 monitors.insert(outpoint, <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(&mut Cursor::new(&monitor_ser), &OnlyReadsKeysInterface {}).expect("Failed to read monitor").1);
365                                 chain_monitor.latest_monitors.lock().unwrap().insert(outpoint, (update_id, monitor_ser));
366                         }
367                         let mut monitor_refs = HashMap::new();
368                         for (outpoint, monitor) in monitors.iter_mut() {
369                                 monitor_refs.insert(*outpoint, monitor);
370                         }
371
372                         let read_args = ChannelManagerReadArgs {
373                                 keys_manager,
374                                 fee_estimator: fee_est.clone(),
375                                 chain_monitor: chain_monitor.clone(),
376                                 tx_broadcaster: broadcast.clone(),
377                                 logger,
378                                 default_config: config,
379                                 channel_monitors: monitor_refs,
380                         };
381
382                         (<(BlockHash, ChanMan)>::read(&mut Cursor::new(&$ser.0), read_args).expect("Failed to read manager").1, chain_monitor)
383                 } }
384         }
385
386         let mut channel_txn = Vec::new();
387         macro_rules! make_channel {
388                 ($source: expr, $dest: expr, $chan_id: expr) => { {
389                         $source.create_channel($dest.get_our_node_id(), 100_000, 42, 0, None).unwrap();
390                         let open_channel = {
391                                 let events = $source.get_and_clear_pending_msg_events();
392                                 assert_eq!(events.len(), 1);
393                                 if let events::MessageSendEvent::SendOpenChannel { ref msg, .. } = events[0] {
394                                         msg.clone()
395                                 } else { panic!("Wrong event type"); }
396                         };
397
398                         $dest.handle_open_channel(&$source.get_our_node_id(), InitFeatures::known(), &open_channel);
399                         let accept_channel = {
400                                 let events = $dest.get_and_clear_pending_msg_events();
401                                 assert_eq!(events.len(), 1);
402                                 if let events::MessageSendEvent::SendAcceptChannel { ref msg, .. } = events[0] {
403                                         msg.clone()
404                                 } else { panic!("Wrong event type"); }
405                         };
406
407                         $source.handle_accept_channel(&$dest.get_our_node_id(), InitFeatures::known(), &accept_channel);
408                         let funding_output;
409                         {
410                                 let events = $source.get_and_clear_pending_events();
411                                 assert_eq!(events.len(), 1);
412                                 if let events::Event::FundingGenerationReady { ref temporary_channel_id, ref channel_value_satoshis, ref output_script, .. } = events[0] {
413                                         let tx = Transaction { version: $chan_id, lock_time: 0, input: Vec::new(), output: vec![TxOut {
414                                                 value: *channel_value_satoshis, script_pubkey: output_script.clone(),
415                                         }]};
416                                         funding_output = OutPoint { txid: tx.txid(), index: 0 };
417                                         $source.funding_transaction_generated(&temporary_channel_id, tx.clone()).unwrap();
418                                         channel_txn.push(tx);
419                                 } else { panic!("Wrong event type"); }
420                         }
421
422                         let funding_created = {
423                                 let events = $source.get_and_clear_pending_msg_events();
424                                 assert_eq!(events.len(), 1);
425                                 if let events::MessageSendEvent::SendFundingCreated { ref msg, .. } = events[0] {
426                                         msg.clone()
427                                 } else { panic!("Wrong event type"); }
428                         };
429                         $dest.handle_funding_created(&$source.get_our_node_id(), &funding_created);
430
431                         let funding_signed = {
432                                 let events = $dest.get_and_clear_pending_msg_events();
433                                 assert_eq!(events.len(), 1);
434                                 if let events::MessageSendEvent::SendFundingSigned { ref msg, .. } = events[0] {
435                                         msg.clone()
436                                 } else { panic!("Wrong event type"); }
437                         };
438                         $source.handle_funding_signed(&$dest.get_our_node_id(), &funding_signed);
439
440                         funding_output
441                 } }
442         }
443
444         macro_rules! confirm_txn {
445                 ($node: expr) => { {
446                         let chain_hash = genesis_block(Network::Bitcoin).block_hash();
447                         let mut header = BlockHeader { version: 0x20000000, prev_blockhash: chain_hash, merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
448                         let txdata: Vec<_> = channel_txn.iter().enumerate().map(|(i, tx)| (i + 1, tx)).collect();
449                         $node.transactions_confirmed(&header, &txdata, 1);
450                         for _ in 2..100 {
451                                 header = BlockHeader { version: 0x20000000, prev_blockhash: header.block_hash(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
452                         }
453                         $node.best_block_updated(&header, 99);
454                 } }
455         }
456
457         macro_rules! lock_fundings {
458                 ($nodes: expr) => { {
459                         let mut node_events = Vec::new();
460                         for node in $nodes.iter() {
461                                 node_events.push(node.get_and_clear_pending_msg_events());
462                         }
463                         for (idx, node_event) in node_events.iter().enumerate() {
464                                 for event in node_event {
465                                         if let events::MessageSendEvent::SendFundingLocked { ref node_id, ref msg } = event {
466                                                 for node in $nodes.iter() {
467                                                         if node.get_our_node_id() == *node_id {
468                                                                 node.handle_funding_locked(&$nodes[idx].get_our_node_id(), msg);
469                                                         }
470                                                 }
471                                         } else { panic!("Wrong event type"); }
472                                 }
473                         }
474
475                         for node in $nodes.iter() {
476                                 let events = node.get_and_clear_pending_msg_events();
477                                 for event in events {
478                                         if let events::MessageSendEvent::SendAnnouncementSignatures { .. } = event {
479                                         } else { panic!("Wrong event type"); }
480                                 }
481                         }
482                 } }
483         }
484
485         // 3 nodes is enough to hit all the possible cases, notably unknown-source-unknown-dest
486         // forwarding.
487         let (node_a, mut monitor_a, keys_manager_a) = make_node!(0);
488         let (node_b, mut monitor_b, keys_manager_b) = make_node!(1);
489         let (node_c, mut monitor_c, keys_manager_c) = make_node!(2);
490
491         let mut nodes = [node_a, node_b, node_c];
492
493         let chan_1_funding = make_channel!(nodes[0], nodes[1], 0);
494         let chan_2_funding = make_channel!(nodes[1], nodes[2], 1);
495
496         for node in nodes.iter() {
497                 confirm_txn!(node);
498         }
499
500         lock_fundings!(nodes);
501
502         let chan_a = nodes[0].list_usable_channels()[0].short_channel_id.unwrap();
503         let chan_b = nodes[2].list_usable_channels()[0].short_channel_id.unwrap();
504
505         let mut payment_id: u8 = 0;
506
507         let mut chan_a_disconnected = false;
508         let mut chan_b_disconnected = false;
509         let mut ba_events = Vec::new();
510         let mut bc_events = Vec::new();
511
512         let mut node_a_ser = VecWriter(Vec::new());
513         nodes[0].write(&mut node_a_ser).unwrap();
514         let mut node_b_ser = VecWriter(Vec::new());
515         nodes[1].write(&mut node_b_ser).unwrap();
516         let mut node_c_ser = VecWriter(Vec::new());
517         nodes[2].write(&mut node_c_ser).unwrap();
518
519         macro_rules! test_return {
520                 () => { {
521                         assert_eq!(nodes[0].list_channels().len(), 1);
522                         assert_eq!(nodes[1].list_channels().len(), 2);
523                         assert_eq!(nodes[2].list_channels().len(), 1);
524                         return;
525                 } }
526         }
527
528         let mut read_pos = 0;
529         macro_rules! get_slice {
530                 ($len: expr) => {
531                         {
532                                 let slice_len = $len as usize;
533                                 if data.len() < read_pos + slice_len {
534                                         test_return!();
535                                 }
536                                 read_pos += slice_len;
537                                 &data[read_pos - slice_len..read_pos]
538                         }
539                 }
540         }
541
542         loop {
543                 macro_rules! process_msg_events {
544                         ($node: expr, $corrupt_forward: expr) => { {
545                                 let events = if $node == 1 {
546                                         let mut new_events = Vec::new();
547                                         mem::swap(&mut new_events, &mut ba_events);
548                                         new_events.extend_from_slice(&bc_events[..]);
549                                         bc_events.clear();
550                                         new_events
551                                 } else { Vec::new() };
552                                 let mut had_events = false;
553                                 for event in events.iter().chain(nodes[$node].get_and_clear_pending_msg_events().iter()) {
554                                         had_events = true;
555                                         match event {
556                                                 events::MessageSendEvent::UpdateHTLCs { ref node_id, updates: CommitmentUpdate { ref update_add_htlcs, ref update_fail_htlcs, ref update_fulfill_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
557                                                         for dest in nodes.iter() {
558                                                                 if dest.get_our_node_id() == *node_id {
559                                                                         assert!(update_fee.is_none());
560                                                                         for update_add in update_add_htlcs {
561                                                                                 if !$corrupt_forward {
562                                                                                         dest.handle_update_add_htlc(&nodes[$node].get_our_node_id(), &update_add);
563                                                                                 } else {
564                                                                                         // Corrupt the update_add_htlc message so that its HMAC
565                                                                                         // check will fail and we generate a
566                                                                                         // update_fail_malformed_htlc instead of an
567                                                                                         // update_fail_htlc as we do when we reject a payment.
568                                                                                         let mut msg_ser = update_add.encode();
569                                                                                         msg_ser[1000] ^= 0xff;
570                                                                                         let new_msg = UpdateAddHTLC::read(&mut Cursor::new(&msg_ser)).unwrap();
571                                                                                         dest.handle_update_add_htlc(&nodes[$node].get_our_node_id(), &new_msg);
572                                                                                 }
573                                                                         }
574                                                                         for update_fulfill in update_fulfill_htlcs {
575                                                                                 dest.handle_update_fulfill_htlc(&nodes[$node].get_our_node_id(), &update_fulfill);
576                                                                         }
577                                                                         for update_fail in update_fail_htlcs {
578                                                                                 dest.handle_update_fail_htlc(&nodes[$node].get_our_node_id(), &update_fail);
579                                                                         }
580                                                                         for update_fail_malformed in update_fail_malformed_htlcs {
581                                                                                 dest.handle_update_fail_malformed_htlc(&nodes[$node].get_our_node_id(), &update_fail_malformed);
582                                                                         }
583                                                                         dest.handle_commitment_signed(&nodes[$node].get_our_node_id(), &commitment_signed);
584                                                                 }
585                                                         }
586                                                 },
587                                                 events::MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
588                                                         for dest in nodes.iter() {
589                                                                 if dest.get_our_node_id() == *node_id {
590                                                                         dest.handle_revoke_and_ack(&nodes[$node].get_our_node_id(), msg);
591                                                                 }
592                                                         }
593                                                 },
594                                                 events::MessageSendEvent::SendChannelReestablish { ref node_id, ref msg } => {
595                                                         for dest in nodes.iter() {
596                                                                 if dest.get_our_node_id() == *node_id {
597                                                                         dest.handle_channel_reestablish(&nodes[$node].get_our_node_id(), msg);
598                                                                 }
599                                                         }
600                                                 },
601                                                 events::MessageSendEvent::SendFundingLocked { .. } => {
602                                                         // Can be generated as a reestablish response
603                                                 },
604                                                 events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => {
605                                                         // Can be generated due to a payment forward being rejected due to a
606                                                         // channel having previously failed a monitor update
607                                                 },
608                                                 _ => panic!("Unhandled message event"),
609                                         }
610                                 }
611                                 had_events
612                         } }
613                 }
614
615                 macro_rules! drain_msg_events_on_disconnect {
616                         ($counterparty_id: expr) => { {
617                                 if $counterparty_id == 0 {
618                                         for event in nodes[0].get_and_clear_pending_msg_events() {
619                                                 match event {
620                                                         events::MessageSendEvent::UpdateHTLCs { .. } => {},
621                                                         events::MessageSendEvent::SendRevokeAndACK { .. } => {},
622                                                         events::MessageSendEvent::SendChannelReestablish { .. } => {},
623                                                         events::MessageSendEvent::SendFundingLocked { .. } => {},
624                                                         events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => {},
625                                                         events::MessageSendEvent::HandleError { action: ErrorAction::IgnoreError, .. } => {},
626                                                         _ => panic!("Unhandled message event"),
627                                                 }
628                                         }
629                                         ba_events.clear();
630                                 } else {
631                                         for event in nodes[2].get_and_clear_pending_msg_events() {
632                                                 match event {
633                                                         events::MessageSendEvent::UpdateHTLCs { .. } => {},
634                                                         events::MessageSendEvent::SendRevokeAndACK { .. } => {},
635                                                         events::MessageSendEvent::SendChannelReestablish { .. } => {},
636                                                         events::MessageSendEvent::SendFundingLocked { .. } => {},
637                                                         events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => {},
638                                                         events::MessageSendEvent::HandleError { action: ErrorAction::IgnoreError, .. } => {},
639                                                         _ => panic!("Unhandled message event"),
640                                                 }
641                                         }
642                                         bc_events.clear();
643                                 }
644                                 let mut events = nodes[1].get_and_clear_pending_msg_events();
645                                 let drop_node_id = if $counterparty_id == 0 { nodes[0].get_our_node_id() } else { nodes[2].get_our_node_id() };
646                                 let msg_sink = if $counterparty_id == 0 { &mut bc_events } else { &mut ba_events };
647                                 for event in events.drain(..) {
648                                         let push = match event {
649                                                 events::MessageSendEvent::UpdateHTLCs { ref node_id, .. } => {
650                                                         if *node_id != drop_node_id { true } else { false }
651                                                 },
652                                                 events::MessageSendEvent::SendRevokeAndACK { ref node_id, .. } => {
653                                                         if *node_id != drop_node_id { true } else { false }
654                                                 },
655                                                 events::MessageSendEvent::SendChannelReestablish { ref node_id, .. } => {
656                                                         if *node_id != drop_node_id { true } else { false }
657                                                 },
658                                                 events::MessageSendEvent::SendFundingLocked { .. } => false,
659                                                 events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => false,
660                                                 events::MessageSendEvent::HandleError { action: ErrorAction::IgnoreError, .. } => false,
661                                                 _ => panic!("Unhandled message event"),
662                                         };
663                                         if push { msg_sink.push(event); }
664                                 }
665                         } }
666                 }
667
668                 macro_rules! process_events {
669                         ($node: expr, $fail: expr) => { {
670                                 // In case we get 256 payments we may have a hash collision, resulting in the
671                                 // second claim/fail call not finding the duplicate-hash HTLC, so we have to
672                                 // deduplicate the calls here.
673                                 let mut claim_set = HashSet::new();
674                                 let mut events = nodes[$node].get_and_clear_pending_events();
675                                 // Sort events so that PendingHTLCsForwardable get processed last. This avoids a
676                                 // case where we first process a PendingHTLCsForwardable, then claim/fail on a
677                                 // PaymentReceived, claiming/failing two HTLCs, but leaving a just-generated
678                                 // PaymentReceived event for the second HTLC in our pending_events (and breaking
679                                 // our claim_set deduplication).
680                                 events.sort_by(|a, b| {
681                                         if let events::Event::PaymentReceived { .. } = a {
682                                                 if let events::Event::PendingHTLCsForwardable { .. } = b {
683                                                         Ordering::Less
684                                                 } else { Ordering::Equal }
685                                         } else if let events::Event::PendingHTLCsForwardable { .. } = a {
686                                                 if let events::Event::PaymentReceived { .. } = b {
687                                                         Ordering::Greater
688                                                 } else { Ordering::Equal }
689                                         } else { Ordering::Equal }
690                                 });
691                                 let had_events = !events.is_empty();
692                                 for event in events.drain(..) {
693                                         match event {
694                                                 events::Event::PaymentReceived { payment_hash, .. } => {
695                                                         if claim_set.insert(payment_hash.0) {
696                                                                 if $fail {
697                                                                         assert!(nodes[$node].fail_htlc_backwards(&payment_hash));
698                                                                 } else {
699                                                                         assert!(nodes[$node].claim_funds(PaymentPreimage(payment_hash.0)));
700                                                                 }
701                                                         }
702                                                 },
703                                                 events::Event::PaymentSent { .. } => {},
704                                                 events::Event::PaymentFailed { .. } => {},
705                                                 events::Event::PendingHTLCsForwardable { .. } => {
706                                                         nodes[$node].process_pending_htlc_forwards();
707                                                 },
708                                                 _ => panic!("Unhandled event"),
709                                         }
710                                 }
711                                 had_events
712                         } }
713                 }
714
715                 match get_slice!(1)[0] {
716                         // In general, we keep related message groups close together in binary form, allowing
717                         // bit-twiddling mutations to have similar effects. This is probably overkill, but no
718                         // harm in doing so.
719
720                         0x00 => *monitor_a.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
721                         0x01 => *monitor_b.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
722                         0x02 => *monitor_c.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
723                         0x04 => *monitor_a.update_ret.lock().unwrap() = Ok(()),
724                         0x05 => *monitor_b.update_ret.lock().unwrap() = Ok(()),
725                         0x06 => *monitor_c.update_ret.lock().unwrap() = Ok(()),
726
727                         0x08 => {
728                                 if let Some((id, _)) = monitor_a.latest_monitors.lock().unwrap().get(&chan_1_funding) {
729                                         nodes[0].channel_monitor_updated(&chan_1_funding, *id);
730                                 }
731                         },
732                         0x09 => {
733                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_1_funding) {
734                                         nodes[1].channel_monitor_updated(&chan_1_funding, *id);
735                                 }
736                         },
737                         0x0a => {
738                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_2_funding) {
739                                         nodes[1].channel_monitor_updated(&chan_2_funding, *id);
740                                 }
741                         },
742                         0x0b => {
743                                 if let Some((id, _)) = monitor_c.latest_monitors.lock().unwrap().get(&chan_2_funding) {
744                                         nodes[2].channel_monitor_updated(&chan_2_funding, *id);
745                                 }
746                         },
747
748                         0x0c => {
749                                 if !chan_a_disconnected {
750                                         nodes[0].peer_disconnected(&nodes[1].get_our_node_id(), false);
751                                         nodes[1].peer_disconnected(&nodes[0].get_our_node_id(), false);
752                                         chan_a_disconnected = true;
753                                         drain_msg_events_on_disconnect!(0);
754                                 }
755                         },
756                         0x0d => {
757                                 if !chan_b_disconnected {
758                                         nodes[1].peer_disconnected(&nodes[2].get_our_node_id(), false);
759                                         nodes[2].peer_disconnected(&nodes[1].get_our_node_id(), false);
760                                         chan_b_disconnected = true;
761                                         drain_msg_events_on_disconnect!(2);
762                                 }
763                         },
764                         0x0e => {
765                                 if chan_a_disconnected {
766                                         nodes[0].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::known() });
767                                         nodes[1].peer_connected(&nodes[0].get_our_node_id(), &Init { features: InitFeatures::known() });
768                                         chan_a_disconnected = false;
769                                 }
770                         },
771                         0x0f => {
772                                 if chan_b_disconnected {
773                                         nodes[1].peer_connected(&nodes[2].get_our_node_id(), &Init { features: InitFeatures::known() });
774                                         nodes[2].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::known() });
775                                         chan_b_disconnected = false;
776                                 }
777                         },
778
779                         0x10 => { process_msg_events!(0, true); },
780                         0x11 => { process_msg_events!(0, false); },
781                         0x12 => { process_events!(0, true); },
782                         0x13 => { process_events!(0, false); },
783                         0x14 => { process_msg_events!(1, true); },
784                         0x15 => { process_msg_events!(1, false); },
785                         0x16 => { process_events!(1, true); },
786                         0x17 => { process_events!(1, false); },
787                         0x18 => { process_msg_events!(2, true); },
788                         0x19 => { process_msg_events!(2, false); },
789                         0x1a => { process_events!(2, true); },
790                         0x1b => { process_events!(2, false); },
791
792                         0x1c => {
793                                 if !chan_a_disconnected {
794                                         nodes[1].peer_disconnected(&nodes[0].get_our_node_id(), false);
795                                         chan_a_disconnected = true;
796                                         drain_msg_events_on_disconnect!(0);
797                                 }
798                                 let (new_node_a, new_monitor_a) = reload_node!(node_a_ser, 0, monitor_a, keys_manager_a);
799                                 nodes[0] = new_node_a;
800                                 monitor_a = new_monitor_a;
801                         },
802                         0x1d => {
803                                 if !chan_a_disconnected {
804                                         nodes[0].peer_disconnected(&nodes[1].get_our_node_id(), false);
805                                         chan_a_disconnected = true;
806                                         nodes[0].get_and_clear_pending_msg_events();
807                                         ba_events.clear();
808                                 }
809                                 if !chan_b_disconnected {
810                                         nodes[2].peer_disconnected(&nodes[1].get_our_node_id(), false);
811                                         chan_b_disconnected = true;
812                                         nodes[2].get_and_clear_pending_msg_events();
813                                         bc_events.clear();
814                                 }
815                                 let (new_node_b, new_monitor_b) = reload_node!(node_b_ser, 1, monitor_b, keys_manager_b);
816                                 nodes[1] = new_node_b;
817                                 monitor_b = new_monitor_b;
818                         },
819                         0x1e => {
820                                 if !chan_b_disconnected {
821                                         nodes[1].peer_disconnected(&nodes[2].get_our_node_id(), false);
822                                         chan_b_disconnected = true;
823                                         drain_msg_events_on_disconnect!(2);
824                                 }
825                                 let (new_node_c, new_monitor_c) = reload_node!(node_c_ser, 2, monitor_c, keys_manager_c);
826                                 nodes[2] = new_node_c;
827                                 monitor_c = new_monitor_c;
828                         },
829
830                         // 1/10th the channel size:
831                         0x20 => { send_payment(&nodes[0], &nodes[1], chan_a, 10_000_000, &mut payment_id); },
832                         0x21 => { send_payment(&nodes[1], &nodes[0], chan_a, 10_000_000, &mut payment_id); },
833                         0x22 => { send_payment(&nodes[1], &nodes[2], chan_b, 10_000_000, &mut payment_id); },
834                         0x23 => { send_payment(&nodes[2], &nodes[1], chan_b, 10_000_000, &mut payment_id); },
835                         0x24 => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 10_000_000, &mut payment_id); },
836                         0x25 => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 10_000_000, &mut payment_id); },
837
838                         0x28 => { send_payment(&nodes[0], &nodes[1], chan_a, 1_000_000, &mut payment_id); },
839                         0x29 => { send_payment(&nodes[1], &nodes[0], chan_a, 1_000_000, &mut payment_id); },
840                         0x2a => { send_payment(&nodes[1], &nodes[2], chan_b, 1_000_000, &mut payment_id); },
841                         0x2b => { send_payment(&nodes[2], &nodes[1], chan_b, 1_000_000, &mut payment_id); },
842                         0x2c => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 1_000_000, &mut payment_id); },
843                         0x2d => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 1_000_000, &mut payment_id); },
844
845                         0x30 => { send_payment(&nodes[0], &nodes[1], chan_a, 100_000, &mut payment_id); },
846                         0x31 => { send_payment(&nodes[1], &nodes[0], chan_a, 100_000, &mut payment_id); },
847                         0x32 => { send_payment(&nodes[1], &nodes[2], chan_b, 100_000, &mut payment_id); },
848                         0x33 => { send_payment(&nodes[2], &nodes[1], chan_b, 100_000, &mut payment_id); },
849                         0x34 => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 100_000, &mut payment_id); },
850                         0x35 => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 100_000, &mut payment_id); },
851
852                         0x38 => { send_payment(&nodes[0], &nodes[1], chan_a, 10_000, &mut payment_id); },
853                         0x39 => { send_payment(&nodes[1], &nodes[0], chan_a, 10_000, &mut payment_id); },
854                         0x3a => { send_payment(&nodes[1], &nodes[2], chan_b, 10_000, &mut payment_id); },
855                         0x3b => { send_payment(&nodes[2], &nodes[1], chan_b, 10_000, &mut payment_id); },
856                         0x3c => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 10_000, &mut payment_id); },
857                         0x3d => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 10_000, &mut payment_id); },
858
859                         0x40 => { send_payment(&nodes[0], &nodes[1], chan_a, 1_000, &mut payment_id); },
860                         0x41 => { send_payment(&nodes[1], &nodes[0], chan_a, 1_000, &mut payment_id); },
861                         0x42 => { send_payment(&nodes[1], &nodes[2], chan_b, 1_000, &mut payment_id); },
862                         0x43 => { send_payment(&nodes[2], &nodes[1], chan_b, 1_000, &mut payment_id); },
863                         0x44 => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 1_000, &mut payment_id); },
864                         0x45 => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 1_000, &mut payment_id); },
865
866                         0x48 => { send_payment(&nodes[0], &nodes[1], chan_a, 100, &mut payment_id); },
867                         0x49 => { send_payment(&nodes[1], &nodes[0], chan_a, 100, &mut payment_id); },
868                         0x4a => { send_payment(&nodes[1], &nodes[2], chan_b, 100, &mut payment_id); },
869                         0x4b => { send_payment(&nodes[2], &nodes[1], chan_b, 100, &mut payment_id); },
870                         0x4c => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 100, &mut payment_id); },
871                         0x4d => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 100, &mut payment_id); },
872
873                         0x50 => { send_payment(&nodes[0], &nodes[1], chan_a, 10, &mut payment_id); },
874                         0x51 => { send_payment(&nodes[1], &nodes[0], chan_a, 10, &mut payment_id); },
875                         0x52 => { send_payment(&nodes[1], &nodes[2], chan_b, 10, &mut payment_id); },
876                         0x53 => { send_payment(&nodes[2], &nodes[1], chan_b, 10, &mut payment_id); },
877                         0x54 => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 10, &mut payment_id); },
878                         0x55 => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 10, &mut payment_id); },
879
880                         0x58 => { send_payment(&nodes[0], &nodes[1], chan_a, 1, &mut payment_id); },
881                         0x59 => { send_payment(&nodes[1], &nodes[0], chan_a, 1, &mut payment_id); },
882                         0x5a => { send_payment(&nodes[1], &nodes[2], chan_b, 1, &mut payment_id); },
883                         0x5b => { send_payment(&nodes[2], &nodes[1], chan_b, 1, &mut payment_id); },
884                         0x5c => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 1, &mut payment_id); },
885                         0x5d => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 1, &mut payment_id); },
886
887                         0xff => {
888                                 // Test that no channel is in a stuck state where neither party can send funds even
889                                 // after we resolve all pending events.
890                                 // First make sure there are no pending monitor updates, resetting the error state
891                                 // and calling channel_monitor_updated for each monitor.
892                                 *monitor_a.update_ret.lock().unwrap() = Ok(());
893                                 *monitor_b.update_ret.lock().unwrap() = Ok(());
894                                 *monitor_c.update_ret.lock().unwrap() = Ok(());
895
896                                 if let Some((id, _)) = monitor_a.latest_monitors.lock().unwrap().get(&chan_1_funding) {
897                                         nodes[0].channel_monitor_updated(&chan_1_funding, *id);
898                                 }
899                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_1_funding) {
900                                         nodes[1].channel_monitor_updated(&chan_1_funding, *id);
901                                 }
902                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_2_funding) {
903                                         nodes[1].channel_monitor_updated(&chan_2_funding, *id);
904                                 }
905                                 if let Some((id, _)) = monitor_c.latest_monitors.lock().unwrap().get(&chan_2_funding) {
906                                         nodes[2].channel_monitor_updated(&chan_2_funding, *id);
907                                 }
908
909                                 // Next, make sure peers are all connected to each other
910                                 if chan_a_disconnected {
911                                         nodes[0].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::known() });
912                                         nodes[1].peer_connected(&nodes[0].get_our_node_id(), &Init { features: InitFeatures::known() });
913                                         chan_a_disconnected = false;
914                                 }
915                                 if chan_b_disconnected {
916                                         nodes[1].peer_connected(&nodes[2].get_our_node_id(), &Init { features: InitFeatures::known() });
917                                         nodes[2].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::known() });
918                                         chan_b_disconnected = false;
919                                 }
920
921                                 for i in 0..std::usize::MAX {
922                                         if i == 100 { panic!("It may take may iterations to settle the state, but it should not take forever"); }
923                                         // Then, make sure any current forwards make their way to their destination
924                                         if process_msg_events!(0, false) { continue; }
925                                         if process_msg_events!(1, false) { continue; }
926                                         if process_msg_events!(2, false) { continue; }
927                                         // ...making sure any pending PendingHTLCsForwardable events are handled and
928                                         // payments claimed.
929                                         if process_events!(0, false) { continue; }
930                                         if process_events!(1, false) { continue; }
931                                         if process_events!(2, false) { continue; }
932                                         break;
933                                 }
934
935                                 // Finally, make sure that at least one end of each channel can make a substantial payment.
936                                 assert!(
937                                         send_payment(&nodes[0], &nodes[1], chan_a, 10_000_000, &mut payment_id) ||
938                                         send_payment(&nodes[1], &nodes[0], chan_a, 10_000_000, &mut payment_id));
939                                 assert!(
940                                         send_payment(&nodes[1], &nodes[2], chan_b, 10_000_000, &mut payment_id) ||
941                                         send_payment(&nodes[2], &nodes[1], chan_b, 10_000_000, &mut payment_id));
942                         },
943                         _ => test_return!(),
944                 }
945
946                 node_a_ser.0.clear();
947                 nodes[0].write(&mut node_a_ser).unwrap();
948                 monitor_a.should_update_manager.store(false, atomic::Ordering::Relaxed);
949                 node_b_ser.0.clear();
950                 nodes[1].write(&mut node_b_ser).unwrap();
951                 monitor_b.should_update_manager.store(false, atomic::Ordering::Relaxed);
952                 node_c_ser.0.clear();
953                 nodes[2].write(&mut node_c_ser).unwrap();
954                 monitor_c.should_update_manager.store(false, atomic::Ordering::Relaxed);
955         }
956 }
957
958 pub fn chanmon_consistency_test<Out: test_logger::Output>(data: &[u8], out: Out) {
959         do_test(data, out);
960 }
961
962 #[no_mangle]
963 pub extern "C" fn chanmon_consistency_run(data: *const u8, datalen: usize) {
964         do_test(unsafe { std::slice::from_raw_parts(data, datalen) }, test_logger::DevNull{});
965 }