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