2018-07-25 15:28:25 -04:00
|
|
|
extern crate bitcoin;
|
|
|
|
extern crate lightning;
|
|
|
|
extern crate secp256k1;
|
|
|
|
|
2018-08-31 17:06:30 +00:00
|
|
|
use bitcoin::util::hash::Sha256dHash;
|
|
|
|
use bitcoin::blockdata::script::{Script, Builder};
|
|
|
|
use bitcoin::blockdata::opcodes;
|
2018-08-30 01:37:37 +00:00
|
|
|
|
2018-08-31 17:06:30 +00:00
|
|
|
use lightning::chain::chaininterface::{ChainError,ChainWatchInterface, ChainListener};
|
2018-07-25 15:28:25 -04:00
|
|
|
use lightning::ln::channelmanager::ChannelDetails;
|
|
|
|
use lightning::ln::msgs;
|
|
|
|
use lightning::ln::msgs::{MsgDecodable, RoutingMessageHandler};
|
|
|
|
use lightning::ln::router::{Router, RouteHint};
|
|
|
|
use lightning::util::reset_rng_state;
|
2018-07-25 02:34:51 +00:00
|
|
|
use lightning::util::logger::Logger;
|
2018-07-25 15:28:25 -04:00
|
|
|
|
|
|
|
use secp256k1::key::PublicKey;
|
|
|
|
use secp256k1::Secp256k1;
|
|
|
|
|
2018-07-25 02:34:51 +00:00
|
|
|
mod utils;
|
|
|
|
|
|
|
|
use utils::test_logger;
|
|
|
|
|
2018-08-31 17:06:30 +00:00
|
|
|
use std::sync::{Weak, Arc};
|
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
2018-07-25 02:34:51 +00:00
|
|
|
|
2018-07-25 15:28:25 -04:00
|
|
|
#[inline]
|
|
|
|
pub fn slice_to_be16(v: &[u8]) -> u16 {
|
|
|
|
((v[0] as u16) << 8*1) |
|
|
|
|
((v[1] as u16) << 8*0)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn slice_to_be32(v: &[u8]) -> u32 {
|
|
|
|
((v[0] as u32) << 8*3) |
|
|
|
|
((v[1] as u32) << 8*2) |
|
|
|
|
((v[2] as u32) << 8*1) |
|
|
|
|
((v[3] as u32) << 8*0)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn slice_to_be64(v: &[u8]) -> u64 {
|
|
|
|
((v[0] as u64) << 8*7) |
|
|
|
|
((v[1] as u64) << 8*6) |
|
|
|
|
((v[2] as u64) << 8*5) |
|
|
|
|
((v[3] as u64) << 8*4) |
|
|
|
|
((v[4] as u64) << 8*3) |
|
|
|
|
((v[5] as u64) << 8*2) |
|
|
|
|
((v[6] as u64) << 8*1) |
|
|
|
|
((v[7] as u64) << 8*0)
|
|
|
|
}
|
|
|
|
|
2018-08-31 17:06:30 +00:00
|
|
|
|
|
|
|
struct InputData {
|
|
|
|
data: Vec<u8>,
|
|
|
|
read_pos: AtomicUsize,
|
|
|
|
}
|
|
|
|
impl InputData {
|
|
|
|
fn get_slice(&self, len: usize) -> Option<&[u8]> {
|
|
|
|
let old_pos = self.read_pos.fetch_add(len, Ordering::AcqRel);
|
|
|
|
if self.data.len() < old_pos + len {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
Some(&self.data[old_pos..old_pos + len])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct DummyChainWatcher {
|
|
|
|
input: Arc<InputData>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ChainWatchInterface for DummyChainWatcher {
|
|
|
|
fn install_watch_script(&self, _script_pub_key: &Script) {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn install_watch_outpoint(&self, _outpoint: (Sha256dHash, u32), _out_script: &Script) {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn watch_all_txn(&self) {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn register_listener(&self, _listener: Weak<ChainListener>) {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_chain_utxo(&self, _genesis_hash: Sha256dHash, _unspent_tx_output_identifier: u64) -> Result<(Script, u64), ChainError> {
|
|
|
|
match self.input.get_slice(1) {
|
|
|
|
Some(slice) => Ok((Builder::new().push_opcode(opcodes::All::OP_PUSHBYTES_0).into_script().to_v0_p2wsh(), 0)),
|
|
|
|
None => Err(ChainError::UnknownTx),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-25 15:28:25 -04:00
|
|
|
#[inline]
|
|
|
|
pub fn do_test(data: &[u8]) {
|
|
|
|
reset_rng_state();
|
|
|
|
|
|
|
|
let mut read_pos = 0;
|
|
|
|
macro_rules! get_slice_nonadvancing {
|
|
|
|
($len: expr) => {
|
|
|
|
{
|
|
|
|
if data.len() < read_pos + $len as usize {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
&data[read_pos..read_pos + $len as usize]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
macro_rules! get_slice {
|
|
|
|
($len: expr) => {
|
|
|
|
{
|
|
|
|
let res = get_slice_nonadvancing!($len);
|
|
|
|
read_pos += $len;
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! decode_msg {
|
|
|
|
($MsgType: path, $len: expr) => {
|
|
|
|
match <($MsgType)>::decode(get_slice!($len)) {
|
|
|
|
Ok(msg) => msg,
|
|
|
|
Err(e) => match e {
|
|
|
|
msgs::DecodeError::UnknownRealmByte => return,
|
2018-08-29 17:52:26 -04:00
|
|
|
msgs::DecodeError::UnknownRequiredFeature => return,
|
2018-07-25 15:28:25 -04:00
|
|
|
msgs::DecodeError::BadPublicKey => return,
|
|
|
|
msgs::DecodeError::BadSignature => return,
|
|
|
|
msgs::DecodeError::BadText => return,
|
|
|
|
msgs::DecodeError::ExtraAddressesPerType => return,
|
|
|
|
msgs::DecodeError::BadLengthDescriptor => return,
|
|
|
|
msgs::DecodeError::ShortRead => panic!("We picked the length..."),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! decode_msg_with_len16 {
|
|
|
|
($MsgType: path, $begin_len: expr, $excess: expr) => {
|
|
|
|
{
|
|
|
|
let extra_len = slice_to_be16(&get_slice_nonadvancing!($begin_len as usize + 2)[$begin_len..$begin_len + 2]);
|
|
|
|
decode_msg!($MsgType, $begin_len as usize + 2 + (extra_len as usize) + $excess)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let secp_ctx = Secp256k1::new();
|
|
|
|
macro_rules! get_pubkey {
|
|
|
|
() => {
|
|
|
|
match PublicKey::from_slice(&secp_ctx, get_slice!(33)) {
|
|
|
|
Ok(key) => key,
|
|
|
|
Err(_) => return,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-16 21:25:56 -04:00
|
|
|
let logger: Arc<Logger> = Arc::new(test_logger::TestLogger{});
|
2018-08-31 17:06:30 +00:00
|
|
|
let input = Arc::new(InputData {
|
|
|
|
data: data.to_vec(),
|
|
|
|
read_pos: AtomicUsize::new(0),
|
|
|
|
});
|
|
|
|
let chain_monitor = Arc::new(DummyChainWatcher {
|
|
|
|
input: input,
|
|
|
|
});
|
2018-07-25 02:34:51 +00:00
|
|
|
|
2018-07-25 15:28:25 -04:00
|
|
|
let our_pubkey = get_pubkey!();
|
2018-08-30 01:37:37 +00:00
|
|
|
let router = Router::new(our_pubkey.clone(), chain_monitor, Arc::clone(&logger));
|
2018-07-25 15:28:25 -04:00
|
|
|
|
|
|
|
loop {
|
|
|
|
match get_slice!(1)[0] {
|
|
|
|
0 => {
|
|
|
|
let start_len = slice_to_be16(&get_slice_nonadvancing!(64 + 2)[64..64 + 2]) as usize;
|
|
|
|
let addr_len = slice_to_be16(&get_slice_nonadvancing!(64+start_len+2 + 74)[64+start_len+2 + 72..64+start_len+2 + 74]);
|
|
|
|
if addr_len > (37+1)*4 {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let _ = router.handle_node_announcement(&decode_msg_with_len16!(msgs::NodeAnnouncement, 64, 288));
|
|
|
|
},
|
|
|
|
1 => {
|
|
|
|
let _ = router.handle_channel_announcement(&decode_msg_with_len16!(msgs::ChannelAnnouncement, 64*4, 32+8+33*4));
|
|
|
|
},
|
|
|
|
2 => {
|
|
|
|
let _ = router.handle_channel_update(&decode_msg!(msgs::ChannelUpdate, 128));
|
|
|
|
},
|
|
|
|
3 => {
|
|
|
|
match get_slice!(1)[0] {
|
|
|
|
0 => {
|
|
|
|
router.handle_htlc_fail_channel_update(&msgs::HTLCFailChannelUpdate::ChannelUpdateMessage {msg: decode_msg!(msgs::ChannelUpdate, 128)});
|
|
|
|
},
|
|
|
|
1 => {
|
|
|
|
let short_channel_id = slice_to_be64(get_slice!(8));
|
|
|
|
router.handle_htlc_fail_channel_update(&msgs::HTLCFailChannelUpdate::ChannelClosed {short_channel_id});
|
|
|
|
},
|
|
|
|
_ => return,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
4 => {
|
|
|
|
let target = get_pubkey!();
|
|
|
|
let mut first_hops_vec = Vec::new();
|
|
|
|
let first_hops = match get_slice!(1)[0] {
|
|
|
|
0 => None,
|
|
|
|
1 => {
|
|
|
|
let count = slice_to_be16(get_slice!(2));
|
|
|
|
for _ in 0..count {
|
|
|
|
first_hops_vec.push(ChannelDetails {
|
|
|
|
channel_id: [0; 32],
|
|
|
|
short_channel_id: Some(slice_to_be64(get_slice!(8))),
|
|
|
|
remote_network_id: get_pubkey!(),
|
|
|
|
channel_value_satoshis: slice_to_be64(get_slice!(8)),
|
|
|
|
user_id: 0,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
Some(&first_hops_vec[..])
|
|
|
|
},
|
|
|
|
_ => return,
|
|
|
|
};
|
|
|
|
let mut last_hops_vec = Vec::new();
|
|
|
|
let last_hops = {
|
|
|
|
let count = slice_to_be16(get_slice!(2));
|
|
|
|
for _ in 0..count {
|
|
|
|
last_hops_vec.push(RouteHint {
|
|
|
|
src_node_id: get_pubkey!(),
|
|
|
|
short_channel_id: slice_to_be64(get_slice!(8)),
|
2018-08-15 15:50:14 -04:00
|
|
|
fee_base_msat: slice_to_be32(get_slice!(4)),
|
2018-07-25 15:28:25 -04:00
|
|
|
fee_proportional_millionths: slice_to_be32(get_slice!(4)),
|
|
|
|
cltv_expiry_delta: slice_to_be16(get_slice!(2)),
|
|
|
|
htlc_minimum_msat: slice_to_be64(get_slice!(8)),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
&last_hops_vec[..]
|
|
|
|
};
|
|
|
|
let _ = router.get_route(&target, first_hops, last_hops, slice_to_be64(get_slice!(8)), slice_to_be32(get_slice!(4)));
|
|
|
|
},
|
|
|
|
_ => return,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "afl")]
|
2018-08-16 14:20:34 -04:00
|
|
|
#[macro_use] extern crate afl;
|
2018-07-25 15:28:25 -04:00
|
|
|
#[cfg(feature = "afl")]
|
|
|
|
fn main() {
|
2018-08-16 14:20:34 -04:00
|
|
|
fuzz!(|data| {
|
|
|
|
do_test(data);
|
2018-07-25 15:28:25 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "honggfuzz")]
|
|
|
|
#[macro_use] extern crate honggfuzz;
|
|
|
|
#[cfg(feature = "honggfuzz")]
|
|
|
|
fn main() {
|
|
|
|
loop {
|
|
|
|
fuzz!(|data| {
|
|
|
|
do_test(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 09:44:15 -07:00
|
|
|
extern crate hex;
|
2018-07-25 15:28:25 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn duplicate_crash() {
|
2018-07-28 09:44:15 -07:00
|
|
|
super::do_test(&::hex::decode("00").unwrap());
|
2018-07-25 15:28:25 -04:00
|
|
|
}
|
|
|
|
}
|