1 // This file is Copyright its original authors, visible in version control
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
10 use bitcoin::blockdata::script::Builder;
11 use bitcoin::blockdata::transaction::TxOut;
12 use bitcoin::hash_types::BlockHash;
15 use lightning::chain::transaction::OutPoint;
16 use lightning::ln::channelmanager::ChannelDetails;
17 use lightning::ln::features::InitFeatures;
18 use lightning::ln::msgs;
19 use lightning::routing::router::{get_route, RouteHintHop};
20 use lightning::util::logger::Logger;
21 use lightning::util::ser::Readable;
22 use lightning::routing::network_graph::{NetworkGraph, RoutingFees};
24 use bitcoin::hashes::Hash;
25 use bitcoin::secp256k1::key::PublicKey;
26 use bitcoin::network::constants::Network;
27 use bitcoin::blockdata::constants::genesis_block;
29 use utils::test_logger;
31 use std::collections::HashSet;
33 use std::sync::atomic::{AtomicUsize, Ordering};
36 pub fn slice_to_be16(v: &[u8]) -> u16 {
37 ((v[0] as u16) << 8*1) |
38 ((v[1] as u16) << 8*0)
42 pub fn slice_to_be32(v: &[u8]) -> u32 {
43 ((v[0] as u32) << 8*3) |
44 ((v[1] as u32) << 8*2) |
45 ((v[2] as u32) << 8*1) |
46 ((v[3] as u32) << 8*0)
50 pub fn slice_to_be64(v: &[u8]) -> u64 {
51 ((v[0] as u64) << 8*7) |
52 ((v[1] as u64) << 8*6) |
53 ((v[2] as u64) << 8*5) |
54 ((v[3] as u64) << 8*4) |
55 ((v[4] as u64) << 8*3) |
56 ((v[5] as u64) << 8*2) |
57 ((v[6] as u64) << 8*1) |
58 ((v[7] as u64) << 8*0)
64 read_pos: AtomicUsize,
67 fn get_slice(&self, len: usize) -> Option<&[u8]> {
68 let old_pos = self.read_pos.fetch_add(len, Ordering::AcqRel);
69 if self.data.len() < old_pos + len {
72 Some(&self.data[old_pos..old_pos + len])
74 fn get_slice_nonadvancing(&self, len: usize) -> Option<&[u8]> {
75 let old_pos = self.read_pos.load(Ordering::Acquire);
76 if self.data.len() < old_pos + len {
79 Some(&self.data[old_pos..old_pos + len])
83 struct FuzzChainSource {
84 input: Arc<InputData>,
86 impl chain::Access for FuzzChainSource {
87 fn get_utxo(&self, _genesis_hash: &BlockHash, _short_channel_id: u64) -> Result<TxOut, chain::AccessError> {
88 match self.input.get_slice(2) {
89 Some(&[0, _]) => Err(chain::AccessError::UnknownChain),
90 Some(&[1, _]) => Err(chain::AccessError::UnknownTx),
91 Some(&[_, x]) => Ok(TxOut { value: 0, script_pubkey: Builder::new().push_int(x as i64).into_script().to_v0_p2wsh() }),
92 None => Err(chain::AccessError::UnknownTx),
99 pub fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) {
100 let input = Arc::new(InputData {
102 read_pos: AtomicUsize::new(0),
104 macro_rules! get_slice_nonadvancing {
106 match input.get_slice_nonadvancing($len as usize) {
107 Some(slice) => slice,
112 macro_rules! get_slice {
114 match input.get_slice($len as usize) {
115 Some(slice) => slice,
121 macro_rules! decode_msg {
122 ($MsgType: path, $len: expr) => {{
123 let mut reader = ::std::io::Cursor::new(get_slice!($len));
124 match <$MsgType>::read(&mut reader) {
126 assert_eq!(reader.position(), $len as u64);
130 msgs::DecodeError::UnknownVersion => return,
131 msgs::DecodeError::UnknownRequiredFeature => return,
132 msgs::DecodeError::InvalidValue => return,
133 msgs::DecodeError::BadLengthDescriptor => return,
134 msgs::DecodeError::ShortRead => panic!("We picked the length..."),
135 msgs::DecodeError::Io(e) => panic!("{:?}", e),
136 msgs::DecodeError::UnsupportedCompression => return,
142 macro_rules! decode_msg_with_len16 {
143 ($MsgType: path, $excess: expr) => {
145 let extra_len = slice_to_be16(get_slice_nonadvancing!(2));
146 decode_msg!($MsgType, 2 + (extra_len as usize) + $excess)
151 macro_rules! get_pubkey {
153 match PublicKey::from_slice(get_slice!(33)) {
160 let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new("".to_owned(), out));
162 let our_pubkey = get_pubkey!();
163 let mut net_graph = NetworkGraph::new(genesis_block(Network::Bitcoin).header.block_hash());
165 let mut node_pks = HashSet::new();
169 match get_slice!(1)[0] {
171 let start_len = slice_to_be16(&get_slice_nonadvancing!(2)[0..2]) as usize;
172 let addr_len = slice_to_be16(&get_slice_nonadvancing!(start_len+2 + 74)[start_len+2 + 72..start_len+2 + 74]);
173 if addr_len > (37+1)*4 {
176 let msg = decode_msg_with_len16!(msgs::UnsignedNodeAnnouncement, 288);
177 node_pks.insert(msg.node_id);
178 let _ = net_graph.update_node_from_unsigned_announcement(&msg);
181 let msg = decode_msg_with_len16!(msgs::UnsignedChannelAnnouncement, 32+8+33*4);
182 node_pks.insert(msg.node_id_1);
183 node_pks.insert(msg.node_id_2);
184 let _ = net_graph.update_channel_from_unsigned_announcement::<&FuzzChainSource>(&msg, &None);
187 let msg = decode_msg_with_len16!(msgs::UnsignedChannelAnnouncement, 32+8+33*4);
188 node_pks.insert(msg.node_id_1);
189 node_pks.insert(msg.node_id_2);
190 let _ = net_graph.update_channel_from_unsigned_announcement(&msg, &Some(&FuzzChainSource { input: Arc::clone(&input) }));
193 let _ = net_graph.update_channel_unsigned(&decode_msg!(msgs::UnsignedChannelUpdate, 72));
196 let short_channel_id = slice_to_be64(get_slice!(8));
197 net_graph.close_channel_from_update(short_channel_id, false);
199 _ if node_pks.is_empty() => {},
201 let mut first_hops_vec = Vec::new();
202 let first_hops = match get_slice!(1)[0] {
207 let rnid = node_pks.iter().skip(slice_to_be16(get_slice!(2))as usize % node_pks.len()).next().unwrap();
208 first_hops_vec.push(ChannelDetails {
210 funding_txo: Some(OutPoint { txid: bitcoin::Txid::from_slice(&[0; 32]).unwrap(), index: 0 }),
211 short_channel_id: Some(scid),
212 remote_network_id: *rnid,
213 counterparty_features: InitFeatures::known(),
214 channel_value_satoshis: slice_to_be64(get_slice!(8)),
216 inbound_capacity_msat: 0,
218 is_funding_locked: true,
221 outbound_capacity_msat: 0,
222 counterparty_forwarding_info: None,
225 Some(&first_hops_vec[..])
228 let mut last_hops_vec = Vec::new();
230 let count = get_slice!(1)[0];
233 let rnid = node_pks.iter().skip(slice_to_be16(get_slice!(2))as usize % node_pks.len()).next().unwrap();
234 last_hops_vec.push(RouteHintHop {
236 short_channel_id: scid,
238 base_msat: slice_to_be32(get_slice!(4)),
239 proportional_millionths: slice_to_be32(get_slice!(4)),
241 cltv_expiry_delta: slice_to_be16(get_slice!(2)),
242 htlc_minimum_msat: Some(slice_to_be64(get_slice!(8))),
243 htlc_maximum_msat: None,
247 let last_hops = &last_hops_vec[..];
248 for target in node_pks.iter() {
249 let _ = get_route(&our_pubkey, &net_graph, target, None,
250 first_hops.map(|c| c.iter().collect::<Vec<_>>()).as_ref().map(|a| a.as_slice()),
251 &last_hops.iter().collect::<Vec<_>>(),
252 slice_to_be64(get_slice!(8)), slice_to_be32(get_slice!(4)), Arc::clone(&logger));
259 pub fn router_test<Out: test_logger::Output>(data: &[u8], out: Out) {
264 pub extern "C" fn router_run(data: *const u8, datalen: usize) {
265 do_test(unsafe { std::slice::from_raw_parts(data, datalen) }, test_logger::DevNull {});