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