Improve KeysInterface::sign_invoice API
[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::{BestBlock, ChannelMonitorUpdateErr, chainmonitor, channelmonitor, Confirm, Watch};
34 use lightning::chain::channelmonitor::{ChannelMonitor, MonitorEvent};
35 use lightning::chain::transaction::OutPoint;
36 use lightning::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator};
37 use lightning::chain::keysinterface::{KeyMaterial, KeysInterface, InMemorySigner};
38 use lightning::ln::{PaymentHash, PaymentPreimage, PaymentSecret};
39 use lightning::ln::channelmanager::{ChainParameters, ChannelManager, PaymentSendFailure, ChannelManagerReadArgs};
40 use lightning::ln::channel::FEE_SPIKE_BUFFER_FEE_INCREASE_MULTIPLE;
41 use lightning::ln::features::{ChannelFeatures, InitFeatures, NodeFeatures};
42 use lightning::ln::msgs::{CommitmentUpdate, ChannelMessageHandler, DecodeError, UpdateAddHTLC, Init};
43 use lightning::ln::script::ShutdownScript;
44 use lightning::util::enforcing_trait_impls::{EnforcingSigner, EnforcementState};
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::MessageSendEventsProvider;
50 use lightning::util::ser::{Readable, ReadableArgs, Writeable, Writer};
51 use lightning::routing::router::{Route, RouteHop};
52
53 use utils::test_logger::{self, Output};
54 use utils::test_persister::TestPersister;
55
56 use bitcoin::secp256k1::key::{PublicKey,SecretKey};
57 use bitcoin::secp256k1::recovery::RecoverableSignature;
58 use bitcoin::secp256k1::Secp256k1;
59
60 use std::mem;
61 use std::cmp::{self, 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 use bitcoin::bech32::u5;
67
68 const MAX_FEE: u32 = 10_000;
69 struct FuzzEstimator {
70         ret_val: atomic::AtomicU32,
71 }
72 impl FeeEstimator for FuzzEstimator {
73         fn get_est_sat_per_1000_weight(&self, conf_target: ConfirmationTarget) -> u32 {
74                 // We force-close channels if our counterparty sends us a feerate which is a small multiple
75                 // of our HighPriority fee estimate or smaller than our Background fee estimate. Thus, we
76                 // always return a HighPriority feerate here which is >= the maximum Normal feerate and a
77                 // Background feerate which is <= the minimum Normal feerate.
78                 match conf_target {
79                         ConfirmationTarget::HighPriority => MAX_FEE,
80                         ConfirmationTarget::Background => 253,
81                         ConfirmationTarget::Normal => cmp::min(self.ret_val.load(atomic::Ordering::Acquire), MAX_FEE),
82                 }
83         }
84 }
85
86 pub struct TestBroadcaster {}
87 impl BroadcasterInterface for TestBroadcaster {
88         fn broadcast_transaction(&self, _tx: &Transaction) { }
89 }
90
91 pub struct VecWriter(pub Vec<u8>);
92 impl Writer for VecWriter {
93         fn write_all(&mut self, buf: &[u8]) -> Result<(), ::std::io::Error> {
94                 self.0.extend_from_slice(buf);
95                 Ok(())
96         }
97 }
98
99 struct TestChainMonitor {
100         pub logger: Arc<dyn Logger>,
101         pub keys: Arc<KeyProvider>,
102         pub persister: Arc<TestPersister>,
103         pub chain_monitor: Arc<chainmonitor::ChainMonitor<EnforcingSigner, Arc<dyn chain::Filter>, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>, Arc<TestPersister>>>,
104         // If we reload a node with an old copy of ChannelMonitors, the ChannelManager deserialization
105         // logic will automatically force-close our channels for us (as we don't have an up-to-date
106         // monitor implying we are not able to punish misbehaving counterparties). Because this test
107         // "fails" if we ever force-close a channel, we avoid doing so, always saving the latest
108         // fully-serialized monitor state here, as well as the corresponding update_id.
109         pub latest_monitors: Mutex<HashMap<OutPoint, (u64, Vec<u8>)>>,
110         pub should_update_manager: atomic::AtomicBool,
111 }
112 impl TestChainMonitor {
113         pub fn new(broadcaster: Arc<TestBroadcaster>, logger: Arc<dyn Logger>, feeest: Arc<FuzzEstimator>, persister: Arc<TestPersister>, keys: Arc<KeyProvider>) -> Self {
114                 Self {
115                         chain_monitor: Arc::new(chainmonitor::ChainMonitor::new(None, broadcaster, logger.clone(), feeest, Arc::clone(&persister))),
116                         logger,
117                         keys,
118                         persister,
119                         latest_monitors: Mutex::new(HashMap::new()),
120                         should_update_manager: atomic::AtomicBool::new(false),
121                 }
122         }
123 }
124 impl chain::Watch<EnforcingSigner> for TestChainMonitor {
125         fn watch_channel(&self, funding_txo: OutPoint, monitor: channelmonitor::ChannelMonitor<EnforcingSigner>) -> Result<(), chain::ChannelMonitorUpdateErr> {
126                 let mut ser = VecWriter(Vec::new());
127                 monitor.write(&mut ser).unwrap();
128                 if let Some(_) = self.latest_monitors.lock().unwrap().insert(funding_txo, (monitor.get_latest_update_id(), ser.0)) {
129                         panic!("Already had monitor pre-watch_channel");
130                 }
131                 self.should_update_manager.store(true, atomic::Ordering::Relaxed);
132                 self.chain_monitor.watch_channel(funding_txo, monitor)
133         }
134
135         fn update_channel(&self, funding_txo: OutPoint, update: channelmonitor::ChannelMonitorUpdate) -> Result<(), chain::ChannelMonitorUpdateErr> {
136                 let mut map_lock = self.latest_monitors.lock().unwrap();
137                 let mut map_entry = match map_lock.entry(funding_txo) {
138                         hash_map::Entry::Occupied(entry) => entry,
139                         hash_map::Entry::Vacant(_) => panic!("Didn't have monitor on update call"),
140                 };
141                 let deserialized_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingSigner>)>::
142                         read(&mut Cursor::new(&map_entry.get().1), &*self.keys).unwrap().1;
143                 deserialized_monitor.update_monitor(&update, &&TestBroadcaster{}, &&FuzzEstimator { ret_val: atomic::AtomicU32::new(253) }, &self.logger).unwrap();
144                 let mut ser = VecWriter(Vec::new());
145                 deserialized_monitor.write(&mut ser).unwrap();
146                 map_entry.insert((update.update_id, ser.0));
147                 self.should_update_manager.store(true, atomic::Ordering::Relaxed);
148                 self.chain_monitor.update_channel(funding_txo, update)
149         }
150
151         fn release_pending_monitor_events(&self) -> Vec<MonitorEvent> {
152                 return self.chain_monitor.release_pending_monitor_events();
153         }
154 }
155
156 struct KeyProvider {
157         node_id: u8,
158         rand_bytes_id: atomic::AtomicU32,
159         enforcement_states: Mutex<HashMap<[u8;32], Arc<Mutex<EnforcementState>>>>,
160 }
161 impl KeysInterface for KeyProvider {
162         type Signer = EnforcingSigner;
163
164         fn get_node_secret(&self) -> SecretKey {
165                 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()
166         }
167
168         fn get_inbound_payment_key_material(&self) -> KeyMaterial {
169                 KeyMaterial([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])
170         }
171
172         fn get_destination_script(&self) -> Script {
173                 let secp_ctx = Secp256k1::signing_only();
174                 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();
175                 let our_channel_monitor_claim_key_hash = WPubkeyHash::hash(&PublicKey::from_secret_key(&secp_ctx, &channel_monitor_claim_key).serialize());
176                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&our_channel_monitor_claim_key_hash[..]).into_script()
177         }
178
179         fn get_shutdown_scriptpubkey(&self) -> ShutdownScript {
180                 let secp_ctx = Secp256k1::signing_only();
181                 let secret_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, 3, self.node_id]).unwrap();
182                 let pubkey_hash = WPubkeyHash::hash(&PublicKey::from_secret_key(&secp_ctx, &secret_key).serialize());
183                 ShutdownScript::new_p2wpkh(&pubkey_hash)
184         }
185
186         fn get_channel_signer(&self, _inbound: bool, channel_value_satoshis: u64) -> EnforcingSigner {
187                 let secp_ctx = Secp256k1::signing_only();
188                 let id = self.rand_bytes_id.fetch_add(1, atomic::Ordering::Relaxed);
189                 let keys = InMemorySigner::new(
190                         &secp_ctx,
191                         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(),
192                         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(),
193                         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(),
194                         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(),
195                         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(),
196                         [id as u8, 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],
197                         channel_value_satoshis,
198                         [0; 32],
199                 );
200                 let revoked_commitment = self.make_enforcement_state_cell(keys.commitment_seed);
201                 EnforcingSigner::new_with_revoked(keys, revoked_commitment, false)
202         }
203
204         fn get_secure_random_bytes(&self) -> [u8; 32] {
205                 let id = self.rand_bytes_id.fetch_add(1, atomic::Ordering::Relaxed);
206                 let mut res = [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, 11, self.node_id];
207                 res[30-4..30].copy_from_slice(&id.to_le_bytes());
208                 res
209         }
210
211         fn read_chan_signer(&self, buffer: &[u8]) -> Result<Self::Signer, DecodeError> {
212                 let mut reader = std::io::Cursor::new(buffer);
213
214                 let inner: InMemorySigner = Readable::read(&mut reader)?;
215                 let state = self.make_enforcement_state_cell(inner.commitment_seed);
216
217                 Ok(EnforcingSigner {
218                         inner,
219                         state,
220                         disable_revocation_policy_check: false,
221                 })
222         }
223
224         fn sign_invoice(&self, _hrp_bytes: &[u8], _invoice_data: &[u5]) -> Result<RecoverableSignature, ()> {
225                 unreachable!()
226         }
227 }
228
229 impl KeyProvider {
230         fn make_enforcement_state_cell(&self, commitment_seed: [u8; 32]) -> Arc<Mutex<EnforcementState>> {
231                 let mut revoked_commitments = self.enforcement_states.lock().unwrap();
232                 if !revoked_commitments.contains_key(&commitment_seed) {
233                         revoked_commitments.insert(commitment_seed, Arc::new(Mutex::new(EnforcementState::new())));
234                 }
235                 let cell = revoked_commitments.get(&commitment_seed).unwrap();
236                 Arc::clone(cell)
237         }
238 }
239
240 #[inline]
241 fn check_api_err(api_err: APIError) {
242         match api_err {
243                 APIError::APIMisuseError { .. } => panic!("We can't misuse the API"),
244                 APIError::FeeRateTooHigh { .. } => panic!("We can't send too much fee?"),
245                 APIError::RouteError { .. } => panic!("Our routes should work"),
246                 APIError::ChannelUnavailable { err } => {
247                         // Test the error against a list of errors we can hit, and reject
248                         // all others. If you hit this panic, the list of acceptable errors
249                         // is probably just stale and you should add new messages here.
250                         match err.as_str() {
251                                 "Peer for first hop currently disconnected/pending monitor update!" => {},
252                                 _ if err.starts_with("Cannot push more than their max accepted HTLCs ") => {},
253                                 _ if err.starts_with("Cannot send value that would put us over the max HTLC value in flight our peer will accept ") => {},
254                                 _ if err.starts_with("Cannot send value that would put our balance under counterparty-announced channel reserve value") => {},
255                                 _ if err.starts_with("Cannot send value that would put counterparty balance under holder-announced channel reserve value") => {},
256                                 _ if err.starts_with("Cannot send value that would overdraw remaining funds.") => {},
257                                 _ if err.starts_with("Cannot send value that would not leave enough to pay for fees.") => {},
258                                 _ if err.starts_with("Cannot send value that would put our exposure to dust HTLCs at") => {},
259                                 _ => panic!("{}", err),
260                         }
261                 },
262                 APIError::MonitorUpdateFailed => {
263                         // We can (obviously) temp-fail a monitor update
264                 },
265                 APIError::IncompatibleShutdownScript { .. } => panic!("Cannot send an incompatible shutdown script"),
266         }
267 }
268 #[inline]
269 fn check_payment_err(send_err: PaymentSendFailure) {
270         match send_err {
271                 PaymentSendFailure::ParameterError(api_err) => check_api_err(api_err),
272                 PaymentSendFailure::PathParameterError(per_path_results) => {
273                         for res in per_path_results { if let Err(api_err) = res { check_api_err(api_err); } }
274                 },
275                 PaymentSendFailure::AllFailedRetrySafe(per_path_results) => {
276                         for api_err in per_path_results { check_api_err(api_err); }
277                 },
278                 PaymentSendFailure::PartialFailure { results, .. } => {
279                         for res in results { if let Err(api_err) = res { check_api_err(api_err); } }
280                 },
281         }
282 }
283
284 type ChanMan = ChannelManager<EnforcingSigner, Arc<TestChainMonitor>, Arc<TestBroadcaster>, Arc<KeyProvider>, Arc<FuzzEstimator>, Arc<dyn Logger>>;
285
286 #[inline]
287 fn get_payment_secret_hash(dest: &ChanMan, payment_id: &mut u8) -> Option<(PaymentSecret, PaymentHash)> {
288         let mut payment_hash;
289         for _ in 0..256 {
290                 payment_hash = PaymentHash(Sha256::hash(&[*payment_id; 1]).into_inner());
291                 if let Ok(payment_secret) = dest.create_inbound_payment_for_hash(payment_hash, None, 3600) {
292                         return Some((payment_secret, payment_hash));
293                 }
294                 *payment_id = payment_id.wrapping_add(1);
295         }
296         None
297 }
298
299 #[inline]
300 fn send_payment(source: &ChanMan, dest: &ChanMan, dest_chan_id: u64, amt: u64, payment_id: &mut u8) -> bool {
301         let (payment_secret, payment_hash) =
302                 if let Some((secret, hash)) = get_payment_secret_hash(dest, payment_id) { (secret, hash) } else { return true; };
303         if let Err(err) = source.send_payment(&Route {
304                 paths: vec![vec![RouteHop {
305                         pubkey: dest.get_our_node_id(),
306                         node_features: NodeFeatures::known(),
307                         short_channel_id: dest_chan_id,
308                         channel_features: ChannelFeatures::known(),
309                         fee_msat: amt,
310                         cltv_expiry_delta: 200,
311                 }]],
312                 payee: None,
313         }, payment_hash, &Some(payment_secret)) {
314                 check_payment_err(err);
315                 false
316         } else { true }
317 }
318 #[inline]
319 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 {
320         let (payment_secret, payment_hash) =
321                 if let Some((secret, hash)) = get_payment_secret_hash(dest, payment_id) { (secret, hash) } else { return true; };
322         if let Err(err) = source.send_payment(&Route {
323                 paths: vec![vec![RouteHop {
324                         pubkey: middle.get_our_node_id(),
325                         node_features: NodeFeatures::known(),
326                         short_channel_id: middle_chan_id,
327                         channel_features: ChannelFeatures::known(),
328                         fee_msat: 50000,
329                         cltv_expiry_delta: 100,
330                 },RouteHop {
331                         pubkey: dest.get_our_node_id(),
332                         node_features: NodeFeatures::known(),
333                         short_channel_id: dest_chan_id,
334                         channel_features: ChannelFeatures::known(),
335                         fee_msat: amt,
336                         cltv_expiry_delta: 200,
337                 }]],
338                 payee: None,
339         }, payment_hash, &Some(payment_secret)) {
340                 check_payment_err(err);
341                 false
342         } else { true }
343 }
344
345 #[inline]
346 pub fn do_test<Out: Output>(data: &[u8], underlying_out: Out) {
347         let out = SearchingOutput::new(underlying_out);
348         let broadcast = Arc::new(TestBroadcaster{});
349
350         macro_rules! make_node {
351                 ($node_id: expr, $fee_estimator: expr) => { {
352                         let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new($node_id.to_string(), out.clone()));
353                         let keys_manager = Arc::new(KeyProvider { node_id: $node_id, rand_bytes_id: atomic::AtomicU32::new(0), enforcement_states: Mutex::new(HashMap::new()) });
354                         let monitor = Arc::new(TestChainMonitor::new(broadcast.clone(), logger.clone(), $fee_estimator.clone(),
355                                 Arc::new(TestPersister { update_ret: Mutex::new(Ok(())) }), Arc::clone(&keys_manager)));
356
357                         let mut config = UserConfig::default();
358                         config.channel_options.forwarding_fee_proportional_millionths = 0;
359                         config.channel_options.announced_channel = true;
360                         let network = Network::Bitcoin;
361                         let params = ChainParameters {
362                                 network,
363                                 best_block: BestBlock::from_genesis(network),
364                         };
365                         (ChannelManager::new($fee_estimator.clone(), monitor.clone(), broadcast.clone(), Arc::clone(&logger), keys_manager.clone(), config, params),
366                         monitor, keys_manager)
367                 } }
368         }
369
370         macro_rules! reload_node {
371                 ($ser: expr, $node_id: expr, $old_monitors: expr, $keys_manager: expr, $fee_estimator: expr) => { {
372                     let keys_manager = Arc::clone(& $keys_manager);
373                         let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new($node_id.to_string(), out.clone()));
374                         let chain_monitor = Arc::new(TestChainMonitor::new(broadcast.clone(), logger.clone(), $fee_estimator.clone(),
375                                 Arc::new(TestPersister { update_ret: Mutex::new(Ok(())) }), Arc::clone(& $keys_manager)));
376
377                         let mut config = UserConfig::default();
378                         config.channel_options.forwarding_fee_proportional_millionths = 0;
379                         config.channel_options.announced_channel = true;
380
381                         let mut monitors = HashMap::new();
382                         let mut old_monitors = $old_monitors.latest_monitors.lock().unwrap();
383                         for (outpoint, (update_id, monitor_ser)) in old_monitors.drain() {
384                                 monitors.insert(outpoint, <(BlockHash, ChannelMonitor<EnforcingSigner>)>::read(&mut Cursor::new(&monitor_ser), &*$keys_manager).expect("Failed to read monitor").1);
385                                 chain_monitor.latest_monitors.lock().unwrap().insert(outpoint, (update_id, monitor_ser));
386                         }
387                         let mut monitor_refs = HashMap::new();
388                         for (outpoint, monitor) in monitors.iter_mut() {
389                                 monitor_refs.insert(*outpoint, monitor);
390                         }
391
392                         let read_args = ChannelManagerReadArgs {
393                                 keys_manager,
394                                 fee_estimator: $fee_estimator.clone(),
395                                 chain_monitor: chain_monitor.clone(),
396                                 tx_broadcaster: broadcast.clone(),
397                                 logger,
398                                 default_config: config,
399                                 channel_monitors: monitor_refs,
400                         };
401
402                         let res = (<(BlockHash, ChanMan)>::read(&mut Cursor::new(&$ser.0), read_args).expect("Failed to read manager").1, chain_monitor.clone());
403                         for (funding_txo, mon) in monitors.drain() {
404                                 assert!(chain_monitor.chain_monitor.watch_channel(funding_txo, mon).is_ok());
405                         }
406                         res
407                 } }
408         }
409
410         let mut channel_txn = Vec::new();
411         macro_rules! make_channel {
412                 ($source: expr, $dest: expr, $chan_id: expr) => { {
413                         $source.peer_connected(&$dest.get_our_node_id(), &Init { features: InitFeatures::known() });
414                         $dest.peer_connected(&$source.get_our_node_id(), &Init { features: InitFeatures::known() });
415
416                         $source.create_channel($dest.get_our_node_id(), 100_000, 42, 0, None).unwrap();
417                         let open_channel = {
418                                 let events = $source.get_and_clear_pending_msg_events();
419                                 assert_eq!(events.len(), 1);
420                                 if let events::MessageSendEvent::SendOpenChannel { ref msg, .. } = events[0] {
421                                         msg.clone()
422                                 } else { panic!("Wrong event type"); }
423                         };
424
425                         $dest.handle_open_channel(&$source.get_our_node_id(), InitFeatures::known(), &open_channel);
426                         let accept_channel = {
427                                 let events = $dest.get_and_clear_pending_msg_events();
428                                 assert_eq!(events.len(), 1);
429                                 if let events::MessageSendEvent::SendAcceptChannel { ref msg, .. } = events[0] {
430                                         msg.clone()
431                                 } else { panic!("Wrong event type"); }
432                         };
433
434                         $source.handle_accept_channel(&$dest.get_our_node_id(), InitFeatures::known(), &accept_channel);
435                         let funding_output;
436                         {
437                                 let events = $source.get_and_clear_pending_events();
438                                 assert_eq!(events.len(), 1);
439                                 if let events::Event::FundingGenerationReady { ref temporary_channel_id, ref channel_value_satoshis, ref output_script, .. } = events[0] {
440                                         let tx = Transaction { version: $chan_id, lock_time: 0, input: Vec::new(), output: vec![TxOut {
441                                                 value: *channel_value_satoshis, script_pubkey: output_script.clone(),
442                                         }]};
443                                         funding_output = OutPoint { txid: tx.txid(), index: 0 };
444                                         $source.funding_transaction_generated(&temporary_channel_id, tx.clone()).unwrap();
445                                         channel_txn.push(tx);
446                                 } else { panic!("Wrong event type"); }
447                         }
448
449                         let funding_created = {
450                                 let events = $source.get_and_clear_pending_msg_events();
451                                 assert_eq!(events.len(), 1);
452                                 if let events::MessageSendEvent::SendFundingCreated { ref msg, .. } = events[0] {
453                                         msg.clone()
454                                 } else { panic!("Wrong event type"); }
455                         };
456                         $dest.handle_funding_created(&$source.get_our_node_id(), &funding_created);
457
458                         let funding_signed = {
459                                 let events = $dest.get_and_clear_pending_msg_events();
460                                 assert_eq!(events.len(), 1);
461                                 if let events::MessageSendEvent::SendFundingSigned { ref msg, .. } = events[0] {
462                                         msg.clone()
463                                 } else { panic!("Wrong event type"); }
464                         };
465                         $source.handle_funding_signed(&$dest.get_our_node_id(), &funding_signed);
466
467                         funding_output
468                 } }
469         }
470
471         macro_rules! confirm_txn {
472                 ($node: expr) => { {
473                         let chain_hash = genesis_block(Network::Bitcoin).block_hash();
474                         let mut header = BlockHeader { version: 0x20000000, prev_blockhash: chain_hash, merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
475                         let txdata: Vec<_> = channel_txn.iter().enumerate().map(|(i, tx)| (i + 1, tx)).collect();
476                         $node.transactions_confirmed(&header, &txdata, 1);
477                         for _ in 2..100 {
478                                 header = BlockHeader { version: 0x20000000, prev_blockhash: header.block_hash(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
479                         }
480                         $node.best_block_updated(&header, 99);
481                 } }
482         }
483
484         macro_rules! lock_fundings {
485                 ($nodes: expr) => { {
486                         let mut node_events = Vec::new();
487                         for node in $nodes.iter() {
488                                 node_events.push(node.get_and_clear_pending_msg_events());
489                         }
490                         for (idx, node_event) in node_events.iter().enumerate() {
491                                 for event in node_event {
492                                         if let events::MessageSendEvent::SendFundingLocked { ref node_id, ref msg } = event {
493                                                 for node in $nodes.iter() {
494                                                         if node.get_our_node_id() == *node_id {
495                                                                 node.handle_funding_locked(&$nodes[idx].get_our_node_id(), msg);
496                                                         }
497                                                 }
498                                         } else { panic!("Wrong event type"); }
499                                 }
500                         }
501
502                         for node in $nodes.iter() {
503                                 let events = node.get_and_clear_pending_msg_events();
504                                 for event in events {
505                                         if let events::MessageSendEvent::SendAnnouncementSignatures { .. } = event {
506                                         } else { panic!("Wrong event type"); }
507                                 }
508                         }
509                 } }
510         }
511
512         let fee_est_a = Arc::new(FuzzEstimator { ret_val: atomic::AtomicU32::new(253) });
513         let mut last_htlc_clear_fee_a =  253;
514         let fee_est_b = Arc::new(FuzzEstimator { ret_val: atomic::AtomicU32::new(253) });
515         let mut last_htlc_clear_fee_b =  253;
516         let fee_est_c = Arc::new(FuzzEstimator { ret_val: atomic::AtomicU32::new(253) });
517         let mut last_htlc_clear_fee_c =  253;
518
519         // 3 nodes is enough to hit all the possible cases, notably unknown-source-unknown-dest
520         // forwarding.
521         let (node_a, mut monitor_a, keys_manager_a) = make_node!(0, fee_est_a);
522         let (node_b, mut monitor_b, keys_manager_b) = make_node!(1, fee_est_b);
523         let (node_c, mut monitor_c, keys_manager_c) = make_node!(2, fee_est_c);
524
525         let mut nodes = [node_a, node_b, node_c];
526
527         let chan_1_funding = make_channel!(nodes[0], nodes[1], 0);
528         let chan_2_funding = make_channel!(nodes[1], nodes[2], 1);
529
530         for node in nodes.iter() {
531                 confirm_txn!(node);
532         }
533
534         lock_fundings!(nodes);
535
536         let chan_a = nodes[0].list_usable_channels()[0].short_channel_id.unwrap();
537         let chan_b = nodes[2].list_usable_channels()[0].short_channel_id.unwrap();
538
539         let mut payment_id: u8 = 0;
540
541         let mut chan_a_disconnected = false;
542         let mut chan_b_disconnected = false;
543         let mut ab_events = Vec::new();
544         let mut ba_events = Vec::new();
545         let mut bc_events = Vec::new();
546         let mut cb_events = Vec::new();
547
548         let mut node_a_ser = VecWriter(Vec::new());
549         nodes[0].write(&mut node_a_ser).unwrap();
550         let mut node_b_ser = VecWriter(Vec::new());
551         nodes[1].write(&mut node_b_ser).unwrap();
552         let mut node_c_ser = VecWriter(Vec::new());
553         nodes[2].write(&mut node_c_ser).unwrap();
554
555         macro_rules! test_return {
556                 () => { {
557                         assert_eq!(nodes[0].list_channels().len(), 1);
558                         assert_eq!(nodes[1].list_channels().len(), 2);
559                         assert_eq!(nodes[2].list_channels().len(), 1);
560                         return;
561                 } }
562         }
563
564         let mut read_pos = 0;
565         macro_rules! get_slice {
566                 ($len: expr) => {
567                         {
568                                 let slice_len = $len as usize;
569                                 if data.len() < read_pos + slice_len {
570                                         test_return!();
571                                 }
572                                 read_pos += slice_len;
573                                 &data[read_pos - slice_len..read_pos]
574                         }
575                 }
576         }
577
578         loop {
579                 // Push any events from Node B onto ba_events and bc_events
580                 macro_rules! push_excess_b_events {
581                         ($excess_events: expr, $expect_drop_node: expr) => { {
582                                 let a_id = nodes[0].get_our_node_id();
583                                 let expect_drop_node: Option<usize> = $expect_drop_node;
584                                 let expect_drop_id = if let Some(id) = expect_drop_node { Some(nodes[id].get_our_node_id()) } else { None };
585                                 for event in $excess_events {
586                                         let push_a = match event {
587                                                 events::MessageSendEvent::UpdateHTLCs { ref node_id, .. } => {
588                                                         if Some(*node_id) == expect_drop_id { panic!("peer_disconnected should drop msgs bound for the disconnected peer"); }
589                                                         *node_id == a_id
590                                                 },
591                                                 events::MessageSendEvent::SendRevokeAndACK { ref node_id, .. } => {
592                                                         if Some(*node_id) == expect_drop_id { panic!("peer_disconnected should drop msgs bound for the disconnected peer"); }
593                                                         *node_id == a_id
594                                                 },
595                                                 events::MessageSendEvent::SendChannelReestablish { ref node_id, .. } => {
596                                                         if Some(*node_id) == expect_drop_id { panic!("peer_disconnected should drop msgs bound for the disconnected peer"); }
597                                                         *node_id == a_id
598                                                 },
599                                                 events::MessageSendEvent::SendFundingLocked { .. } => continue,
600                                                 events::MessageSendEvent::SendAnnouncementSignatures { .. } => continue,
601                                                 events::MessageSendEvent::SendChannelUpdate { ref node_id, ref msg } => {
602                                                         assert_eq!(msg.contents.flags & 2, 0); // The disable bit must never be set!
603                                                         if Some(*node_id) == expect_drop_id { panic!("peer_disconnected should drop msgs bound for the disconnected peer"); }
604                                                         *node_id == a_id
605                                                 },
606                                                 _ => panic!("Unhandled message event {:?}", event),
607                                         };
608                                         if push_a { ba_events.push(event); } else { bc_events.push(event); }
609                                 }
610                         } }
611                 }
612
613                 // While delivering messages, we select across three possible message selection processes
614                 // to ensure we get as much coverage as possible. See the individual enum variants for more
615                 // details.
616                 #[derive(PartialEq)]
617                 enum ProcessMessages {
618                         /// Deliver all available messages, including fetching any new messages from
619                         /// `get_and_clear_pending_msg_events()` (which may have side effects).
620                         AllMessages,
621                         /// Call `get_and_clear_pending_msg_events()` first, and then deliver up to one
622                         /// message (which may already be queued).
623                         OneMessage,
624                         /// Deliver up to one already-queued message. This avoids any potential side-effects
625                         /// of `get_and_clear_pending_msg_events()` (eg freeing the HTLC holding cell), which
626                         /// provides potentially more coverage.
627                         OnePendingMessage,
628                 }
629
630                 macro_rules! process_msg_events {
631                         ($node: expr, $corrupt_forward: expr, $limit_events: expr) => { {
632                                 let mut events = if $node == 1 {
633                                         let mut new_events = Vec::new();
634                                         mem::swap(&mut new_events, &mut ba_events);
635                                         new_events.extend_from_slice(&bc_events[..]);
636                                         bc_events.clear();
637                                         new_events
638                                 } else if $node == 0 {
639                                         let mut new_events = Vec::new();
640                                         mem::swap(&mut new_events, &mut ab_events);
641                                         new_events
642                                 } else {
643                                         let mut new_events = Vec::new();
644                                         mem::swap(&mut new_events, &mut cb_events);
645                                         new_events
646                                 };
647                                 let mut new_events = Vec::new();
648                                 if $limit_events != ProcessMessages::OnePendingMessage {
649                                         new_events = nodes[$node].get_and_clear_pending_msg_events();
650                                 }
651                                 let mut had_events = false;
652                                 let mut events_iter = events.drain(..).chain(new_events.drain(..));
653                                 let mut extra_ev = None;
654                                 for event in &mut events_iter {
655                                         had_events = true;
656                                         match event {
657                                                 events::MessageSendEvent::UpdateHTLCs { node_id, updates: CommitmentUpdate { update_add_htlcs, update_fail_htlcs, update_fulfill_htlcs, update_fail_malformed_htlcs, update_fee, commitment_signed } } => {
658                                                         for (idx, dest) in nodes.iter().enumerate() {
659                                                                 if dest.get_our_node_id() == node_id {
660                                                                         for update_add in update_add_htlcs.iter() {
661                                                                                 out.locked_write(format!("Delivering update_add_htlc to node {}.\n", idx).as_bytes());
662                                                                                 if !$corrupt_forward {
663                                                                                         dest.handle_update_add_htlc(&nodes[$node].get_our_node_id(), update_add);
664                                                                                 } else {
665                                                                                         // Corrupt the update_add_htlc message so that its HMAC
666                                                                                         // check will fail and we generate a
667                                                                                         // update_fail_malformed_htlc instead of an
668                                                                                         // update_fail_htlc as we do when we reject a payment.
669                                                                                         let mut msg_ser = update_add.encode();
670                                                                                         msg_ser[1000] ^= 0xff;
671                                                                                         let new_msg = UpdateAddHTLC::read(&mut Cursor::new(&msg_ser)).unwrap();
672                                                                                         dest.handle_update_add_htlc(&nodes[$node].get_our_node_id(), &new_msg);
673                                                                                 }
674                                                                         }
675                                                                         for update_fulfill in update_fulfill_htlcs.iter() {
676                                                                                 out.locked_write(format!("Delivering update_fulfill_htlc to node {}.\n", idx).as_bytes());
677                                                                                 dest.handle_update_fulfill_htlc(&nodes[$node].get_our_node_id(), update_fulfill);
678                                                                         }
679                                                                         for update_fail in update_fail_htlcs.iter() {
680                                                                                 out.locked_write(format!("Delivering update_fail_htlc to node {}.\n", idx).as_bytes());
681                                                                                 dest.handle_update_fail_htlc(&nodes[$node].get_our_node_id(), update_fail);
682                                                                         }
683                                                                         for update_fail_malformed in update_fail_malformed_htlcs.iter() {
684                                                                                 out.locked_write(format!("Delivering update_fail_malformed_htlc to node {}.\n", idx).as_bytes());
685                                                                                 dest.handle_update_fail_malformed_htlc(&nodes[$node].get_our_node_id(), update_fail_malformed);
686                                                                         }
687                                                                         if let Some(msg) = update_fee {
688                                                                                 out.locked_write(format!("Delivering update_fee to node {}.\n", idx).as_bytes());
689                                                                                 dest.handle_update_fee(&nodes[$node].get_our_node_id(), &msg);
690                                                                         }
691                                                                         let processed_change = !update_add_htlcs.is_empty() || !update_fulfill_htlcs.is_empty() ||
692                                                                                 !update_fail_htlcs.is_empty() || !update_fail_malformed_htlcs.is_empty();
693                                                                         if $limit_events != ProcessMessages::AllMessages && processed_change {
694                                                                                 // If we only want to process some messages, don't deliver the CS until later.
695                                                                                 extra_ev = Some(events::MessageSendEvent::UpdateHTLCs { node_id, updates: CommitmentUpdate {
696                                                                                         update_add_htlcs: Vec::new(),
697                                                                                         update_fail_htlcs: Vec::new(),
698                                                                                         update_fulfill_htlcs: Vec::new(),
699                                                                                         update_fail_malformed_htlcs: Vec::new(),
700                                                                                         update_fee: None,
701                                                                                         commitment_signed
702                                                                                 } });
703                                                                                 break;
704                                                                         }
705                                                                         out.locked_write(format!("Delivering commitment_signed to node {}.\n", idx).as_bytes());
706                                                                         dest.handle_commitment_signed(&nodes[$node].get_our_node_id(), &commitment_signed);
707                                                                         break;
708                                                                 }
709                                                         }
710                                                 },
711                                                 events::MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
712                                                         for (idx, dest) in nodes.iter().enumerate() {
713                                                                 if dest.get_our_node_id() == *node_id {
714                                                                         out.locked_write(format!("Delivering revoke_and_ack to node {}.\n", idx).as_bytes());
715                                                                         dest.handle_revoke_and_ack(&nodes[$node].get_our_node_id(), msg);
716                                                                 }
717                                                         }
718                                                 },
719                                                 events::MessageSendEvent::SendChannelReestablish { ref node_id, ref msg } => {
720                                                         for (idx, dest) in nodes.iter().enumerate() {
721                                                                 if dest.get_our_node_id() == *node_id {
722                                                                         out.locked_write(format!("Delivering channel_reestablish to node {}.\n", idx).as_bytes());
723                                                                         dest.handle_channel_reestablish(&nodes[$node].get_our_node_id(), msg);
724                                                                 }
725                                                         }
726                                                 },
727                                                 events::MessageSendEvent::SendFundingLocked { .. } => {
728                                                         // Can be generated as a reestablish response
729                                                 },
730                                                 events::MessageSendEvent::SendAnnouncementSignatures { .. } => {
731                                                         // Can be generated as a reestablish response
732                                                 },
733                                                 events::MessageSendEvent::SendChannelUpdate { ref msg, .. } => {
734                                                         // When we reconnect we will resend a channel_update to make sure our
735                                                         // counterparty has the latest parameters for receiving payments
736                                                         // through us. We do, however, check that the message does not include
737                                                         // the "disabled" bit, as we should never ever have a channel which is
738                                                         // disabled when we send such an update (or it may indicate channel
739                                                         // force-close which we should detect as an error).
740                                                         assert_eq!(msg.contents.flags & 2, 0);
741                                                 },
742                                                 _ => if out.may_fail.load(atomic::Ordering::Acquire) {
743                                                         return;
744                                                 } else {
745                                                         panic!("Unhandled message event {:?}", event)
746                                                 },
747                                         }
748                                         if $limit_events != ProcessMessages::AllMessages {
749                                                 break;
750                                         }
751                                 }
752                                 if $node == 1 {
753                                         push_excess_b_events!(extra_ev.into_iter().chain(events_iter), None);
754                                 } else if $node == 0 {
755                                         if let Some(ev) = extra_ev { ab_events.push(ev); }
756                                         for event in events_iter { ab_events.push(event); }
757                                 } else {
758                                         if let Some(ev) = extra_ev { cb_events.push(ev); }
759                                         for event in events_iter { cb_events.push(event); }
760                                 }
761                                 had_events
762                         } }
763                 }
764
765                 macro_rules! drain_msg_events_on_disconnect {
766                         ($counterparty_id: expr) => { {
767                                 if $counterparty_id == 0 {
768                                         for event in nodes[0].get_and_clear_pending_msg_events() {
769                                                 match event {
770                                                         events::MessageSendEvent::UpdateHTLCs { .. } => {},
771                                                         events::MessageSendEvent::SendRevokeAndACK { .. } => {},
772                                                         events::MessageSendEvent::SendChannelReestablish { .. } => {},
773                                                         events::MessageSendEvent::SendFundingLocked { .. } => {},
774                                                         events::MessageSendEvent::SendAnnouncementSignatures { .. } => {},
775                                                         events::MessageSendEvent::SendChannelUpdate { ref msg, .. } => {
776                                                                 assert_eq!(msg.contents.flags & 2, 0); // The disable bit must never be set!
777                                                         },
778                                                         _ => if out.may_fail.load(atomic::Ordering::Acquire) {
779                                                                 return;
780                                                         } else {
781                                                                 panic!("Unhandled message event")
782                                                         },
783                                                 }
784                                         }
785                                         push_excess_b_events!(nodes[1].get_and_clear_pending_msg_events().drain(..), Some(0));
786                                         ab_events.clear();
787                                         ba_events.clear();
788                                 } else {
789                                         for event in nodes[2].get_and_clear_pending_msg_events() {
790                                                 match event {
791                                                         events::MessageSendEvent::UpdateHTLCs { .. } => {},
792                                                         events::MessageSendEvent::SendRevokeAndACK { .. } => {},
793                                                         events::MessageSendEvent::SendChannelReestablish { .. } => {},
794                                                         events::MessageSendEvent::SendFundingLocked { .. } => {},
795                                                         events::MessageSendEvent::SendAnnouncementSignatures { .. } => {},
796                                                         events::MessageSendEvent::SendChannelUpdate { ref msg, .. } => {
797                                                                 assert_eq!(msg.contents.flags & 2, 0); // The disable bit must never be set!
798                                                         },
799                                                         _ => if out.may_fail.load(atomic::Ordering::Acquire) {
800                                                                 return;
801                                                         } else {
802                                                                 panic!("Unhandled message event")
803                                                         },
804                                                 }
805                                         }
806                                         push_excess_b_events!(nodes[1].get_and_clear_pending_msg_events().drain(..), Some(2));
807                                         bc_events.clear();
808                                         cb_events.clear();
809                                 }
810                         } }
811                 }
812
813                 macro_rules! process_events {
814                         ($node: expr, $fail: expr) => { {
815                                 // In case we get 256 payments we may have a hash collision, resulting in the
816                                 // second claim/fail call not finding the duplicate-hash HTLC, so we have to
817                                 // deduplicate the calls here.
818                                 let mut claim_set = HashSet::new();
819                                 let mut events = nodes[$node].get_and_clear_pending_events();
820                                 // Sort events so that PendingHTLCsForwardable get processed last. This avoids a
821                                 // case where we first process a PendingHTLCsForwardable, then claim/fail on a
822                                 // PaymentReceived, claiming/failing two HTLCs, but leaving a just-generated
823                                 // PaymentReceived event for the second HTLC in our pending_events (and breaking
824                                 // our claim_set deduplication).
825                                 events.sort_by(|a, b| {
826                                         if let events::Event::PaymentReceived { .. } = a {
827                                                 if let events::Event::PendingHTLCsForwardable { .. } = b {
828                                                         Ordering::Less
829                                                 } else { Ordering::Equal }
830                                         } else if let events::Event::PendingHTLCsForwardable { .. } = a {
831                                                 if let events::Event::PaymentReceived { .. } = b {
832                                                         Ordering::Greater
833                                                 } else { Ordering::Equal }
834                                         } else { Ordering::Equal }
835                                 });
836                                 let had_events = !events.is_empty();
837                                 for event in events.drain(..) {
838                                         match event {
839                                                 events::Event::PaymentReceived { payment_hash, .. } => {
840                                                         if claim_set.insert(payment_hash.0) {
841                                                                 if $fail {
842                                                                         assert!(nodes[$node].fail_htlc_backwards(&payment_hash));
843                                                                 } else {
844                                                                         assert!(nodes[$node].claim_funds(PaymentPreimage(payment_hash.0)));
845                                                                 }
846                                                         }
847                                                 },
848                                                 events::Event::PaymentSent { .. } => {},
849                                                 events::Event::PaymentPathSuccessful { .. } => {},
850                                                 events::Event::PaymentPathFailed { .. } => {},
851                                                 events::Event::PaymentForwarded { .. } if $node == 1 => {},
852                                                 events::Event::PendingHTLCsForwardable { .. } => {
853                                                         nodes[$node].process_pending_htlc_forwards();
854                                                 },
855                                                 _ => if out.may_fail.load(atomic::Ordering::Acquire) {
856                                                         return;
857                                                 } else {
858                                                         panic!("Unhandled event")
859                                                 },
860                                         }
861                                 }
862                                 had_events
863                         } }
864                 }
865
866                 let v = get_slice!(1)[0];
867                 out.locked_write(format!("READ A BYTE! HANDLING INPUT {:x}...........\n", v).as_bytes());
868                 match v {
869                         // In general, we keep related message groups close together in binary form, allowing
870                         // bit-twiddling mutations to have similar effects. This is probably overkill, but no
871                         // harm in doing so.
872
873                         0x00 => *monitor_a.persister.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
874                         0x01 => *monitor_b.persister.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
875                         0x02 => *monitor_c.persister.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
876                         0x04 => *monitor_a.persister.update_ret.lock().unwrap() = Ok(()),
877                         0x05 => *monitor_b.persister.update_ret.lock().unwrap() = Ok(()),
878                         0x06 => *monitor_c.persister.update_ret.lock().unwrap() = Ok(()),
879
880                         0x08 => {
881                                 if let Some((id, _)) = monitor_a.latest_monitors.lock().unwrap().get(&chan_1_funding) {
882                                         monitor_a.chain_monitor.force_channel_monitor_updated(chan_1_funding, *id);
883                                         nodes[0].process_monitor_events();
884                                 }
885                         },
886                         0x09 => {
887                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_1_funding) {
888                                         monitor_b.chain_monitor.force_channel_monitor_updated(chan_1_funding, *id);
889                                         nodes[1].process_monitor_events();
890                                 }
891                         },
892                         0x0a => {
893                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_2_funding) {
894                                         monitor_b.chain_monitor.force_channel_monitor_updated(chan_2_funding, *id);
895                                         nodes[1].process_monitor_events();
896                                 }
897                         },
898                         0x0b => {
899                                 if let Some((id, _)) = monitor_c.latest_monitors.lock().unwrap().get(&chan_2_funding) {
900                                         monitor_c.chain_monitor.force_channel_monitor_updated(chan_2_funding, *id);
901                                         nodes[2].process_monitor_events();
902                                 }
903                         },
904
905                         0x0c => {
906                                 if !chan_a_disconnected {
907                                         nodes[0].peer_disconnected(&nodes[1].get_our_node_id(), false);
908                                         nodes[1].peer_disconnected(&nodes[0].get_our_node_id(), false);
909                                         chan_a_disconnected = true;
910                                         drain_msg_events_on_disconnect!(0);
911                                 }
912                         },
913                         0x0d => {
914                                 if !chan_b_disconnected {
915                                         nodes[1].peer_disconnected(&nodes[2].get_our_node_id(), false);
916                                         nodes[2].peer_disconnected(&nodes[1].get_our_node_id(), false);
917                                         chan_b_disconnected = true;
918                                         drain_msg_events_on_disconnect!(2);
919                                 }
920                         },
921                         0x0e => {
922                                 if chan_a_disconnected {
923                                         nodes[0].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::known() });
924                                         nodes[1].peer_connected(&nodes[0].get_our_node_id(), &Init { features: InitFeatures::known() });
925                                         chan_a_disconnected = false;
926                                 }
927                         },
928                         0x0f => {
929                                 if chan_b_disconnected {
930                                         nodes[1].peer_connected(&nodes[2].get_our_node_id(), &Init { features: InitFeatures::known() });
931                                         nodes[2].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::known() });
932                                         chan_b_disconnected = false;
933                                 }
934                         },
935
936                         0x10 => { process_msg_events!(0, true, ProcessMessages::AllMessages); },
937                         0x11 => { process_msg_events!(0, false, ProcessMessages::AllMessages); },
938                         0x12 => { process_msg_events!(0, true, ProcessMessages::OneMessage); },
939                         0x13 => { process_msg_events!(0, false, ProcessMessages::OneMessage); },
940                         0x14 => { process_msg_events!(0, true, ProcessMessages::OnePendingMessage); },
941                         0x15 => { process_msg_events!(0, false, ProcessMessages::OnePendingMessage); },
942
943                         0x16 => { process_events!(0, true); },
944                         0x17 => { process_events!(0, false); },
945
946                         0x18 => { process_msg_events!(1, true, ProcessMessages::AllMessages); },
947                         0x19 => { process_msg_events!(1, false, ProcessMessages::AllMessages); },
948                         0x1a => { process_msg_events!(1, true, ProcessMessages::OneMessage); },
949                         0x1b => { process_msg_events!(1, false, ProcessMessages::OneMessage); },
950                         0x1c => { process_msg_events!(1, true, ProcessMessages::OnePendingMessage); },
951                         0x1d => { process_msg_events!(1, false, ProcessMessages::OnePendingMessage); },
952
953                         0x1e => { process_events!(1, true); },
954                         0x1f => { process_events!(1, false); },
955
956                         0x20 => { process_msg_events!(2, true, ProcessMessages::AllMessages); },
957                         0x21 => { process_msg_events!(2, false, ProcessMessages::AllMessages); },
958                         0x22 => { process_msg_events!(2, true, ProcessMessages::OneMessage); },
959                         0x23 => { process_msg_events!(2, false, ProcessMessages::OneMessage); },
960                         0x24 => { process_msg_events!(2, true, ProcessMessages::OnePendingMessage); },
961                         0x25 => { process_msg_events!(2, false, ProcessMessages::OnePendingMessage); },
962
963                         0x26 => { process_events!(2, true); },
964                         0x27 => { process_events!(2, false); },
965
966                         0x2c => {
967                                 if !chan_a_disconnected {
968                                         nodes[1].peer_disconnected(&nodes[0].get_our_node_id(), false);
969                                         chan_a_disconnected = true;
970                                         drain_msg_events_on_disconnect!(0);
971                                 }
972                                 if monitor_a.should_update_manager.load(atomic::Ordering::Relaxed) {
973                                         node_a_ser.0.clear();
974                                         nodes[0].write(&mut node_a_ser).unwrap();
975                                 }
976                                 let (new_node_a, new_monitor_a) = reload_node!(node_a_ser, 0, monitor_a, keys_manager_a, fee_est_a);
977                                 nodes[0] = new_node_a;
978                                 monitor_a = new_monitor_a;
979                         },
980                         0x2d => {
981                                 if !chan_a_disconnected {
982                                         nodes[0].peer_disconnected(&nodes[1].get_our_node_id(), false);
983                                         chan_a_disconnected = true;
984                                         nodes[0].get_and_clear_pending_msg_events();
985                                         ab_events.clear();
986                                         ba_events.clear();
987                                 }
988                                 if !chan_b_disconnected {
989                                         nodes[2].peer_disconnected(&nodes[1].get_our_node_id(), false);
990                                         chan_b_disconnected = true;
991                                         nodes[2].get_and_clear_pending_msg_events();
992                                         bc_events.clear();
993                                         cb_events.clear();
994                                 }
995                                 let (new_node_b, new_monitor_b) = reload_node!(node_b_ser, 1, monitor_b, keys_manager_b, fee_est_b);
996                                 nodes[1] = new_node_b;
997                                 monitor_b = new_monitor_b;
998                         },
999                         0x2e => {
1000                                 if !chan_b_disconnected {
1001                                         nodes[1].peer_disconnected(&nodes[2].get_our_node_id(), false);
1002                                         chan_b_disconnected = true;
1003                                         drain_msg_events_on_disconnect!(2);
1004                                 }
1005                                 if monitor_c.should_update_manager.load(atomic::Ordering::Relaxed) {
1006                                         node_c_ser.0.clear();
1007                                         nodes[2].write(&mut node_c_ser).unwrap();
1008                                 }
1009                                 let (new_node_c, new_monitor_c) = reload_node!(node_c_ser, 2, monitor_c, keys_manager_c, fee_est_c);
1010                                 nodes[2] = new_node_c;
1011                                 monitor_c = new_monitor_c;
1012                         },
1013
1014                         // 1/10th the channel size:
1015                         0x30 => { send_payment(&nodes[0], &nodes[1], chan_a, 10_000_000, &mut payment_id); },
1016                         0x31 => { send_payment(&nodes[1], &nodes[0], chan_a, 10_000_000, &mut payment_id); },
1017                         0x32 => { send_payment(&nodes[1], &nodes[2], chan_b, 10_000_000, &mut payment_id); },
1018                         0x33 => { send_payment(&nodes[2], &nodes[1], chan_b, 10_000_000, &mut payment_id); },
1019                         0x34 => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 10_000_000, &mut payment_id); },
1020                         0x35 => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 10_000_000, &mut payment_id); },
1021
1022                         0x38 => { send_payment(&nodes[0], &nodes[1], chan_a, 1_000_000, &mut payment_id); },
1023                         0x39 => { send_payment(&nodes[1], &nodes[0], chan_a, 1_000_000, &mut payment_id); },
1024                         0x3a => { send_payment(&nodes[1], &nodes[2], chan_b, 1_000_000, &mut payment_id); },
1025                         0x3b => { send_payment(&nodes[2], &nodes[1], chan_b, 1_000_000, &mut payment_id); },
1026                         0x3c => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 1_000_000, &mut payment_id); },
1027                         0x3d => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 1_000_000, &mut payment_id); },
1028
1029                         0x40 => { send_payment(&nodes[0], &nodes[1], chan_a, 100_000, &mut payment_id); },
1030                         0x41 => { send_payment(&nodes[1], &nodes[0], chan_a, 100_000, &mut payment_id); },
1031                         0x42 => { send_payment(&nodes[1], &nodes[2], chan_b, 100_000, &mut payment_id); },
1032                         0x43 => { send_payment(&nodes[2], &nodes[1], chan_b, 100_000, &mut payment_id); },
1033                         0x44 => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 100_000, &mut payment_id); },
1034                         0x45 => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 100_000, &mut payment_id); },
1035
1036                         0x48 => { send_payment(&nodes[0], &nodes[1], chan_a, 10_000, &mut payment_id); },
1037                         0x49 => { send_payment(&nodes[1], &nodes[0], chan_a, 10_000, &mut payment_id); },
1038                         0x4a => { send_payment(&nodes[1], &nodes[2], chan_b, 10_000, &mut payment_id); },
1039                         0x4b => { send_payment(&nodes[2], &nodes[1], chan_b, 10_000, &mut payment_id); },
1040                         0x4c => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 10_000, &mut payment_id); },
1041                         0x4d => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 10_000, &mut payment_id); },
1042
1043                         0x50 => { send_payment(&nodes[0], &nodes[1], chan_a, 1_000, &mut payment_id); },
1044                         0x51 => { send_payment(&nodes[1], &nodes[0], chan_a, 1_000, &mut payment_id); },
1045                         0x52 => { send_payment(&nodes[1], &nodes[2], chan_b, 1_000, &mut payment_id); },
1046                         0x53 => { send_payment(&nodes[2], &nodes[1], chan_b, 1_000, &mut payment_id); },
1047                         0x54 => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 1_000, &mut payment_id); },
1048                         0x55 => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 1_000, &mut payment_id); },
1049
1050                         0x58 => { send_payment(&nodes[0], &nodes[1], chan_a, 100, &mut payment_id); },
1051                         0x59 => { send_payment(&nodes[1], &nodes[0], chan_a, 100, &mut payment_id); },
1052                         0x5a => { send_payment(&nodes[1], &nodes[2], chan_b, 100, &mut payment_id); },
1053                         0x5b => { send_payment(&nodes[2], &nodes[1], chan_b, 100, &mut payment_id); },
1054                         0x5c => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 100, &mut payment_id); },
1055                         0x5d => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 100, &mut payment_id); },
1056
1057                         0x60 => { send_payment(&nodes[0], &nodes[1], chan_a, 10, &mut payment_id); },
1058                         0x61 => { send_payment(&nodes[1], &nodes[0], chan_a, 10, &mut payment_id); },
1059                         0x62 => { send_payment(&nodes[1], &nodes[2], chan_b, 10, &mut payment_id); },
1060                         0x63 => { send_payment(&nodes[2], &nodes[1], chan_b, 10, &mut payment_id); },
1061                         0x64 => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 10, &mut payment_id); },
1062                         0x65 => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 10, &mut payment_id); },
1063
1064                         0x68 => { send_payment(&nodes[0], &nodes[1], chan_a, 1, &mut payment_id); },
1065                         0x69 => { send_payment(&nodes[1], &nodes[0], chan_a, 1, &mut payment_id); },
1066                         0x6a => { send_payment(&nodes[1], &nodes[2], chan_b, 1, &mut payment_id); },
1067                         0x6b => { send_payment(&nodes[2], &nodes[1], chan_b, 1, &mut payment_id); },
1068                         0x6c => { send_hop_payment(&nodes[0], &nodes[1], chan_a, &nodes[2], chan_b, 1, &mut payment_id); },
1069                         0x6d => { send_hop_payment(&nodes[2], &nodes[1], chan_b, &nodes[0], chan_a, 1, &mut payment_id); },
1070
1071                         0x80 => {
1072                                 let max_feerate = last_htlc_clear_fee_a * FEE_SPIKE_BUFFER_FEE_INCREASE_MULTIPLE as u32;
1073                                 if fee_est_a.ret_val.fetch_add(250, atomic::Ordering::AcqRel) + 250 > max_feerate {
1074                                         fee_est_a.ret_val.store(max_feerate, atomic::Ordering::Release);
1075                                 }
1076                                 nodes[0].maybe_update_chan_fees();
1077                         },
1078                         0x81 => { fee_est_a.ret_val.store(253, atomic::Ordering::Release); nodes[0].maybe_update_chan_fees(); },
1079
1080                         0x84 => {
1081                                 let max_feerate = last_htlc_clear_fee_b * FEE_SPIKE_BUFFER_FEE_INCREASE_MULTIPLE as u32;
1082                                 if fee_est_b.ret_val.fetch_add(250, atomic::Ordering::AcqRel) + 250 > max_feerate {
1083                                         fee_est_b.ret_val.store(max_feerate, atomic::Ordering::Release);
1084                                 }
1085                                 nodes[1].maybe_update_chan_fees();
1086                         },
1087                         0x85 => { fee_est_b.ret_val.store(253, atomic::Ordering::Release); nodes[1].maybe_update_chan_fees(); },
1088
1089                         0x88 => {
1090                                 let max_feerate = last_htlc_clear_fee_c * FEE_SPIKE_BUFFER_FEE_INCREASE_MULTIPLE as u32;
1091                                 if fee_est_c.ret_val.fetch_add(250, atomic::Ordering::AcqRel) + 250 > max_feerate {
1092                                         fee_est_c.ret_val.store(max_feerate, atomic::Ordering::Release);
1093                                 }
1094                                 nodes[2].maybe_update_chan_fees();
1095                         },
1096                         0x89 => { fee_est_c.ret_val.store(253, atomic::Ordering::Release); nodes[2].maybe_update_chan_fees(); },
1097
1098                         0xff => {
1099                                 // Test that no channel is in a stuck state where neither party can send funds even
1100                                 // after we resolve all pending events.
1101                                 // First make sure there are no pending monitor updates, resetting the error state
1102                                 // and calling force_channel_monitor_updated for each monitor.
1103                                 *monitor_a.persister.update_ret.lock().unwrap() = Ok(());
1104                                 *monitor_b.persister.update_ret.lock().unwrap() = Ok(());
1105                                 *monitor_c.persister.update_ret.lock().unwrap() = Ok(());
1106
1107                                 if let Some((id, _)) = monitor_a.latest_monitors.lock().unwrap().get(&chan_1_funding) {
1108                                         monitor_a.chain_monitor.force_channel_monitor_updated(chan_1_funding, *id);
1109                                         nodes[0].process_monitor_events();
1110                                 }
1111                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_1_funding) {
1112                                         monitor_b.chain_monitor.force_channel_monitor_updated(chan_1_funding, *id);
1113                                         nodes[1].process_monitor_events();
1114                                 }
1115                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_2_funding) {
1116                                         monitor_b.chain_monitor.force_channel_monitor_updated(chan_2_funding, *id);
1117                                         nodes[1].process_monitor_events();
1118                                 }
1119                                 if let Some((id, _)) = monitor_c.latest_monitors.lock().unwrap().get(&chan_2_funding) {
1120                                         monitor_c.chain_monitor.force_channel_monitor_updated(chan_2_funding, *id);
1121                                         nodes[2].process_monitor_events();
1122                                 }
1123
1124                                 // Next, make sure peers are all connected to each other
1125                                 if chan_a_disconnected {
1126                                         nodes[0].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::known() });
1127                                         nodes[1].peer_connected(&nodes[0].get_our_node_id(), &Init { features: InitFeatures::known() });
1128                                         chan_a_disconnected = false;
1129                                 }
1130                                 if chan_b_disconnected {
1131                                         nodes[1].peer_connected(&nodes[2].get_our_node_id(), &Init { features: InitFeatures::known() });
1132                                         nodes[2].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::known() });
1133                                         chan_b_disconnected = false;
1134                                 }
1135
1136                                 for i in 0..std::usize::MAX {
1137                                         if i == 100 { panic!("It may take may iterations to settle the state, but it should not take forever"); }
1138                                         // Then, make sure any current forwards make their way to their destination
1139                                         if process_msg_events!(0, false, ProcessMessages::AllMessages) { continue; }
1140                                         if process_msg_events!(1, false, ProcessMessages::AllMessages) { continue; }
1141                                         if process_msg_events!(2, false, ProcessMessages::AllMessages) { continue; }
1142                                         // ...making sure any pending PendingHTLCsForwardable events are handled and
1143                                         // payments claimed.
1144                                         if process_events!(0, false) { continue; }
1145                                         if process_events!(1, false) { continue; }
1146                                         if process_events!(2, false) { continue; }
1147                                         break;
1148                                 }
1149
1150                                 // Finally, make sure that at least one end of each channel can make a substantial payment
1151                                 assert!(
1152                                         send_payment(&nodes[0], &nodes[1], chan_a, 10_000_000, &mut payment_id) ||
1153                                         send_payment(&nodes[1], &nodes[0], chan_a, 10_000_000, &mut payment_id));
1154                                 assert!(
1155                                         send_payment(&nodes[1], &nodes[2], chan_b, 10_000_000, &mut payment_id) ||
1156                                         send_payment(&nodes[2], &nodes[1], chan_b, 10_000_000, &mut payment_id));
1157
1158                                 last_htlc_clear_fee_a = fee_est_a.ret_val.load(atomic::Ordering::Acquire);
1159                                 last_htlc_clear_fee_b = fee_est_b.ret_val.load(atomic::Ordering::Acquire);
1160                                 last_htlc_clear_fee_c = fee_est_c.ret_val.load(atomic::Ordering::Acquire);
1161                         },
1162                         _ => test_return!(),
1163                 }
1164
1165                 node_a_ser.0.clear();
1166                 nodes[0].write(&mut node_a_ser).unwrap();
1167                 monitor_a.should_update_manager.store(false, atomic::Ordering::Relaxed);
1168                 node_b_ser.0.clear();
1169                 nodes[1].write(&mut node_b_ser).unwrap();
1170                 monitor_b.should_update_manager.store(false, atomic::Ordering::Relaxed);
1171                 node_c_ser.0.clear();
1172                 nodes[2].write(&mut node_c_ser).unwrap();
1173                 monitor_c.should_update_manager.store(false, atomic::Ordering::Relaxed);
1174         }
1175 }
1176
1177 /// We actually have different behavior based on if a certain log string has been seen, so we have
1178 /// to do a bit more tracking.
1179 #[derive(Clone)]
1180 struct SearchingOutput<O: Output> {
1181         output: O,
1182         may_fail: Arc<atomic::AtomicBool>,
1183 }
1184 impl<O: Output> Output for SearchingOutput<O> {
1185         fn locked_write(&self, data: &[u8]) {
1186                 // We hit a design limitation of LN state machine (see CONCURRENT_INBOUND_HTLC_FEE_BUFFER)
1187                 if std::str::from_utf8(data).unwrap().contains("Outbound update_fee HTLC buffer overflow - counterparty should force-close this channel") {
1188                         self.may_fail.store(true, atomic::Ordering::Release);
1189                 }
1190                 self.output.locked_write(data)
1191         }
1192 }
1193 impl<O: Output> SearchingOutput<O> {
1194         pub fn new(output: O) -> Self {
1195                 Self { output, may_fail: Arc::new(atomic::AtomicBool::new(false)) }
1196         }
1197 }
1198
1199 pub fn chanmon_consistency_test<Out: Output>(data: &[u8], out: Out) {
1200         do_test(data, out);
1201 }
1202
1203 #[no_mangle]
1204 pub extern "C" fn chanmon_consistency_run(data: *const u8, datalen: usize) {
1205         do_test(unsafe { std::slice::from_raw_parts(data, datalen) }, test_logger::DevNull{});
1206 }