e9f56a3e4605426881b442e580ef04ef8c5f9b97
[rust-lightning] / fuzz / src / chanmon_consistency.rs
1 //! Test that monitor update failures don't get our channel state out of sync.
2 //! One of the biggest concern with the monitor update failure handling code is that messages
3 //! resent after monitor updating is restored are delivered out-of-order, resulting in
4 //! commitment_signed messages having "invalid signatures".
5 //! To test this we stand up a network of three nodes and read bytes from the fuzz input to denote
6 //! actions such as sending payments, handling events, or changing monitor update return values on
7 //! a per-node basis. This should allow it to find any cases where the ordering of actions results
8 //! in us getting out of sync with ourselves, and, assuming at least one of our recieve- or
9 //! send-side handling is correct, other peers. We consider it a failure if any action results in a
10 //! channel being force-closed.
11
12 use bitcoin::BitcoinHash;
13 use bitcoin::blockdata::block::BlockHeader;
14 use bitcoin::blockdata::transaction::{Transaction, TxOut};
15 use bitcoin::blockdata::script::{Builder, Script};
16 use bitcoin::blockdata::opcodes;
17 use bitcoin::network::constants::Network;
18
19 use bitcoin::hashes::Hash as TraitImport;
20 use bitcoin::hashes::sha256::Hash as Sha256;
21 use bitcoin::hash_types::{BlockHash, WPubkeyHash};
22
23 use lightning::chain::chaininterface;
24 use lightning::chain::transaction::OutPoint;
25 use lightning::chain::chaininterface::{BroadcasterInterface,ConfirmationTarget,ChainListener,FeeEstimator,ChainWatchInterfaceUtil,ChainWatchInterface};
26 use lightning::chain::keysinterface::{KeysInterface, InMemoryChannelKeys};
27 use lightning::ln::channelmonitor;
28 use lightning::ln::channelmonitor::{ChannelMonitor, ChannelMonitorUpdateErr, HTLCUpdate};
29 use lightning::ln::channelmanager::{ChannelManager, PaymentHash, PaymentPreimage, PaymentSecret, ChannelManagerReadArgs};
30 use lightning::ln::features::{ChannelFeatures, InitFeatures, NodeFeatures};
31 use lightning::ln::msgs::{CommitmentUpdate, ChannelMessageHandler, ErrorAction, UpdateAddHTLC, Init};
32 use lightning::util::enforcing_trait_impls::EnforcingChannelKeys;
33 use lightning::util::events;
34 use lightning::util::logger::Logger;
35 use lightning::util::config::UserConfig;
36 use lightning::util::events::{EventsProvider, MessageSendEventsProvider};
37 use lightning::util::ser::{Readable, ReadableArgs, Writeable, Writer};
38 use lightning::routing::router::{Route, RouteHop};
39
40
41 use utils::test_logger;
42
43 use bitcoin::secp256k1::key::{PublicKey,SecretKey};
44 use bitcoin::secp256k1::Secp256k1;
45
46 use std::mem;
47 use std::cmp::Ordering;
48 use std::collections::{HashSet, hash_map, HashMap};
49 use std::sync::{Arc,Mutex};
50 use std::sync::atomic;
51 use std::io::Cursor;
52
53 struct FuzzEstimator {}
54 impl FeeEstimator for FuzzEstimator {
55         fn get_est_sat_per_1000_weight(&self, _: ConfirmationTarget) -> u64 {
56                 253
57         }
58 }
59
60 pub struct TestBroadcaster {}
61 impl BroadcasterInterface for TestBroadcaster {
62         fn broadcast_transaction(&self, _tx: &Transaction) { }
63 }
64
65 pub struct VecWriter(pub Vec<u8>);
66 impl Writer for VecWriter {
67         fn write_all(&mut self, buf: &[u8]) -> Result<(), ::std::io::Error> {
68                 self.0.extend_from_slice(buf);
69                 Ok(())
70         }
71         fn size_hint(&mut self, size: usize) {
72                 self.0.reserve_exact(size);
73         }
74 }
75
76 struct TestChannelMonitor {
77         pub logger: Arc<dyn Logger>,
78         pub simple_monitor: Arc<channelmonitor::SimpleManyChannelMonitor<OutPoint, EnforcingChannelKeys, Arc<TestBroadcaster>, Arc<FuzzEstimator>, Arc<dyn Logger>, Arc<dyn ChainWatchInterface>>>,
79         pub update_ret: Mutex<Result<(), channelmonitor::ChannelMonitorUpdateErr>>,
80         // If we reload a node with an old copy of ChannelMonitors, the ChannelManager deserialization
81         // logic will automatically force-close our channels for us (as we don't have an up-to-date
82         // monitor implying we are not able to punish misbehaving counterparties). Because this test
83         // "fails" if we ever force-close a channel, we avoid doing so, always saving the latest
84         // fully-serialized monitor state here, as well as the corresponding update_id.
85         pub latest_monitors: Mutex<HashMap<OutPoint, (u64, Vec<u8>)>>,
86         pub should_update_manager: atomic::AtomicBool,
87 }
88 impl TestChannelMonitor {
89         pub fn new(chain_monitor: Arc<dyn chaininterface::ChainWatchInterface>, broadcaster: Arc<TestBroadcaster>, logger: Arc<dyn Logger>, feeest: Arc<FuzzEstimator>) -> Self {
90                 Self {
91                         simple_monitor: Arc::new(channelmonitor::SimpleManyChannelMonitor::new(chain_monitor, broadcaster, logger.clone(), feeest)),
92                         logger,
93                         update_ret: Mutex::new(Ok(())),
94                         latest_monitors: Mutex::new(HashMap::new()),
95                         should_update_manager: atomic::AtomicBool::new(false),
96                 }
97         }
98 }
99 impl channelmonitor::ManyChannelMonitor<EnforcingChannelKeys> for TestChannelMonitor {
100         fn add_monitor(&self, funding_txo: OutPoint, monitor: channelmonitor::ChannelMonitor<EnforcingChannelKeys>) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> {
101                 let mut ser = VecWriter(Vec::new());
102                 monitor.write_for_disk(&mut ser).unwrap();
103                 if let Some(_) = self.latest_monitors.lock().unwrap().insert(funding_txo, (monitor.get_latest_update_id(), ser.0)) {
104                         panic!("Already had monitor pre-add_monitor");
105                 }
106                 self.should_update_manager.store(true, atomic::Ordering::Relaxed);
107                 assert!(self.simple_monitor.add_monitor(funding_txo, monitor).is_ok());
108                 self.update_ret.lock().unwrap().clone()
109         }
110
111         fn update_monitor(&self, funding_txo: OutPoint, update: channelmonitor::ChannelMonitorUpdate) -> Result<(), channelmonitor::ChannelMonitorUpdateErr> {
112                 let mut map_lock = self.latest_monitors.lock().unwrap();
113                 let mut map_entry = match map_lock.entry(funding_txo) {
114                         hash_map::Entry::Occupied(entry) => entry,
115                         hash_map::Entry::Vacant(_) => panic!("Didn't have monitor on update call"),
116                 };
117                 let mut deserialized_monitor = <(BlockHash, channelmonitor::ChannelMonitor<EnforcingChannelKeys>)>::
118                         read(&mut Cursor::new(&map_entry.get().1)).unwrap().1;
119                 deserialized_monitor.update_monitor(update.clone(), &&TestBroadcaster {}, &self.logger).unwrap();
120                 let mut ser = VecWriter(Vec::new());
121                 deserialized_monitor.write_for_disk(&mut ser).unwrap();
122                 map_entry.insert((update.update_id, ser.0));
123                 self.should_update_manager.store(true, atomic::Ordering::Relaxed);
124                 self.update_ret.lock().unwrap().clone()
125         }
126
127         fn get_and_clear_pending_htlcs_updated(&self) -> Vec<HTLCUpdate> {
128                 return self.simple_monitor.get_and_clear_pending_htlcs_updated();
129         }
130 }
131
132 struct KeyProvider {
133         node_id: u8,
134         session_id: atomic::AtomicU8,
135         channel_id: atomic::AtomicU8,
136 }
137 impl KeysInterface for KeyProvider {
138         type ChanKeySigner = EnforcingChannelKeys;
139
140         fn get_node_secret(&self) -> SecretKey {
141                 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()
142         }
143
144         fn get_destination_script(&self) -> Script {
145                 let secp_ctx = Secp256k1::signing_only();
146                 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();
147                 let our_channel_monitor_claim_key_hash = WPubkeyHash::hash(&PublicKey::from_secret_key(&secp_ctx, &channel_monitor_claim_key).serialize());
148                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&our_channel_monitor_claim_key_hash[..]).into_script()
149         }
150
151         fn get_shutdown_pubkey(&self) -> PublicKey {
152                 let secp_ctx = Secp256k1::signing_only();
153                 PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, self.node_id]).unwrap())
154         }
155
156         fn get_channel_keys(&self, _inbound: bool, channel_value_satoshis: u64) -> EnforcingChannelKeys {
157                 let secp_ctx = Secp256k1::signing_only();
158                 EnforcingChannelKeys::new(InMemoryChannelKeys::new(
159                         &secp_ctx,
160                         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(),
161                         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(),
162                         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(),
163                         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(),
164                         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(),
165                         [0, 0, 0, 0, 0, 0, 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],
166                         channel_value_satoshis,
167                 ))
168         }
169
170         fn get_onion_rand(&self) -> (SecretKey, [u8; 32]) {
171                 let id = self.session_id.fetch_add(1, atomic::Ordering::Relaxed);
172                 (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, id, 10, self.node_id]).unwrap(),
173                 [0; 32])
174         }
175
176         fn get_channel_id(&self) -> [u8; 32] {
177                 let id = self.channel_id.fetch_add(1, atomic::Ordering::Relaxed);
178                 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, id, 11, self.node_id]
179         }
180 }
181
182 #[inline]
183 pub fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) {
184         let fee_est = Arc::new(FuzzEstimator{});
185         let broadcast = Arc::new(TestBroadcaster{});
186
187         macro_rules! make_node {
188                 ($node_id: expr) => { {
189                         let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new($node_id.to_string(), out.clone()));
190                         let watch = Arc::new(ChainWatchInterfaceUtil::new(Network::Bitcoin));
191                         let monitor = Arc::new(TestChannelMonitor::new(watch.clone(), broadcast.clone(), logger.clone(), fee_est.clone()));
192
193                         let keys_manager = Arc::new(KeyProvider { node_id: $node_id, session_id: atomic::AtomicU8::new(0), channel_id: atomic::AtomicU8::new(0) });
194                         let mut config = UserConfig::default();
195                         config.channel_options.fee_proportional_millionths = 0;
196                         config.channel_options.announced_channel = true;
197                         config.peer_channel_config_limits.min_dust_limit_satoshis = 0;
198                         (Arc::new(ChannelManager::new(Network::Bitcoin, fee_est.clone(), monitor.clone(), broadcast.clone(), Arc::clone(&logger), keys_manager.clone(), config, 0).unwrap()),
199                         monitor)
200                 } }
201         }
202
203         macro_rules! reload_node {
204                 ($ser: expr, $node_id: expr, $old_monitors: expr) => { {
205                         let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new($node_id.to_string(), out.clone()));
206                         let watch = Arc::new(ChainWatchInterfaceUtil::new(Network::Bitcoin));
207                         let monitor = Arc::new(TestChannelMonitor::new(watch.clone(), broadcast.clone(), logger.clone(), fee_est.clone()));
208
209                         let keys_manager = Arc::new(KeyProvider { node_id: $node_id, session_id: atomic::AtomicU8::new(0), channel_id: atomic::AtomicU8::new(0) });
210                         let mut config = UserConfig::default();
211                         config.channel_options.fee_proportional_millionths = 0;
212                         config.channel_options.announced_channel = true;
213                         config.peer_channel_config_limits.min_dust_limit_satoshis = 0;
214
215                         let mut monitors = HashMap::new();
216                         let mut old_monitors = $old_monitors.latest_monitors.lock().unwrap();
217                         for (outpoint, (update_id, monitor_ser)) in old_monitors.drain() {
218                                 monitors.insert(outpoint, <(BlockHash, ChannelMonitor<EnforcingChannelKeys>)>::read(&mut Cursor::new(&monitor_ser)).expect("Failed to read monitor").1);
219                                 monitor.latest_monitors.lock().unwrap().insert(outpoint, (update_id, monitor_ser));
220                         }
221                         let mut monitor_refs = HashMap::new();
222                         for (outpoint, monitor) in monitors.iter_mut() {
223                                 monitor_refs.insert(*outpoint, monitor);
224                         }
225
226                         let read_args = ChannelManagerReadArgs {
227                                 keys_manager,
228                                 fee_estimator: fee_est.clone(),
229                                 monitor: monitor.clone(),
230                                 tx_broadcaster: broadcast.clone(),
231                                 logger,
232                                 default_config: config,
233                                 channel_monitors: &mut monitor_refs,
234                         };
235
236                         (<(BlockHash, ChannelManager<EnforcingChannelKeys, Arc<TestChannelMonitor>, Arc<TestBroadcaster>, Arc<KeyProvider>, Arc<FuzzEstimator>, Arc<dyn Logger>>)>::read(&mut Cursor::new(&$ser.0), read_args).expect("Failed to read manager").1, monitor)
237                 } }
238         }
239
240         let mut channel_txn = Vec::new();
241         macro_rules! make_channel {
242                 ($source: expr, $dest: expr, $chan_id: expr) => { {
243                         $source.create_channel($dest.get_our_node_id(), 10000000, 42, 0, None).unwrap();
244                         let open_channel = {
245                                 let events = $source.get_and_clear_pending_msg_events();
246                                 assert_eq!(events.len(), 1);
247                                 if let events::MessageSendEvent::SendOpenChannel { ref msg, .. } = events[0] {
248                                         msg.clone()
249                                 } else { panic!("Wrong event type"); }
250                         };
251
252                         $dest.handle_open_channel(&$source.get_our_node_id(), InitFeatures::known(), &open_channel);
253                         let accept_channel = {
254                                 let events = $dest.get_and_clear_pending_msg_events();
255                                 assert_eq!(events.len(), 1);
256                                 if let events::MessageSendEvent::SendAcceptChannel { ref msg, .. } = events[0] {
257                                         msg.clone()
258                                 } else { panic!("Wrong event type"); }
259                         };
260
261                         $source.handle_accept_channel(&$dest.get_our_node_id(), InitFeatures::known(), &accept_channel);
262                         let funding_output;
263                         {
264                                 let events = $source.get_and_clear_pending_events();
265                                 assert_eq!(events.len(), 1);
266                                 if let events::Event::FundingGenerationReady { ref temporary_channel_id, ref channel_value_satoshis, ref output_script, .. } = events[0] {
267                                         let tx = Transaction { version: $chan_id, lock_time: 0, input: Vec::new(), output: vec![TxOut {
268                                                 value: *channel_value_satoshis, script_pubkey: output_script.clone(),
269                                         }]};
270                                         funding_output = OutPoint::new(tx.txid(), 0);
271                                         $source.funding_transaction_generated(&temporary_channel_id, funding_output);
272                                         channel_txn.push(tx);
273                                 } else { panic!("Wrong event type"); }
274                         }
275
276                         let funding_created = {
277                                 let events = $source.get_and_clear_pending_msg_events();
278                                 assert_eq!(events.len(), 1);
279                                 if let events::MessageSendEvent::SendFundingCreated { ref msg, .. } = events[0] {
280                                         msg.clone()
281                                 } else { panic!("Wrong event type"); }
282                         };
283                         $dest.handle_funding_created(&$source.get_our_node_id(), &funding_created);
284
285                         let funding_signed = {
286                                 let events = $dest.get_and_clear_pending_msg_events();
287                                 assert_eq!(events.len(), 1);
288                                 if let events::MessageSendEvent::SendFundingSigned { ref msg, .. } = events[0] {
289                                         msg.clone()
290                                 } else { panic!("Wrong event type"); }
291                         };
292                         $source.handle_funding_signed(&$dest.get_our_node_id(), &funding_signed);
293
294                         {
295                                 let events = $source.get_and_clear_pending_events();
296                                 assert_eq!(events.len(), 1);
297                                 if let events::Event::FundingBroadcastSafe { .. } = events[0] {
298                                 } else { panic!("Wrong event type"); }
299                         }
300                         funding_output
301                 } }
302         }
303
304         macro_rules! confirm_txn {
305                 ($node: expr) => { {
306                         let mut header = BlockHeader { version: 0x20000000, prev_blockhash: Default::default(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
307                         let mut txn = Vec::with_capacity(channel_txn.len());
308                         let mut posn = Vec::with_capacity(channel_txn.len());
309                         for i in 0..channel_txn.len() {
310                                 txn.push(&channel_txn[i]);
311                                 posn.push(i as u32 + 1);
312                         }
313                         $node.block_connected(&header, 1, &txn, &posn);
314                         for i in 2..100 {
315                                 header = BlockHeader { version: 0x20000000, prev_blockhash: header.bitcoin_hash(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
316                                 $node.block_connected(&header, i, &Vec::new(), &[0; 0]);
317                         }
318                 } }
319         }
320
321         macro_rules! lock_fundings {
322                 ($nodes: expr) => { {
323                         let mut node_events = Vec::new();
324                         for node in $nodes.iter() {
325                                 node_events.push(node.get_and_clear_pending_msg_events());
326                         }
327                         for (idx, node_event) in node_events.iter().enumerate() {
328                                 for event in node_event {
329                                         if let events::MessageSendEvent::SendFundingLocked { ref node_id, ref msg } = event {
330                                                 for node in $nodes.iter() {
331                                                         if node.get_our_node_id() == *node_id {
332                                                                 node.handle_funding_locked(&$nodes[idx].get_our_node_id(), msg);
333                                                         }
334                                                 }
335                                         } else { panic!("Wrong event type"); }
336                                 }
337                         }
338
339                         for node in $nodes.iter() {
340                                 let events = node.get_and_clear_pending_msg_events();
341                                 for event in events {
342                                         if let events::MessageSendEvent::SendAnnouncementSignatures { .. } = event {
343                                         } else { panic!("Wrong event type"); }
344                                 }
345                         }
346                 } }
347         }
348
349         // 3 nodes is enough to hit all the possible cases, notably unknown-source-unknown-dest
350         // forwarding.
351         let (mut node_a, mut monitor_a) = make_node!(0);
352         let (mut node_b, mut monitor_b) = make_node!(1);
353         let (mut node_c, mut monitor_c) = make_node!(2);
354
355         let mut nodes = [node_a, node_b, node_c];
356
357         let chan_1_funding = make_channel!(nodes[0], nodes[1], 0);
358         let chan_2_funding = make_channel!(nodes[1], nodes[2], 1);
359
360         for node in nodes.iter() {
361                 confirm_txn!(node);
362         }
363
364         lock_fundings!(nodes);
365
366         let chan_a = nodes[0].list_usable_channels()[0].short_channel_id.unwrap();
367         let chan_b = nodes[2].list_usable_channels()[0].short_channel_id.unwrap();
368
369         let mut payment_id = 0;
370
371         let mut chan_a_disconnected = false;
372         let mut chan_b_disconnected = false;
373         let mut ba_events = Vec::new();
374         let mut bc_events = Vec::new();
375
376         let mut node_a_ser = VecWriter(Vec::new());
377         nodes[0].write(&mut node_a_ser).unwrap();
378         let mut node_b_ser = VecWriter(Vec::new());
379         nodes[1].write(&mut node_b_ser).unwrap();
380         let mut node_c_ser = VecWriter(Vec::new());
381         nodes[2].write(&mut node_c_ser).unwrap();
382
383         macro_rules! test_return {
384                 () => { {
385                         assert_eq!(nodes[0].list_channels().len(), 1);
386                         assert_eq!(nodes[1].list_channels().len(), 2);
387                         assert_eq!(nodes[2].list_channels().len(), 1);
388                         return;
389                 } }
390         }
391
392         let mut read_pos = 0;
393         macro_rules! get_slice {
394                 ($len: expr) => {
395                         {
396                                 let slice_len = $len as usize;
397                                 if data.len() < read_pos + slice_len {
398                                         test_return!();
399                                 }
400                                 read_pos += slice_len;
401                                 &data[read_pos - slice_len..read_pos]
402                         }
403                 }
404         }
405
406         loop {
407                 macro_rules! send_payment {
408                         ($source: expr, $dest: expr) => { {
409                                 let payment_hash = Sha256::hash(&[payment_id; 1]);
410                                 payment_id = payment_id.wrapping_add(1);
411                                 if let Err(_) = $source.send_payment(&Route {
412                                         paths: vec![vec![RouteHop {
413                                                 pubkey: $dest.0.get_our_node_id(),
414                                                 node_features: NodeFeatures::empty(),
415                                                 short_channel_id: $dest.1,
416                                                 channel_features: ChannelFeatures::empty(),
417                                                 fee_msat: 5000000,
418                                                 cltv_expiry_delta: 200,
419                                         }]],
420                                 }, PaymentHash(payment_hash.into_inner()), &None) {
421                                         // Probably ran out of funds
422                                         test_return!();
423                                 }
424                         } };
425                         ($source: expr, $middle: expr, $dest: expr) => { {
426                                 let payment_hash = Sha256::hash(&[payment_id; 1]);
427                                 payment_id = payment_id.wrapping_add(1);
428                                 if let Err(_) = $source.send_payment(&Route {
429                                         paths: vec![vec![RouteHop {
430                                                 pubkey: $middle.0.get_our_node_id(),
431                                                 node_features: NodeFeatures::empty(),
432                                                 short_channel_id: $middle.1,
433                                                 channel_features: ChannelFeatures::empty(),
434                                                 fee_msat: 50000,
435                                                 cltv_expiry_delta: 100,
436                                         },RouteHop {
437                                                 pubkey: $dest.0.get_our_node_id(),
438                                                 node_features: NodeFeatures::empty(),
439                                                 short_channel_id: $dest.1,
440                                                 channel_features: ChannelFeatures::empty(),
441                                                 fee_msat: 5000000,
442                                                 cltv_expiry_delta: 200,
443                                         }]],
444                                 }, PaymentHash(payment_hash.into_inner()), &None) {
445                                         // Probably ran out of funds
446                                         test_return!();
447                                 }
448                         } }
449                 }
450                 macro_rules! send_payment_with_secret {
451                         ($source: expr, $middle: expr, $dest: expr) => { {
452                                 let payment_hash = Sha256::hash(&[payment_id; 1]);
453                                 payment_id = payment_id.wrapping_add(1);
454                                 let payment_secret = Sha256::hash(&[payment_id; 1]);
455                                 payment_id = payment_id.wrapping_add(1);
456                                 if let Err(_) = $source.send_payment(&Route {
457                                         paths: vec![vec![RouteHop {
458                                                 pubkey: $middle.0.get_our_node_id(),
459                                                 node_features: NodeFeatures::empty(),
460                                                 short_channel_id: $middle.1,
461                                                 channel_features: ChannelFeatures::empty(),
462                                                 fee_msat: 50000,
463                                                 cltv_expiry_delta: 100,
464                                         },RouteHop {
465                                                 pubkey: $dest.0.get_our_node_id(),
466                                                 node_features: NodeFeatures::empty(),
467                                                 short_channel_id: $dest.1,
468                                                 channel_features: ChannelFeatures::empty(),
469                                                 fee_msat: 5000000,
470                                                 cltv_expiry_delta: 200,
471                                         }],vec![RouteHop {
472                                                 pubkey: $middle.0.get_our_node_id(),
473                                                 node_features: NodeFeatures::empty(),
474                                                 short_channel_id: $middle.1,
475                                                 channel_features: ChannelFeatures::empty(),
476                                                 fee_msat: 50000,
477                                                 cltv_expiry_delta: 100,
478                                         },RouteHop {
479                                                 pubkey: $dest.0.get_our_node_id(),
480                                                 node_features: NodeFeatures::empty(),
481                                                 short_channel_id: $dest.1,
482                                                 channel_features: ChannelFeatures::empty(),
483                                                 fee_msat: 5000000,
484                                                 cltv_expiry_delta: 200,
485                                         }]],
486                                 }, PaymentHash(payment_hash.into_inner()), &Some(PaymentSecret(payment_secret.into_inner()))) {
487                                         // Probably ran out of funds
488                                         test_return!();
489                                 }
490                         } }
491                 }
492
493                 macro_rules! process_msg_events {
494                         ($node: expr, $corrupt_forward: expr) => { {
495                                 let events = if $node == 1 {
496                                         let mut new_events = Vec::new();
497                                         mem::swap(&mut new_events, &mut ba_events);
498                                         new_events.extend_from_slice(&bc_events[..]);
499                                         bc_events.clear();
500                                         new_events
501                                 } else { Vec::new() };
502                                 for event in events.iter().chain(nodes[$node].get_and_clear_pending_msg_events().iter()) {
503                                         match event {
504                                                 events::MessageSendEvent::UpdateHTLCs { ref node_id, updates: CommitmentUpdate { ref update_add_htlcs, ref update_fail_htlcs, ref update_fulfill_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
505                                                         for dest in nodes.iter() {
506                                                                 if dest.get_our_node_id() == *node_id {
507                                                                         assert!(update_fee.is_none());
508                                                                         for update_add in update_add_htlcs {
509                                                                                 if !$corrupt_forward {
510                                                                                         dest.handle_update_add_htlc(&nodes[$node].get_our_node_id(), &update_add);
511                                                                                 } else {
512                                                                                         // Corrupt the update_add_htlc message so that its HMAC
513                                                                                         // check will fail and we generate a
514                                                                                         // update_fail_malformed_htlc instead of an
515                                                                                         // update_fail_htlc as we do when we reject a payment.
516                                                                                         let mut msg_ser = update_add.encode();
517                                                                                         msg_ser[1000] ^= 0xff;
518                                                                                         let new_msg = UpdateAddHTLC::read(&mut Cursor::new(&msg_ser)).unwrap();
519                                                                                         dest.handle_update_add_htlc(&nodes[$node].get_our_node_id(), &new_msg);
520                                                                                 }
521                                                                         }
522                                                                         for update_fulfill in update_fulfill_htlcs {
523                                                                                 dest.handle_update_fulfill_htlc(&nodes[$node].get_our_node_id(), &update_fulfill);
524                                                                         }
525                                                                         for update_fail in update_fail_htlcs {
526                                                                                 dest.handle_update_fail_htlc(&nodes[$node].get_our_node_id(), &update_fail);
527                                                                         }
528                                                                         for update_fail_malformed in update_fail_malformed_htlcs {
529                                                                                 dest.handle_update_fail_malformed_htlc(&nodes[$node].get_our_node_id(), &update_fail_malformed);
530                                                                         }
531                                                                         dest.handle_commitment_signed(&nodes[$node].get_our_node_id(), &commitment_signed);
532                                                                 }
533                                                         }
534                                                 },
535                                                 events::MessageSendEvent::SendRevokeAndACK { ref node_id, ref msg } => {
536                                                         for dest in nodes.iter() {
537                                                                 if dest.get_our_node_id() == *node_id {
538                                                                         dest.handle_revoke_and_ack(&nodes[$node].get_our_node_id(), msg);
539                                                                 }
540                                                         }
541                                                 },
542                                                 events::MessageSendEvent::SendChannelReestablish { ref node_id, ref msg } => {
543                                                         for dest in nodes.iter() {
544                                                                 if dest.get_our_node_id() == *node_id {
545                                                                         dest.handle_channel_reestablish(&nodes[$node].get_our_node_id(), msg);
546                                                                 }
547                                                         }
548                                                 },
549                                                 events::MessageSendEvent::SendFundingLocked { .. } => {
550                                                         // Can be generated as a reestablish response
551                                                 },
552                                                 events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => {
553                                                         // Can be generated due to a payment forward being rejected due to a
554                                                         // channel having previously failed a monitor update
555                                                 },
556                                                 events::MessageSendEvent::HandleError { action: ErrorAction::IgnoreError, .. } => {
557                                                         // Can be generated at any processing step to send back an error, disconnect
558                                                         // peer or just ignore
559                                                 },
560                                                 _ => panic!("Unhandled message event"),
561                                         }
562                                 }
563                         } }
564                 }
565
566                 macro_rules! drain_msg_events_on_disconnect {
567                         ($counterparty_id: expr) => { {
568                                 if $counterparty_id == 0 {
569                                         for event in nodes[0].get_and_clear_pending_msg_events() {
570                                                 match event {
571                                                         events::MessageSendEvent::UpdateHTLCs { .. } => {},
572                                                         events::MessageSendEvent::SendRevokeAndACK { .. } => {},
573                                                         events::MessageSendEvent::SendChannelReestablish { .. } => {},
574                                                         events::MessageSendEvent::SendFundingLocked { .. } => {},
575                                                         events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => {},
576                                                         events::MessageSendEvent::HandleError { action: ErrorAction::IgnoreError, .. } => {},
577                                                         _ => panic!("Unhandled message event"),
578                                                 }
579                                         }
580                                         ba_events.clear();
581                                 } else {
582                                         for event in nodes[2].get_and_clear_pending_msg_events() {
583                                                 match event {
584                                                         events::MessageSendEvent::UpdateHTLCs { .. } => {},
585                                                         events::MessageSendEvent::SendRevokeAndACK { .. } => {},
586                                                         events::MessageSendEvent::SendChannelReestablish { .. } => {},
587                                                         events::MessageSendEvent::SendFundingLocked { .. } => {},
588                                                         events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => {},
589                                                         events::MessageSendEvent::HandleError { action: ErrorAction::IgnoreError, .. } => {},
590                                                         _ => panic!("Unhandled message event"),
591                                                 }
592                                         }
593                                         bc_events.clear();
594                                 }
595                                 let mut events = nodes[1].get_and_clear_pending_msg_events();
596                                 let drop_node_id = if $counterparty_id == 0 { nodes[0].get_our_node_id() } else { nodes[2].get_our_node_id() };
597                                 let msg_sink = if $counterparty_id == 0 { &mut bc_events } else { &mut ba_events };
598                                 for event in events.drain(..) {
599                                         let push = match event {
600                                                 events::MessageSendEvent::UpdateHTLCs { ref node_id, .. } => {
601                                                         if *node_id != drop_node_id { true } else { false }
602                                                 },
603                                                 events::MessageSendEvent::SendRevokeAndACK { ref node_id, .. } => {
604                                                         if *node_id != drop_node_id { true } else { false }
605                                                 },
606                                                 events::MessageSendEvent::SendChannelReestablish { ref node_id, .. } => {
607                                                         if *node_id != drop_node_id { true } else { false }
608                                                 },
609                                                 events::MessageSendEvent::SendFundingLocked { .. } => false,
610                                                 events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => false,
611                                                 events::MessageSendEvent::HandleError { action: ErrorAction::IgnoreError, .. } => false,
612                                                 _ => panic!("Unhandled message event"),
613                                         };
614                                         if push { msg_sink.push(event); }
615                                 }
616                         } }
617                 }
618
619                 macro_rules! process_events {
620                         ($node: expr, $fail: expr) => { {
621                                 // In case we get 256 payments we may have a hash collision, resulting in the
622                                 // second claim/fail call not finding the duplicate-hash HTLC, so we have to
623                                 // deduplicate the calls here.
624                                 let mut claim_set = HashSet::new();
625                                 let mut events = nodes[$node].get_and_clear_pending_events();
626                                 // Sort events so that PendingHTLCsForwardable get processed last. This avoids a
627                                 // case where we first process a PendingHTLCsForwardable, then claim/fail on a
628                                 // PaymentReceived, claiming/failing two HTLCs, but leaving a just-generated
629                                 // PaymentReceived event for the second HTLC in our pending_events (and breaking
630                                 // our claim_set deduplication).
631                                 events.sort_by(|a, b| {
632                                         if let events::Event::PaymentReceived { .. } = a {
633                                                 if let events::Event::PendingHTLCsForwardable { .. } = b {
634                                                         Ordering::Less
635                                                 } else { Ordering::Equal }
636                                         } else if let events::Event::PendingHTLCsForwardable { .. } = a {
637                                                 if let events::Event::PaymentReceived { .. } = b {
638                                                         Ordering::Greater
639                                                 } else { Ordering::Equal }
640                                         } else { Ordering::Equal }
641                                 });
642                                 for event in events.drain(..) {
643                                         match event {
644                                                 events::Event::PaymentReceived { payment_hash, payment_secret, .. } => {
645                                                         if claim_set.insert(payment_hash.0) {
646                                                                 if $fail {
647                                                                         assert!(nodes[$node].fail_htlc_backwards(&payment_hash, &payment_secret));
648                                                                 } else {
649                                                                         assert!(nodes[$node].claim_funds(PaymentPreimage(payment_hash.0), &payment_secret, 5_000_000));
650                                                                 }
651                                                         }
652                                                 },
653                                                 events::Event::PaymentSent { .. } => {},
654                                                 events::Event::PaymentFailed { .. } => {},
655                                                 events::Event::PendingHTLCsForwardable { .. } => {
656                                                         nodes[$node].process_pending_htlc_forwards();
657                                                 },
658                                                 _ => panic!("Unhandled event"),
659                                         }
660                                 }
661                         } }
662                 }
663
664                 match get_slice!(1)[0] {
665                         0x00 => *monitor_a.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
666                         0x01 => *monitor_b.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
667                         0x02 => *monitor_c.update_ret.lock().unwrap() = Err(ChannelMonitorUpdateErr::TemporaryFailure),
668                         0x03 => *monitor_a.update_ret.lock().unwrap() = Ok(()),
669                         0x04 => *monitor_b.update_ret.lock().unwrap() = Ok(()),
670                         0x05 => *monitor_c.update_ret.lock().unwrap() = Ok(()),
671                         0x06 => {
672                                 if let Some((id, _)) = monitor_a.latest_monitors.lock().unwrap().get(&chan_1_funding) {
673                                         nodes[0].channel_monitor_updated(&chan_1_funding, *id);
674                                 }
675                         },
676                         0x07 => {
677                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_1_funding) {
678                                         nodes[1].channel_monitor_updated(&chan_1_funding, *id);
679                                 }
680                         },
681                         0x24 => {
682                                 if let Some((id, _)) = monitor_b.latest_monitors.lock().unwrap().get(&chan_2_funding) {
683                                         nodes[1].channel_monitor_updated(&chan_2_funding, *id);
684                                 }
685                         },
686                         0x08 => {
687                                 if let Some((id, _)) = monitor_c.latest_monitors.lock().unwrap().get(&chan_2_funding) {
688                                         nodes[2].channel_monitor_updated(&chan_2_funding, *id);
689                                 }
690                         },
691                         0x09 => send_payment!(nodes[0], (&nodes[1], chan_a)),
692                         0x0a => send_payment!(nodes[1], (&nodes[0], chan_a)),
693                         0x0b => send_payment!(nodes[1], (&nodes[2], chan_b)),
694                         0x0c => send_payment!(nodes[2], (&nodes[1], chan_b)),
695                         0x0d => send_payment!(nodes[0], (&nodes[1], chan_a), (&nodes[2], chan_b)),
696                         0x0e => send_payment!(nodes[2], (&nodes[1], chan_b), (&nodes[0], chan_a)),
697                         0x0f => {
698                                 if !chan_a_disconnected {
699                                         nodes[0].peer_disconnected(&nodes[1].get_our_node_id(), false);
700                                         nodes[1].peer_disconnected(&nodes[0].get_our_node_id(), false);
701                                         chan_a_disconnected = true;
702                                         drain_msg_events_on_disconnect!(0);
703                                 }
704                         },
705                         0x10 => {
706                                 if !chan_b_disconnected {
707                                         nodes[1].peer_disconnected(&nodes[2].get_our_node_id(), false);
708                                         nodes[2].peer_disconnected(&nodes[1].get_our_node_id(), false);
709                                         chan_b_disconnected = true;
710                                         drain_msg_events_on_disconnect!(2);
711                                 }
712                         },
713                         0x11 => {
714                                 if chan_a_disconnected {
715                                         nodes[0].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::empty() });
716                                         nodes[1].peer_connected(&nodes[0].get_our_node_id(), &Init { features: InitFeatures::empty() });
717                                         chan_a_disconnected = false;
718                                 }
719                         },
720                         0x12 => {
721                                 if chan_b_disconnected {
722                                         nodes[1].peer_connected(&nodes[2].get_our_node_id(), &Init { features: InitFeatures::empty() });
723                                         nodes[2].peer_connected(&nodes[1].get_our_node_id(), &Init { features: InitFeatures::empty() });
724                                         chan_b_disconnected = false;
725                                 }
726                         },
727                         0x13 => process_msg_events!(0, true),
728                         0x14 => process_msg_events!(0, false),
729                         0x15 => process_events!(0, true),
730                         0x16 => process_events!(0, false),
731                         0x17 => process_msg_events!(1, true),
732                         0x18 => process_msg_events!(1, false),
733                         0x19 => process_events!(1, true),
734                         0x1a => process_events!(1, false),
735                         0x1b => process_msg_events!(2, true),
736                         0x1c => process_msg_events!(2, false),
737                         0x1d => process_events!(2, true),
738                         0x1e => process_events!(2, false),
739                         0x1f => {
740                                 if !chan_a_disconnected {
741                                         nodes[1].peer_disconnected(&nodes[0].get_our_node_id(), false);
742                                         chan_a_disconnected = true;
743                                         drain_msg_events_on_disconnect!(0);
744                                 }
745                                 let (new_node_a, new_monitor_a) = reload_node!(node_a_ser, 0, monitor_a);
746                                 node_a = Arc::new(new_node_a);
747                                 nodes[0] = node_a.clone();
748                                 monitor_a = new_monitor_a;
749                         },
750                         0x20 => {
751                                 if !chan_a_disconnected {
752                                         nodes[0].peer_disconnected(&nodes[1].get_our_node_id(), false);
753                                         chan_a_disconnected = true;
754                                         nodes[0].get_and_clear_pending_msg_events();
755                                         ba_events.clear();
756                                 }
757                                 if !chan_b_disconnected {
758                                         nodes[2].peer_disconnected(&nodes[1].get_our_node_id(), false);
759                                         chan_b_disconnected = true;
760                                         nodes[2].get_and_clear_pending_msg_events();
761                                         bc_events.clear();
762                                 }
763                                 let (new_node_b, new_monitor_b) = reload_node!(node_b_ser, 1, monitor_b);
764                                 node_b = Arc::new(new_node_b);
765                                 nodes[1] = node_b.clone();
766                                 monitor_b = new_monitor_b;
767                         },
768                         0x21 => {
769                                 if !chan_b_disconnected {
770                                         nodes[1].peer_disconnected(&nodes[2].get_our_node_id(), false);
771                                         chan_b_disconnected = true;
772                                         drain_msg_events_on_disconnect!(2);
773                                 }
774                                 let (new_node_c, new_monitor_c) = reload_node!(node_c_ser, 2, monitor_c);
775                                 node_c = Arc::new(new_node_c);
776                                 nodes[2] = node_c.clone();
777                                 monitor_c = new_monitor_c;
778                         },
779                         0x22 => send_payment_with_secret!(nodes[0], (&nodes[1], chan_a), (&nodes[2], chan_b)),
780                         0x23 => send_payment_with_secret!(nodes[2], (&nodes[1], chan_b), (&nodes[0], chan_a)),
781                         // 0x24 defined above
782                         _ => test_return!(),
783                 }
784
785                 node_a_ser.0.clear();
786                 nodes[0].write(&mut node_a_ser).unwrap();
787                 monitor_a.should_update_manager.store(false, atomic::Ordering::Relaxed);
788                 node_b_ser.0.clear();
789                 nodes[1].write(&mut node_b_ser).unwrap();
790                 monitor_b.should_update_manager.store(false, atomic::Ordering::Relaxed);
791                 node_c_ser.0.clear();
792                 nodes[2].write(&mut node_c_ser).unwrap();
793                 monitor_c.should_update_manager.store(false, atomic::Ordering::Relaxed);
794         }
795 }
796
797 pub fn chanmon_consistency_test<Out: test_logger::Output>(data: &[u8], out: Out) {
798         do_test(data, out);
799 }
800
801 #[no_mangle]
802 pub extern "C" fn chanmon_consistency_run(data: *const u8, datalen: usize) {
803         do_test(unsafe { std::slice::from_raw_parts(data, datalen) }, test_logger::DevNull{});
804 }