|
| 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_u16 { |
| 36 | + () => { |
| 37 | + match get_slice!(2).try_into() { |
| 38 | + Ok(val) => u16::from_be_bytes(val), |
| 39 | + Err(_) => return, |
| 40 | + } |
| 41 | + }; |
| 42 | + } |
| 43 | + |
| 44 | + macro_rules! get_bool { |
| 45 | + () => { |
| 46 | + get_slice!(1)[0] & 1 != 0 |
| 47 | + }; |
| 48 | + } |
| 49 | + |
| 50 | + fn usize_to_32_bytes(input: usize) -> [u8; 32] { |
| 51 | + let mut bytes = [0u8; 32]; |
| 52 | + let input_bytes = input.to_be_bytes(); |
| 53 | + bytes[..input_bytes.len()].copy_from_slice(&input_bytes); |
| 54 | + bytes |
| 55 | + } |
| 56 | + |
| 57 | + fn usize_to_pubkey(input: usize) -> PublicKey { |
| 58 | + let bytes = usize_to_32_bytes(1 + input); |
| 59 | + |
| 60 | + let secp_ctx = Secp256k1::new(); |
| 61 | + let secret_key = SecretKey::from_slice(&bytes).unwrap(); |
| 62 | + secret_key.public_key(&secp_ctx) |
| 63 | + } |
| 64 | + |
| 65 | + let secp_ctx = Secp256k1::new(); |
| 66 | + let logger: Arc<dyn Logger> = Arc::new(test_logger::TestLogger::new("".to_owned(), out)); |
| 67 | + |
| 68 | + let session_priv = SecretKey::from_slice(&usize_to_32_bytes(213127)).unwrap(); |
| 69 | + let payment_id = PaymentId(usize_to_32_bytes(232299)); |
| 70 | + |
| 71 | + let mut hops = Vec::<RouteHop>::new(); |
| 72 | + let hop_count = get_slice!(1)[0] as usize % 30; |
| 73 | + for i in 0..hop_count { |
| 74 | + hops.push(RouteHop { |
| 75 | + pubkey: usize_to_pubkey(i), |
| 76 | + node_features: NodeFeatures::empty(), |
| 77 | + short_channel_id: i as u64, |
| 78 | + channel_features: ChannelFeatures::empty(), |
| 79 | + fee_msat: 0, |
| 80 | + cltv_expiry_delta: 0, |
| 81 | + maybe_announced_channel: false, |
| 82 | + }); |
| 83 | + } |
| 84 | + |
| 85 | + let blinded_tail = if get_bool!() { |
| 86 | + let mut trampoline_hops = Vec::<TrampolineHop>::new(); |
| 87 | + let trampoline_hop_count = get_slice!(1)[0] as usize % 30; |
| 88 | + for i in 0..trampoline_hop_count { |
| 89 | + trampoline_hops.push(TrampolineHop { |
| 90 | + pubkey: usize_to_pubkey(1000 + i), |
| 91 | + node_features: NodeFeatures::empty(), |
| 92 | + fee_msat: 0, |
| 93 | + cltv_expiry_delta: 0, |
| 94 | + }); |
| 95 | + } |
| 96 | + let mut blinded_hops = Vec::<BlindedHop>::new(); |
| 97 | + let blinded_hop_count = get_slice!(1)[0] as usize % 30; |
| 98 | + for i in 0..blinded_hop_count { |
| 99 | + blinded_hops.push(BlindedHop { |
| 100 | + blinded_node_id: usize_to_pubkey(2000 + i), |
| 101 | + encrypted_payload: get_slice!(get_u16!()).to_vec(), |
| 102 | + }); |
| 103 | + } |
| 104 | + Some(BlindedTail { |
| 105 | + trampoline_hops, |
| 106 | + hops: blinded_hops, |
| 107 | + blinding_point: usize_to_pubkey(64354334), |
| 108 | + excess_final_cltv_expiry_delta: 0, |
| 109 | + final_value_msat: 0, |
| 110 | + }) |
| 111 | + } else { |
| 112 | + None |
| 113 | + }; |
| 114 | + |
| 115 | + let path = Path { hops, blinded_tail }; |
| 116 | + |
| 117 | + let htlc_source = |
| 118 | + HTLCSource::OutboundRoute { path, session_priv, first_hop_htlc_msat: 0, payment_id }; |
| 119 | + |
| 120 | + let failure_len = get_u16!(); |
| 121 | + let encrypted_packet = OnionErrorPacket { data: get_slice!(failure_len).into() }; |
| 122 | + |
| 123 | + lightning::ln::process_onion_failure(&secp_ctx, &logger, &htlc_source, encrypted_packet); |
| 124 | +} |
| 125 | + |
| 126 | +/// Method that needs to be added manually, {name}_test |
| 127 | +pub fn process_onion_failure_test<Out: test_logger::Output>(data: &[u8], out: Out) { |
| 128 | + do_test(data, out); |
| 129 | +} |
| 130 | + |
| 131 | +/// Method that needs to be added manually, {name}_run |
| 132 | +#[no_mangle] |
| 133 | +pub extern "C" fn process_onion_failure_run(data: *const u8, datalen: usize) { |
| 134 | + do_test(unsafe { std::slice::from_raw_parts(data, datalen) }, test_logger::DevNull {}); |
| 135 | +} |
0 commit comments