199307cc8d6599f819e643de0f5d47750328f929
[rust-lightning] / fuzz / fuzz_targets / full_stack_target.rs
1 extern crate bitcoin;
2 extern crate crypto;
3 extern crate lightning;
4 extern crate secp256k1;
5
6 use bitcoin::blockdata::block::BlockHeader;
7 use bitcoin::blockdata::transaction::{Transaction, TxOut};
8 use bitcoin::blockdata::script::{Builder, Script};
9 use bitcoin::blockdata::opcodes;
10 use bitcoin::consensus::encode::{deserialize, serialize};
11 use bitcoin::network::constants::Network;
12 use bitcoin::util::hash::{BitcoinHash, Sha256dHash, Hash160};
13
14 use crypto::digest::Digest;
15
16 use lightning::chain::chaininterface::{BroadcasterInterface,ConfirmationTarget,ChainListener,FeeEstimator,ChainWatchInterfaceUtil};
17 use lightning::chain::transaction::OutPoint;
18 use lightning::chain::keysinterface::{ChannelKeys, KeysInterface};
19 use lightning::ln::channelmonitor;
20 use lightning::ln::channelmanager::{ChannelManager, PaymentFailReason};
21 use lightning::ln::peer_handler::{MessageHandler,PeerManager,SocketDescriptor};
22 use lightning::ln::router::Router;
23 use lightning::util::events::{EventsProvider,Event};
24 use lightning::util::reset_rng_state;
25 use lightning::util::logger::Logger;
26 use lightning::util::sha2::Sha256;
27 use lightning::util::config::UserConfig;
28
29 mod utils;
30
31 use utils::test_logger;
32
33 use secp256k1::key::{PublicKey,SecretKey};
34 use secp256k1::Secp256k1;
35
36 use std::cell::RefCell;
37 use std::collections::{HashMap, hash_map};
38 use std::cmp;
39 use std::hash::Hash;
40 use std::sync::Arc;
41 use std::sync::atomic::{AtomicUsize,Ordering};
42
43 #[inline]
44 pub fn slice_to_be16(v: &[u8]) -> u16 {
45         ((v[0] as u16) << 8*1) |
46         ((v[1] as u16) << 8*0)
47 }
48
49 #[inline]
50 pub fn slice_to_be24(v: &[u8]) -> u32 {
51         ((v[0] as u32) << 8*2) |
52         ((v[1] as u32) << 8*1) |
53         ((v[2] as u32) << 8*0)
54 }
55
56 #[inline]
57 pub fn slice_to_be32(v: &[u8]) -> u32 {
58         ((v[0] as u32) << 8*3) |
59         ((v[1] as u32) << 8*2) |
60         ((v[2] as u32) << 8*1) |
61         ((v[3] as u32) << 8*0)
62 }
63
64 #[inline]
65 pub fn be64_to_array(u: u64) -> [u8; 8] {
66         let mut v = [0; 8];
67         v[0] = ((u >> 8*7) & 0xff) as u8;
68         v[1] = ((u >> 8*6) & 0xff) as u8;
69         v[2] = ((u >> 8*5) & 0xff) as u8;
70         v[3] = ((u >> 8*4) & 0xff) as u8;
71         v[4] = ((u >> 8*3) & 0xff) as u8;
72         v[5] = ((u >> 8*2) & 0xff) as u8;
73         v[6] = ((u >> 8*1) & 0xff) as u8;
74         v[7] = ((u >> 8*0) & 0xff) as u8;
75         v
76 }
77
78 struct InputData {
79         data: Vec<u8>,
80         read_pos: AtomicUsize,
81 }
82 impl InputData {
83         fn get_slice(&self, len: usize) -> Option<&[u8]> {
84                 let old_pos = self.read_pos.fetch_add(len, Ordering::AcqRel);
85                 if self.data.len() < old_pos + len {
86                         return None;
87                 }
88                 Some(&self.data[old_pos..old_pos + len])
89         }
90 }
91
92 struct FuzzEstimator {
93         input: Arc<InputData>,
94 }
95 impl FeeEstimator for FuzzEstimator {
96         fn get_est_sat_per_1000_weight(&self, _: ConfirmationTarget) -> u64 {
97                 //TODO: We should actually be testing at least much more than 64k...
98                 match self.input.get_slice(2) {
99                         Some(slice) => cmp::max(slice_to_be16(slice) as u64, 253),
100                         None => 0
101                 }
102         }
103 }
104
105 struct TestBroadcaster {}
106 impl BroadcasterInterface for TestBroadcaster {
107         fn broadcast_transaction(&self, _tx: &Transaction) {}
108 }
109
110 #[derive(Clone)]
111 struct Peer<'a> {
112         id: u8,
113         peers_connected: &'a RefCell<[bool; 256]>,
114 }
115 impl<'a> SocketDescriptor for Peer<'a> {
116         fn send_data(&mut self, data: &Vec<u8>, write_offset: usize, _resume_read: bool) -> usize {
117                 assert!(write_offset < data.len());
118                 data.len() - write_offset
119         }
120         fn disconnect_socket(&mut self) {
121                 assert!(self.peers_connected.borrow()[self.id as usize]);
122                 self.peers_connected.borrow_mut()[self.id as usize] = false;
123         }
124 }
125 impl<'a> PartialEq for Peer<'a> {
126         fn eq(&self, other: &Self) -> bool {
127                 self.id == other.id
128         }
129 }
130 impl<'a> Eq for Peer<'a> {}
131 impl<'a> Hash for Peer<'a> {
132         fn hash<H : std::hash::Hasher>(&self, h: &mut H) {
133                 self.id.hash(h)
134         }
135 }
136
137 struct MoneyLossDetector<'a> {
138         manager: Arc<ChannelManager>,
139         monitor: Arc<channelmonitor::SimpleManyChannelMonitor<OutPoint>>,
140         handler: PeerManager<Peer<'a>>,
141
142         peers: &'a RefCell<[bool; 256]>,
143         funding_txn: Vec<Transaction>,
144         txids_confirmed: HashMap<Sha256dHash, usize>,
145         header_hashes: Vec<Sha256dHash>,
146         height: usize,
147         max_height: usize,
148         blocks_connected: u32,
149 }
150 impl<'a> MoneyLossDetector<'a> {
151         pub fn new(peers: &'a RefCell<[bool; 256]>, manager: Arc<ChannelManager>, monitor: Arc<channelmonitor::SimpleManyChannelMonitor<OutPoint>>, handler: PeerManager<Peer<'a>>) -> Self {
152                 MoneyLossDetector {
153                         manager,
154                         monitor,
155                         handler,
156
157                         peers,
158                         funding_txn: Vec::new(),
159                         txids_confirmed: HashMap::new(),
160                         header_hashes: vec![Default::default()],
161                         height: 0,
162                         max_height: 0,
163                         blocks_connected: 0,
164                 }
165         }
166
167         fn connect_block(&mut self, all_txn: &[Transaction]) {
168                 let mut txn = Vec::with_capacity(all_txn.len());
169                 let mut txn_idxs = Vec::with_capacity(all_txn.len());
170                 for (idx, tx) in all_txn.iter().enumerate() {
171                         let txid = tx.txid();
172                         match self.txids_confirmed.entry(txid) {
173                                 hash_map::Entry::Vacant(e) => {
174                                         e.insert(self.height);
175                                         txn.push(tx);
176                                         txn_idxs.push(idx as u32 + 1);
177                                 },
178                                 _ => {},
179                         }
180                 }
181
182                 let header = BlockHeader { version: 0x20000000, prev_blockhash: self.header_hashes[self.height], merkle_root: Default::default(), time: self.blocks_connected, bits: 42, nonce: 42 };
183                 self.height += 1;
184                 self.blocks_connected += 1;
185                 self.manager.block_connected(&header, self.height as u32, &txn[..], &txn_idxs[..]);
186                 (*self.monitor).block_connected(&header, self.height as u32, &txn[..], &txn_idxs[..]);
187                 if self.header_hashes.len() > self.height {
188                         self.header_hashes[self.height] = header.bitcoin_hash();
189                 } else {
190                         assert_eq!(self.header_hashes.len(), self.height);
191                         self.header_hashes.push(header.bitcoin_hash());
192                 }
193                 self.max_height = cmp::max(self.height, self.max_height);
194         }
195
196         fn disconnect_block(&mut self) {
197                 if self.height > 0 && (self.max_height < 6 || self.height >= self.max_height - 6) {
198                         self.height -= 1;
199                         let header = BlockHeader { version: 0x20000000, prev_blockhash: self.header_hashes[self.height], merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
200                         self.manager.block_disconnected(&header);
201                         self.monitor.block_disconnected(&header);
202                         let removal_height = self.height;
203                         self.txids_confirmed.retain(|_, height| {
204                                 removal_height != *height
205                         });
206                 }
207         }
208 }
209
210 impl<'a> Drop for MoneyLossDetector<'a> {
211         fn drop(&mut self) {
212                 if !::std::thread::panicking() {
213                         // Disconnect all peers
214                         for (idx, peer) in self.peers.borrow().iter().enumerate() {
215                                 if *peer {
216                                         self.handler.disconnect_event(&Peer{id: idx as u8, peers_connected: &self.peers});
217                                 }
218                         }
219
220                         // Force all channels onto the chain (and time out claim txn)
221                         self.manager.force_close_all_channels();
222                 }
223         }
224 }
225
226 struct KeyProvider {
227         node_secret: SecretKey,
228 }
229 impl KeysInterface for KeyProvider {
230         fn get_node_secret(&self) -> SecretKey {
231                 self.node_secret.clone()
232         }
233
234         fn get_destination_script(&self) -> Script {
235                 let secp_ctx = Secp256k1::signing_only();
236                 let channel_monitor_claim_key = SecretKey::from_slice(&secp_ctx, &hex::decode("0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff").unwrap()[..]).unwrap();
237                 let our_channel_monitor_claim_key_hash = Hash160::from_data(&PublicKey::from_secret_key(&secp_ctx, &channel_monitor_claim_key).serialize());
238                 Builder::new().push_opcode(opcodes::All::OP_PUSHBYTES_0).push_slice(&our_channel_monitor_claim_key_hash[..]).into_script()
239         }
240
241         fn get_shutdown_pubkey(&self) -> PublicKey {
242                 let secp_ctx = Secp256k1::signing_only();
243                 PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).unwrap())
244         }
245
246         fn get_channel_keys(&self, inbound: bool) -> ChannelKeys {
247                 let secp_ctx = Secp256k1::without_caps();
248                 if inbound {
249                         ChannelKeys {
250                                 funding_key:               SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 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, 0]).unwrap(),
251                                 revocation_base_key:       SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 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, 0]).unwrap(),
252                                 payment_base_key:          SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 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, 0]).unwrap(),
253                                 delayed_payment_base_key:  SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 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, 0]).unwrap(),
254                                 htlc_base_key:             SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 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, 0]).unwrap(),
255                                 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, 0, 0],
256                         }
257                 } else {
258                         ChannelKeys {
259                                 funding_key:               SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).unwrap(),
260                                 revocation_base_key:       SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).unwrap(),
261                                 payment_base_key:          SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).unwrap(),
262                                 delayed_payment_base_key:  SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).unwrap(),
263                                 htlc_base_key:             SecretKey::from_slice(&secp_ctx, &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).unwrap(),
264                                 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, 0, 0],
265                         }
266                 }
267         }
268
269         fn get_session_key(&self) -> SecretKey {
270                 SecretKey::from_slice(&Secp256k1::without_caps(), &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]).unwrap()
271         }
272 }
273
274 #[inline]
275 pub fn do_test(data: &[u8], logger: &Arc<Logger>) {
276         reset_rng_state();
277
278         let input = Arc::new(InputData {
279                 data: data.to_vec(),
280                 read_pos: AtomicUsize::new(0),
281         });
282         let fee_est = Arc::new(FuzzEstimator {
283                 input: input.clone(),
284         });
285
286         macro_rules! get_slice {
287                 ($len: expr) => {
288                         match input.get_slice($len as usize) {
289                                 Some(slice) => slice,
290                                 None => return,
291                         }
292                 }
293         }
294
295         let secp_ctx = Secp256k1::new();
296         macro_rules! get_pubkey {
297                 () => {
298                         match PublicKey::from_slice(&secp_ctx, get_slice!(33)) {
299                                 Ok(key) => key,
300                                 Err(_) => return,
301                         }
302                 }
303         }
304
305         let our_network_key = match SecretKey::from_slice(&secp_ctx, get_slice!(32)) {
306                 Ok(key) => key,
307                 Err(_) => return,
308         };
309
310         let watch = Arc::new(ChainWatchInterfaceUtil::new(Network::Bitcoin, Arc::clone(&logger)));
311         let broadcast = Arc::new(TestBroadcaster{});
312         let monitor = channelmonitor::SimpleManyChannelMonitor::new(watch.clone(), broadcast.clone(), Arc::clone(&logger));
313
314         let keys_manager = Arc::new(KeyProvider { node_secret: our_network_key.clone() });
315         let mut config = UserConfig::new();
316         config.channel_options.fee_proportional_millionths =  slice_to_be32(get_slice!(4));
317         config.channel_options.announced_channel = get_slice!(1)[0] != 0;
318         config.channel_limits.min_dust_limit_satoshis = 0;
319         let channelmanager = ChannelManager::new(Network::Bitcoin, fee_est.clone(), monitor.clone(), watch.clone(), broadcast.clone(), Arc::clone(&logger), keys_manager.clone(), config).unwrap();
320         let router = Arc::new(Router::new(PublicKey::from_secret_key(&secp_ctx, &keys_manager.get_node_secret()), watch.clone(), Arc::clone(&logger)));
321
322         let peers = RefCell::new([false; 256]);
323         let mut loss_detector = MoneyLossDetector::new(&peers, channelmanager.clone(), monitor.clone(), PeerManager::new(MessageHandler {
324                 chan_handler: channelmanager.clone(),
325                 route_handler: router.clone(),
326         }, our_network_key, Arc::clone(&logger)));
327
328         let mut should_forward = false;
329         let mut payments_received: Vec<[u8; 32]> = Vec::new();
330         let mut payments_sent = 0;
331         let mut pending_funding_generation: Vec<([u8; 32], u64, Script)> = Vec::new();
332         let mut pending_funding_signatures = HashMap::new();
333         let mut pending_funding_relay = Vec::new();
334
335         loop {
336                 match get_slice!(1)[0] {
337                         0 => {
338                                 let mut new_id = 0;
339                                 for i in 1..256 {
340                                         if !peers.borrow()[i-1] {
341                                                 new_id = i;
342                                                 break;
343                                         }
344                                 }
345                                 if new_id == 0 { return; }
346                                 loss_detector.handler.new_outbound_connection(get_pubkey!(), Peer{id: (new_id - 1) as u8, peers_connected: &peers}).unwrap();
347                                 peers.borrow_mut()[new_id - 1] = true;
348                         },
349                         1 => {
350                                 let mut new_id = 0;
351                                 for i in 1..256 {
352                                         if !peers.borrow()[i-1] {
353                                                 new_id = i;
354                                                 break;
355                                         }
356                                 }
357                                 if new_id == 0 { return; }
358                                 loss_detector.handler.new_inbound_connection(Peer{id: (new_id - 1) as u8, peers_connected: &peers}).unwrap();
359                                 peers.borrow_mut()[new_id - 1] = true;
360                         },
361                         2 => {
362                                 let peer_id = get_slice!(1)[0];
363                                 if !peers.borrow()[peer_id as usize] { return; }
364                                 loss_detector.handler.disconnect_event(&Peer{id: peer_id, peers_connected: &peers});
365                                 peers.borrow_mut()[peer_id as usize] = false;
366                         },
367                         3 => {
368                                 let peer_id = get_slice!(1)[0];
369                                 if !peers.borrow()[peer_id as usize] { return; }
370                                 match loss_detector.handler.read_event(&mut Peer{id: peer_id, peers_connected: &peers}, get_slice!(get_slice!(1)[0]).to_vec()) {
371                                         Ok(res) => assert!(!res),
372                                         Err(_) => { peers.borrow_mut()[peer_id as usize] = false; }
373                                 }
374                         },
375                         4 => {
376                                 let value = slice_to_be24(get_slice!(3)) as u64;
377                                 let route = match router.get_route(&get_pubkey!(), None, &Vec::new(), value, 42) {
378                                         Ok(route) => route,
379                                         Err(_) => return,
380                                 };
381                                 let mut payment_hash = [0; 32];
382                                 payment_hash[0..8].copy_from_slice(&be64_to_array(payments_sent));
383                                 let mut sha = Sha256::new();
384                                 sha.input(&payment_hash);
385                                 sha.result(&mut payment_hash);
386                                 payments_sent += 1;
387                                 match channelmanager.send_payment(route, payment_hash) {
388                                         Ok(_) => {},
389                                         Err(_) => return,
390                                 }
391                         },
392                         5 => {
393                                 let peer_id = get_slice!(1)[0];
394                                 if !peers.borrow()[peer_id as usize] { return; }
395                                 let their_key = get_pubkey!();
396                                 let chan_value = slice_to_be24(get_slice!(3)) as u64;
397                                 let push_msat_value = slice_to_be24(get_slice!(3)) as u64;
398                                 if channelmanager.create_channel(their_key, chan_value, push_msat_value, 0).is_err() { return; }
399                         },
400                         6 => {
401                                 let mut channels = channelmanager.list_channels();
402                                 let channel_id = get_slice!(1)[0] as usize;
403                                 if channel_id >= channels.len() { return; }
404                                 channels.sort_by(|a, b| { a.channel_id.cmp(&b.channel_id) });
405                                 if channelmanager.close_channel(&channels[channel_id].channel_id).is_err() { return; }
406                         },
407                         7 => {
408                                 if should_forward {
409                                         channelmanager.process_pending_htlc_forwards();
410                                         should_forward = false;
411                                 }
412                         },
413                         8 => {
414                                 for payment in payments_received.drain(..) {
415                                         // SHA256 is defined as XOR of all input bytes placed in the first byte, and 0s
416                                         // for the remaining bytes. Thus, if not all remaining bytes are 0s we cannot
417                                         // fulfill this HTLC, but if they are, we can just take the first byte and
418                                         // place that anywhere in our preimage.
419                                         if &payment[1..] != &[0; 31] {
420                                                 channelmanager.fail_htlc_backwards(&payment, PaymentFailReason::PreimageUnknown);
421                                         } else {
422                                                 let mut payment_preimage = [0; 32];
423                                                 payment_preimage[0] = payment[0];
424                                                 channelmanager.claim_funds(payment_preimage);
425                                         }
426                                 }
427                         },
428                         9 => {
429                                 for payment in payments_received.drain(..) {
430                                         channelmanager.fail_htlc_backwards(&payment, PaymentFailReason::PreimageUnknown);
431                                 }
432                         },
433                         10 => {
434                                 'outer_loop: for funding_generation in pending_funding_generation.drain(..) {
435                                         let mut tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: vec![TxOut {
436                                                         value: funding_generation.1, script_pubkey: funding_generation.2,
437                                                 }] };
438                                         let funding_output = 'search_loop: loop {
439                                                 let funding_txid = tx.txid();
440                                                 if let None = loss_detector.txids_confirmed.get(&funding_txid) {
441                                                         let outpoint = OutPoint::new(funding_txid, 0);
442                                                         for chan in channelmanager.list_channels() {
443                                                                 if chan.channel_id == outpoint.to_channel_id() {
444                                                                         tx.version += 1;
445                                                                         continue 'search_loop;
446                                                                 }
447                                                         }
448                                                         break outpoint;
449                                                 }
450                                                 tx.version += 1;
451                                                 if tx.version > 0xff {
452                                                         continue 'outer_loop;
453                                                 }
454                                         };
455                                         channelmanager.funding_transaction_generated(&funding_generation.0, funding_output.clone());
456                                         pending_funding_signatures.insert(funding_output, tx);
457                                 }
458                         },
459                         11 => {
460                                 if !pending_funding_relay.is_empty() {
461                                         loss_detector.connect_block(&pending_funding_relay[..]);
462                                         for _ in 2..100 {
463                                                 loss_detector.connect_block(&[]);
464                                         }
465                                 }
466                                 for tx in pending_funding_relay.drain(..) {
467                                         loss_detector.funding_txn.push(tx);
468                                 }
469                         },
470                         12 => {
471                                 let txlen = slice_to_be16(get_slice!(2));
472                                 if txlen == 0 {
473                                         loss_detector.connect_block(&[]);
474                                 } else {
475                                         let txres: Result<Transaction, _> = deserialize(get_slice!(txlen));
476                                         if let Ok(tx) = txres {
477                                                 loss_detector.connect_block(&[tx]);
478                                         } else {
479                                                 return;
480                                         }
481                                 }
482                         },
483                         13 => {
484                                 loss_detector.disconnect_block();
485                         },
486                         14 => {
487                                 let mut channels = channelmanager.list_channels();
488                                 let channel_id = get_slice!(1)[0] as usize;
489                                 if channel_id >= channels.len() { return; }
490                                 channels.sort_by(|a, b| { a.channel_id.cmp(&b.channel_id) });
491                                 channelmanager.force_close_channel(&channels[channel_id].channel_id);
492                         },
493                         _ => return,
494                 }
495                 loss_detector.handler.process_events();
496                 for event in loss_detector.manager.get_and_clear_pending_events() {
497                         match event {
498                                 Event::FundingGenerationReady { temporary_channel_id, channel_value_satoshis, output_script, .. } => {
499                                         pending_funding_generation.push((temporary_channel_id, channel_value_satoshis, output_script));
500                                 },
501                                 Event::FundingBroadcastSafe { funding_txo, .. } => {
502                                         pending_funding_relay.push(pending_funding_signatures.remove(&funding_txo).unwrap());
503                                 },
504                                 Event::PaymentReceived { payment_hash, .. } => {
505                                         payments_received.push(payment_hash);
506                                 },
507                                 Event::PaymentSent {..} => {},
508                                 Event::PaymentFailed {..} => {},
509                                 Event::PendingHTLCsForwardable {..} => {
510                                         should_forward = true;
511                                 },
512                                 Event::SpendableOutputs {..} => {},
513                         }
514                 }
515         }
516 }
517
518 #[cfg(feature = "afl")]
519 #[macro_use] extern crate afl;
520 #[cfg(feature = "afl")]
521 fn main() {
522         fuzz!(|data| {
523                 let logger: Arc<Logger> = Arc::new(test_logger::TestLogger{});
524                 do_test(data, &logger);
525         });
526 }
527
528 #[cfg(feature = "honggfuzz")]
529 #[macro_use] extern crate honggfuzz;
530 #[cfg(feature = "honggfuzz")]
531 fn main() {
532         loop {
533                 fuzz!(|data| {
534                         let logger: Arc<Logger> = Arc::new(test_logger::TestLogger{});
535                         do_test(data, &logger);
536                 });
537         }
538 }
539
540 extern crate hex;
541 #[cfg(test)]
542 mod tests {
543         use utils::test_logger;
544         use lightning::util::logger::{Logger, Record};
545         use std::collections::HashMap;
546         use std::sync::{Arc, Mutex};
547
548         #[test]
549         fn duplicate_crash() {
550                 let logger: Arc<Logger> = Arc::new(test_logger::TestLogger{});
551                 super::do_test(&::hex::decode("00").unwrap(), &logger);
552         }
553
554         struct TrackingLogger {
555                 /// (module, message) -> count
556                 pub lines: Mutex<HashMap<(String, String), usize>>,
557         }
558         impl Logger for TrackingLogger {
559                 fn log(&self, record: &Record) {
560                         *self.lines.lock().unwrap().entry((record.module_path.to_string(), format!("{}", record.args))).or_insert(0) += 1;
561                         println!("{:<5} [{} : {}, {}] {}", record.level.to_string(), record.module_path, record.file, record.line, record.args);
562                 }
563         }
564
565         #[test]
566         fn test_no_existing_test_breakage() {
567                 // To avoid accidentally causing all existing fuzz test cases to be useless by making minor
568                 // changes (such as requesting feerate info in a new place), we run a pretty full
569                 // step-through with two peers and HTLC forwarding here. Obviously this is pretty finicky,
570                 // so this should be updated pretty liberally, but at least we'll know when changes occur.
571                 // If nothing else, this test serves as a pretty great initial full_stack_target seed.
572
573                 // What each byte represents is broken down below, and then everything is concatenated into
574                 // one large test at the end (you want %s/ -.*//g %s/\n\| \|\t\|\///g).
575
576                 // 0000000000000000000000000000000000000000000000000000000000000000 - our network key
577                 // 00000000 - fee_proportional_millionths
578                 // 01 - announce_channels_publicly
579                 //
580                 // 00 - new outbound connection with id 0
581                 // 030000000000000000000000000000000000000000000000000000000000000000 - peer's pubkey
582                 // 030032 - inbound read from peer id 0 of len 50
583                 // 00 030000000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - noise act two (0||pubkey||mac)
584                 //
585                 // 030012 - inbound read from peer id 0 of len 18
586                 // 0006 03000000000000000000000000000000 - message header indicating message length 6
587                 // 030016 - inbound read from peer id 0 of len 22
588                 // 0010 00000000 03000000000000000000000000000000 - init message with no features (type 16)
589                 //
590                 // 030012 - inbound read from peer id 0 of len 18
591                 // 0141 03000000000000000000000000000000 - message header indicating message length 321
592                 // 0300fe - inbound read from peer id 0 of len 254
593                 // 0020 7500000000000000000000000000000000000000000000000000000000000000 ff4f00f805273c1b203bb5ebf8436bfde57b3be8c2f5e95d9491dbb181909679 000000000000c350 0000000000000000 0000000000000222 ffffffffffffffff 0000000000000222 0000000000000000 000000fd 0006 01e3 030000000000000000000000000000000000000000000000000000000000000001 030000000000000000000000000000000000000000000000000000000000000002 030000000000000000000000000000000000000000000000000000000000000003 030000000000000000000000000000000000000000000000000000000000000004 - beginning of open_channel message
594                 // 030053 - inbound read from peer id 0 of len 83
595                 // 030000000000000000000000000000000000000000000000000000000000000005 030000000000000000000000000000000000000000000000000000000000000000 01 03000000000000000000000000000000 - rest of open_channel and mac
596                 //
597                 // 00fd00fd00fd - Three feerate requests (all returning min feerate, which our open_channel also uses)
598                 // - client should now respond with accept_channel (CHECK 1: type 33 to peer 03000000)
599                 //
600                 // 030012 - inbound read from peer id 0 of len 18
601                 // 0084 03000000000000000000000000000000 - message header indicating message length 132
602                 // 030094 - inbound read from peer id 0 of len 148
603                 // 0022 ff4f00f805273c1b203bb5ebf8436bfde57b3be8c2f5e95d9491dbb181909679 3d00000000000000000000000000000000000000000000000000000000000000 0000 36000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 03000000000000000000000000000000 - funding_created and mac
604                 // - client should now respond with funding_signed (CHECK 2: type 35 to peer 03000000)
605                 //
606                 // 0c005e - connect a block with one transaction of len 94
607                 // 020000000100000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0150c3000000000000220020ae0000000000000000000000000000000000000000000000000000000000000000000000 - the funding transaction
608                 // 0c0000 - connect a block with no transactions
609                 // 0c0000 - connect a block with no transactions
610                 // 0c0000 - connect a block with no transactions
611                 // 0c0000 - connect a block with no transactions
612                 // 0c0000 - connect a block with no transactions
613                 // 0c0000 - connect a block with no transactions
614                 // 0c0000 - connect a block with no transactions
615                 // 0c0000 - connect a block with no transactions
616                 // 0c0000 - connect a block with no transactions
617                 // 0c0000 - connect a block with no transactions
618                 // 0c0000 - connect a block with no transactions
619                 // 0c0000 - connect a block with no transactions
620                 // - by now client should have sent a funding_locked (CHECK 3: SendFundingLocked to 03000000 for chan 3d000000)
621                 //
622                 // 030012 - inbound read from peer id 0 of len 18
623                 // 0043 03000000000000000000000000000000 - message header indicating message length 67
624                 // 030053 - inbound read from peer id 0 of len 83
625                 // 0024 3d00000000000000000000000000000000000000000000000000000000000000 030100000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - funding_locked and mac
626                 //
627                 // 01 - new inbound connection with id 1
628                 // 030132 - inbound read from peer id 1 of len 50
629                 // 0003000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000 - inbound noise act 1
630                 // 030142 - inbound read from peer id 1 of len 66
631                 // 000302000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000003000000000000000000000000000000 - inbound noise act 3
632                 //
633                 // 030112 - inbound read from peer id 1 of len 18
634                 // 0006 01000000000000000000000000000000 - message header indicating message length 6
635                 // 030116 - inbound read from peer id 1 of len 22
636                 // 0010 00000000 01000000000000000000000000000000 - init message with no features (type 16)
637                 //
638                 // 05 01 030200000000000000000000000000000000000000000000000000000000000000 00c350 0003e8 - create outbound channel to peer 1 for 50k sat
639                 // 00fd00fd00fd - Three feerate requests (all returning min feerate)
640                 //
641                 // 030112 - inbound read from peer id 1 of len 18
642                 // 0110 01000000000000000000000000000000 - message header indicating message length 272
643                 // 0301ff - inbound read from peer id 1 of len 255
644                 // 0021 0200000000000000020000000000000002000000000000000200000000000000 000000000000001a 00000000004c4b40 00000000000003e8 00000000000003e8 00000002 03f0 0005 030000000000000000000000000000000000000000000000000000000000000100 030000000000000000000000000000000000000000000000000000000000000200 030000000000000000000000000000000000000000000000000000000000000300 030000000000000000000000000000000000000000000000000000000000000400 030000000000000000000000000000000000000000000000000000000000000500 03000000000000000000000000000000 - beginning of accept_channel
645                 // 030121 - inbound read from peer id 1 of len 33
646                 // 0000000000000000000000000000000000 01000000000000000000000000000000 - rest of accept_channel and mac
647                 //
648                 // 0a - create the funding transaction (client should send funding_created now)
649                 //
650                 // 030112 - inbound read from peer id 1 of len 18
651                 // 0062 01000000000000000000000000000000 - message header indicating message length 98
652                 // 030172 - inbound read from peer id 1 of len 114
653                 // 0023 3f00000000000000000000000000000000000000000000000000000000000000f6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 01000000000000000000000000000000 - funding_signed message and mac
654                 //
655                 // 0b - broadcast funding transaction
656                 // - by now client should have sent a funding_locked (CHECK 4: SendFundingLocked to 03020000 for chan 3f000000)
657                 //
658                 // 030112 - inbound read from peer id 1 of len 18
659                 // 0043 01000000000000000000000000000000 - message header indicating message length 67
660                 // 030153 - inbound read from peer id 1 of len 83
661                 // 0024 3f00000000000000000000000000000000000000000000000000000000000000 030100000000000000000000000000000000000000000000000000000000000000 01000000000000000000000000000000 - funding_locked and mac
662                 //
663                 // 030012 - inbound read from peer id 0 of len 18
664                 // 05ac 03000000000000000000000000000000 - message header indicating message length 1452
665                 // 0300ff - inbound read from peer id 0 of len 255
666                 // 0080 3d00000000000000000000000000000000000000000000000000000000000000 0000000000000000 0000000000003e80 ff00000000000000000000000000000000000000000000000000000000000000 00000121 00 030000000000000000000000000000000000000000000000000000000000000555 0000000e000001000000000000000003e8000000010000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000 ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff - beginning of update_add_htlc from 0 to 1 via client
667                 // 0300ff - inbound read from peer id 0 of len 255
668                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
669                 // 0300ff - inbound read from peer id 0 of len 255
670                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
671                 // 0300ff - inbound read from peer id 0 of len 255
672                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
673                 // 0300ff - inbound read from peer id 0 of len 255
674                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
675                 // 0300c1 - inbound read from peer id 0 of len 193
676                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ef00000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - end of update_add_htlc from 0 to 1 via client and mac
677                 //
678                 // 00fd - A feerate request (returning min feerate, which our open_channel also uses)
679                 //
680                 // 030012 - inbound read from peer id 0 of len 18
681                 // 0064 03000000000000000000000000000000 - message header indicating message length 100
682                 // 030074 - inbound read from peer id 0 of len 116
683                 // 0084 3d00000000000000000000000000000000000000000000000000000000000000 27000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 0000 03000000000000000000000000000000 - commitment_signed and mac
684                 // - client should now respond with revoke_and_ack and commitment_signed (CHECK 5/6: types 133 and 132 to peer 03000000)
685                 //
686                 // 030012 - inbound read from peer id 0 of len 18
687                 // 0063 03000000000000000000000000000000 - message header indicating message length 99
688                 // 030073 - inbound read from peer id 0 of len 115
689                 // 0085 3d00000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 030200000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - revoke_and_ack and mac
690                 //
691                 // 07 - process the now-pending HTLC forward
692                 // - client now sends id 1 update_add_htlc and commitment_signed (CHECK 7: SendHTLCs event for node 03020000 with 1 HTLCs for channel 3f000000)
693                 //
694                 // - we respond with commitment_signed then revoke_and_ack (a weird, but valid, order)
695                 // 030112 - inbound read from peer id 1 of len 18
696                 // 0064 01000000000000000000000000000000 - message header indicating message length 100
697                 // 030174 - inbound read from peer id 1 of len 116
698                 // 0084 3f00000000000000000000000000000000000000000000000000000000000000 f7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0000 01000000000000000000000000000000 - commitment_signed and mac
699                 //
700                 // 030112 - inbound read from peer id 1 of len 18
701                 // 0063 01000000000000000000000000000000 - message header indicating message length 99
702                 // 030173 - inbound read from peer id 1 of len 115
703                 // 0085 3f00000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 030200000000000000000000000000000000000000000000000000000000000000 01000000000000000000000000000000 - revoke_and_ack and mac
704                 //
705                 // 030112 - inbound read from peer id 1 of len 18
706                 // 004a 01000000000000000000000000000000 - message header indicating message length 74
707                 // 03015a - inbound read from peer id 1 of len 90
708                 // 0082 3f00000000000000000000000000000000000000000000000000000000000000 0000000000000000 ff00888888888888888888888888888888888888888888888888888888888888 01000000000000000000000000000000 - update_fulfill_htlc and mac
709                 // - client should immediately claim the pending HTLC from peer 0 (CHECK 8: SendFulfillHTLCs for node 03000000 with preimage ff00888888 for channel 3d000000)
710                 //
711                 // 030112 - inbound read from peer id 1 of len 18
712                 // 0064 01000000000000000000000000000000 - message header indicating message length 100
713                 // 030174 - inbound read from peer id 1 of len 116
714                 // 0084 3f00000000000000000000000000000000000000000000000000000000000000 fb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0000 01000000000000000000000000000000 - commitment_signed and mac
715                 //
716                 // 030112 - inbound read from peer id 1 of len 18
717                 // 0063 01000000000000000000000000000000 - message header indicating message length 99
718                 // 030173 - inbound read from peer id 1 of len 115
719                 // 0085 3f00000000000000000000000000000000000000000000000000000000000000 0100000000000000000000000000000000000000000000000000000000000000 030300000000000000000000000000000000000000000000000000000000000000 01000000000000000000000000000000 - revoke_and_ack and mac
720                 //
721                 // - before responding to the commitment_signed generated above, send a new HTLC
722                 // 030012 - inbound read from peer id 0 of len 18
723                 // 05ac 03000000000000000000000000000000 - message header indicating message length 1452
724                 // 0300ff - inbound read from peer id 0 of len 255
725                 // 0080 3d00000000000000000000000000000000000000000000000000000000000000 0000000000000001 0000000000003e80 ff00000000000000000000000000000000000000000000000000000000000000 00000121 00 030000000000000000000000000000000000000000000000000000000000000555 0000000e000001000000000000000003e8000000010000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000 ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff - beginning of update_add_htlc from 0 to 1 via client
726                 // 0300ff - inbound read from peer id 0 of len 255
727                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
728                 // 0300ff - inbound read from peer id 0 of len 255
729                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
730                 // 0300ff - inbound read from peer id 0 of len 255
731                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
732                 // 0300ff - inbound read from peer id 0 of len 255
733                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
734                 // 0300c1 - inbound read from peer id 0 of len 193
735                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ef00000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - end of update_add_htlc from 0 to 1 via client and mac
736                 //
737                 // 00fd - A feerate request (returning min feerate, which our open_channel also uses)
738                 //
739                 // - now respond to the update_fulfill_htlc+commitment_signed messages the client sent to peer 0
740                 // 030012 - inbound read from peer id 0 of len 18
741                 // 0063 03000000000000000000000000000000 - message header indicating message length 99
742                 // 030073 - inbound read from peer id 0 of len 115
743                 // 0085 3d00000000000000000000000000000000000000000000000000000000000000 0100000000000000000000000000000000000000000000000000000000000000 030300000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - revoke_and_ack and mac
744                 // - client should now respond with revoke_and_ack and commitment_signed (CHECK 5/6 duplicates)
745                 //
746                 // 030012 - inbound read from peer id 0 of len 18
747                 // 0064 03000000000000000000000000000000 - message header indicating message length 100
748                 // 030074 - inbound read from peer id 0 of len 116
749                 // 0084 3d00000000000000000000000000000000000000000000000000000000000000 d4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 0000 03000000000000000000000000000000 - commitment_signed and mac
750                 //
751                 // 030012 - inbound read from peer id 0 of len 18
752                 // 0063 03000000000000000000000000000000 - message header indicating message length 99
753                 // 030073 - inbound read from peer id 0 of len 115
754                 // 0085 3d00000000000000000000000000000000000000000000000000000000000000 0200000000000000000000000000000000000000000000000000000000000000 030400000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - revoke_and_ack and mac
755                 //
756                 // 07 - process the now-pending HTLC forward
757                 // - client now sends id 1 update_add_htlc and commitment_signed (CHECK 7 duplicate)
758                 // - we respond with revoke_and_ack, then commitment_signed, then update_fail_htlc
759                 //
760                 // 030112 - inbound read from peer id 1 of len 18
761                 // 0064 01000000000000000000000000000000 - message header indicating message length 100
762                 // 030174 - inbound read from peer id 1 of len 116
763                 // 0084 3f00000000000000000000000000000000000000000000000000000000000000 fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0000 01000000000000000000000000000000 - commitment_signed and mac
764                 //
765                 // 030112 - inbound read from peer id 1 of len 18
766                 // 0063 01000000000000000000000000000000 - message header indicating message length 99
767                 // 030173 - inbound read from peer id 1 of len 115
768                 // 0085 3f00000000000000000000000000000000000000000000000000000000000000 0200000000000000000000000000000000000000000000000000000000000000 030400000000000000000000000000000000000000000000000000000000000000 01000000000000000000000000000000 - revoke_and_ack and mac
769                 //
770                 // 030112 - inbound read from peer id 1 of len 18
771                 // 002c 01000000000000000000000000000000 - message header indicating message length 44
772                 // 03013c - inbound read from peer id 1 of len 60
773                 // 0083 3f00000000000000000000000000000000000000000000000000000000000000 0000000000000001 0000 01000000000000000000000000000000 - update_fail_htlc and mac
774                 //
775                 // 030112 - inbound read from peer id 1 of len 18
776                 // 0064 01000000000000000000000000000000 - message header indicating message length 100
777                 // 030174 - inbound read from peer id 1 of len 116
778                 // 0084 3f00000000000000000000000000000000000000000000000000000000000000 fd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100 0000 01000000000000000000000000000000 - commitment_signed and mac
779                 //
780                 // 030112 - inbound read from peer id 1 of len 18
781                 // 0063 01000000000000000000000000000000 - message header indicating message length 99
782                 // 030173 - inbound read from peer id 1 of len 115
783                 // 0085 3f00000000000000000000000000000000000000000000000000000000000000 0300000000000000000000000000000000000000000000000000000000000000 030500000000000000000000000000000000000000000000000000000000000000 01000000000000000000000000000000 - revoke_and_ack and mac
784                 //
785                 // - client now sends id 0 update_fail_htlc and commitment_signed (CHECK 9)
786                 // - now respond to the update_fail_htlc+commitment_signed messages the client sent to peer 0
787                 // 030012 - inbound read from peer id 0 of len 18
788                 // 0063 03000000000000000000000000000000 - message header indicating message length 99
789                 // 030073 - inbound read from peer id 0 of len 115
790                 // 0085 3d00000000000000000000000000000000000000000000000000000000000000 0300000000000000000000000000000000000000000000000000000000000000 030500000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - revoke_and_ack and mac
791                 //
792                 // 030012 - inbound read from peer id 0 of len 18
793                 // 0064 03000000000000000000000000000000 - message header indicating message length 100
794                 // 030074 - inbound read from peer id 0 of len 116
795                 // 0084 3d00000000000000000000000000000000000000000000000000000000000000 25000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 0000 03000000000000000000000000000000 - commitment_signed and mac
796                 // - client should now respond with revoke_and_ack (CHECK 5 duplicate)
797                 //
798                 // 030012 - inbound read from peer id 0 of len 18
799                 // 05ac 03000000000000000000000000000000 - message header indicating message length 1452
800                 // 0300ff - inbound read from peer id 0 of len 255
801                 // 0080 3d00000000000000000000000000000000000000000000000000000000000000 0000000000000002 00000000000b0838 ff00000000000000000000000000000000000000000000000000000000000000 00000121 00 030000000000000000000000000000000000000000000000000000000000000555 0000000e0000010000000000000003e800000000010000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000 ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff - beginning of update_add_htlc from 0 to 1 via client
802                 // 0300ff - inbound read from peer id 0 of len 255
803                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
804                 // 0300ff - inbound read from peer id 0 of len 255
805                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
806                 // 0300ff - inbound read from peer id 0 of len 255
807                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
808                 // 0300ff - inbound read from peer id 0 of len 255
809                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
810                 // 0300c1 - inbound read from peer id 0 of len 193
811                 // ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ef00000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - end of update_add_htlc from 0 to 1 via client and mac
812                 //
813                 // 00fd - A feerate request (returning min feerate, which our open_channel also uses)
814                 //
815                 // 030012 - inbound read from peer id 0 of len 18
816                 // 00a4 03000000000000000000000000000000 - message header indicating message length 164
817                 // 0300b4 - inbound read from peer id 0 of len 180
818                 // 0084 3d00000000000000000000000000000000000000000000000000000000000000 10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001 0001 b5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d 00000000000000 03000000000000000000000000000000 - commitment_signed and mac
819                 // - client should now respond with revoke_and_ack and commitment_signed (CHECK 5/6 duplicates)
820                 //
821                 // 030012 - inbound read from peer id 0 of len 18
822                 // 0063 03000000000000000000000000000000 - message header indicating message length 99
823                 // 030073 - inbound read from peer id 0 of len 115
824                 // 0085 3d00000000000000000000000000000000000000000000000000000000000000 0400000000000000000000000000000000000000000000000000000000000000 030600000000000000000000000000000000000000000000000000000000000000 03000000000000000000000000000000 - revoke_and_ack and mac
825                 //
826                 // 07 - process the now-pending HTLC forward
827                 // - client now sends id 1 update_add_htlc and commitment_signed (CHECK 7 duplicate)
828                 //
829                 // 0c007d - connect a block with one transaction of len 125
830                 // 02000000013f00000000000000000000000000000000000000000000000000000000000000000000000000000080020001000000000000220020ed000000000000000000000000000000000000000000000000000000000000006cc10000000000001600142b88e0198963bf4c37de498583a3ccdb9d67e97405000020 - the funding transaction
831                 // 00fd - A feerate request (returning min feerate, which our open_channel also uses)
832                 // 0c005e - connect a block with one transaction of len 94
833                 // 0200000001ec00000000000000000000000000000000000000000000000000000000000000000000000000000000014f00000000000000220020f60000000000000000000000000000000000000000000000000000000000000000000000 - the funding transaction
834
835                 let logger = Arc::new(TrackingLogger { lines: Mutex::new(HashMap::new()) });
836                 super::do_test(&::hex::decode("00000000000000000000000000000000000000000000000000000000000000000000000001000300000000000000000000000000000000000000000000000000000000000000000300320003000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000030012000603000000000000000000000000000000030016001000000000030000000000000000000000000000000300120141030000000000000000000000000000000300fe00207500000000000000000000000000000000000000000000000000000000000000ff4f00f805273c1b203bb5ebf8436bfde57b3be8c2f5e95d9491dbb181909679000000000000c35000000000000000000000000000000222ffffffffffffffff00000000000002220000000000000000000000fd000601e3030000000000000000000000000000000000000000000000000000000000000001030000000000000000000000000000000000000000000000000000000000000002030000000000000000000000000000000000000000000000000000000000000003030000000000000000000000000000000000000000000000000000000000000004030053030000000000000000000000000000000000000000000000000000000000000005030000000000000000000000000000000000000000000000000000000000000000010300000000000000000000000000000000fd00fd00fd0300120084030000000000000000000000000000000300940022ff4f00f805273c1b203bb5ebf8436bfde57b3be8c2f5e95d9491dbb1819096793d00000000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001030000000000000000000000000000000c005e020000000100000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0150c3000000000000220020ae00000000000000000000000000000000000000000000000000000000000000000000000c00000c00000c00000c00000c00000c00000c00000c00000c00000c00000c00000c000003001200430300000000000000000000000000000003005300243d000000000000000000000000000000000000000000000000000000000000000301000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000001030132000300000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000003014200030200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000300000000000000000000000000000003011200060100000000000000000000000000000003011600100000000001000000000000000000000000000000050103020000000000000000000000000000000000000000000000000000000000000000c3500003e800fd00fd00fd0301120110010000000000000000000000000000000301ff00210200000000000000020000000000000002000000000000000200000000000000000000000000001a00000000004c4b4000000000000003e800000000000003e80000000203f00005030000000000000000000000000000000000000000000000000000000000000100030000000000000000000000000000000000000000000000000000000000000200030000000000000000000000000000000000000000000000000000000000000300030000000000000000000000000000000000000000000000000000000000000400030000000000000000000000000000000000000000000000000000000000000500030000000000000000000000000000000301210000000000000000000000000000000000010000000000000000000000000000000a03011200620100000000000000000000000000000003017200233f00000000000000000000000000000000000000000000000000000000000000f6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000000000000000000000000000000b03011200430100000000000000000000000000000003015300243f000000000000000000000000000000000000000000000000000000000000000301000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000003001205ac030000000000000000000000000000000300ff00803d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e80ff0000000000000000000000000000000000000000000000000000000000000000000121000300000000000000000000000000000000000000000000000000000000000005550000000e000001000000000000000003e8000000010000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300c1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000fd03001200640300000000000000000000000000000003007400843d000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000300000000000000000000000000000003001200630300000000000000000000000000000003007300853d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000703011200640100000000000000000000000000000003017400843f00000000000000000000000000000000000000000000000000000000000000f700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000003011200630100000000000000000000000000000003017300853f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000030112004a0100000000000000000000000000000003015a00823f000000000000000000000000000000000000000000000000000000000000000000000000000000ff008888888888888888888888888888888888888888888888888888888888880100000000000000000000000000000003011200640100000000000000000000000000000003017400843f00000000000000000000000000000000000000000000000000000000000000fb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000003011200630100000000000000000000000000000003017300853f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000303000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000003001205ac030000000000000000000000000000000300ff00803d0000000000000000000000000000000000000000000000000000000000000000000000000000010000000000003e80ff0000000000000000000000000000000000000000000000000000000000000000000121000300000000000000000000000000000000000000000000000000000000000005550000000e000001000000000000000003e8000000010000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300c1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000fd03001200630300000000000000000000000000000003007300853d0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000303000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000003001200640300000000000000000000000000000003007400843d00000000000000000000000000000000000000000000000000000000000000d400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000300000000000000000000000000000003001200630300000000000000000000000000000003007300853d000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000030400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000703011200640100000000000000000000000000000003017400843f00000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000003011200630100000000000000000000000000000003017300853f00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000030112002c0100000000000000000000000000000003013c00833f00000000000000000000000000000000000000000000000000000000000000000000000000000100000100000000000000000000000000000003011200640100000000000000000000000000000003017400843f00000000000000000000000000000000000000000000000000000000000000fd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000003011200630100000000000000000000000000000003017300853f0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000305000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000003001200630300000000000000000000000000000003007300853d0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000305000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000003001200640300000000000000000000000000000003007400843d000000000000000000000000000000000000000000000000000000000000002500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000300000000000000000000000000000003001205ac030000000000000000000000000000000300ff00803d00000000000000000000000000000000000000000000000000000000000000000000000000000200000000000b0838ff0000000000000000000000000000000000000000000000000000000000000000000121000300000000000000000000000000000000000000000000000000000000000005550000000e0000010000000000000003e800000000010000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0300c1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000fd03001200a4030000000000000000000000000000000300b400843d00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010001b5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d000000000000000300000000000000000000000000000003001200630300000000000000000000000000000003007300853d00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000003060000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000070c007d02000000013f00000000000000000000000000000000000000000000000000000000000000000000000000000080020001000000000000220020ed000000000000000000000000000000000000000000000000000000000000006cc10000000000001600142b88e0198963bf4c37de498583a3ccdb9d67e9740500002000fd0c005e0200000001ec00000000000000000000000000000000000000000000000000000000000000000000000000000000014f00000000000000220020f60000000000000000000000000000000000000000000000000000000000000000000000").unwrap(), &(Arc::clone(&logger) as Arc<Logger>));
837
838                 let log_entries = logger.lines.lock().unwrap();
839                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling SendAcceptChannel event in peer_handler for node 030000000000000000000000000000000000000000000000000000000000000000 for channel ff4f00f805273c1b203bb5ebf8436bfde57b3be8c2f5e95d9491dbb181909679".to_string())), Some(&1)); // 1
840                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling SendFundingSigned event in peer_handler for node 030000000000000000000000000000000000000000000000000000000000000000 for channel 3d00000000000000000000000000000000000000000000000000000000000000".to_string())), Some(&1)); // 2
841                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling SendFundingLocked event in peer_handler for node 030000000000000000000000000000000000000000000000000000000000000000 for channel 3d00000000000000000000000000000000000000000000000000000000000000".to_string())), Some(&1)); // 3
842                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling SendFundingLocked event in peer_handler for node 030200000000000000000000000000000000000000000000000000000000000000 for channel 3f00000000000000000000000000000000000000000000000000000000000000".to_string())), Some(&1)); // 4
843                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling SendRevokeAndACK event in peer_handler for node 030000000000000000000000000000000000000000000000000000000000000000 for channel 3d00000000000000000000000000000000000000000000000000000000000000".to_string())), Some(&4)); // 5
844                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling UpdateHTLCs event in peer_handler for node 030000000000000000000000000000000000000000000000000000000000000000 with 0 adds, 0 fulfills, 0 fails for channel 3d00000000000000000000000000000000000000000000000000000000000000".to_string())), Some(&3)); // 6
845                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling UpdateHTLCs event in peer_handler for node 030200000000000000000000000000000000000000000000000000000000000000 with 1 adds, 0 fulfills, 0 fails for channel 3f00000000000000000000000000000000000000000000000000000000000000".to_string())), Some(&3)); // 7
846                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling UpdateHTLCs event in peer_handler for node 030000000000000000000000000000000000000000000000000000000000000000 with 0 adds, 1 fulfills, 0 fails for channel 3d00000000000000000000000000000000000000000000000000000000000000".to_string())), Some(&1)); // 8
847                 assert_eq!(log_entries.get(&("lightning::ln::peer_handler".to_string(), "Handling UpdateHTLCs event in peer_handler for node 030000000000000000000000000000000000000000000000000000000000000000 with 0 adds, 0 fulfills, 1 fails for channel 3d00000000000000000000000000000000000000000000000000000000000000".to_string())), Some(&1)); // 9
848         }
849 }