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