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