Make channel_target return as channelmanager removes on shutdown
[rust-lightning] / fuzz / fuzz_targets / channel_target.rs
1 extern crate bitcoin;
2 extern crate lightning;
3 extern crate secp256k1;
4
5 use bitcoin::blockdata::block::BlockHeader;
6 use bitcoin::blockdata::transaction::{Transaction, TxOut};
7 use bitcoin::util::hash::Sha256dHash;
8 use bitcoin::network::serialize::{serialize, BitcoinHash};
9
10 use lightning::ln::channel::{Channel, ChannelKeys};
11 use lightning::ln::channelmanager::{HTLCFailReason, PendingForwardHTLCInfo};
12 use lightning::ln::msgs;
13 use lightning::ln::msgs::MsgDecodable;
14 use lightning::chain::chaininterface::{FeeEstimator, ConfirmationTarget};
15 use lightning::util::reset_rng_state;
16
17 use secp256k1::key::{PublicKey, SecretKey};
18 use secp256k1::Secp256k1;
19
20 use std::sync::atomic::{AtomicUsize,Ordering};
21
22 #[inline]
23 pub fn slice_to_be16(v: &[u8]) -> u16 {
24         ((v[0] as u16) << 8*1) |
25         ((v[1] as u16) << 8*0)
26 }
27
28 #[inline]
29 pub fn slice_to_be32(v: &[u8]) -> u32 {
30         ((v[0] as u32) << 8*3) |
31         ((v[1] as u32) << 8*2) |
32         ((v[2] as u32) << 8*1) |
33         ((v[3] as u32) << 8*0)
34 }
35
36 #[inline]
37 pub fn slice_to_be64(v: &[u8]) -> u64 {
38         ((v[0] as u64) << 8*7) |
39         ((v[1] as u64) << 8*6) |
40         ((v[2] as u64) << 8*5) |
41         ((v[3] as u64) << 8*4) |
42         ((v[4] as u64) << 8*3) |
43         ((v[5] as u64) << 8*2) |
44         ((v[6] as u64) << 8*1) |
45         ((v[7] as u64) << 8*0)
46 }
47
48 #[inline]
49 fn slice_to_be24(v: &[u8]) -> u64 {
50         //TODO: We should probably be returning a Result for channel creation, not panic!()ing on
51         //>2**24 values...
52         ((v[0] as u64) << 8*2) |
53         ((v[1] as u64) << 8*1) |
54         ((v[2] as u64) << 8*0)
55 }
56
57 struct InputData<'a> {
58         data: &'a [u8],
59         read_pos: AtomicUsize,
60 }
61 impl<'a> InputData<'a> {
62         fn get_slice(&self, len: usize) -> Option<&'a [u8]> {
63                 let old_pos = self.read_pos.fetch_add(len, Ordering::AcqRel);
64                 if self.data.len() < old_pos + len {
65                         return None;
66                 }
67                 Some(&self.data[old_pos..old_pos + len])
68         }
69         fn get_slice_nonadvancing(&self, len: usize) -> Option<&'a [u8]> {
70                 let old_pos = self.read_pos.load(Ordering::Acquire);
71                 if self.data.len() < old_pos + len {
72                         return None;
73                 }
74                 Some(&self.data[old_pos..old_pos + len])
75         }
76 }
77
78 struct FuzzEstimator<'a> {
79         input: &'a InputData<'a>,
80 }
81 impl<'a> FeeEstimator for FuzzEstimator<'a> {
82         fn get_est_sat_per_vbyte(&self, _: ConfirmationTarget) -> u64 {
83                 //TODO: We should actually be testing at least much more than 64k...
84                 match self.input.get_slice(2) {
85                         Some(slice) => slice_to_be16(slice) as u64,
86                         None => 0
87                 }
88         }
89 }
90
91 #[inline]
92 pub fn do_test(data: &[u8]) {
93         reset_rng_state();
94
95         let input = InputData {
96                 data,
97                 read_pos: AtomicUsize::new(0),
98         };
99         let fee_est = FuzzEstimator {
100                 input: &input,
101         };
102
103         macro_rules! get_slice {
104                 ($len: expr) => {
105                         match input.get_slice($len as usize) {
106                                 Some(slice) => slice,
107                                 None => return,
108                         }
109                 }
110         }
111
112         macro_rules! decode_msg {
113                 ($MsgType: path, $len: expr) => {
114                         match <($MsgType)>::decode(get_slice!($len)) {
115                                 Ok(msg) => msg,
116                                 Err(e) => match e {
117                                         msgs::DecodeError::UnknownRealmByte => return,
118                                         msgs::DecodeError::BadPublicKey => return,
119                                         msgs::DecodeError::BadSignature => return,
120                                         msgs::DecodeError::ExtraAddressesPerType => return,
121                                         msgs::DecodeError::WrongLength => panic!("We picked the length..."),
122                                 }
123                         }
124                 }
125         }
126
127         macro_rules! decode_msg_with_len16 {
128                 ($MsgType: path, $begin_len: expr, $factor: expr) => {
129                         {
130                                 let extra_len = slice_to_be16(&match input.get_slice_nonadvancing($begin_len as usize + 2) {
131                                         Some(slice) => slice,
132                                         None => return,
133                                 }[$begin_len..$begin_len + 2]);
134                                 match <($MsgType)>::decode(get_slice!($begin_len as usize + 2 + (extra_len as usize)*$factor)) {
135                                         Ok(msg) => msg,
136                                         Err(e) => match e {
137                                                 msgs::DecodeError::UnknownRealmByte => return,
138                                                 msgs::DecodeError::BadPublicKey => return,
139                                                 msgs::DecodeError::BadSignature => return,
140                                                 msgs::DecodeError::ExtraAddressesPerType => return,
141                                                 msgs::DecodeError::WrongLength => panic!("We picked the length..."),
142                                         }
143                                 }
144                         }
145                 }
146         }
147
148         let secp_ctx = Secp256k1::new();
149         macro_rules! get_pubkey {
150                 () => {
151                         match PublicKey::from_slice(&secp_ctx, get_slice!(33)) {
152                                 Ok(key) => key,
153                                 Err(_) => return,
154                         }
155                 }
156         }
157
158         macro_rules! return_err {
159                 ($expr: expr) => {
160                         match $expr {
161                                 Ok(r) => r,
162                                 Err(_) => return,
163                         }
164                 }
165         }
166
167         macro_rules! chan_keys {
168                 () => {
169                         ChannelKeys {
170                                 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(),
171                                 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(),
172                                 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(),
173                                 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(),
174                                 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(),
175                                 channel_close_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(),
176                                 channel_monitor_claim_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(),
177                                 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],
178                         }
179                 }
180         }
181
182         let their_pubkey = get_pubkey!();
183
184         let mut tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
185
186         let mut channel = if get_slice!(1)[0] != 0 {
187                 let chan_value = slice_to_be24(get_slice!(3));
188
189                 let mut chan = Channel::new_outbound(&fee_est, chan_keys!(), their_pubkey, chan_value, get_slice!(1)[0] == 0, slice_to_be64(get_slice!(8)));
190                 chan.get_open_channel(Sha256dHash::from(get_slice!(32)), &fee_est).unwrap();
191                 let accept_chan = if get_slice!(1)[0] == 0 {
192                         decode_msg_with_len16!(msgs::AcceptChannel, 270, 1)
193                 } else {
194                         decode_msg!(msgs::AcceptChannel, 270)
195                 };
196                 return_err!(chan.accept_channel(&accept_chan));
197
198                 tx.output.push(TxOut{ value: chan_value, script_pubkey: chan.get_funding_redeemscript().to_v0_p2wsh() });
199                 let funding_output = (Sha256dHash::from_data(&serialize(&tx).unwrap()[..]), 0);
200
201                 chan.get_outbound_funding_created(funding_output.0.clone(), funding_output.1).unwrap();
202                 let funding_signed = decode_msg!(msgs::FundingSigned, 32+64);
203                 return_err!(chan.funding_signed(&funding_signed));
204                 chan
205         } else {
206                 let open_chan = if get_slice!(1)[0] == 0 {
207                         decode_msg_with_len16!(msgs::OpenChannel, 2*32+6*8+4+2*2+6*33+1, 1)
208                 } else {
209                         decode_msg!(msgs::OpenChannel, 2*32+6*8+4+2*2+6*33+1)
210                 };
211                 let mut chan = match Channel::new_from_req(&fee_est, chan_keys!(), their_pubkey, &open_chan, slice_to_be64(get_slice!(8)), get_slice!(1)[0] == 0) {
212                         Ok(chan) => chan,
213                         Err(_) => return,
214                 };
215                 chan.get_accept_channel().unwrap();
216
217                 tx.output.push(TxOut{ value: open_chan.funding_satoshis, script_pubkey: chan.get_funding_redeemscript().to_v0_p2wsh() });
218                 let funding_output = (Sha256dHash::from_data(&serialize(&tx).unwrap()[..]), 0);
219
220                 let mut funding_created = decode_msg!(msgs::FundingCreated, 32+32+2+64);
221                 funding_created.funding_txid = funding_output.0.clone();
222                 funding_created.funding_output_index = funding_output.1;
223                 return_err!(chan.funding_created(&funding_created));
224                 chan
225         };
226
227         let mut header = BlockHeader { version: 0x20000000, prev_blockhash: Default::default(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
228         channel.block_connected(&header, 1, &[&tx; 1], &[42; 1]);
229         for i in 2..100 {
230                 header = BlockHeader { version: 0x20000000, prev_blockhash: header.bitcoin_hash(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
231                 channel.block_connected(&header, i, &[&tx; 0], &[0; 0]);
232         }
233
234         let funding_locked = decode_msg!(msgs::FundingLocked, 32+33);
235         return_err!(channel.funding_locked(&funding_locked));
236
237         loop {
238                 match get_slice!(1)[0] {
239                         0 => {
240                                 return_err!(channel.send_htlc(slice_to_be64(get_slice!(8)), [42; 32], slice_to_be32(get_slice!(4)), msgs::OnionPacket {
241                                         version: get_slice!(1)[0],
242                                         public_key: get_pubkey!(),
243                                         hop_data: [0; 20*65],
244                                         hmac: [0; 32],
245                                 }));
246                         },
247                         1 => {
248                                 return_err!(channel.send_commitment());
249                         },
250                         2 => {
251                                 let update_add_htlc = decode_msg!(msgs::UpdateAddHTLC, 32+8+8+32+4+4+33+20*65+32);
252                                 return_err!(channel.update_add_htlc(&update_add_htlc, PendingForwardHTLCInfo::dummy()));
253                         },
254                         3 => {
255                                 let update_fulfill_htlc = decode_msg!(msgs::UpdateFulfillHTLC, 32 + 8 + 32);
256                                 return_err!(channel.update_fulfill_htlc(&update_fulfill_htlc));
257                         },
258                         4 => {
259                                 let update_fail_htlc = decode_msg_with_len16!(msgs::UpdateFailHTLC, 32 + 8, 1);
260                                 return_err!(channel.update_fail_htlc(&update_fail_htlc, HTLCFailReason::dummy()));
261                         },
262                         5 => {
263                                 let update_fail_malformed_htlc = decode_msg!(msgs::UpdateFailMalformedHTLC, 32+8+32+2);
264                                 return_err!(channel.update_fail_malformed_htlc(&update_fail_malformed_htlc, HTLCFailReason::dummy()));
265                         },
266                         6 => {
267                                 let commitment_signed = decode_msg_with_len16!(msgs::CommitmentSigned, 32+64, 64);
268                                 return_err!(channel.commitment_signed(&commitment_signed));
269                         },
270                         7 => {
271                                 let revoke_and_ack = decode_msg!(msgs::RevokeAndACK, 32+32+33);
272                                 return_err!(channel.revoke_and_ack(&revoke_and_ack));
273                         },
274                         8 => {
275                                 let update_fee = decode_msg!(msgs::UpdateFee, 32+4);
276                                 return_err!(channel.update_fee(&fee_est, &update_fee));
277                         },
278                         9 => {
279                                 let shutdown = decode_msg_with_len16!(msgs::Shutdown, 32, 1);
280                                 return_err!(channel.shutdown(&fee_est, &shutdown));
281                                 if channel.is_shutdown() { return; }
282                         },
283                         10 => {
284                                 let closing_signed = decode_msg!(msgs::ClosingSigned, 32+8+64);
285                                 if return_err!(channel.closing_signed(&fee_est, &closing_signed)).1.is_some() {
286                                         assert!(channel.is_shutdown());
287                                         return;
288                                 }
289                         },
290                         _ => return,
291                 }
292         }
293 }
294
295 #[cfg(feature = "afl")]
296 extern crate afl;
297 #[cfg(feature = "afl")]
298 fn main() {
299         afl::read_stdio_bytes(|data| {
300                 do_test(&data);
301         });
302 }
303
304 #[cfg(feature = "honggfuzz")]
305 #[macro_use] extern crate honggfuzz;
306 #[cfg(feature = "honggfuzz")]
307 fn main() {
308         loop {
309                 fuzz!(|data| {
310                         do_test(data);
311                 });
312         }
313 }
314
315 #[cfg(test)]
316 mod tests {
317         fn extend_vec_from_hex(hex: &str, out: &mut Vec<u8>) {
318                 let mut b = 0;
319                 for (idx, c) in hex.as_bytes().iter().enumerate() {
320                         b <<= 4;
321                         match *c {
322                                 b'A'...b'F' => b |= c - b'A' + 10,
323                                 b'a'...b'f' => b |= c - b'a' + 10,
324                                 b'0'...b'9' => b |= c - b'0',
325                                 _ => panic!("Bad hex"),
326                         }
327                         if (idx & 1) == 1 {
328                                 out.push(b);
329                                 b = 0;
330                         }
331                 }
332         }
333
334         #[test]
335         fn duplicate_crash() {
336                 let mut a = Vec::new();
337                 extend_vec_from_hex("00", &mut a);
338                 super::do_test(&a);
339         }
340 }