d5c483f770415047b60cc1888a90c0e7f8c9845a
[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, 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::new());
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 = Channel::new_outbound(&fee_est, chan_keys!(), their_pubkey, chan_value, get_slice!(1)[0] == 0, slice_to_be64(get_slice!(8)), Arc::clone(&logger));
203                 chan.get_open_channel(Sha256dHash::from(get_slice!(32)), &fee_est).unwrap();
204                 let accept_chan = if get_slice!(1)[0] == 0 {
205                         decode_msg_with_len16!(msgs::AcceptChannel, 270, 1)
206                 } else {
207                         decode_msg!(msgs::AcceptChannel, 270)
208                 };
209                 return_err!(chan.accept_channel(&accept_chan));
210
211                 tx.output.push(TxOut{ value: chan_value, script_pubkey: chan.get_funding_redeemscript().to_v0_p2wsh() });
212                 let funding_output = OutPoint::new(Sha256dHash::from_data(&serialize(&tx).unwrap()[..]), 0);
213
214                 chan.get_outbound_funding_created(funding_output).unwrap();
215                 let funding_signed = decode_msg!(msgs::FundingSigned, 32+64);
216                 return_err!(chan.funding_signed(&funding_signed));
217                 chan
218         } else {
219                 let open_chan = if get_slice!(1)[0] == 0 {
220                         decode_msg_with_len16!(msgs::OpenChannel, 2*32+6*8+4+2*2+6*33+1, 1)
221                 } else {
222                         decode_msg!(msgs::OpenChannel, 2*32+6*8+4+2*2+6*33+1)
223                 };
224                 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)) {
225                         Ok(chan) => chan,
226                         Err(_) => return,
227                 };
228                 chan.get_accept_channel().unwrap();
229
230                 tx.output.push(TxOut{ value: open_chan.funding_satoshis, script_pubkey: chan.get_funding_redeemscript().to_v0_p2wsh() });
231                 let funding_output = OutPoint::new(Sha256dHash::from_data(&serialize(&tx).unwrap()[..]), 0);
232
233                 let mut funding_created = decode_msg!(msgs::FundingCreated, 32+32+2+64);
234                 funding_created.funding_txid = funding_output.txid.clone();
235                 funding_created.funding_output_index = funding_output.index;
236                 return_err!(chan.funding_created(&funding_created));
237                 chan
238         };
239
240         let mut header = BlockHeader { version: 0x20000000, prev_blockhash: Default::default(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
241         channel.block_connected(&header, 1, &[&tx; 1], &[42; 1]);
242         for i in 2..100 {
243                 header = BlockHeader { version: 0x20000000, prev_blockhash: header.bitcoin_hash(), merkle_root: Default::default(), time: 42, bits: 42, nonce: 42 };
244                 channel.block_connected(&header, i, &[&tx; 0], &[0; 0]);
245         }
246
247         let funding_locked = decode_msg!(msgs::FundingLocked, 32+33);
248         return_err!(channel.funding_locked(&funding_locked));
249
250         macro_rules! test_err {
251                 ($expr: expr) => {
252                         match $expr {
253                                 Ok(r) => Some(r),
254                                 Err(e) => match e.action {
255                                         None => return,
256                                         Some(ErrorAction::UpdateFailHTLC {..}) => None,
257                                         Some(ErrorAction::DisconnectPeer {..}) => return,
258                                         Some(ErrorAction::IgnoreError) => None,
259                                         Some(ErrorAction::SendErrorMessage {..}) => None,
260                                 },
261                         }
262                 }
263         }
264
265         loop {
266                 match get_slice!(1)[0] {
267                         0 => {
268                                 test_err!(channel.send_htlc(slice_to_be64(get_slice!(8)), [42; 32], slice_to_be32(get_slice!(4)), msgs::OnionPacket {
269                                         version: get_slice!(1)[0],
270                                         public_key: get_pubkey!(),
271                                         hop_data: [0; 20*65],
272                                         hmac: [0; 32],
273                                 }));
274                         },
275                         1 => {
276                                 test_err!(channel.send_commitment());
277                         },
278                         2 => {
279                                 let update_add_htlc = decode_msg!(msgs::UpdateAddHTLC, 32+8+8+32+4+4+33+20*65+32);
280                                 test_err!(channel.update_add_htlc(&update_add_htlc, PendingForwardHTLCInfo::dummy()));
281                         },
282                         3 => {
283                                 let update_fulfill_htlc = decode_msg!(msgs::UpdateFulfillHTLC, 32 + 8 + 32);
284                                 test_err!(channel.update_fulfill_htlc(&update_fulfill_htlc));
285                         },
286                         4 => {
287                                 let update_fail_htlc = decode_msg_with_len16!(msgs::UpdateFailHTLC, 32 + 8, 1);
288                                 test_err!(channel.update_fail_htlc(&update_fail_htlc, HTLCFailReason::dummy()));
289                         },
290                         5 => {
291                                 let update_fail_malformed_htlc = decode_msg!(msgs::UpdateFailMalformedHTLC, 32+8+32+2);
292                                 test_err!(channel.update_fail_malformed_htlc(&update_fail_malformed_htlc, HTLCFailReason::dummy()));
293                         },
294                         6 => {
295                                 let commitment_signed = decode_msg_with_len16!(msgs::CommitmentSigned, 32+64, 64);
296                                 test_err!(channel.commitment_signed(&commitment_signed));
297                         },
298                         7 => {
299                                 let revoke_and_ack = decode_msg!(msgs::RevokeAndACK, 32+32+33);
300                                 test_err!(channel.revoke_and_ack(&revoke_and_ack));
301                         },
302                         8 => {
303                                 let update_fee = decode_msg!(msgs::UpdateFee, 32+4);
304                                 test_err!(channel.update_fee(&fee_est, &update_fee));
305                         },
306                         9 => {
307                                 let shutdown = decode_msg_with_len16!(msgs::Shutdown, 32, 1);
308                                 test_err!(channel.shutdown(&fee_est, &shutdown));
309                                 if channel.is_shutdown() { return; }
310                         },
311                         10 => {
312                                 let closing_signed = decode_msg!(msgs::ClosingSigned, 32+8+64);
313                                 let sign_res = test_err!(channel.closing_signed(&fee_est, &closing_signed));
314                                 if sign_res.is_some() && sign_res.unwrap().1.is_some() {
315                                         assert!(channel.is_shutdown());
316                                         return;
317                                 }
318                         },
319                         _ => return,
320                 }
321         }
322 }
323
324 #[cfg(feature = "afl")]
325 extern crate afl;
326 #[cfg(feature = "afl")]
327 fn main() {
328         afl::read_stdio_bytes(|data| {
329                 do_test(&data);
330         });
331 }
332
333 #[cfg(feature = "honggfuzz")]
334 #[macro_use] extern crate honggfuzz;
335 #[cfg(feature = "honggfuzz")]
336 fn main() {
337         loop {
338                 fuzz!(|data| {
339                         do_test(data);
340                 });
341         }
342 }
343
344 extern crate hex;
345 #[cfg(test)]
346 mod tests {
347         #[test]
348         fn duplicate_crash() {
349                 super::do_test(&::hex::decode("00").unwrap());
350         }
351 }