23c9db0c45b073f3ff4c6cd7aab310f87a8db8fa
[rust-lightning] / lightning / src / onion_message / messenger.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
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
8 // licenses.
9
10 //! LDK sends, receives, and forwards onion messages via the [`OnionMessenger`]. See its docs for
11 //! more information.
12
13 use bitcoin::hashes::{Hash, HashEngine};
14 use bitcoin::hashes::hmac::{Hmac, HmacEngine};
15 use bitcoin::hashes::sha256::Hash as Sha256;
16 use bitcoin::secp256k1::{self, PublicKey, Scalar, Secp256k1, SecretKey};
17
18 use crate::blinded_path::{BlindedPath, ForwardTlvs, ReceiveTlvs, utils};
19 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient};
20 use crate::events::OnionMessageProvider;
21 use crate::ln::features::{InitFeatures, NodeFeatures};
22 use crate::ln::msgs::{self, OnionMessageHandler};
23 use crate::ln::onion_utils;
24 use crate::ln::peer_handler::IgnoringMessageHandler;
25 pub use super::packet::{CustomOnionMessageContents, OnionMessageContents};
26 use super::offers::OffersMessageHandler;
27 use super::packet::{BIG_PACKET_HOP_DATA_LEN, ForwardControlTlvs, Packet, Payload, ReceiveControlTlvs, SMALL_PACKET_HOP_DATA_LEN};
28 use crate::util::logger::Logger;
29 use crate::util::ser::Writeable;
30
31 use core::ops::Deref;
32 use crate::io;
33 use crate::sync::{Arc, Mutex};
34 use crate::prelude::*;
35
36 /// A sender, receiver and forwarder of onion messages. In upcoming releases, this object will be
37 /// used to retrieve invoices and fulfill invoice requests from [offers]. Currently, only sending
38 /// and receiving custom onion messages is supported.
39 ///
40 /// # Example
41 ///
42 /// ```
43 /// # extern crate bitcoin;
44 /// # use bitcoin::hashes::_export::_core::time::Duration;
45 /// # use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
46 /// # use lightning::blinded_path::BlindedPath;
47 /// # use lightning::sign::KeysManager;
48 /// # use lightning::ln::peer_handler::IgnoringMessageHandler;
49 /// # use lightning::onion_message::{CustomOnionMessageContents, Destination, OnionMessageContents, OnionMessenger};
50 /// # use lightning::util::logger::{Logger, Record};
51 /// # use lightning::util::ser::{Writeable, Writer};
52 /// # use lightning::io;
53 /// # use std::sync::Arc;
54 /// # struct FakeLogger;
55 /// # impl Logger for FakeLogger {
56 /// #     fn log(&self, record: &Record) { unimplemented!() }
57 /// # }
58 /// # let seed = [42u8; 32];
59 /// # let time = Duration::from_secs(123456);
60 /// # let keys_manager = KeysManager::new(&seed, time.as_secs(), time.subsec_nanos());
61 /// # let logger = Arc::new(FakeLogger {});
62 /// # let node_secret = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
63 /// # let secp_ctx = Secp256k1::new();
64 /// # let hop_node_id1 = PublicKey::from_secret_key(&secp_ctx, &node_secret);
65 /// # let (hop_node_id2, hop_node_id3, hop_node_id4) = (hop_node_id1, hop_node_id1, hop_node_id1);
66 /// # let destination_node_id = hop_node_id1;
67 /// # let custom_message_handler = IgnoringMessageHandler {};
68 /// # let offers_message_handler = IgnoringMessageHandler {};
69 /// // Create the onion messenger. This must use the same `keys_manager` as is passed to your
70 /// // ChannelManager.
71 /// let onion_messenger = OnionMessenger::new(&keys_manager, &keys_manager, logger, &offers_message_handler, &custom_message_handler);
72 ///
73 /// # struct YourCustomMessage {}
74 /// impl Writeable for YourCustomMessage {
75 ///     fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
76 ///             # Ok(())
77 ///             // Write your custom onion message to `w`
78 ///     }
79 /// }
80 /// impl CustomOnionMessageContents for YourCustomMessage {
81 ///     fn tlv_type(&self) -> u64 {
82 ///             # let your_custom_message_type = 42;
83 ///             your_custom_message_type
84 ///     }
85 /// }
86 /// // Send a custom onion message to a node id.
87 /// let intermediate_hops = [hop_node_id1, hop_node_id2];
88 /// let reply_path = None;
89 /// # let your_custom_message = YourCustomMessage {};
90 /// let message = OnionMessageContents::Custom(your_custom_message);
91 /// onion_messenger.send_onion_message(&intermediate_hops, Destination::Node(destination_node_id), message, reply_path);
92 ///
93 /// // Create a blinded path to yourself, for someone to send an onion message to.
94 /// # let your_node_id = hop_node_id1;
95 /// let hops = [hop_node_id3, hop_node_id4, your_node_id];
96 /// let blinded_path = BlindedPath::new_for_message(&hops, &keys_manager, &secp_ctx).unwrap();
97 ///
98 /// // Send a custom onion message to a blinded path.
99 /// # let intermediate_hops = [hop_node_id1, hop_node_id2];
100 /// let reply_path = None;
101 /// # let your_custom_message = YourCustomMessage {};
102 /// let message = OnionMessageContents::Custom(your_custom_message);
103 /// onion_messenger.send_onion_message(&intermediate_hops, Destination::BlindedPath(blinded_path), message, reply_path);
104 /// ```
105 ///
106 /// [offers]: <https://github.com/lightning/bolts/pull/798>
107 /// [`OnionMessenger`]: crate::onion_message::OnionMessenger
108 pub struct OnionMessenger<ES: Deref, NS: Deref, L: Deref, OMH: Deref, CMH: Deref>
109 where
110         ES::Target: EntropySource,
111         NS::Target: NodeSigner,
112         L::Target: Logger,
113         OMH::Target: OffersMessageHandler,
114         CMH:: Target: CustomOnionMessageHandler,
115 {
116         entropy_source: ES,
117         node_signer: NS,
118         logger: L,
119         pending_messages: Mutex<HashMap<PublicKey, VecDeque<msgs::OnionMessage>>>,
120         secp_ctx: Secp256k1<secp256k1::All>,
121         offers_handler: OMH,
122         custom_handler: CMH,
123 }
124
125 /// The destination of an onion message.
126 pub enum Destination {
127         /// We're sending this onion message to a node.
128         Node(PublicKey),
129         /// We're sending this onion message to a blinded path.
130         BlindedPath(BlindedPath),
131 }
132
133 impl Destination {
134         pub(super) fn num_hops(&self) -> usize {
135                 match self {
136                         Destination::Node(_) => 1,
137                         Destination::BlindedPath(BlindedPath { blinded_hops, .. }) => blinded_hops.len(),
138                 }
139         }
140 }
141
142 /// Errors that may occur when [sending an onion message].
143 ///
144 /// [sending an onion message]: OnionMessenger::send_onion_message
145 #[derive(Debug, PartialEq, Eq)]
146 pub enum SendError {
147         /// Errored computing onion message packet keys.
148         Secp256k1(secp256k1::Error),
149         /// Because implementations such as Eclair will drop onion messages where the message packet
150         /// exceeds 32834 bytes, we refuse to send messages where the packet exceeds this size.
151         TooBigPacket,
152         /// The provided [`Destination`] was an invalid [`BlindedPath`], due to having fewer than two
153         /// blinded hops.
154         TooFewBlindedHops,
155         /// Our next-hop peer was offline or does not support onion message forwarding.
156         InvalidFirstHop,
157         /// Onion message contents must have a TLV type >= 64.
158         InvalidMessage,
159         /// Our next-hop peer's buffer was full or our total outbound buffer was full.
160         BufferFull,
161         /// Failed to retrieve our node id from the provided [`NodeSigner`].
162         ///
163         /// [`NodeSigner`]: crate::sign::NodeSigner
164         GetNodeIdFailed,
165         /// We attempted to send to a blinded path where we are the introduction node, and failed to
166         /// advance the blinded path to make the second hop the new introduction node. Either
167         /// [`NodeSigner::ecdh`] failed, we failed to tweak the current blinding point to get the
168         /// new blinding point, or we were attempting to send to ourselves.
169         BlindedPathAdvanceFailed,
170 }
171
172 /// Handler for custom onion messages. If you are using [`SimpleArcOnionMessenger`],
173 /// [`SimpleRefOnionMessenger`], or prefer to ignore inbound custom onion messages,
174 /// [`IgnoringMessageHandler`] must be provided to [`OnionMessenger::new`]. Otherwise, a custom
175 /// implementation of this trait must be provided, with [`CustomMessage`] specifying the supported
176 /// message types.
177 ///
178 /// See [`OnionMessenger`] for example usage.
179 ///
180 /// [`IgnoringMessageHandler`]: crate::ln::peer_handler::IgnoringMessageHandler
181 /// [`CustomMessage`]: Self::CustomMessage
182 pub trait CustomOnionMessageHandler {
183         /// The message known to the handler. To support multiple message types, you may want to make this
184         /// an enum with a variant for each supported message.
185         type CustomMessage: CustomOnionMessageContents;
186         /// Called with the custom message that was received.
187         fn handle_custom_message(&self, msg: Self::CustomMessage);
188         /// Read a custom message of type `message_type` from `buffer`, returning `Ok(None)` if the
189         /// message type is unknown.
190         fn read_custom_message<R: io::Read>(&self, message_type: u64, buffer: &mut R) -> Result<Option<Self::CustomMessage>, msgs::DecodeError>;
191 }
192
193 impl<ES: Deref, NS: Deref, L: Deref, OMH: Deref, CMH: Deref> OnionMessenger<ES, NS, L, OMH, CMH>
194 where
195         ES::Target: EntropySource,
196         NS::Target: NodeSigner,
197         L::Target: Logger,
198         OMH::Target: OffersMessageHandler,
199         CMH::Target: CustomOnionMessageHandler,
200 {
201         /// Constructs a new `OnionMessenger` to send, forward, and delegate received onion messages to
202         /// their respective handlers.
203         pub fn new(
204                 entropy_source: ES, node_signer: NS, logger: L, offers_handler: OMH, custom_handler: CMH
205         ) -> Self {
206                 let mut secp_ctx = Secp256k1::new();
207                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
208                 OnionMessenger {
209                         entropy_source,
210                         node_signer,
211                         pending_messages: Mutex::new(HashMap::new()),
212                         secp_ctx,
213                         logger,
214                         offers_handler,
215                         custom_handler,
216                 }
217         }
218
219         /// Send an onion message with contents `message` to `destination`, routing it through `intermediate_nodes`.
220         /// See [`OnionMessenger`] for example usage.
221         pub fn send_onion_message<T: CustomOnionMessageContents>(&self, intermediate_nodes: &[PublicKey], mut destination: Destination, message: OnionMessageContents<T>, reply_path: Option<BlindedPath>) -> Result<(), SendError> {
222                 if let Destination::BlindedPath(BlindedPath { ref blinded_hops, .. }) = destination {
223                         if blinded_hops.len() < 2 {
224                                 return Err(SendError::TooFewBlindedHops);
225                         }
226                 }
227
228                 if message.tlv_type() < 64 { return Err(SendError::InvalidMessage) }
229
230                 // If we are sending straight to a blinded path and we are the introduction node, we need to
231                 // advance the blinded path by 1 hop so the second hop is the new introduction node.
232                 if intermediate_nodes.len() == 0 {
233                         if let Destination::BlindedPath(ref mut blinded_path) = destination {
234                                 let our_node_id = self.node_signer.get_node_id(Recipient::Node)
235                                         .map_err(|()| SendError::GetNodeIdFailed)?;
236                                 if blinded_path.introduction_node_id == our_node_id {
237                                         blinded_path.advance_message_path_by_one(&self.node_signer, &self.secp_ctx)
238                                                 .map_err(|()| SendError::BlindedPathAdvanceFailed)?;
239                                 }
240                         }
241                 }
242
243                 let blinding_secret_bytes = self.entropy_source.get_secure_random_bytes();
244                 let blinding_secret = SecretKey::from_slice(&blinding_secret_bytes[..]).expect("RNG is busted");
245                 let (introduction_node_id, blinding_point) = if intermediate_nodes.len() != 0 {
246                         (intermediate_nodes[0], PublicKey::from_secret_key(&self.secp_ctx, &blinding_secret))
247                 } else {
248                         match destination {
249                                 Destination::Node(pk) => (pk, PublicKey::from_secret_key(&self.secp_ctx, &blinding_secret)),
250                                 Destination::BlindedPath(BlindedPath { introduction_node_id, blinding_point, .. }) =>
251                                         (introduction_node_id, blinding_point),
252                         }
253                 };
254                 let (packet_payloads, packet_keys) = packet_payloads_and_keys(
255                         &self.secp_ctx, intermediate_nodes, destination, message, reply_path, &blinding_secret)
256                         .map_err(|e| SendError::Secp256k1(e))?;
257
258                 let prng_seed = self.entropy_source.get_secure_random_bytes();
259                 let onion_routing_packet = construct_onion_message_packet(
260                         packet_payloads, packet_keys, prng_seed).map_err(|()| SendError::TooBigPacket)?;
261
262                 let mut pending_per_peer_msgs = self.pending_messages.lock().unwrap();
263                 if outbound_buffer_full(&introduction_node_id, &pending_per_peer_msgs) { return Err(SendError::BufferFull) }
264                 match pending_per_peer_msgs.entry(introduction_node_id) {
265                         hash_map::Entry::Vacant(_) => Err(SendError::InvalidFirstHop),
266                         hash_map::Entry::Occupied(mut e) => {
267                                 e.get_mut().push_back(msgs::OnionMessage { blinding_point, onion_routing_packet });
268                                 Ok(())
269                         }
270                 }
271         }
272
273         #[cfg(test)]
274         pub(super) fn release_pending_msgs(&self) -> HashMap<PublicKey, VecDeque<msgs::OnionMessage>> {
275                 let mut pending_msgs = self.pending_messages.lock().unwrap();
276                 let mut msgs = HashMap::new();
277                 // We don't want to disconnect the peers by removing them entirely from the original map, so we
278                 // swap the pending message buffers individually.
279                 for (peer_node_id, pending_messages) in &mut *pending_msgs {
280                         msgs.insert(*peer_node_id, core::mem::take(pending_messages));
281                 }
282                 msgs
283         }
284 }
285
286 fn outbound_buffer_full(peer_node_id: &PublicKey, buffer: &HashMap<PublicKey, VecDeque<msgs::OnionMessage>>) -> bool {
287         const MAX_TOTAL_BUFFER_SIZE: usize = (1 << 20) * 128;
288         const MAX_PER_PEER_BUFFER_SIZE: usize = (1 << 10) * 256;
289         let mut total_buffered_bytes = 0;
290         let mut peer_buffered_bytes = 0;
291         for (pk, peer_buf) in buffer {
292                 for om in peer_buf {
293                         let om_len = om.serialized_length();
294                         if pk == peer_node_id {
295                                 peer_buffered_bytes += om_len;
296                         }
297                         total_buffered_bytes += om_len;
298
299                         if total_buffered_bytes >= MAX_TOTAL_BUFFER_SIZE ||
300                                 peer_buffered_bytes >= MAX_PER_PEER_BUFFER_SIZE
301                         {
302                                 return true
303                         }
304                 }
305         }
306         false
307 }
308
309 impl<ES: Deref, NS: Deref, L: Deref, OMH: Deref, CMH: Deref> OnionMessageHandler
310 for OnionMessenger<ES, NS, L, OMH, CMH>
311 where
312         ES::Target: EntropySource,
313         NS::Target: NodeSigner,
314         L::Target: Logger,
315         OMH::Target: OffersMessageHandler,
316         CMH::Target: CustomOnionMessageHandler + Sized,
317 {
318         /// Handle an incoming onion message. Currently, if a message was destined for us we will log, but
319         /// soon we'll delegate the onion message to a handler that can generate invoices or send
320         /// payments.
321         fn handle_onion_message(&self, _peer_node_id: &PublicKey, msg: &msgs::OnionMessage) {
322                 let control_tlvs_ss = match self.node_signer.ecdh(Recipient::Node, &msg.blinding_point, None) {
323                         Ok(ss) => ss,
324                         Err(e) =>  {
325                                 log_error!(self.logger, "Failed to retrieve node secret: {:?}", e);
326                                 return
327                         }
328                 };
329                 let onion_decode_ss = {
330                         let blinding_factor = {
331                                 let mut hmac = HmacEngine::<Sha256>::new(b"blinded_node_id");
332                                 hmac.input(control_tlvs_ss.as_ref());
333                                 Hmac::from_engine(hmac).into_inner()
334                         };
335                         match self.node_signer.ecdh(Recipient::Node, &msg.onion_routing_packet.public_key,
336                                 Some(&Scalar::from_be_bytes(blinding_factor).unwrap()))
337                         {
338                                 Ok(ss) => ss.secret_bytes(),
339                                 Err(()) => {
340                                         log_trace!(self.logger, "Failed to compute onion packet shared secret");
341                                         return
342                                 }
343                         }
344                 };
345                 match onion_utils::decode_next_untagged_hop(
346                         onion_decode_ss, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac,
347                         (control_tlvs_ss, &*self.custom_handler, &*self.logger)
348                 ) {
349                         Ok((Payload::Receive::<<<CMH as Deref>::Target as CustomOnionMessageHandler>::CustomMessage> {
350                                 message, control_tlvs: ReceiveControlTlvs::Unblinded(ReceiveTlvs { path_id }), reply_path,
351                         }, None)) => {
352                                 log_info!(self.logger,
353                                         "Received an onion message with path_id {:02x?} and {} reply_path",
354                                                 path_id, if reply_path.is_some() { "a" } else { "no" });
355                                 match message {
356                                         OnionMessageContents::Offers(msg) => self.offers_handler.handle_message(msg),
357                                         OnionMessageContents::Custom(msg) => self.custom_handler.handle_custom_message(msg),
358                                 }
359                         },
360                         Ok((Payload::Forward(ForwardControlTlvs::Unblinded(ForwardTlvs {
361                                 next_node_id, next_blinding_override
362                         })), Some((next_hop_hmac, new_packet_bytes)))) => {
363                                 // TODO: we need to check whether `next_node_id` is our node, in which case this is a dummy
364                                 // blinded hop and this onion message is destined for us. In this situation, we should keep
365                                 // unwrapping the onion layers to get to the final payload. Since we don't have the option
366                                 // of creating blinded paths with dummy hops currently, we should be ok to not handle this
367                                 // for now.
368                                 let new_pubkey = match onion_utils::next_hop_packet_pubkey(&self.secp_ctx, msg.onion_routing_packet.public_key, &onion_decode_ss) {
369                                         Ok(pk) => pk,
370                                         Err(e) => {
371                                                 log_trace!(self.logger, "Failed to compute next hop packet pubkey: {}", e);
372                                                 return
373                                         }
374                                 };
375                                 let outgoing_packet = Packet {
376                                         version: 0,
377                                         public_key: new_pubkey,
378                                         hop_data: new_packet_bytes,
379                                         hmac: next_hop_hmac,
380                                 };
381                                 let onion_message = msgs::OnionMessage {
382                                         blinding_point: match next_blinding_override {
383                                                 Some(blinding_point) => blinding_point,
384                                                 None => {
385                                                         let blinding_factor = {
386                                                                 let mut sha = Sha256::engine();
387                                                                 sha.input(&msg.blinding_point.serialize()[..]);
388                                                                 sha.input(control_tlvs_ss.as_ref());
389                                                                 Sha256::from_engine(sha).into_inner()
390                                                         };
391                                                         let next_blinding_point = msg.blinding_point;
392                                                         match next_blinding_point.mul_tweak(&self.secp_ctx, &Scalar::from_be_bytes(blinding_factor).unwrap()) {
393                                                                 Ok(bp) => bp,
394                                                                 Err(e) => {
395                                                                         log_trace!(self.logger, "Failed to compute next blinding point: {}", e);
396                                                                         return
397                                                                 }
398                                                         }
399                                                 },
400                                         },
401                                         onion_routing_packet: outgoing_packet,
402                                 };
403
404                                 let mut pending_per_peer_msgs = self.pending_messages.lock().unwrap();
405                                 if outbound_buffer_full(&next_node_id, &pending_per_peer_msgs) {
406                                         log_trace!(self.logger, "Dropping forwarded onion message to peer {:?}: outbound buffer full", next_node_id);
407                                         return
408                                 }
409
410                                 #[cfg(fuzzing)]
411                                 pending_per_peer_msgs.entry(next_node_id).or_insert_with(VecDeque::new);
412
413                                 match pending_per_peer_msgs.entry(next_node_id) {
414                                         hash_map::Entry::Vacant(_) => {
415                                                 log_trace!(self.logger, "Dropping forwarded onion message to disconnected peer {:?}", next_node_id);
416                                                 return
417                                         },
418                                         hash_map::Entry::Occupied(mut e) => {
419                                                 e.get_mut().push_back(onion_message);
420                                                 log_trace!(self.logger, "Forwarding an onion message to peer {}", next_node_id);
421                                         }
422                                 };
423                         },
424                         Err(e) => {
425                                 log_trace!(self.logger, "Errored decoding onion message packet: {:?}", e);
426                         },
427                         _ => {
428                                 log_trace!(self.logger, "Received bogus onion message packet, either the sender encoded a final hop as a forwarding hop or vice versa");
429                         },
430                 };
431         }
432
433         fn peer_connected(&self, their_node_id: &PublicKey, init: &msgs::Init, _inbound: bool) -> Result<(), ()> {
434                 if init.features.supports_onion_messages() {
435                         let mut peers = self.pending_messages.lock().unwrap();
436                         peers.insert(their_node_id.clone(), VecDeque::new());
437                 }
438                 Ok(())
439         }
440
441         fn peer_disconnected(&self, their_node_id: &PublicKey) {
442                 let mut pending_msgs = self.pending_messages.lock().unwrap();
443                 pending_msgs.remove(their_node_id);
444         }
445
446         fn provided_node_features(&self) -> NodeFeatures {
447                 let mut features = NodeFeatures::empty();
448                 features.set_onion_messages_optional();
449                 features
450         }
451
452         fn provided_init_features(&self, _their_node_id: &PublicKey) -> InitFeatures {
453                 let mut features = InitFeatures::empty();
454                 features.set_onion_messages_optional();
455                 features
456         }
457 }
458
459 impl<ES: Deref, NS: Deref, L: Deref, OMH: Deref, CMH: Deref> OnionMessageProvider
460 for OnionMessenger<ES, NS, L, OMH, CMH>
461 where
462         ES::Target: EntropySource,
463         NS::Target: NodeSigner,
464         L::Target: Logger,
465         OMH::Target: OffersMessageHandler,
466         CMH::Target: CustomOnionMessageHandler,
467 {
468         fn next_onion_message_for_peer(&self, peer_node_id: PublicKey) -> Option<msgs::OnionMessage> {
469                 let mut pending_msgs = self.pending_messages.lock().unwrap();
470                 if let Some(msgs) = pending_msgs.get_mut(&peer_node_id) {
471                         return msgs.pop_front()
472                 }
473                 None
474         }
475 }
476
477 // TODO: parameterize the below Simple* types with OnionMessenger and handle the messages it
478 // produces
479 /// Useful for simplifying the parameters of [`SimpleArcChannelManager`] and
480 /// [`SimpleArcPeerManager`]. See their docs for more details.
481 ///
482 /// This is not exported to bindings users as `Arc`s don't make sense in bindings.
483 ///
484 /// [`SimpleArcChannelManager`]: crate::ln::channelmanager::SimpleArcChannelManager
485 /// [`SimpleArcPeerManager`]: crate::ln::peer_handler::SimpleArcPeerManager
486 pub type SimpleArcOnionMessenger<L> = OnionMessenger<
487         Arc<KeysManager>,
488         Arc<KeysManager>,
489         Arc<L>,
490         IgnoringMessageHandler,
491         IgnoringMessageHandler
492 >;
493
494 /// Useful for simplifying the parameters of [`SimpleRefChannelManager`] and
495 /// [`SimpleRefPeerManager`]. See their docs for more details.
496 ///
497 /// This is not exported to bindings users as general type aliases don't make sense in bindings.
498 ///
499 /// [`SimpleRefChannelManager`]: crate::ln::channelmanager::SimpleRefChannelManager
500 /// [`SimpleRefPeerManager`]: crate::ln::peer_handler::SimpleRefPeerManager
501 pub type SimpleRefOnionMessenger<'a, 'b, L> = OnionMessenger<
502         &'a KeysManager,
503         &'a KeysManager,
504         &'b L,
505         IgnoringMessageHandler,
506         IgnoringMessageHandler
507 >;
508
509 /// Construct onion packet payloads and keys for sending an onion message along the given
510 /// `unblinded_path` to the given `destination`.
511 fn packet_payloads_and_keys<T: CustomOnionMessageContents, S: secp256k1::Signing + secp256k1::Verification>(
512         secp_ctx: &Secp256k1<S>, unblinded_path: &[PublicKey], destination: Destination,
513         message: OnionMessageContents<T>, mut reply_path: Option<BlindedPath>, session_priv: &SecretKey
514 ) -> Result<(Vec<(Payload<T>, [u8; 32])>, Vec<onion_utils::OnionKeys>), secp256k1::Error> {
515         let num_hops = unblinded_path.len() + destination.num_hops();
516         let mut payloads = Vec::with_capacity(num_hops);
517         let mut onion_packet_keys = Vec::with_capacity(num_hops);
518
519         let (mut intro_node_id_blinding_pt, num_blinded_hops) = if let Destination::BlindedPath(BlindedPath {
520                 introduction_node_id, blinding_point, blinded_hops }) = &destination {
521                 (Some((*introduction_node_id, *blinding_point)), blinded_hops.len()) } else { (None, 0) };
522         let num_unblinded_hops = num_hops - num_blinded_hops;
523
524         let mut unblinded_path_idx = 0;
525         let mut blinded_path_idx = 0;
526         let mut prev_control_tlvs_ss = None;
527         let mut final_control_tlvs = None;
528         utils::construct_keys_callback(secp_ctx, unblinded_path, Some(destination), session_priv, |_, onion_packet_ss, ephemeral_pubkey, control_tlvs_ss, unblinded_pk_opt, enc_payload_opt| {
529                 if num_unblinded_hops != 0 && unblinded_path_idx < num_unblinded_hops {
530                         if let Some(ss) = prev_control_tlvs_ss.take() {
531                                 payloads.push((Payload::Forward(ForwardControlTlvs::Unblinded(
532                                         ForwardTlvs {
533                                                 next_node_id: unblinded_pk_opt.unwrap(),
534                                                 next_blinding_override: None,
535                                         }
536                                 )), ss));
537                         }
538                         prev_control_tlvs_ss = Some(control_tlvs_ss);
539                         unblinded_path_idx += 1;
540                 } else if let Some((intro_node_id, blinding_pt)) = intro_node_id_blinding_pt.take() {
541                         if let Some(control_tlvs_ss) = prev_control_tlvs_ss.take() {
542                                 payloads.push((Payload::Forward(ForwardControlTlvs::Unblinded(ForwardTlvs {
543                                         next_node_id: intro_node_id,
544                                         next_blinding_override: Some(blinding_pt),
545                                 })), control_tlvs_ss));
546                         }
547                 }
548                 if blinded_path_idx < num_blinded_hops.saturating_sub(1) && enc_payload_opt.is_some() {
549                         payloads.push((Payload::Forward(ForwardControlTlvs::Blinded(enc_payload_opt.unwrap())),
550                                 control_tlvs_ss));
551                         blinded_path_idx += 1;
552                 } else if let Some(encrypted_payload) = enc_payload_opt {
553                         final_control_tlvs = Some(ReceiveControlTlvs::Blinded(encrypted_payload));
554                         prev_control_tlvs_ss = Some(control_tlvs_ss);
555                 }
556
557                 let (rho, mu) = onion_utils::gen_rho_mu_from_shared_secret(onion_packet_ss.as_ref());
558                 onion_packet_keys.push(onion_utils::OnionKeys {
559                         #[cfg(test)]
560                         shared_secret: onion_packet_ss,
561                         #[cfg(test)]
562                         blinding_factor: [0; 32],
563                         ephemeral_pubkey,
564                         rho,
565                         mu,
566                 });
567         })?;
568
569         if let Some(control_tlvs) = final_control_tlvs {
570                 payloads.push((Payload::Receive {
571                         control_tlvs,
572                         reply_path: reply_path.take(),
573                         message,
574                 }, prev_control_tlvs_ss.unwrap()));
575         } else {
576                 payloads.push((Payload::Receive {
577                         control_tlvs: ReceiveControlTlvs::Unblinded(ReceiveTlvs { path_id: None, }),
578                         reply_path: reply_path.take(),
579                         message,
580                 }, prev_control_tlvs_ss.unwrap()));
581         }
582
583         Ok((payloads, onion_packet_keys))
584 }
585
586 /// Errors if the serialized payload size exceeds onion_message::BIG_PACKET_HOP_DATA_LEN
587 fn construct_onion_message_packet<T: CustomOnionMessageContents>(payloads: Vec<(Payload<T>, [u8; 32])>, onion_keys: Vec<onion_utils::OnionKeys>, prng_seed: [u8; 32]) -> Result<Packet, ()> {
588         // Spec rationale:
589         // "`len` allows larger messages to be sent than the standard 1300 bytes allowed for an HTLC
590         // onion, but this should be used sparingly as it is reduces anonymity set, hence the
591         // recommendation that it either look like an HTLC onion, or if larger, be a fixed size."
592         let payloads_ser_len = onion_utils::payloads_serialized_length(&payloads);
593         let hop_data_len = if payloads_ser_len <= SMALL_PACKET_HOP_DATA_LEN {
594                 SMALL_PACKET_HOP_DATA_LEN
595         } else if payloads_ser_len <= BIG_PACKET_HOP_DATA_LEN {
596                 BIG_PACKET_HOP_DATA_LEN
597         } else { return Err(()) };
598
599         onion_utils::construct_onion_message_packet::<_, _>(
600                 payloads, onion_keys, prng_seed, hop_data_len)
601 }