1use crate::blinded_path::BlindedHop;
11use crate::crypto::chacha20::ChaCha20;
12use crate::crypto::streams::ChaChaReader;
13use crate::ln::channel::TOTAL_BITCOIN_SUPPLY_SATOSHIS;
14use crate::ln::channelmanager::{HTLCSource, RecipientOnionFields};
15use crate::ln::msgs;
16use crate::offers::invoice_request::InvoiceRequest;
17use crate::routing::gossip::NetworkUpdate;
18use crate::routing::router::{Path, RouteHop, RouteParameters};
19use crate::sign::NodeSigner;
20use crate::types::features::{ChannelFeatures, NodeFeatures};
21use crate::types::payment::{PaymentHash, PaymentPreimage};
22use crate::util::errors::{self, APIError};
23use crate::util::logger::Logger;
24use crate::util::ser::{LengthCalculatingWriter, Readable, ReadableArgs, Writeable, Writer};
25
26use bitcoin::hashes::cmp::fixed_time_eq;
27use bitcoin::hashes::hmac::{Hmac, HmacEngine};
28use bitcoin::hashes::sha256::Hash as Sha256;
29use bitcoin::hashes::{Hash, HashEngine};
30
31use bitcoin::secp256k1;
32use bitcoin::secp256k1::ecdh::SharedSecret;
33use bitcoin::secp256k1::{PublicKey, Scalar, Secp256k1, SecretKey};
34
35use crate::io::{Cursor, Read};
36use core::ops::Deref;
37
38#[allow(unused_imports)]
39use crate::prelude::*;
40
41pub(crate) struct OnionKeys {
42 #[cfg(test)]
43 pub(crate) shared_secret: SharedSecret,
44 #[cfg(test)]
45 pub(crate) blinding_factor: [u8; 32],
46 pub(crate) ephemeral_pubkey: PublicKey,
47 pub(crate) rho: [u8; 32],
48 pub(crate) mu: [u8; 32],
49}
50
51#[inline]
52pub(crate) fn gen_rho_from_shared_secret(shared_secret: &[u8]) -> [u8; 32] {
53 assert_eq!(shared_secret.len(), 32);
54 let mut hmac = HmacEngine::<Sha256>::new(&[0x72, 0x68, 0x6f]); hmac.input(&shared_secret);
56 Hmac::from_engine(hmac).to_byte_array()
57}
58
59#[inline]
60pub(crate) fn gen_rho_mu_from_shared_secret(shared_secret: &[u8]) -> ([u8; 32], [u8; 32]) {
61 assert_eq!(shared_secret.len(), 32);
62 let mut engine_rho = HmacEngine::<Sha256>::new(b"rho");
63 engine_rho.input(&shared_secret);
64 let hmac_rho = Hmac::from_engine(engine_rho).to_byte_array();
65
66 let mut engine_mu = HmacEngine::<Sha256>::new(b"mu");
67 engine_mu.input(&shared_secret);
68 let hmac_mu = Hmac::from_engine(engine_mu).to_byte_array();
69
70 (hmac_rho, hmac_mu)
71}
72
73#[inline]
74pub(super) fn gen_um_from_shared_secret(shared_secret: &[u8]) -> [u8; 32] {
75 assert_eq!(shared_secret.len(), 32);
76 let mut hmac = HmacEngine::<Sha256>::new(&[0x75, 0x6d]); hmac.input(&shared_secret);
78 Hmac::from_engine(hmac).to_byte_array()
79}
80
81#[inline]
82pub(super) fn gen_ammag_from_shared_secret(shared_secret: &[u8]) -> [u8; 32] {
83 assert_eq!(shared_secret.len(), 32);
84 let mut hmac = HmacEngine::<Sha256>::new(&[0x61, 0x6d, 0x6d, 0x61, 0x67]); hmac.input(&shared_secret);
86 Hmac::from_engine(hmac).to_byte_array()
87}
88
89#[cfg(test)]
90#[inline]
91pub(super) fn gen_pad_from_shared_secret(shared_secret: &[u8]) -> [u8; 32] {
92 assert_eq!(shared_secret.len(), 32);
93 let mut hmac = HmacEngine::<Sha256>::new(&[0x70, 0x61, 0x64]); hmac.input(&shared_secret);
95 Hmac::from_engine(hmac).to_byte_array()
96}
97
98pub(crate) fn next_hop_pubkey<T: secp256k1::Verification>(
100 secp_ctx: &Secp256k1<T>, curr_pubkey: PublicKey, shared_secret: &[u8],
101) -> Result<PublicKey, secp256k1::Error> {
102 let blinding_factor = {
103 let mut sha = Sha256::engine();
104 sha.input(&curr_pubkey.serialize()[..]);
105 sha.input(shared_secret);
106 Sha256::from_engine(sha).to_byte_array()
107 };
108
109 curr_pubkey.mul_tweak(secp_ctx, &Scalar::from_be_bytes(blinding_factor).unwrap())
110}
111
112#[inline]
114pub(super) fn construct_onion_keys_callback<T, FType>(
115 secp_ctx: &Secp256k1<T>, path: &Path, session_priv: &SecretKey, mut callback: FType,
116) -> Result<(), secp256k1::Error>
117where
118 T: secp256k1::Signing,
119 FType: FnMut(SharedSecret, [u8; 32], PublicKey, Option<&RouteHop>, usize),
120{
121 let mut blinded_priv = session_priv.clone();
122 let mut blinded_pub = PublicKey::from_secret_key(secp_ctx, &blinded_priv);
123
124 let unblinded_hops_iter = path.hops.iter().map(|h| (&h.pubkey, Some(h)));
125 let blinded_pks_iter = path
126 .blinded_tail
127 .as_ref()
128 .map(|t| t.hops.iter())
129 .unwrap_or([].iter())
130 .skip(1) .map(|h| (&h.blinded_node_id, None));
132 for (idx, (pubkey, route_hop_opt)) in unblinded_hops_iter.chain(blinded_pks_iter).enumerate() {
133 let shared_secret = SharedSecret::new(pubkey, &blinded_priv);
134
135 let mut sha = Sha256::engine();
136 sha.input(&blinded_pub.serialize()[..]);
137 sha.input(shared_secret.as_ref());
138 let blinding_factor = Sha256::from_engine(sha).to_byte_array();
139
140 let ephemeral_pubkey = blinded_pub;
141
142 blinded_priv = blinded_priv.mul_tweak(&Scalar::from_be_bytes(blinding_factor).unwrap())?;
143 blinded_pub = PublicKey::from_secret_key(secp_ctx, &blinded_priv);
144
145 callback(shared_secret, blinding_factor, ephemeral_pubkey, route_hop_opt, idx);
146 }
147
148 Ok(())
149}
150
151pub(super) fn construct_onion_keys<T: secp256k1::Signing>(
153 secp_ctx: &Secp256k1<T>, path: &Path, session_priv: &SecretKey,
154) -> Result<Vec<OnionKeys>, secp256k1::Error> {
155 let mut res = Vec::with_capacity(path.hops.len());
156
157 construct_onion_keys_callback(
158 secp_ctx,
159 &path,
160 session_priv,
161 |shared_secret, _blinding_factor, ephemeral_pubkey, _, _| {
162 let (rho, mu) = gen_rho_mu_from_shared_secret(shared_secret.as_ref());
163
164 res.push(OnionKeys {
165 #[cfg(test)]
166 shared_secret,
167 #[cfg(test)]
168 blinding_factor: _blinding_factor,
169 ephemeral_pubkey,
170 rho,
171 mu,
172 });
173 },
174 )?;
175
176 Ok(res)
177}
178
179pub(super) fn build_onion_payloads<'a>(
181 path: &'a Path, total_msat: u64, recipient_onion: &'a RecipientOnionFields,
182 starting_htlc_offset: u32, keysend_preimage: &Option<PaymentPreimage>,
183 invoice_request: Option<&'a InvoiceRequest>,
184) -> Result<(Vec<msgs::OutboundOnionPayload<'a>>, u64, u32), APIError> {
185 let mut res: Vec<msgs::OutboundOnionPayload> = Vec::with_capacity(
186 path.hops.len() + path.blinded_tail.as_ref().map_or(0, |t| t.hops.len()),
187 );
188 let blinded_tail_with_hop_iter = path.blinded_tail.as_ref().map(|bt| BlindedTailHopIter {
189 hops: bt.hops.iter(),
190 blinding_point: bt.blinding_point,
191 final_value_msat: bt.final_value_msat,
192 excess_final_cltv_expiry_delta: bt.excess_final_cltv_expiry_delta,
193 });
194
195 let (value_msat, cltv) = build_onion_payloads_callback(
196 path.hops.iter(),
197 blinded_tail_with_hop_iter,
198 total_msat,
199 recipient_onion,
200 starting_htlc_offset,
201 keysend_preimage,
202 invoice_request,
203 |action, payload| match action {
204 PayloadCallbackAction::PushBack => res.push(payload),
205 PayloadCallbackAction::PushFront => res.insert(0, payload),
206 },
207 )?;
208 Ok((res, value_msat, cltv))
209}
210
211struct BlindedTailHopIter<'a, I: Iterator<Item = &'a BlindedHop>> {
212 hops: I,
213 blinding_point: PublicKey,
214 final_value_msat: u64,
215 excess_final_cltv_expiry_delta: u32,
216}
217enum PayloadCallbackAction {
218 PushBack,
219 PushFront,
220}
221fn build_onion_payloads_callback<'a, H, B, F>(
222 hops: H, mut blinded_tail: Option<BlindedTailHopIter<'a, B>>, total_msat: u64,
223 recipient_onion: &'a RecipientOnionFields, starting_htlc_offset: u32,
224 keysend_preimage: &Option<PaymentPreimage>, invoice_request: Option<&'a InvoiceRequest>,
225 mut callback: F,
226) -> Result<(u64, u32), APIError>
227where
228 H: DoubleEndedIterator<Item = &'a RouteHop>,
229 B: ExactSizeIterator<Item = &'a BlindedHop>,
230 F: FnMut(PayloadCallbackAction, msgs::OutboundOnionPayload<'a>),
231{
232 let mut cur_value_msat = 0u64;
233 let mut cur_cltv = starting_htlc_offset;
234 let mut last_short_channel_id = 0;
235
236 for (idx, hop) in hops.rev().enumerate() {
237 let value_msat = if cur_value_msat == 0 { hop.fee_msat } else { cur_value_msat };
241 let cltv = if cur_cltv == starting_htlc_offset {
242 hop.cltv_expiry_delta.saturating_add(starting_htlc_offset)
243 } else {
244 cur_cltv
245 };
246 if idx == 0 {
247 if let Some(BlindedTailHopIter {
248 blinding_point,
249 hops,
250 final_value_msat,
251 excess_final_cltv_expiry_delta,
252 ..
253 }) = blinded_tail.take()
254 {
255 let mut blinding_point = Some(blinding_point);
256 let hops_len = hops.len();
257 for (i, blinded_hop) in hops.enumerate() {
258 if i == hops_len - 1 {
259 cur_value_msat += final_value_msat;
260 callback(
261 PayloadCallbackAction::PushBack,
262 msgs::OutboundOnionPayload::BlindedReceive {
263 sender_intended_htlc_amt_msat: final_value_msat,
264 total_msat,
265 cltv_expiry_height: cur_cltv + excess_final_cltv_expiry_delta,
266 encrypted_tlvs: &blinded_hop.encrypted_payload,
267 intro_node_blinding_point: blinding_point.take(),
268 keysend_preimage: *keysend_preimage,
269 invoice_request,
270 custom_tlvs: &recipient_onion.custom_tlvs,
271 },
272 );
273 } else {
274 callback(
275 PayloadCallbackAction::PushBack,
276 msgs::OutboundOnionPayload::BlindedForward {
277 encrypted_tlvs: &blinded_hop.encrypted_payload,
278 intro_node_blinding_point: blinding_point.take(),
279 },
280 );
281 }
282 }
283 } else {
284 callback(
285 PayloadCallbackAction::PushBack,
286 msgs::OutboundOnionPayload::Receive {
287 payment_data: recipient_onion.payment_secret.map(|payment_secret| {
288 msgs::FinalOnionHopData { payment_secret, total_msat }
289 }),
290 payment_metadata: recipient_onion.payment_metadata.as_ref(),
291 keysend_preimage: *keysend_preimage,
292 custom_tlvs: &recipient_onion.custom_tlvs,
293 sender_intended_htlc_amt_msat: value_msat,
294 cltv_expiry_height: cltv,
295 },
296 );
297 }
298 } else {
299 let payload = msgs::OutboundOnionPayload::Forward {
300 short_channel_id: last_short_channel_id,
301 amt_to_forward: value_msat,
302 outgoing_cltv_value: cltv,
303 };
304 callback(PayloadCallbackAction::PushFront, payload);
305 }
306 cur_value_msat += hop.fee_msat;
307 if cur_value_msat >= 21000000 * 100000000 * 1000 {
308 return Err(APIError::InvalidRoute { err: "Channel fees overflowed?".to_owned() });
309 }
310 cur_cltv = cur_cltv.saturating_add(hop.cltv_expiry_delta as u32);
311 if cur_cltv >= 500000000 {
312 return Err(APIError::InvalidRoute { err: "Channel CLTV overflowed?".to_owned() });
313 }
314 last_short_channel_id = hop.short_channel_id;
315 }
316 Ok((cur_value_msat, cur_cltv))
317}
318
319pub(crate) const MIN_FINAL_VALUE_ESTIMATE_WITH_OVERPAY: u64 = 100_000_000;
320
321pub(crate) fn set_max_path_length(
322 route_params: &mut RouteParameters, recipient_onion: &RecipientOnionFields,
323 keysend_preimage: Option<PaymentPreimage>, invoice_request: Option<&InvoiceRequest>,
324 best_block_height: u32,
325) -> Result<(), ()> {
326 const PAYLOAD_HMAC_LEN: usize = 32;
327 let unblinded_intermed_payload_len = msgs::OutboundOnionPayload::Forward {
328 short_channel_id: 42,
329 amt_to_forward: TOTAL_BITCOIN_SUPPLY_SATOSHIS,
330 outgoing_cltv_value: route_params.payment_params.max_total_cltv_expiry_delta,
331 }
332 .serialized_length()
333 .saturating_add(PAYLOAD_HMAC_LEN);
334
335 const OVERPAY_ESTIMATE_MULTIPLER: u64 = 3;
336 let final_value_msat_with_overpay_buffer = route_params
337 .final_value_msat
338 .saturating_mul(OVERPAY_ESTIMATE_MULTIPLER)
339 .clamp(MIN_FINAL_VALUE_ESTIMATE_WITH_OVERPAY, 0x1000_0000);
340
341 let blinded_tail_opt = route_params
342 .payment_params
343 .payee
344 .blinded_route_hints()
345 .iter()
346 .max_by_key(|path| path.inner_blinded_path().serialized_length())
347 .map(|largest_path| BlindedTailHopIter {
348 hops: largest_path.blinded_hops().iter(),
349 blinding_point: largest_path.blinding_point(),
350 final_value_msat: final_value_msat_with_overpay_buffer,
351 excess_final_cltv_expiry_delta: 0,
352 });
353
354 let cltv_expiry_delta =
355 core::cmp::min(route_params.payment_params.max_total_cltv_expiry_delta, 0x1000_0000);
356 let unblinded_route_hop = RouteHop {
357 pubkey: PublicKey::from_slice(&[2; 33]).unwrap(),
358 node_features: NodeFeatures::empty(),
359 short_channel_id: 42,
360 channel_features: ChannelFeatures::empty(),
361 fee_msat: final_value_msat_with_overpay_buffer,
362 cltv_expiry_delta,
363 maybe_announced_channel: false,
364 };
365 let mut num_reserved_bytes: usize = 0;
366 let build_payloads_res = build_onion_payloads_callback(
367 core::iter::once(&unblinded_route_hop),
368 blinded_tail_opt,
369 final_value_msat_with_overpay_buffer,
370 &recipient_onion,
371 best_block_height,
372 &keysend_preimage,
373 invoice_request,
374 |_, payload| {
375 num_reserved_bytes = num_reserved_bytes
376 .saturating_add(payload.serialized_length())
377 .saturating_add(PAYLOAD_HMAC_LEN);
378 },
379 );
380 debug_assert!(build_payloads_res.is_ok());
381
382 let max_path_length = 1300usize
383 .checked_sub(num_reserved_bytes)
384 .map(|p| p / unblinded_intermed_payload_len)
385 .and_then(|l| u8::try_from(l.saturating_add(1)).ok())
386 .ok_or(())?;
387
388 route_params.payment_params.max_path_length =
389 core::cmp::min(max_path_length, route_params.payment_params.max_path_length);
390 Ok(())
391}
392
393pub(crate) const ONION_DATA_LEN: usize = 20 * 65;
396
397pub(super) const INVALID_ONION_BLINDING: u16 = 0x8000 | 0x4000 | 24;
398
399#[inline]
400fn shift_slice_right(arr: &mut [u8], amt: usize) {
401 for i in (amt..arr.len()).rev() {
402 arr[i] = arr[i - amt];
403 }
404 for i in 0..amt {
405 arr[i] = 0;
406 }
407}
408
409pub(super) fn construct_onion_packet(
410 payloads: Vec<msgs::OutboundOnionPayload>, onion_keys: Vec<OnionKeys>, prng_seed: [u8; 32],
411 associated_data: &PaymentHash,
412) -> Result<msgs::OnionPacket, ()> {
413 let mut packet_data = [0; ONION_DATA_LEN];
414
415 let mut chacha = ChaCha20::new(&prng_seed, &[0; 8]);
416 chacha.process(&[0; ONION_DATA_LEN], &mut packet_data);
417
418 let packet = FixedSizeOnionPacket(packet_data);
419 construct_onion_packet_with_init_noise::<_, _>(
420 payloads,
421 onion_keys,
422 packet,
423 Some(associated_data),
424 )
425}
426
427#[allow(unused)]
428pub(super) fn construct_trampoline_onion_packet(
429 payloads: Vec<msgs::OutboundTrampolinePayload>, onion_keys: Vec<OnionKeys>,
430 prng_seed: [u8; 32], associated_data: &PaymentHash, length: u16,
431) -> Result<msgs::TrampolineOnionPacket, ()> {
432 let mut packet_data = vec![0u8; length as usize];
433
434 let mut chacha = ChaCha20::new(&prng_seed, &[0; 8]);
435 chacha.process(&vec![0u8; length as usize], &mut packet_data);
436
437 construct_onion_packet_with_init_noise::<_, _>(
438 payloads,
439 onion_keys,
440 packet_data,
441 Some(associated_data),
442 )
443}
444
445#[cfg(test)]
446pub(super) fn construct_onion_packet_with_writable_hopdata<HD: Writeable>(
449 payloads: Vec<HD>, onion_keys: Vec<OnionKeys>, prng_seed: [u8; 32],
450 associated_data: &PaymentHash,
451) -> Result<msgs::OnionPacket, ()> {
452 let mut packet_data = [0; ONION_DATA_LEN];
453
454 let mut chacha = ChaCha20::new(&prng_seed, &[0; 8]);
455 chacha.process(&[0; ONION_DATA_LEN], &mut packet_data);
456
457 let packet = FixedSizeOnionPacket(packet_data);
458 construct_onion_packet_with_init_noise::<_, _>(
459 payloads,
460 onion_keys,
461 packet,
462 Some(associated_data),
463 )
464}
465
466pub(crate) trait Packet {
470 type Data: AsMut<[u8]>;
471 fn new(pubkey: PublicKey, hop_data: Self::Data, hmac: [u8; 32]) -> Self;
472}
473
474pub(crate) struct FixedSizeOnionPacket(pub(crate) [u8; ONION_DATA_LEN]);
477
478impl AsMut<[u8]> for FixedSizeOnionPacket {
479 fn as_mut(&mut self) -> &mut [u8] {
480 &mut self.0
481 }
482}
483
484pub(crate) fn payloads_serialized_length<HD: Writeable>(payloads: &Vec<HD>) -> usize {
485 payloads.iter().map(|p| p.serialized_length() + 32 ).sum()
486}
487
488pub(crate) fn construct_onion_message_packet<HD: Writeable, P: Packet<Data = Vec<u8>>>(
489 payloads: Vec<HD>, onion_keys: Vec<OnionKeys>, prng_seed: [u8; 32], packet_data_len: usize,
490) -> Result<P, ()> {
491 let mut packet_data = vec![0; packet_data_len];
492
493 let mut chacha = ChaCha20::new(&prng_seed, &[0; 8]);
494 chacha.process_in_place(&mut packet_data);
495
496 construct_onion_packet_with_init_noise::<_, _>(payloads, onion_keys, packet_data, None)
497}
498
499fn construct_onion_packet_with_init_noise<HD: Writeable, P: Packet>(
500 mut payloads: Vec<HD>, onion_keys: Vec<OnionKeys>, mut packet_data: P::Data,
501 associated_data: Option<&PaymentHash>,
502) -> Result<P, ()> {
503 let filler = {
504 let packet_data = packet_data.as_mut();
505 const ONION_HOP_DATA_LEN: usize = 65; let mut res = Vec::with_capacity(ONION_HOP_DATA_LEN * (payloads.len() - 1));
507
508 let mut pos = 0;
509 for (i, (payload, keys)) in payloads.iter().zip(onion_keys.iter()).enumerate() {
510 let mut chacha = ChaCha20::new(&keys.rho, &[0u8; 8]);
511 for _ in 0..(packet_data.len() - pos) {
513 let mut dummy = [0; 1];
514 chacha.process_in_place(&mut dummy); }
516
517 let mut payload_len = LengthCalculatingWriter(0);
518 payload.write(&mut payload_len).expect("Failed to calculate length");
519 pos += payload_len.0 + 32;
520 if pos > packet_data.len() {
521 return Err(());
522 }
523
524 if i == payloads.len() - 1 {
525 break;
526 }
527
528 res.resize(pos, 0u8);
529 chacha.process_in_place(&mut res);
530 }
531 res
532 };
533
534 let mut hmac_res = [0; 32];
535 for (i, (payload, keys)) in payloads.iter_mut().zip(onion_keys.iter()).rev().enumerate() {
536 let mut payload_len = LengthCalculatingWriter(0);
537 payload.write(&mut payload_len).expect("Failed to calculate length");
538
539 let packet_data = packet_data.as_mut();
540 shift_slice_right(packet_data, payload_len.0 + 32);
541 packet_data[0..payload_len.0].copy_from_slice(&payload.encode()[..]);
542 packet_data[payload_len.0..(payload_len.0 + 32)].copy_from_slice(&hmac_res);
543
544 let mut chacha = ChaCha20::new(&keys.rho, &[0u8; 8]);
545 chacha.process_in_place(packet_data);
546
547 if i == 0 {
548 let stop_index = packet_data.len();
549 let start_index = stop_index.checked_sub(filler.len()).ok_or(())?;
550 packet_data[start_index..stop_index].copy_from_slice(&filler[..]);
551 }
552
553 let mut hmac = HmacEngine::<Sha256>::new(&keys.mu);
554 hmac.input(packet_data);
555 if let Some(associated_data) = associated_data {
556 hmac.input(&associated_data.0[..]);
557 }
558 hmac_res = Hmac::from_engine(hmac).to_byte_array();
559 }
560
561 Ok(P::new(onion_keys.first().unwrap().ephemeral_pubkey, packet_data, hmac_res))
562}
563
564pub(super) fn encrypt_failure_packet(
567 shared_secret: &[u8], raw_packet: &[u8],
568) -> msgs::OnionErrorPacket {
569 let ammag = gen_ammag_from_shared_secret(&shared_secret);
570
571 let mut packet_crypted = Vec::with_capacity(raw_packet.len());
572 packet_crypted.resize(raw_packet.len(), 0);
573 let mut chacha = ChaCha20::new(&ammag, &[0u8; 8]);
574 chacha.process(&raw_packet, &mut packet_crypted[..]);
575 msgs::OnionErrorPacket { data: packet_crypted }
576}
577
578pub(super) fn build_failure_packet(
579 shared_secret: &[u8], failure_type: u16, failure_data: &[u8],
580) -> msgs::DecodedOnionErrorPacket {
581 assert_eq!(shared_secret.len(), 32);
582 assert!(failure_data.len() <= 256 - 2);
583
584 let um = gen_um_from_shared_secret(&shared_secret);
585
586 let failuremsg = {
587 let mut res = Vec::with_capacity(2 + failure_data.len());
588 res.push(((failure_type >> 8) & 0xff) as u8);
589 res.push(((failure_type >> 0) & 0xff) as u8);
590 res.extend_from_slice(&failure_data[..]);
591 res
592 };
593 let pad = {
594 let mut res = Vec::with_capacity(256 - 2 - failure_data.len());
595 res.resize(256 - 2 - failure_data.len(), 0);
596 res
597 };
598 let mut packet = msgs::DecodedOnionErrorPacket { hmac: [0; 32], failuremsg, pad };
599
600 let mut hmac = HmacEngine::<Sha256>::new(&um);
601 hmac.input(&packet.encode()[32..]);
602 packet.hmac = Hmac::from_engine(hmac).to_byte_array();
603
604 packet
605}
606
607#[cfg(test)]
608pub(super) fn build_first_hop_failure_packet(
609 shared_secret: &[u8], failure_type: u16, failure_data: &[u8],
610) -> msgs::OnionErrorPacket {
611 let failure_packet = build_failure_packet(shared_secret, failure_type, failure_data);
612 encrypt_failure_packet(shared_secret, &failure_packet.encode()[..])
613}
614
615pub(crate) struct DecodedOnionFailure {
616 pub(crate) network_update: Option<NetworkUpdate>,
617 pub(crate) short_channel_id: Option<u64>,
618 pub(crate) payment_failed_permanently: bool,
619 pub(crate) failed_within_blinded_path: bool,
620 #[cfg(test)]
621 pub(crate) onion_error_code: Option<u16>,
622 #[cfg(test)]
623 pub(crate) onion_error_data: Option<Vec<u8>>,
624}
625
626fn decrypt_onion_error_packet(
629 packet: &mut Vec<u8>, shared_secret: SharedSecret,
630) -> Result<msgs::DecodedOnionErrorPacket, msgs::DecodeError> {
631 let ammag = gen_ammag_from_shared_secret(shared_secret.as_ref());
632 let mut chacha = ChaCha20::new(&ammag, &[0u8; 8]);
633 chacha.process_in_place(packet);
634 msgs::DecodedOnionErrorPacket::read(&mut Cursor::new(packet))
635}
636
637#[inline]
640pub(super) fn process_onion_failure<T: secp256k1::Signing, L: Deref>(
641 secp_ctx: &Secp256k1<T>, logger: &L, htlc_source: &HTLCSource, mut encrypted_packet: Vec<u8>,
642) -> DecodedOnionFailure
643where
644 L::Target: Logger,
645{
646 let (path, session_priv, first_hop_htlc_msat) = match htlc_source {
647 HTLCSource::OutboundRoute {
648 ref path, ref session_priv, ref first_hop_htlc_msat, ..
649 } => (path, session_priv, first_hop_htlc_msat),
650 _ => {
651 unreachable!()
652 },
653 };
654
655 struct FailureLearnings {
657 network_update: Option<NetworkUpdate>,
658 short_channel_id: Option<u64>,
659 payment_failed_permanently: bool,
660 failed_within_blinded_path: bool,
661 }
662 let mut res: Option<FailureLearnings> = None;
663 let mut htlc_msat = *first_hop_htlc_msat;
664 let mut error_code_ret = None;
665 let mut error_packet_ret = None;
666 let mut is_from_final_node = false;
667
668 const BADONION: u16 = 0x8000;
669 const PERM: u16 = 0x4000;
670 const NODE: u16 = 0x2000;
671 const UPDATE: u16 = 0x1000;
672
673 let callback = |shared_secret, _, _, route_hop_opt: Option<&RouteHop>, route_hop_idx| {
675 if res.is_some() {
676 return;
677 }
678
679 let route_hop = match route_hop_opt {
680 Some(hop) => hop,
681 None => {
682 error_code_ret = Some(BADONION | PERM | 24); error_packet_ret = Some(vec![0; 32]);
685 res = Some(FailureLearnings {
686 network_update: None,
687 short_channel_id: None,
688 payment_failed_permanently: false,
689 failed_within_blinded_path: true,
690 });
691 return;
692 },
693 };
694
695 let num_blinded_hops = path.blinded_tail.as_ref().map_or(0, |bt| bt.hops.len());
698 is_from_final_node = route_hop_idx + 1 == path.hops.len() && num_blinded_hops <= 1;
700 let failing_route_hop = if is_from_final_node {
701 route_hop
702 } else {
703 match path.hops.get(route_hop_idx + 1) {
704 Some(hop) => hop,
705 None => {
706 #[cfg(not(test))]
708 {
709 error_code_ret = Some(BADONION | PERM | 24); error_packet_ret = Some(vec![0; 32]);
711 }
712 #[cfg(test)]
713 {
714 let err_packet =
717 decrypt_onion_error_packet(&mut encrypted_packet, shared_secret)
718 .unwrap();
719 error_code_ret = Some(u16::from_be_bytes(
720 err_packet.failuremsg.get(0..2).unwrap().try_into().unwrap(),
721 ));
722 error_packet_ret = Some(err_packet.failuremsg[2..].to_vec());
723 }
724
725 res = Some(FailureLearnings {
726 network_update: None,
727 short_channel_id: None,
728 payment_failed_permanently: false,
729 failed_within_blinded_path: true,
730 });
731 return;
732 },
733 }
734 };
735
736 let amt_to_forward = htlc_msat - route_hop.fee_msat;
737 htlc_msat = amt_to_forward;
738
739 let err_packet = match decrypt_onion_error_packet(&mut encrypted_packet, shared_secret) {
740 Ok(p) => p,
741 Err(_) => return,
742 };
743 let um = gen_um_from_shared_secret(shared_secret.as_ref());
744 let mut hmac = HmacEngine::<Sha256>::new(&um);
745 hmac.input(&err_packet.encode()[32..]);
746
747 if !fixed_time_eq(&Hmac::from_engine(hmac).to_byte_array(), &err_packet.hmac) {
748 return;
749 }
750 let error_code_slice = match err_packet.failuremsg.get(0..2) {
751 Some(s) => s,
752 None => {
753 let network_update = Some(NetworkUpdate::NodeFailure {
756 node_id: route_hop.pubkey,
757 is_permanent: true,
758 });
759 let short_channel_id = Some(route_hop.short_channel_id);
760 res = Some(FailureLearnings {
761 network_update,
762 short_channel_id,
763 payment_failed_permanently: is_from_final_node,
764 failed_within_blinded_path: false,
765 });
766 return;
767 },
768 };
769
770 let error_code = u16::from_be_bytes(error_code_slice.try_into().expect("len is 2"));
771 error_code_ret = Some(error_code);
772 error_packet_ret = Some(err_packet.failuremsg[2..].to_vec());
773
774 let (debug_field, debug_field_size) = errors::get_onion_debug_field(error_code);
775
776 let payment_failed = match error_code & 0xff {
778 15 | 16 | 17 | 18 | 19 | 23 => true,
779 _ => false,
780 } && is_from_final_node; let mut network_update = None;
783 let mut short_channel_id = None;
784
785 if error_code & BADONION == BADONION {
786 network_update = Some(NetworkUpdate::ChannelFailure {
794 short_channel_id: failing_route_hop.short_channel_id,
795 is_permanent: true,
796 });
797 } else if error_code & NODE == NODE {
798 let is_permanent = error_code & PERM == PERM;
799 network_update =
800 Some(NetworkUpdate::NodeFailure { node_id: route_hop.pubkey, is_permanent });
801 short_channel_id = Some(route_hop.short_channel_id);
802 } else if error_code & PERM == PERM {
803 if !payment_failed {
804 network_update = Some(NetworkUpdate::ChannelFailure {
805 short_channel_id: failing_route_hop.short_channel_id,
806 is_permanent: true,
807 });
808 short_channel_id = Some(failing_route_hop.short_channel_id);
809 }
810 } else if error_code & UPDATE == UPDATE {
811 if let Some(update_len_slice) =
812 err_packet.failuremsg.get(debug_field_size + 2..debug_field_size + 4)
813 {
814 let update_len =
815 u16::from_be_bytes(update_len_slice.try_into().expect("len is 2")) as usize;
816 if err_packet
817 .failuremsg
818 .get(debug_field_size + 4..debug_field_size + 4 + update_len)
819 .is_some()
820 {
821 network_update = Some(NetworkUpdate::ChannelFailure {
822 short_channel_id: failing_route_hop.short_channel_id,
823 is_permanent: false,
824 });
825 short_channel_id = Some(failing_route_hop.short_channel_id);
826 }
827 }
828 if network_update.is_none() {
829 network_update = Some(NetworkUpdate::NodeFailure {
832 node_id: route_hop.pubkey,
833 is_permanent: true,
834 });
835 }
836 if short_channel_id.is_none() {
837 short_channel_id = Some(route_hop.short_channel_id);
838 }
839 } else if payment_failed {
840 short_channel_id = match error_code & 0xff {
843 18 | 19 => Some(route_hop.short_channel_id),
844 _ => None,
845 };
846 } else {
847 network_update =
850 Some(NetworkUpdate::NodeFailure { node_id: route_hop.pubkey, is_permanent: true });
851 short_channel_id = Some(route_hop.short_channel_id);
852 }
853
854 res = Some(FailureLearnings {
855 network_update,
856 short_channel_id,
857 payment_failed_permanently: error_code & PERM == PERM && is_from_final_node,
858 failed_within_blinded_path: false,
859 });
860
861 let (description, title) = errors::get_onion_error_description(error_code);
862 if debug_field_size > 0 && err_packet.failuremsg.len() >= 4 + debug_field_size {
863 log_info!(
864 logger,
865 "Onion Error[from {}: {}({:#x}) {}({})] {}",
866 route_hop.pubkey,
867 title,
868 error_code,
869 debug_field,
870 log_bytes!(&err_packet.failuremsg[4..4 + debug_field_size]),
871 description
872 );
873 } else {
874 log_info!(
875 logger,
876 "Onion Error[from {}: {}({:#x})] {}",
877 route_hop.pubkey,
878 title,
879 error_code,
880 description
881 );
882 }
883 };
884
885 construct_onion_keys_callback(secp_ctx, &path, session_priv, callback)
886 .expect("Route that we sent via spontaneously grew invalid keys in the middle of it?");
887
888 if let Some(FailureLearnings {
889 network_update,
890 short_channel_id,
891 payment_failed_permanently,
892 failed_within_blinded_path,
893 }) = res
894 {
895 DecodedOnionFailure {
896 network_update,
897 short_channel_id,
898 payment_failed_permanently,
899 failed_within_blinded_path,
900 #[cfg(test)]
901 onion_error_code: error_code_ret,
902 #[cfg(test)]
903 onion_error_data: error_packet_ret,
904 }
905 } else {
906 DecodedOnionFailure {
909 network_update: None,
910 short_channel_id: None,
911 payment_failed_permanently: is_from_final_node,
912 failed_within_blinded_path: false,
913 #[cfg(test)]
914 onion_error_code: None,
915 #[cfg(test)]
916 onion_error_data: None,
917 }
918 }
919}
920
921#[derive(Clone)] #[cfg_attr(test, derive(PartialEq))]
923pub(super) struct HTLCFailReason(HTLCFailReasonRepr);
924
925#[derive(Clone)] #[cfg_attr(test, derive(PartialEq))]
927enum HTLCFailReasonRepr {
928 LightningError { err: msgs::OnionErrorPacket },
929 Reason { failure_code: u16, data: Vec<u8> },
930}
931
932impl core::fmt::Debug for HTLCFailReason {
933 fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
934 match self.0 {
935 HTLCFailReasonRepr::Reason { ref failure_code, .. } => {
936 write!(f, "HTLC error code {}", failure_code)
937 },
938 HTLCFailReasonRepr::LightningError { .. } => {
939 write!(f, "pre-built LightningError")
940 },
941 }
942 }
943}
944
945impl Writeable for HTLCFailReason {
946 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
947 self.0.write(writer)
948 }
949}
950impl Readable for HTLCFailReason {
951 fn read<R: Read>(reader: &mut R) -> Result<Self, msgs::DecodeError> {
952 Ok(Self(Readable::read(reader)?))
953 }
954}
955
956impl_writeable_tlv_based_enum!(HTLCFailReasonRepr,
957 (0, LightningError) => {
958 (0, err, required),
959 },
960 (1, Reason) => {
961 (0, failure_code, required),
962 (2, data, required_vec),
963 },
964);
965
966impl HTLCFailReason {
967 #[rustfmt::skip]
968 pub(super) fn reason(failure_code: u16, data: Vec<u8>) -> Self {
969 const BADONION: u16 = 0x8000;
970 const PERM: u16 = 0x4000;
971 const NODE: u16 = 0x2000;
972 const UPDATE: u16 = 0x1000;
973
974 if failure_code == 1 | PERM { debug_assert!(data.is_empty()) }
975 else if failure_code == 2 | NODE { debug_assert!(data.is_empty()) }
976 else if failure_code == 2 | PERM | NODE { debug_assert!(data.is_empty()) }
977 else if failure_code == 3 | PERM | NODE { debug_assert!(data.is_empty()) }
978 else if failure_code == 4 | BADONION | PERM { debug_assert_eq!(data.len(), 32) }
979 else if failure_code == 5 | BADONION | PERM { debug_assert_eq!(data.len(), 32) }
980 else if failure_code == 6 | BADONION | PERM { debug_assert_eq!(data.len(), 32) }
981 else if failure_code == 7 | UPDATE {
982 debug_assert_eq!(data.len() - 2, u16::from_be_bytes(data[0..2].try_into().unwrap()) as usize) }
983 else if failure_code == 8 | PERM { debug_assert!(data.is_empty()) }
984 else if failure_code == 9 | PERM { debug_assert!(data.is_empty()) }
985 else if failure_code == 10 | PERM { debug_assert!(data.is_empty()) }
986 else if failure_code == 11 | UPDATE {
987 debug_assert_eq!(data.len() - 2 - 8, u16::from_be_bytes(data[8..10].try_into().unwrap()) as usize) }
988 else if failure_code == 12 | UPDATE {
989 debug_assert_eq!(data.len() - 2 - 8, u16::from_be_bytes(data[8..10].try_into().unwrap()) as usize) }
990 else if failure_code == 13 | UPDATE {
991 debug_assert_eq!(data.len() - 2 - 4, u16::from_be_bytes(data[4..6].try_into().unwrap()) as usize) }
992 else if failure_code == 14 | UPDATE {
993 debug_assert_eq!(data.len() - 2, u16::from_be_bytes(data[0..2].try_into().unwrap()) as usize) }
994 else if failure_code == 15 | PERM { debug_assert_eq!(data.len(), 12) }
995 else if failure_code == 18 { debug_assert_eq!(data.len(), 4) }
996 else if failure_code == 19 { debug_assert_eq!(data.len(), 8) }
997 else if failure_code == 20 | UPDATE {
998 debug_assert_eq!(data.len() - 2 - 2, u16::from_be_bytes(data[2..4].try_into().unwrap()) as usize) }
999 else if failure_code == 21 { debug_assert!(data.is_empty()) }
1000 else if failure_code == 22 | PERM { debug_assert!(data.len() <= 11) }
1001 else if failure_code == 23 { debug_assert!(data.is_empty()) }
1002 else if failure_code & BADONION != 0 {
1003 }
1005 else { debug_assert!(false, "Unknown failure code: {}", failure_code) }
1006
1007 Self(HTLCFailReasonRepr::Reason { failure_code, data })
1008 }
1009
1010 pub(super) fn from_failure_code(failure_code: u16) -> Self {
1011 Self::reason(failure_code, Vec::new())
1012 }
1013
1014 pub(super) fn from_msg(msg: &msgs::UpdateFailHTLC) -> Self {
1015 Self(HTLCFailReasonRepr::LightningError { err: msg.reason.clone() })
1016 }
1017
1018 pub(super) fn get_encrypted_failure_packet(
1019 &self, incoming_packet_shared_secret: &[u8; 32], phantom_shared_secret: &Option<[u8; 32]>,
1020 ) -> msgs::OnionErrorPacket {
1021 match self.0 {
1022 HTLCFailReasonRepr::Reason { ref failure_code, ref data } => {
1023 if let Some(phantom_ss) = phantom_shared_secret {
1024 let phantom_packet =
1025 build_failure_packet(phantom_ss, *failure_code, &data[..]).encode();
1026 let encrypted_phantom_packet =
1027 encrypt_failure_packet(phantom_ss, &phantom_packet);
1028 encrypt_failure_packet(
1029 incoming_packet_shared_secret,
1030 &encrypted_phantom_packet.data[..],
1031 )
1032 } else {
1033 let packet = build_failure_packet(
1034 incoming_packet_shared_secret,
1035 *failure_code,
1036 &data[..],
1037 )
1038 .encode();
1039 encrypt_failure_packet(incoming_packet_shared_secret, &packet)
1040 }
1041 },
1042 HTLCFailReasonRepr::LightningError { ref err } => {
1043 encrypt_failure_packet(incoming_packet_shared_secret, &err.data)
1044 },
1045 }
1046 }
1047
1048 pub(super) fn decode_onion_failure<T: secp256k1::Signing, L: Deref>(
1049 &self, secp_ctx: &Secp256k1<T>, logger: &L, htlc_source: &HTLCSource,
1050 ) -> DecodedOnionFailure
1051 where
1052 L::Target: Logger,
1053 {
1054 match self.0 {
1055 HTLCFailReasonRepr::LightningError { ref err } => {
1056 process_onion_failure(secp_ctx, logger, &htlc_source, err.data.clone())
1057 },
1058 #[allow(unused)]
1059 HTLCFailReasonRepr::Reason { ref failure_code, ref data, .. } => {
1060 if let &HTLCSource::OutboundRoute { ref path, .. } = htlc_source {
1066 DecodedOnionFailure {
1067 network_update: None,
1068 payment_failed_permanently: false,
1069 short_channel_id: Some(path.hops[0].short_channel_id),
1070 failed_within_blinded_path: false,
1071 #[cfg(test)]
1072 onion_error_code: Some(*failure_code),
1073 #[cfg(test)]
1074 onion_error_data: Some(data.clone()),
1075 }
1076 } else {
1077 unreachable!();
1078 }
1079 },
1080 }
1081 }
1082}
1083
1084pub(crate) trait NextPacketBytes: AsMut<[u8]> {
1087 fn new(len: usize) -> Self;
1088}
1089
1090impl NextPacketBytes for FixedSizeOnionPacket {
1091 fn new(_len: usize) -> Self {
1092 Self([0 as u8; ONION_DATA_LEN])
1093 }
1094}
1095
1096impl NextPacketBytes for Vec<u8> {
1097 fn new(len: usize) -> Self {
1098 vec![0 as u8; len]
1099 }
1100}
1101
1102pub(crate) enum Hop {
1104 Receive(msgs::InboundOnionPayload),
1107 Forward {
1109 next_hop_data: msgs::InboundOnionPayload,
1111 next_hop_hmac: [u8; 32],
1113 new_packet_bytes: [u8; ONION_DATA_LEN],
1115 },
1116}
1117
1118impl Hop {
1119 pub(crate) fn is_intro_node_blinded_forward(&self) -> bool {
1120 match self {
1121 Self::Forward {
1122 next_hop_data:
1123 msgs::InboundOnionPayload::BlindedForward {
1124 intro_node_blinding_point: Some(_), ..
1125 },
1126 ..
1127 } => true,
1128 _ => false,
1129 }
1130 }
1131}
1132
1133#[derive(Debug)]
1135pub(crate) enum OnionDecodeErr {
1136 Malformed { err_msg: &'static str, err_code: u16 },
1138 Relay { err_msg: &'static str, err_code: u16 },
1140}
1141
1142pub(crate) fn decode_next_payment_hop<NS: Deref>(
1143 shared_secret: [u8; 32], hop_data: &[u8], hmac_bytes: [u8; 32], payment_hash: PaymentHash,
1144 blinding_point: Option<PublicKey>, node_signer: NS,
1145) -> Result<Hop, OnionDecodeErr>
1146where
1147 NS::Target: NodeSigner,
1148{
1149 match decode_next_hop(
1150 shared_secret,
1151 hop_data,
1152 hmac_bytes,
1153 Some(payment_hash),
1154 (blinding_point, node_signer),
1155 ) {
1156 Ok((next_hop_data, None)) => Ok(Hop::Receive(next_hop_data)),
1157 Ok((next_hop_data, Some((next_hop_hmac, FixedSizeOnionPacket(new_packet_bytes))))) => {
1158 Ok(Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes })
1159 },
1160 Err(e) => Err(e),
1161 }
1162}
1163
1164pub fn create_payment_onion<T: secp256k1::Signing>(
1167 secp_ctx: &Secp256k1<T>, path: &Path, session_priv: &SecretKey, total_msat: u64,
1168 recipient_onion: &RecipientOnionFields, cur_block_height: u32, payment_hash: &PaymentHash,
1169 keysend_preimage: &Option<PaymentPreimage>, invoice_request: Option<&InvoiceRequest>,
1170 prng_seed: [u8; 32],
1171) -> Result<(msgs::OnionPacket, u64, u32), APIError> {
1172 let onion_keys = construct_onion_keys(&secp_ctx, &path, &session_priv).map_err(|_| {
1173 APIError::InvalidRoute { err: "Pubkey along hop was maliciously selected".to_owned() }
1174 })?;
1175 let (onion_payloads, htlc_msat, htlc_cltv) = build_onion_payloads(
1176 &path,
1177 total_msat,
1178 recipient_onion,
1179 cur_block_height,
1180 keysend_preimage,
1181 invoice_request,
1182 )?;
1183 let onion_packet = construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
1184 .map_err(|_| APIError::InvalidRoute {
1185 err: "Route size too large considering onion data".to_owned(),
1186 })?;
1187 Ok((onion_packet, htlc_msat, htlc_cltv))
1188}
1189
1190pub(crate) fn decode_next_untagged_hop<T, R: ReadableArgs<T>, N: NextPacketBytes>(
1191 shared_secret: [u8; 32], hop_data: &[u8], hmac_bytes: [u8; 32], read_args: T,
1192) -> Result<(R, Option<([u8; 32], N)>), OnionDecodeErr> {
1193 decode_next_hop(shared_secret, hop_data, hmac_bytes, None, read_args)
1194}
1195
1196fn decode_next_hop<T, R: ReadableArgs<T>, N: NextPacketBytes>(
1197 shared_secret: [u8; 32], hop_data: &[u8], hmac_bytes: [u8; 32],
1198 payment_hash: Option<PaymentHash>, read_args: T,
1199) -> Result<(R, Option<([u8; 32], N)>), OnionDecodeErr> {
1200 let (rho, mu) = gen_rho_mu_from_shared_secret(&shared_secret);
1201 let mut hmac = HmacEngine::<Sha256>::new(&mu);
1202 hmac.input(hop_data);
1203 if let Some(tag) = payment_hash {
1204 hmac.input(&tag.0[..]);
1205 }
1206 if !fixed_time_eq(&Hmac::from_engine(hmac).to_byte_array(), &hmac_bytes) {
1207 return Err(OnionDecodeErr::Malformed {
1208 err_msg: "HMAC Check failed",
1209 err_code: 0x8000 | 0x4000 | 5,
1210 });
1211 }
1212
1213 let mut chacha = ChaCha20::new(&rho, &[0u8; 8]);
1214 let mut chacha_stream = ChaChaReader { chacha: &mut chacha, read: Cursor::new(&hop_data[..]) };
1215 match R::read(&mut chacha_stream, read_args) {
1216 Err(err) => {
1217 let error_code = match err {
1218 msgs::DecodeError::UnknownVersion => 0x4000 | 1,
1220 msgs::DecodeError::UnknownRequiredFeature
1222 | msgs::DecodeError::InvalidValue
1223 | msgs::DecodeError::ShortRead => 0x4000 | 22,
1224 _ => 0x2000 | 2,
1226 };
1227 return Err(OnionDecodeErr::Relay {
1228 err_msg: "Unable to decode our hop data",
1229 err_code: error_code,
1230 });
1231 },
1232 Ok(msg) => {
1233 let mut hmac = [0; 32];
1234 if let Err(_) = chacha_stream.read_exact(&mut hmac[..]) {
1235 return Err(OnionDecodeErr::Relay {
1236 err_msg: "Unable to decode our hop data",
1237 err_code: 0x4000 | 22,
1238 });
1239 }
1240 if hmac == [0; 32] {
1241 #[cfg(test)]
1242 {
1243 if chacha_stream.read.position() < hop_data.len() as u64 - 64 {
1244 let mut next_bytes = [0; 32];
1252 chacha_stream.read_exact(&mut next_bytes).unwrap();
1253 assert_ne!(next_bytes[..], [0; 32][..]);
1254 chacha_stream.read_exact(&mut next_bytes).unwrap();
1255 assert_ne!(next_bytes[..], [0; 32][..]);
1256 }
1257 }
1258 return Ok((msg, None)); } else {
1260 let mut new_packet_bytes = N::new(hop_data.len());
1261 let read_pos = hop_data.len() - chacha_stream.read.position() as usize;
1262 chacha_stream.read_exact(&mut new_packet_bytes.as_mut()[..read_pos]).unwrap();
1263 #[cfg(debug_assertions)]
1264 {
1265 let mut t = [0; 1];
1270 debug_assert!(chacha_stream.read(&mut t).unwrap() == 0);
1271 }
1272 chacha_stream.chacha.process_in_place(&mut new_packet_bytes.as_mut()[read_pos..]);
1275 return Ok((msg, Some((hmac, new_packet_bytes)))); }
1277 },
1278 }
1279}
1280
1281#[cfg(test)]
1282mod tests {
1283 use crate::io;
1284 use crate::ln::msgs;
1285 use crate::routing::router::{Path, PaymentParameters, Route, RouteHop};
1286 use crate::types::features::{ChannelFeatures, NodeFeatures};
1287 use crate::types::payment::PaymentHash;
1288 use crate::util::ser::{VecWriter, Writeable, Writer};
1289
1290 #[allow(unused_imports)]
1291 use crate::prelude::*;
1292
1293 use bitcoin::hex::FromHex;
1294 use bitcoin::secp256k1::Secp256k1;
1295 use bitcoin::secp256k1::{PublicKey, SecretKey};
1296
1297 use super::*;
1298
1299 fn get_test_session_key() -> SecretKey {
1300 let hex = "4141414141414141414141414141414141414141414141414141414141414141";
1301 SecretKey::from_slice(&<Vec<u8>>::from_hex(hex).unwrap()[..]).unwrap()
1302 }
1303
1304 fn build_test_onion_keys() -> Vec<OnionKeys> {
1305 let secp_ctx = Secp256k1::new();
1307
1308 let route = Route {
1309 paths: vec![Path { hops: vec![
1310 RouteHop {
1311 pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("02eec7245d6b7d2ccb30380bfbe2a3648cd7a942653f5aa340edcea1f283686619").unwrap()[..]).unwrap(),
1312 channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
1313 short_channel_id: 0, fee_msat: 0, cltv_expiry_delta: 0, maybe_announced_channel: true, },
1315 RouteHop {
1316 pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("0324653eac434488002cc06bbfb7f10fe18991e35f9fe4302dbea6d2353dc0ab1c").unwrap()[..]).unwrap(),
1317 channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
1318 short_channel_id: 0, fee_msat: 0, cltv_expiry_delta: 0, maybe_announced_channel: true, },
1320 RouteHop {
1321 pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("027f31ebc5462c1fdce1b737ecff52d37d75dea43ce11c74d25aa297165faa2007").unwrap()[..]).unwrap(),
1322 channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
1323 short_channel_id: 0, fee_msat: 0, cltv_expiry_delta: 0, maybe_announced_channel: true, },
1325 RouteHop {
1326 pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("032c0b7cf95324a07d05398b240174dc0c2be444d96b159aa6c7f7b1e668680991").unwrap()[..]).unwrap(),
1327 channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
1328 short_channel_id: 0, fee_msat: 0, cltv_expiry_delta: 0, maybe_announced_channel: true, },
1330 RouteHop {
1331 pubkey: PublicKey::from_slice(&<Vec<u8>>::from_hex("02edabbd16b41c8371b92ef2f04c1185b4f03b6dcd52ba9b78d9d7c89c8f221145").unwrap()[..]).unwrap(),
1332 channel_features: ChannelFeatures::empty(), node_features: NodeFeatures::empty(),
1333 short_channel_id: 0, fee_msat: 0, cltv_expiry_delta: 0, maybe_announced_channel: true, },
1335 ], blinded_tail: None }],
1336 route_params: None,
1337 };
1338
1339 let onion_keys =
1340 super::construct_onion_keys(&secp_ctx, &route.paths[0], &get_test_session_key())
1341 .unwrap();
1342 assert_eq!(onion_keys.len(), route.paths[0].hops.len());
1343 onion_keys
1344 }
1345
1346 #[test]
1347 fn onion_vectors() {
1348 let onion_keys = build_test_onion_keys();
1349
1350 let hex = "53eb63ea8a3fec3b3cd433b85cd62a4b145e1dda09391b348c4e1cd36a03ea66";
1353 assert_eq!(
1354 onion_keys[0].shared_secret.secret_bytes(),
1355 <Vec<u8>>::from_hex(hex).unwrap()[..]
1356 );
1357
1358 let hex = "2ec2e5da605776054187180343287683aa6a51b4b1c04d6dd49c45d8cffb3c36";
1359 assert_eq!(onion_keys[0].blinding_factor[..], <Vec<u8>>::from_hex(hex).unwrap()[..]);
1360
1361 let hex = "02eec7245d6b7d2ccb30380bfbe2a3648cd7a942653f5aa340edcea1f283686619";
1362 assert_eq!(
1363 onion_keys[0].ephemeral_pubkey.serialize()[..],
1364 <Vec<u8>>::from_hex(hex).unwrap()[..]
1365 );
1366
1367 let hex = "ce496ec94def95aadd4bec15cdb41a740c9f2b62347c4917325fcc6fb0453986";
1368 assert_eq!(onion_keys[0].rho, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1369
1370 let hex = "b57061dc6d0a2b9f261ac410c8b26d64ac5506cbba30267a649c28c179400eba";
1371 assert_eq!(onion_keys[0].mu, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1372
1373 let hex = "a6519e98832a0b179f62123b3567c106db99ee37bef036e783263602f3488fae";
1374 assert_eq!(
1375 onion_keys[1].shared_secret.secret_bytes(),
1376 <Vec<u8>>::from_hex(hex).unwrap()[..]
1377 );
1378
1379 let hex = "bf66c28bc22e598cfd574a1931a2bafbca09163df2261e6d0056b2610dab938f";
1380 assert_eq!(onion_keys[1].blinding_factor[..], <Vec<u8>>::from_hex(hex).unwrap()[..]);
1381
1382 let hex = "028f9438bfbf7feac2e108d677e3a82da596be706cc1cf342b75c7b7e22bf4e6e2";
1383 assert_eq!(
1384 onion_keys[1].ephemeral_pubkey.serialize()[..],
1385 <Vec<u8>>::from_hex(hex).unwrap()[..]
1386 );
1387
1388 let hex = "450ffcabc6449094918ebe13d4f03e433d20a3d28a768203337bc40b6e4b2c59";
1389 assert_eq!(onion_keys[1].rho, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1390
1391 let hex = "05ed2b4a3fb023c2ff5dd6ed4b9b6ea7383f5cfe9d59c11d121ec2c81ca2eea9";
1392 assert_eq!(onion_keys[1].mu, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1393
1394 let hex = "3a6b412548762f0dbccce5c7ae7bb8147d1caf9b5471c34120b30bc9c04891cc";
1395 assert_eq!(
1396 onion_keys[2].shared_secret.secret_bytes(),
1397 <Vec<u8>>::from_hex(hex).unwrap()[..]
1398 );
1399
1400 let hex = "a1f2dadd184eb1627049673f18c6325814384facdee5bfd935d9cb031a1698a5";
1401 assert_eq!(onion_keys[2].blinding_factor[..], <Vec<u8>>::from_hex(hex).unwrap()[..]);
1402
1403 let hex = "03bfd8225241ea71cd0843db7709f4c222f62ff2d4516fd38b39914ab6b83e0da0";
1404 assert_eq!(
1405 onion_keys[2].ephemeral_pubkey.serialize()[..],
1406 <Vec<u8>>::from_hex(hex).unwrap()[..]
1407 );
1408
1409 let hex = "11bf5c4f960239cb37833936aa3d02cea82c0f39fd35f566109c41f9eac8deea";
1410 assert_eq!(onion_keys[2].rho, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1411
1412 let hex = "caafe2820fa00eb2eeb78695ae452eba38f5a53ed6d53518c5c6edf76f3f5b78";
1413 assert_eq!(onion_keys[2].mu, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1414
1415 let hex = "21e13c2d7cfe7e18836df50872466117a295783ab8aab0e7ecc8c725503ad02d";
1416 assert_eq!(
1417 onion_keys[3].shared_secret.secret_bytes(),
1418 <Vec<u8>>::from_hex(hex).unwrap()[..]
1419 );
1420
1421 let hex = "7cfe0b699f35525029ae0fa437c69d0f20f7ed4e3916133f9cacbb13c82ff262";
1422 assert_eq!(onion_keys[3].blinding_factor[..], <Vec<u8>>::from_hex(hex).unwrap()[..]);
1423
1424 let hex = "031dde6926381289671300239ea8e57ffaf9bebd05b9a5b95beaf07af05cd43595";
1425 assert_eq!(
1426 onion_keys[3].ephemeral_pubkey.serialize()[..],
1427 <Vec<u8>>::from_hex(hex).unwrap()[..]
1428 );
1429
1430 let hex = "cbe784ab745c13ff5cffc2fbe3e84424aa0fd669b8ead4ee562901a4a4e89e9e";
1431 assert_eq!(onion_keys[3].rho, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1432
1433 let hex = "5052aa1b3d9f0655a0932e50d42f0c9ba0705142c25d225515c45f47c0036ee9";
1434 assert_eq!(onion_keys[3].mu, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1435
1436 let hex = "b5756b9b542727dbafc6765a49488b023a725d631af688fc031217e90770c328";
1437 assert_eq!(
1438 onion_keys[4].shared_secret.secret_bytes(),
1439 <Vec<u8>>::from_hex(hex).unwrap()[..]
1440 );
1441
1442 let hex = "c96e00dddaf57e7edcd4fb5954be5b65b09f17cb6d20651b4e90315be5779205";
1443 assert_eq!(onion_keys[4].blinding_factor[..], <Vec<u8>>::from_hex(hex).unwrap()[..]);
1444
1445 let hex = "03a214ebd875aab6ddfd77f22c5e7311d7f77f17a169e599f157bbcdae8bf071f4";
1446 assert_eq!(
1447 onion_keys[4].ephemeral_pubkey.serialize()[..],
1448 <Vec<u8>>::from_hex(hex).unwrap()[..]
1449 );
1450
1451 let hex = "034e18b8cc718e8af6339106e706c52d8df89e2b1f7e9142d996acf88df8799b";
1452 assert_eq!(onion_keys[4].rho, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1453
1454 let hex = "8e45e5c61c2b24cb6382444db6698727afb063adecd72aada233d4bf273d975a";
1455 assert_eq!(onion_keys[4].mu, <Vec<u8>>::from_hex(hex).unwrap()[..]);
1456
1457 let payloads = vec!(
1463 RawOnionHopData::new(msgs::OutboundOnionPayload::Forward {
1464 short_channel_id: 1,
1465 amt_to_forward: 15000,
1466 outgoing_cltv_value: 1500,
1467 }),
1468 RawOnionHopData {
1484 data: <Vec<u8>>::from_hex("52020236b00402057806080000000000000002fd02013c0102030405060708090a0b0c0d0e0f0102030405060708090a0b0c0d0e0f0102030405060708090a0b0c0d0e0f0102030405060708090a0b0c0d0e0f").unwrap(),
1485 },
1486 RawOnionHopData::new(msgs::OutboundOnionPayload::Forward {
1487 short_channel_id: 3,
1488 amt_to_forward: 12500,
1489 outgoing_cltv_value: 1250,
1490 }),
1491 RawOnionHopData::new(msgs::OutboundOnionPayload::Forward {
1492 short_channel_id: 4,
1493 amt_to_forward: 10000,
1494 outgoing_cltv_value: 1000,
1495 }),
1496 RawOnionHopData {
1512 data: <Vec<u8>>::from_hex("fd011002022710040203e8082224a33562c54507a9334e79f0dc4f17d407e6d7c61f0e2f3d0d38599502f617042710fd012de02a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a").unwrap(),
1513 },
1514 );
1515
1516 let mut w = VecWriter(Vec::new());
1518 payloads[0].write(&mut w).unwrap();
1519 let hop_1_serialized_payload = w.0;
1520 let hex = "1202023a98040205dc06080000000000000001";
1521 let expected_serialized_hop_1_payload = &<Vec<u8>>::from_hex(hex).unwrap()[..];
1522 assert_eq!(hop_1_serialized_payload, expected_serialized_hop_1_payload);
1523
1524 w = VecWriter(Vec::new());
1525 payloads[2].write(&mut w).unwrap();
1526 let hop_3_serialized_payload = w.0;
1527 let hex = "12020230d4040204e206080000000000000003";
1528 let expected_serialized_hop_3_payload = &<Vec<u8>>::from_hex(hex).unwrap()[..];
1529 assert_eq!(hop_3_serialized_payload, expected_serialized_hop_3_payload);
1530
1531 w = VecWriter(Vec::new());
1532 payloads[3].write(&mut w).unwrap();
1533 let hop_4_serialized_payload = w.0;
1534 let hex = "1202022710040203e806080000000000000004";
1535 let expected_serialized_hop_4_payload = &<Vec<u8>>::from_hex(hex).unwrap()[..];
1536 assert_eq!(hop_4_serialized_payload, expected_serialized_hop_4_payload);
1537
1538 let pad_keytype_seed =
1539 super::gen_pad_from_shared_secret(&get_test_session_key().secret_bytes());
1540
1541 let packet: msgs::OnionPacket = super::construct_onion_packet_with_writable_hopdata::<_>(
1542 payloads,
1543 onion_keys,
1544 pad_keytype_seed,
1545 &PaymentHash([0x42; 32]),
1546 )
1547 .unwrap();
1548
1549 let hex = "0002EEC7245D6B7D2CCB30380BFBE2A3648CD7A942653F5AA340EDCEA1F283686619F7F3416A5AA36DC7EEB3EC6D421E9615471AB870A33AC07FA5D5A51DF0A8823AABE3FEA3F90D387529D4F72837F9E687230371CCD8D263072206DBED0234F6505E21E282ABD8C0E4F5B9FF8042800BBAB065036EADD0149B37F27DDE664725A49866E052E809D2B0198AB9610FAA656BBF4EC516763A59F8F42C171B179166BA38958D4F51B39B3E98706E2D14A2DAFD6A5DF808093ABFCA5AEAACA16EDED5DB7D21FB0294DD1A163EDF0FB445D5C8D7D688D6DD9C541762BF5A5123BF9939D957FE648416E88F1B0928BFA034982B22548E1A4D922690EECF546275AFB233ACF4323974680779F1A964CFE687456035CC0FBA8A5428430B390F0057B6D1FE9A8875BFA89693EEB838CE59F09D207A503EE6F6299C92D6361BC335FCBF9B5CD44747AADCE2CE6069CFDC3D671DAEF9F8AE590CF93D957C9E873E9A1BC62D9640DC8FC39C14902D49A1C80239B6C5B7FD91D05878CBF5FFC7DB2569F47C43D6C0D27C438ABFF276E87364DEB8858A37E5A62C446AF95D8B786EAF0B5FCF78D98B41496794F8DCAAC4EEF34B2ACFB94C7E8C32A9E9866A8FA0B6F2A06F00A1CCDE569F97EEC05C803BA7500ACC96691D8898D73D8E6A47B8F43C3D5DE74458D20EDA61474C426359677001FBD75A74D7D5DB6CB4FEB83122F133206203E4E2D293F838BF8C8B3A29ACB321315100B87E80E0EDB272EE80FDA944E3FB6084ED4D7F7C7D21C69D9DA43D31A90B70693F9B0CC3EAC74C11AB8FF655905688916CFA4EF0BD04135F2E50B7C689A21D04E8E981E74C6058188B9B1F9DFC3EEC6838E9FFBCF22CE738D8A177C19318DFFEF090CEE67E12DE1A3E2A39F61247547BA5257489CBC11D7D91ED34617FCC42F7A9DA2E3CF31A94A210A1018143173913C38F60E62B24BF0D7518F38B5BAB3E6A1F8AEB35E31D6442C8ABB5178EFC892D2E787D79C6AD9E2FC271792983FA9955AC4D1D84A36C024071BC6E431B625519D556AF38185601F70E29035EA6A09C8B676C9D88CF7E05E0F17098B584C4168735940263F940033A220F40BE4C85344128B14BEB9E75696DB37014107801A59B13E89CD9D2258C169D523BE6D31552C44C82FF4BB18EC9F099F3BF0E5B1BB2BA9A87D7E26F98D294927B600B5529C47E04D98956677CBCEE8FA2B60F49776D8B8C367465B7C626DA53700684FB6C918EAD0EAB8360E4F60EDD25B4F43816A75ECF70F909301825B512469F8389D79402311D8AECB7B3EF8599E79485A4388D87744D899F7C47EE644361E17040A7958C8911BE6F463AB6A9B2AFACD688EC55EF517B38F1339EFC54487232798BB25522FF4572FF68567FE830F92F7B8113EFCE3E98C3FFFBAEDCE4FD8B50E41DA97C0C08E423A72689CC68E68F752A5E3A9003E64E35C957CA2E1C48BB6F64B05F56B70B575AD2F278D57850A7AD568C24A4D32A3D74B29F03DC125488BC7C637DA582357F40B0A52D16B3B40BB2C2315D03360BC24209E20972C200566BCF3BBE5C5B0AEDD83132A8A4D5B4242BA370B6D67D9B67EB01052D132C7866B9CB502E44796D9D356E4E3CB47CC527322CD24976FE7C9257A2864151A38E568EF7A79F10D6EF27CC04CE382347A2488B1F404FDBF407FE1CA1C9D0D5649E34800E25E18951C98CAE9F43555EEF65FEE1EA8F15828807366C3B612CD5753BF9FB8FCED08855F742CDDD6F765F74254F03186683D646E6F09AC2805586C7CF11998357CAFC5DF3F285329366F475130C928B2DCEBA4AA383758E7A9D20705C4BB9DB619E2992F608A1BA65DB254BB389468741D0502E2588AEB54390AC600C19AF5C8E61383FC1BEBE0029E4474051E4EF908828DB9CCA13277EF65DB3FD47CCC2179126AAEFB627719F421E20";
1550 assert_eq!(packet.encode(), <Vec<u8>>::from_hex(hex).unwrap());
1551 }
1552
1553 #[test]
1554 fn test_failure_packet_onion() {
1555 let onion_keys = build_test_onion_keys();
1558 let onion_error =
1559 super::build_failure_packet(onion_keys[4].shared_secret.as_ref(), 0x2002, &[0; 0]);
1560 let hex = "4c2fc8bc08510334b6833ad9c3e79cd1b52ae59dfe5c2a4b23ead50f09f7ee0b0002200200fe0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000";
1561 assert_eq!(onion_error.encode(), <Vec<u8>>::from_hex(hex).unwrap());
1562
1563 let onion_packet_1 = super::encrypt_failure_packet(
1564 onion_keys[4].shared_secret.as_ref(),
1565 &onion_error.encode()[..],
1566 );
1567 let hex = "a5e6bd0c74cb347f10cce367f949098f2457d14c046fd8a22cb96efb30b0fdcda8cb9168b50f2fd45edd73c1b0c8b33002df376801ff58aaa94000bf8a86f92620f343baef38a580102395ae3abf9128d1047a0736ff9b83d456740ebbb4aeb3aa9737f18fb4afb4aa074fb26c4d702f42968888550a3bded8c05247e045b866baef0499f079fdaeef6538f31d44deafffdfd3afa2fb4ca9082b8f1c465371a9894dd8c243fb4847e004f5256b3e90e2edde4c9fb3082ddfe4d1e734cacd96ef0706bf63c9984e22dc98851bcccd1c3494351feb458c9c6af41c0044bea3c47552b1d992ae542b17a2d0bba1a096c78d169034ecb55b6e3a7263c26017f033031228833c1daefc0dedb8cf7c3e37c9c37ebfe42f3225c326e8bcfd338804c145b16e34e4";
1568 assert_eq!(onion_packet_1.data, <Vec<u8>>::from_hex(hex).unwrap());
1569
1570 let onion_packet_2 = super::encrypt_failure_packet(
1571 onion_keys[3].shared_secret.as_ref(),
1572 &onion_packet_1.data[..],
1573 );
1574 let hex = "c49a1ce81680f78f5f2000cda36268de34a3f0a0662f55b4e837c83a8773c22aa081bab1616a0011585323930fa5b9fae0c85770a2279ff59ec427ad1bbff9001c0cd1497004bd2a0f68b50704cf6d6a4bf3c8b6a0833399a24b3456961ba00736785112594f65b6b2d44d9f5ea4e49b5e1ec2af978cbe31c67114440ac51a62081df0ed46d4a3df295da0b0fe25c0115019f03f15ec86fabb4c852f83449e812f141a9395b3f70b766ebbd4ec2fae2b6955bd8f32684c15abfe8fd3a6261e52650e8807a92158d9f1463261a925e4bfba44bd20b166d532f0017185c3a6ac7957adefe45559e3072c8dc35abeba835a8cb01a71a15c736911126f27d46a36168ca5ef7dccd4e2886212602b181463e0dd30185c96348f9743a02aca8ec27c0b90dca270";
1575 assert_eq!(onion_packet_2.data, <Vec<u8>>::from_hex(hex).unwrap());
1576
1577 let onion_packet_3 = super::encrypt_failure_packet(
1578 onion_keys[2].shared_secret.as_ref(),
1579 &onion_packet_2.data[..],
1580 );
1581 let hex = "a5d3e8634cfe78b2307d87c6d90be6fe7855b4f2cc9b1dfb19e92e4b79103f61ff9ac25f412ddfb7466e74f81b3e545563cdd8f5524dae873de61d7bdfccd496af2584930d2b566b4f8d3881f8c043df92224f38cf094cfc09d92655989531524593ec6d6caec1863bdfaa79229b5020acc034cd6deeea1021c50586947b9b8e6faa83b81fbfa6133c0af5d6b07c017f7158fa94f0d206baf12dda6b68f785b773b360fd0497e16cc402d779c8d48d0fa6315536ef0660f3f4e1865f5b38ea49c7da4fd959de4e83ff3ab686f059a45c65ba2af4a6a79166aa0f496bf04d06987b6d2ea205bdb0d347718b9aeff5b61dfff344993a275b79717cd815b6ad4c0beb568c4ac9c36ff1c315ec1119a1993c4b61e6eaa0375e0aaf738ac691abd3263bf937e3";
1582 assert_eq!(onion_packet_3.data, <Vec<u8>>::from_hex(hex).unwrap());
1583
1584 let onion_packet_4 = super::encrypt_failure_packet(
1585 onion_keys[1].shared_secret.as_ref(),
1586 &onion_packet_3.data[..],
1587 );
1588 let hex = "aac3200c4968f56b21f53e5e374e3a2383ad2b1b6501bbcc45abc31e59b26881b7dfadbb56ec8dae8857add94e6702fb4c3a4de22e2e669e1ed926b04447fc73034bb730f4932acd62727b75348a648a1128744657ca6a4e713b9b646c3ca66cac02cdab44dd3439890ef3aaf61708714f7375349b8da541b2548d452d84de7084bb95b3ac2345201d624d31f4d52078aa0fa05a88b4e20202bd2b86ac5b52919ea305a8949de95e935eed0319cf3cf19ebea61d76ba92532497fcdc9411d06bcd4275094d0a4a3c5d3a945e43305a5a9256e333e1f64dbca5fcd4e03a39b9012d197506e06f29339dfee3331995b21615337ae060233d39befea925cc262873e0530408e6990f1cbd233a150ef7b004ff6166c70c68d9f8c853c1abca640b8660db2921";
1589 assert_eq!(onion_packet_4.data, <Vec<u8>>::from_hex(hex).unwrap());
1590
1591 let onion_packet_5 = super::encrypt_failure_packet(
1592 onion_keys[0].shared_secret.as_ref(),
1593 &onion_packet_4.data[..],
1594 );
1595 let hex = "9c5add3963fc7f6ed7f148623c84134b5647e1306419dbe2174e523fa9e2fbed3a06a19f899145610741c83ad40b7712aefaddec8c6baf7325d92ea4ca4d1df8bce517f7e54554608bf2bd8071a4f52a7a2f7ffbb1413edad81eeea5785aa9d990f2865dc23b4bc3c301a94eec4eabebca66be5cf638f693ec256aec514620cc28ee4a94bd9565bc4d4962b9d3641d4278fb319ed2b84de5b665f307a2db0f7fbb757366067d88c50f7e829138fde4f78d39b5b5802f1b92a8a820865af5cc79f9f30bc3f461c66af95d13e5e1f0381c184572a91dee1c849048a647a1158cf884064deddbf1b0b88dfe2f791428d0ba0f6fb2f04e14081f69165ae66d9297c118f0907705c9c4954a199bae0bb96fad763d690e7daa6cfda59ba7f2c8d11448b604d12d";
1596 assert_eq!(onion_packet_5.data, <Vec<u8>>::from_hex(hex).unwrap());
1597 }
1598
1599 struct RawOnionHopData {
1600 data: Vec<u8>,
1601 }
1602 impl RawOnionHopData {
1603 fn new(orig: msgs::OutboundOnionPayload) -> Self {
1604 Self { data: orig.encode() }
1605 }
1606 }
1607 impl Writeable for RawOnionHopData {
1608 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
1609 writer.write_all(&self.data[..])
1610 }
1611 }
1612
1613 #[test]
1614 fn max_length_with_no_cltv_limit() {
1615 let recipient = PublicKey::from_slice(&[2; 33]).unwrap();
1618 let mut route_params = RouteParameters {
1619 payment_params: PaymentParameters::for_keysend(recipient, u32::MAX, true),
1620 final_value_msat: u64::MAX,
1621 max_total_routing_fee_msat: Some(u64::MAX),
1622 };
1623 route_params.payment_params.max_total_cltv_expiry_delta = u32::MAX;
1624 let recipient_onion = RecipientOnionFields::spontaneous_empty();
1625 set_max_path_length(&mut route_params, &recipient_onion, None, None, 42).unwrap();
1626 }
1627}