|
| 1 | +use std::sync::Arc; |
| 2 | + |
| 3 | +use bitcoin::{ |
| 4 | + key::Secp256k1, |
| 5 | + secp256k1::{PublicKey, SecretKey}, |
| 6 | +}; |
| 7 | +use lightning::{ |
| 8 | + blinded_path::BlindedHop, |
| 9 | + ln::{ |
| 10 | + channelmanager::{HTLCSource, PaymentId}, |
| 11 | + msgs::OnionErrorPacket, |
| 12 | + }, |
| 13 | + routing::router::{BlindedTail, Path, RouteHop, TrampolineHop}, |
| 14 | + types::features::{ChannelFeatures, NodeFeatures}, |
| 15 | + util::logger::Logger, |
| 16 | +}; |
| 17 | + |
| 18 | +// Imports that need to be added manually |
| 19 | +use crate::utils::test_logger::{self}; |
| 20 | + |
| 21 | +/// Actual fuzz test, method signature and name are fixed |
| 22 | +fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) { |
| 23 | + let mut read_pos = 0; |
| 24 | + macro_rules! get_slice { |
| 25 | + ($len: expr) => {{ |
| 26 | + let slice_len = $len as usize; |
| 27 | + if data.len() < read_pos + slice_len { |
| 28 | + return; |
| 29 | + } |
| 30 | + read_pos += slice_len; |
| 31 | + &data[read_pos - slice_len..read_pos] |
| 32 | + }}; |
| 33 | + } |
| 34 | + |
| 35 | + macro_rules! get_u8 { |
| 36 | + () => { |
| 37 | + get_slice!(1)[0] |
| 38 | + }; |
| 39 | + } |
| 40 | + |
| 41 | + macro_rules! get_u16 { |
| 42 | + () => { |
| 43 | + match get_slice!(2).try_into() { |
| 44 | + Ok(val) => u16::from_be_bytes(val), |
| 45 | + Err(_) => return, |
| 46 | + } |
| 47 | + }; |
| 48 | + } |
| 49 | + |
| 50 | + macro_rules! get_u32 { |
| 51 | + () => { |
| 52 | + match get_slice!(4).try_into() { |
| 53 | + Ok(val) => u32::from_be_bytes(val), |
| 54 | + Err(_) => return, |
| 55 | + } |
| 56 | + }; |
| 57 | + } |
| 58 | + |
| 59 | + macro_rules! get_u64 { |
| 60 | + () => { |
| 61 | + match get_slice!(8).try_into() { |
| 62 | + Ok(val) => u64::from_be_bytes(val), |
| 63 | + Err(_) => return, |
| 64 | + } |
| 65 | + }; |
| 66 | + } |
| 67 | + |
| 68 | + macro_rules! get_bool { |
| 69 | + () => { |
| 70 | + get_slice!(1)[0] != 0 |
| 71 | + }; |
| 72 | + } |
| 73 | + |
| 74 | + macro_rules! get_pubkey { |
| 75 | + () => { |
| 76 | + match PublicKey::from_slice(get_slice!(33)) { |
| 77 | + Ok(val) => val, |
| 78 | + Err(_) => return, |
| 79 | + } |
| 80 | + }; |
| 81 | + } |
| 82 | + |
| 83 | + let secp_ctx = Secp256k1::new(); |
| 84 | + let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new("".to_owned(), out)); |
| 85 | + |
| 86 | + let session_priv = match SecretKey::from_slice(get_slice!(32)) { |
| 87 | + Ok(val) => val, |
| 88 | + Err(_) => return, |
| 89 | + }; |
| 90 | + |
| 91 | + let payment_id = match get_slice!(32).try_into() { |
| 92 | + Ok(val) => PaymentId(val), |
| 93 | + Err(_) => return, |
| 94 | + }; |
| 95 | + |
| 96 | + let mut hops = Vec::<RouteHop>::new(); |
| 97 | + let hop_count = get_slice!(1)[0] as usize; |
| 98 | + for _ in 0..hop_count { |
| 99 | + hops.push(RouteHop { |
| 100 | + pubkey: get_pubkey!(), |
| 101 | + node_features: NodeFeatures::empty(), |
| 102 | + short_channel_id: get_u64!(), |
| 103 | + channel_features: ChannelFeatures::empty(), |
| 104 | + fee_msat: get_u64!(), |
| 105 | + cltv_expiry_delta: get_u32!(), |
| 106 | + maybe_announced_channel: get_bool!(), |
| 107 | + }); |
| 108 | + } |
| 109 | + |
| 110 | + let blinded_tail = match get_bool!() { |
| 111 | + true => { |
| 112 | + let mut trampoline_hops = Vec::<TrampolineHop>::new(); |
| 113 | + let trampoline_hop_count = get_slice!(1)[0] as usize; |
| 114 | + for _ in 0..trampoline_hop_count { |
| 115 | + trampoline_hops.push(TrampolineHop { |
| 116 | + pubkey: get_pubkey!(), |
| 117 | + node_features: NodeFeatures::empty(), |
| 118 | + fee_msat: get_u64!(), |
| 119 | + cltv_expiry_delta: get_u32!(), |
| 120 | + }); |
| 121 | + } |
| 122 | + let mut blinded_hops = Vec::<BlindedHop>::new(); |
| 123 | + let blinded_hop_count = get_slice!(1)[0] as usize; |
| 124 | + for _ in 0..blinded_hop_count { |
| 125 | + blinded_hops.push(BlindedHop { |
| 126 | + blinded_node_id: get_pubkey!(), |
| 127 | + encrypted_payload: get_slice!(get_u8!()).to_vec(), |
| 128 | + }); |
| 129 | + } |
| 130 | + Some(BlindedTail { |
| 131 | + trampoline_hops, |
| 132 | + hops: blinded_hops, |
| 133 | + blinding_point: get_pubkey!(), |
| 134 | + excess_final_cltv_expiry_delta: get_u32!(), |
| 135 | + final_value_msat: get_u64!(), |
| 136 | + }) |
| 137 | + }, |
| 138 | + false => None, |
| 139 | + }; |
| 140 | + |
| 141 | + let path = Path { hops, blinded_tail }; |
| 142 | + |
| 143 | + let htlc_source = HTLCSource::OutboundRoute { |
| 144 | + path, |
| 145 | + session_priv, |
| 146 | + first_hop_htlc_msat: get_u64!(), |
| 147 | + payment_id, |
| 148 | + }; |
| 149 | + |
| 150 | + let failure_len = get_u16!(); |
| 151 | + let encrypted_packet = OnionErrorPacket { data: get_slice!(failure_len).into() }; |
| 152 | + |
| 153 | + lightning::ln::process_onion_failure(&secp_ctx, &logger, &htlc_source, encrypted_packet); |
| 154 | +} |
| 155 | + |
| 156 | +/// Method that needs to be added manually, {name}_test |
| 157 | +pub fn process_onion_failure_test<Out: test_logger::Output>(data: &[u8], out: Out) { |
| 158 | + do_test(data, out); |
| 159 | +} |
| 160 | + |
| 161 | +/// Method that needs to be added manually, {name}_run |
| 162 | +#[no_mangle] |
| 163 | +pub extern "C" fn process_onion_failure_run(data: *const u8, datalen: usize) { |
| 164 | + do_test(unsafe { std::slice::from_raw_parts(data, datalen) }, test_logger::DevNull {}); |
| 165 | +} |
0 commit comments