[fuzz] Make router_target a bit easier for fuzzers to explore
[rust-lightning] / fuzz / src / router.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 use bitcoin::blockdata::script::Builder;
11 use bitcoin::blockdata::transaction::TxOut;
12 use bitcoin::hash_types::BlockHash;
13
14 use bitcoin::secp256k1;
15
16 use lightning::chain;
17 use lightning::ln::channelmanager::ChannelDetails;
18 use lightning::ln::features::InitFeatures;
19 use lightning::ln::msgs;
20 use lightning::routing::router::{get_route, RouteHint};
21 use lightning::util::logger::Logger;
22 use lightning::util::ser::Readable;
23 use lightning::routing::network_graph::{NetworkGraph, RoutingFees};
24
25 use bitcoin::secp256k1::key::PublicKey;
26
27 use utils::test_logger;
28
29 use std::collections::HashSet;
30 use std::sync::Arc;
31 use std::sync::atomic::{AtomicUsize, Ordering};
32
33 #[inline]
34 pub fn slice_to_be16(v: &[u8]) -> u16 {
35         ((v[0] as u16) << 8*1) |
36         ((v[1] as u16) << 8*0)
37 }
38
39 #[inline]
40 pub fn slice_to_be32(v: &[u8]) -> u32 {
41         ((v[0] as u32) << 8*3) |
42         ((v[1] as u32) << 8*2) |
43         ((v[2] as u32) << 8*1) |
44         ((v[3] as u32) << 8*0)
45 }
46
47 #[inline]
48 pub fn slice_to_be64(v: &[u8]) -> u64 {
49         ((v[0] as u64) << 8*7) |
50         ((v[1] as u64) << 8*6) |
51         ((v[2] as u64) << 8*5) |
52         ((v[3] as u64) << 8*4) |
53         ((v[4] as u64) << 8*3) |
54         ((v[5] as u64) << 8*2) |
55         ((v[6] as u64) << 8*1) |
56         ((v[7] as u64) << 8*0)
57 }
58
59
60 struct InputData {
61         data: Vec<u8>,
62         read_pos: AtomicUsize,
63 }
64 impl InputData {
65         fn get_slice(&self, len: usize) -> Option<&[u8]> {
66                 let old_pos = self.read_pos.fetch_add(len, Ordering::AcqRel);
67                 if self.data.len() < old_pos + len {
68                         return None;
69                 }
70                 Some(&self.data[old_pos..old_pos + len])
71         }
72         fn get_slice_nonadvancing(&self, len: usize) -> Option<&[u8]> {
73                 let old_pos = self.read_pos.load(Ordering::Acquire);
74                 if self.data.len() < old_pos + len {
75                         return None;
76                 }
77                 Some(&self.data[old_pos..old_pos + len])
78         }
79 }
80
81 struct FuzzChainSource {
82         input: Arc<InputData>,
83 }
84 impl chain::Access for FuzzChainSource {
85         fn get_utxo(&self, _genesis_hash: &BlockHash, _short_channel_id: u64) -> Result<TxOut, chain::AccessError> {
86                 match self.input.get_slice(2) {
87                         Some(&[0, _]) => Err(chain::AccessError::UnknownChain),
88                         Some(&[1, _]) => Err(chain::AccessError::UnknownTx),
89                         Some(&[_, x]) => Ok(TxOut { value: 0, script_pubkey: Builder::new().push_int(x as i64).into_script().to_v0_p2wsh() }),
90                         None => Err(chain::AccessError::UnknownTx),
91                         _ => unreachable!(),
92                 }
93         }
94 }
95
96 #[inline]
97 pub fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) {
98         let input = Arc::new(InputData {
99                 data: data.to_vec(),
100                 read_pos: AtomicUsize::new(0),
101         });
102         macro_rules! get_slice_nonadvancing {
103                 ($len: expr) => {
104                         match input.get_slice_nonadvancing($len as usize) {
105                                 Some(slice) => slice,
106                                 None => return,
107                         }
108                 }
109         }
110         macro_rules! get_slice {
111                 ($len: expr) => {
112                         match input.get_slice($len as usize) {
113                                 Some(slice) => slice,
114                                 None => return,
115                         }
116                 }
117         }
118
119         macro_rules! decode_msg {
120                 ($MsgType: path, $len: expr) => {{
121                         let mut reader = ::std::io::Cursor::new(get_slice!($len));
122                         match <$MsgType>::read(&mut reader) {
123                                 Ok(msg) => msg,
124                                 Err(e) => match e {
125                                         msgs::DecodeError::UnknownVersion => return,
126                                         msgs::DecodeError::UnknownRequiredFeature => return,
127                                         msgs::DecodeError::InvalidValue => return,
128                                         msgs::DecodeError::BadLengthDescriptor => return,
129                                         msgs::DecodeError::ShortRead => panic!("We picked the length..."),
130                                         msgs::DecodeError::Io(e) => panic!(format!("{}", e)),
131                                 }
132                         }
133                 }}
134         }
135
136         macro_rules! decode_msg_with_len16 {
137                 ($MsgType: path, $begin_len: expr, $excess: expr) => {
138                         {
139                                 let extra_len = slice_to_be16(&get_slice_nonadvancing!($begin_len as usize + 2)[$begin_len..$begin_len + 2]);
140                                 decode_msg!($MsgType, $begin_len as usize + 2 + (extra_len as usize) + $excess)
141                         }
142                 }
143         }
144
145         macro_rules! get_pubkey {
146                 () => {
147                         match PublicKey::from_slice(get_slice!(33)) {
148                                 Ok(key) => key,
149                                 Err(_) => return,
150                         }
151                 }
152         }
153
154         let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new("".to_owned(), out));
155
156         let our_pubkey = get_pubkey!();
157         let mut net_graph = NetworkGraph::new();
158
159         let mut node_pks = HashSet::new();
160         let mut scid = 42;
161
162         loop {
163                 match get_slice!(1)[0] {
164                         0 => {
165                                 let start_len = slice_to_be16(&get_slice_nonadvancing!(64 + 2)[64..64 + 2]) as usize;
166                                 let addr_len = slice_to_be16(&get_slice_nonadvancing!(64+start_len+2 + 74)[64+start_len+2 + 72..64+start_len+2 + 74]);
167                                 if addr_len > (37+1)*4 {
168                                         return;
169                                 }
170                                 let msg = decode_msg_with_len16!(msgs::NodeAnnouncement, 64, 288);
171                                 node_pks.insert(msg.contents.node_id);
172                                 let _ = net_graph.update_node_from_announcement::<secp256k1::VerifyOnly>(&msg, None);
173                         },
174                         1 => {
175                                 let msg = decode_msg_with_len16!(msgs::ChannelAnnouncement, 64*4, 32+8+33*4);
176                                 node_pks.insert(msg.contents.node_id_1);
177                                 node_pks.insert(msg.contents.node_id_2);
178                                 let _ = net_graph.update_channel_from_announcement::<secp256k1::VerifyOnly>(&msg, None, None);
179                         },
180                         2 => {
181                                 let msg = decode_msg_with_len16!(msgs::ChannelAnnouncement, 64*4, 32+8+33*4);
182                                 node_pks.insert(msg.contents.node_id_1);
183                                 node_pks.insert(msg.contents.node_id_2);
184                                 let val = slice_to_be64(get_slice!(8));
185                                 let _ = net_graph.update_channel_from_announcement::<secp256k1::VerifyOnly>(&msg, Some(val), None);
186                         },
187                         3 => {
188                                 let _ = net_graph.update_channel(&decode_msg!(msgs::ChannelUpdate, 136), None);
189                         },
190                         4 => {
191                                 let short_channel_id = slice_to_be64(get_slice!(8));
192                                 net_graph.close_channel_from_update(short_channel_id, false);
193                         },
194                         _ if node_pks.is_empty() => {},
195                         _ => {
196                                 let mut first_hops_vec = Vec::new();
197                                 let first_hops = match get_slice!(1)[0] {
198                                         0 => None,
199                                         count => {
200                                                 for _ in 0..count {
201                                                         scid += 1;
202                                                         let rnid = node_pks.iter().skip(slice_to_be16(get_slice!(2))as usize % node_pks.len()).next().unwrap();
203                                                         first_hops_vec.push(ChannelDetails {
204                                                                 channel_id: [0; 32],
205                                                                 short_channel_id: Some(scid),
206                                                                 remote_network_id: *rnid,
207                                                                 counterparty_features: InitFeatures::known(),
208                                                                 channel_value_satoshis: slice_to_be64(get_slice!(8)),
209                                                                 user_id: 0,
210                                                                 inbound_capacity_msat: 0,
211                                                                 is_live: true,
212                                                                 outbound_capacity_msat: 0,
213                                                         });
214                                                 }
215                                                 Some(&first_hops_vec[..])
216                                         },
217                                 };
218                                 let mut last_hops_vec = Vec::new();
219                                 {
220                                         let count = get_slice!(1)[0];
221                                         for _ in 0..count {
222                                                 scid += 1;
223                                                 let rnid = node_pks.iter().skip(slice_to_be16(get_slice!(2))as usize % node_pks.len()).next().unwrap();
224                                                 last_hops_vec.push(RouteHint {
225                                                         src_node_id: *rnid,
226                                                         short_channel_id: scid,
227                                                         fees: RoutingFees {
228                                                                 base_msat: slice_to_be32(get_slice!(4)),
229                                                                 proportional_millionths: slice_to_be32(get_slice!(4)),
230                                                         },
231                                                         cltv_expiry_delta: slice_to_be16(get_slice!(2)),
232                                                         htlc_minimum_msat: slice_to_be64(get_slice!(8)),
233                                                 });
234                                         }
235                                 }
236                                 let last_hops = &last_hops_vec[..];
237                                 for target in node_pks.iter() {
238                                         let _ = get_route(&our_pubkey, &net_graph, target,
239                                                 first_hops.map(|c| c.iter().collect::<Vec<_>>()).as_ref().map(|a| a.as_slice()),
240                                                 &last_hops.iter().collect::<Vec<_>>(),
241                                                 slice_to_be64(get_slice!(8)), slice_to_be32(get_slice!(4)), Arc::clone(&logger));
242                                 }
243                         },
244                 }
245         }
246 }
247
248 pub fn router_test<Out: test_logger::Output>(data: &[u8], out: Out) {
249         do_test(data, out);
250 }
251
252 #[no_mangle]
253 pub extern "C" fn router_run(data: *const u8, datalen: usize) {
254         do_test(unsafe { std::slice::from_raw_parts(data, datalen) }, test_logger::DevNull {});
255 }