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