Move router to a separate module
[rust-lightning] / fuzz / src / router.rs
1 use bitcoin::blockdata::script::{Script, Builder};
2 use bitcoin::blockdata::block::Block;
3 use bitcoin::blockdata::transaction::Transaction;
4 use bitcoin::hash_types::{Txid, BlockHash};
5
6 use lightning::chain::chaininterface::{ChainError,ChainWatchInterface};
7 use lightning::ln::channelmanager::ChannelDetails;
8 use lightning::ln::features::InitFeatures;
9 use lightning::ln::msgs;
10 use lightning::ln::msgs::RoutingMessageHandler;
11 use lightning::routing::router::{Router, RouteHint};
12 use lightning::util::logger::Logger;
13 use lightning::util::ser::Readable;
14
15 use bitcoin::secp256k1::key::PublicKey;
16
17 use utils::test_logger;
18
19 use std::sync::Arc;
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
49 struct InputData {
50         data: Vec<u8>,
51         read_pos: AtomicUsize,
52 }
53 impl InputData {
54         fn get_slice(&self, len: usize) -> Option<&[u8]> {
55                 let old_pos = self.read_pos.fetch_add(len, Ordering::AcqRel);
56                 if self.data.len() < old_pos + len {
57                         return None;
58                 }
59                 Some(&self.data[old_pos..old_pos + len])
60         }
61         fn get_slice_nonadvancing(&self, len: usize) -> Option<&[u8]> {
62                 let old_pos = self.read_pos.load(Ordering::Acquire);
63                 if self.data.len() < old_pos + len {
64                         return None;
65                 }
66                 Some(&self.data[old_pos..old_pos + len])
67         }
68 }
69
70 struct DummyChainWatcher {
71         input: Arc<InputData>,
72 }
73
74 impl ChainWatchInterface for DummyChainWatcher {
75         fn install_watch_tx(&self, _txid: &Txid, _script_pub_key: &Script) { }
76         fn install_watch_outpoint(&self, _outpoint: (Txid, u32), _out_script: &Script) { }
77         fn watch_all_txn(&self) { }
78         fn filter_block<'a>(&self, _block: &'a Block) -> (Vec<&'a Transaction>, Vec<u32>) {
79                 (Vec::new(), Vec::new())
80         }
81         fn reentered(&self) -> usize { 0 }
82
83         fn get_chain_utxo(&self, _genesis_hash: BlockHash, _unspent_tx_output_identifier: u64) -> Result<(Script, u64), ChainError> {
84                 match self.input.get_slice(2) {
85                         Some(&[0, _]) => Err(ChainError::NotSupported),
86                         Some(&[1, _]) => Err(ChainError::NotWatched),
87                         Some(&[2, _]) => Err(ChainError::UnknownTx),
88                         Some(&[_, x]) => Ok((Builder::new().push_int(x as i64).into_script().to_v0_p2wsh(), 0)),
89                         None => Err(ChainError::UnknownTx),
90                         _ => unreachable!(),
91                 }
92         }
93 }
94
95 #[inline]
96 pub fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) {
97         let input = Arc::new(InputData {
98                 data: data.to_vec(),
99                 read_pos: AtomicUsize::new(0),
100         });
101         macro_rules! get_slice_nonadvancing {
102                 ($len: expr) => {
103                         match input.get_slice_nonadvancing($len as usize) {
104                                 Some(slice) => slice,
105                                 None => return,
106                         }
107                 }
108         }
109         macro_rules! get_slice {
110                 ($len: expr) => {
111                         match input.get_slice($len as usize) {
112                                 Some(slice) => slice,
113                                 None => return,
114                         }
115                 }
116         }
117
118         macro_rules! decode_msg {
119                 ($MsgType: path, $len: expr) => {{
120                         let mut reader = ::std::io::Cursor::new(get_slice!($len));
121                         match <$MsgType>::read(&mut reader) {
122                                 Ok(msg) => msg,
123                                 Err(e) => match e {
124                                         msgs::DecodeError::UnknownVersion => return,
125                                         msgs::DecodeError::UnknownRequiredFeature => return,
126                                         msgs::DecodeError::InvalidValue => return,
127                                         msgs::DecodeError::BadLengthDescriptor => return,
128                                         msgs::DecodeError::ShortRead => panic!("We picked the length..."),
129                                         msgs::DecodeError::Io(e) => panic!(format!("{}", e)),
130                                 }
131                         }
132                 }}
133         }
134
135         macro_rules! decode_msg_with_len16 {
136                 ($MsgType: path, $begin_len: expr, $excess: expr) => {
137                         {
138                                 let extra_len = slice_to_be16(&get_slice_nonadvancing!($begin_len as usize + 2)[$begin_len..$begin_len + 2]);
139                                 decode_msg!($MsgType, $begin_len as usize + 2 + (extra_len as usize) + $excess)
140                         }
141                 }
142         }
143
144         macro_rules! get_pubkey {
145                 () => {
146                         match PublicKey::from_slice(get_slice!(33)) {
147                                 Ok(key) => key,
148                                 Err(_) => return,
149                         }
150                 }
151         }
152
153         let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new("".to_owned(), out));
154         let chain_monitor = Arc::new(DummyChainWatcher {
155                 input: Arc::clone(&input),
156         });
157
158         let our_pubkey = get_pubkey!();
159         let router = Router::new(our_pubkey.clone(), chain_monitor, Arc::clone(&logger));
160
161         loop {
162                 match get_slice!(1)[0] {
163                         0 => {
164                                 let start_len = slice_to_be16(&get_slice_nonadvancing!(64 + 2)[64..64 + 2]) as usize;
165                                 let addr_len = slice_to_be16(&get_slice_nonadvancing!(64+start_len+2 + 74)[64+start_len+2 + 72..64+start_len+2 + 74]);
166                                 if addr_len > (37+1)*4 {
167                                         return;
168                                 }
169                                 let _ = router.handle_node_announcement(&decode_msg_with_len16!(msgs::NodeAnnouncement, 64, 288));
170                         },
171                         1 => {
172                                 let _ = router.handle_channel_announcement(&decode_msg_with_len16!(msgs::ChannelAnnouncement, 64*4, 32+8+33*4));
173                         },
174                         2 => {
175                                 let _ = router.handle_channel_update(&decode_msg!(msgs::ChannelUpdate, 128));
176                         },
177                         3 => {
178                                 match get_slice!(1)[0] {
179                                         0 => {
180                                                 router.handle_htlc_fail_channel_update(&msgs::HTLCFailChannelUpdate::ChannelUpdateMessage {msg: decode_msg!(msgs::ChannelUpdate, 128)});
181                                         },
182                                         1 => {
183                                                 let short_channel_id = slice_to_be64(get_slice!(8));
184                                                 router.handle_htlc_fail_channel_update(&msgs::HTLCFailChannelUpdate::ChannelClosed {short_channel_id, is_permanent: false});
185                                         },
186                                         _ => return,
187                                 }
188                         },
189                         4 => {
190                                 let target = get_pubkey!();
191                                 let mut first_hops_vec = Vec::new();
192                                 let first_hops = match get_slice!(1)[0] {
193                                         0 => None,
194                                         1 => {
195                                                 let count = slice_to_be16(get_slice!(2));
196                                                 for _ in 0..count {
197                                                         first_hops_vec.push(ChannelDetails {
198                                                                 channel_id: [0; 32],
199                                                                 short_channel_id: Some(slice_to_be64(get_slice!(8))),
200                                                                 remote_network_id: get_pubkey!(),
201                                                                 counterparty_features: InitFeatures::empty(),
202                                                                 channel_value_satoshis: slice_to_be64(get_slice!(8)),
203                                                                 user_id: 0,
204                                                                 inbound_capacity_msat: 0,
205                                                                 is_live: true,
206                                                                 outbound_capacity_msat: 0,
207                                                         });
208                                                 }
209                                                 Some(&first_hops_vec[..])
210                                         },
211                                         _ => return,
212                                 };
213                                 let mut last_hops_vec = Vec::new();
214                                 let last_hops = {
215                                         let count = slice_to_be16(get_slice!(2));
216                                         for _ in 0..count {
217                                                 last_hops_vec.push(RouteHint {
218                                                         src_node_id: get_pubkey!(),
219                                                         short_channel_id: slice_to_be64(get_slice!(8)),
220                                                         fee_base_msat: slice_to_be32(get_slice!(4)),
221                                                         fee_proportional_millionths: slice_to_be32(get_slice!(4)),
222                                                         cltv_expiry_delta: slice_to_be16(get_slice!(2)),
223                                                         htlc_minimum_msat: slice_to_be64(get_slice!(8)),
224                                                 });
225                                         }
226                                         &last_hops_vec[..]
227                                 };
228                                 let _ = router.get_route(&target, first_hops, last_hops, slice_to_be64(get_slice!(8)), slice_to_be32(get_slice!(4)));
229                         },
230                         _ => return,
231                 }
232         }
233 }
234
235 pub fn router_test<Out: test_logger::Output>(data: &[u8], out: Out) {
236         do_test(data, out);
237 }
238
239 #[no_mangle]
240 pub extern "C" fn router_run(data: *const u8, datalen: usize) {
241         do_test(unsafe { std::slice::from_raw_parts(data, datalen) }, test_logger::DevNull {});
242 }