626e2b05840343394afa87816d4e9434a6b653ff
[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;
19 use crate::blinded_path::message::{advance_path_by_one, ForwardTlvs, ReceiveTlvs};
20 use crate::blinded_path::utils;
21 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient};
22 use crate::ln::features::{InitFeatures, NodeFeatures};
23 use crate::ln::msgs::{self, OnionMessage, OnionMessageHandler};
24 use crate::ln::onion_utils;
25 use crate::ln::peer_handler::IgnoringMessageHandler;
26 pub use super::packet::{CustomOnionMessageContents, OnionMessageContents};
27 use super::offers::OffersMessageHandler;
28 use super::packet::{BIG_PACKET_HOP_DATA_LEN, ForwardControlTlvs, Packet, Payload, ReceiveControlTlvs, SMALL_PACKET_HOP_DATA_LEN};
29 use crate::util::logger::Logger;
30 use crate::util::ser::Writeable;
31
32 use core::fmt;
33 use core::ops::Deref;
34 use crate::io;
35 use crate::sync::{Arc, Mutex};
36 use crate::prelude::*;
37
38 /// A sender, receiver and forwarder of [`OnionMessage`]s.
39 ///
40 /// # Handling Messages
41 ///
42 /// `OnionMessenger` implements [`OnionMessageHandler`], making it responsible for either forwarding
43 /// messages to peers or delegating to the appropriate handler for the message type. Currently, the
44 /// available handlers are:
45 /// * [`OffersMessageHandler`], for responding to [`InvoiceRequest`]s and paying [`Bolt12Invoice`]s
46 /// * [`CustomOnionMessageHandler`], for handling user-defined message types
47 ///
48 /// # Sending Messages
49 ///
50 /// [`OnionMessage`]s are sent initially using [`OnionMessenger::send_onion_message`]. When handling
51 /// a message, the matched handler may return a response message which `OnionMessenger` will send
52 /// on its behalf.
53 ///
54 /// # Example
55 ///
56 /// ```
57 /// # extern crate bitcoin;
58 /// # use bitcoin::hashes::_export::_core::time::Duration;
59 /// # use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
60 /// # use lightning::blinded_path::BlindedPath;
61 /// # use lightning::sign::KeysManager;
62 /// # use lightning::ln::peer_handler::IgnoringMessageHandler;
63 /// # use lightning::onion_message::{CustomOnionMessageContents, Destination, MessageRouter, OnionMessageContents, OnionMessagePath, OnionMessenger};
64 /// # use lightning::util::logger::{Logger, Record};
65 /// # use lightning::util::ser::{Writeable, Writer};
66 /// # use lightning::io;
67 /// # use std::sync::Arc;
68 /// # struct FakeLogger;
69 /// # impl Logger for FakeLogger {
70 /// #     fn log(&self, record: &Record) { unimplemented!() }
71 /// # }
72 /// # struct FakeMessageRouter {}
73 /// # impl MessageRouter for FakeMessageRouter {
74 /// #     fn find_path(&self, sender: PublicKey, peers: Vec<PublicKey>, destination: Destination) -> Result<OnionMessagePath, ()> {
75 /// #         unimplemented!()
76 /// #     }
77 /// # }
78 /// # let seed = [42u8; 32];
79 /// # let time = Duration::from_secs(123456);
80 /// # let keys_manager = KeysManager::new(&seed, time.as_secs(), time.subsec_nanos());
81 /// # let logger = Arc::new(FakeLogger {});
82 /// # let node_secret = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
83 /// # let secp_ctx = Secp256k1::new();
84 /// # let hop_node_id1 = PublicKey::from_secret_key(&secp_ctx, &node_secret);
85 /// # let (hop_node_id2, hop_node_id3, hop_node_id4) = (hop_node_id1, hop_node_id1, hop_node_id1);
86 /// # let destination_node_id = hop_node_id1;
87 /// # let message_router = Arc::new(FakeMessageRouter {});
88 /// # let custom_message_handler = IgnoringMessageHandler {};
89 /// # let offers_message_handler = IgnoringMessageHandler {};
90 /// // Create the onion messenger. This must use the same `keys_manager` as is passed to your
91 /// // ChannelManager.
92 /// let onion_messenger = OnionMessenger::new(
93 ///     &keys_manager, &keys_manager, logger, message_router, &offers_message_handler,
94 ///     &custom_message_handler
95 /// );
96 ///
97 /// # struct YourCustomMessage {}
98 /// impl Writeable for YourCustomMessage {
99 ///     fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
100 ///             # Ok(())
101 ///             // Write your custom onion message to `w`
102 ///     }
103 /// }
104 /// impl CustomOnionMessageContents for YourCustomMessage {
105 ///     fn tlv_type(&self) -> u64 {
106 ///             # let your_custom_message_type = 42;
107 ///             your_custom_message_type
108 ///     }
109 /// }
110 /// // Send a custom onion message to a node id.
111 /// let path = OnionMessagePath {
112 ///     intermediate_nodes: vec![hop_node_id1, hop_node_id2],
113 ///     destination: Destination::Node(destination_node_id),
114 /// };
115 /// let reply_path = None;
116 /// # let your_custom_message = YourCustomMessage {};
117 /// let message = OnionMessageContents::Custom(your_custom_message);
118 /// onion_messenger.send_onion_message(path, message, reply_path);
119 ///
120 /// // Create a blinded path to yourself, for someone to send an onion message to.
121 /// # let your_node_id = hop_node_id1;
122 /// let hops = [hop_node_id3, hop_node_id4, your_node_id];
123 /// let blinded_path = BlindedPath::new_for_message(&hops, &keys_manager, &secp_ctx).unwrap();
124 ///
125 /// // Send a custom onion message to a blinded path.
126 /// let path = OnionMessagePath {
127 ///     intermediate_nodes: vec![hop_node_id1, hop_node_id2],
128 ///     destination: Destination::BlindedPath(blinded_path),
129 /// };
130 /// let reply_path = None;
131 /// # let your_custom_message = YourCustomMessage {};
132 /// let message = OnionMessageContents::Custom(your_custom_message);
133 /// onion_messenger.send_onion_message(path, message, reply_path);
134 /// ```
135 ///
136 /// [`InvoiceRequest`]: crate::offers::invoice_request::InvoiceRequest
137 /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
138 pub struct OnionMessenger<ES: Deref, NS: Deref, L: Deref, MR: Deref, OMH: Deref, CMH: Deref>
139 where
140         ES::Target: EntropySource,
141         NS::Target: NodeSigner,
142         L::Target: Logger,
143         MR::Target: MessageRouter,
144         OMH::Target: OffersMessageHandler,
145         CMH:: Target: CustomOnionMessageHandler,
146 {
147         entropy_source: ES,
148         node_signer: NS,
149         logger: L,
150         pending_messages: Mutex<HashMap<PublicKey, VecDeque<OnionMessage>>>,
151         secp_ctx: Secp256k1<secp256k1::All>,
152         message_router: MR,
153         offers_handler: OMH,
154         custom_handler: CMH,
155 }
156
157 /// A trait defining behavior for routing an [`OnionMessage`].
158 pub trait MessageRouter {
159         /// Returns a route for sending an [`OnionMessage`] to the given [`Destination`].
160         fn find_path(
161                 &self, sender: PublicKey, peers: Vec<PublicKey>, destination: Destination
162         ) -> Result<OnionMessagePath, ()>;
163 }
164
165 /// A [`MessageRouter`] that always fails.
166 pub struct DefaultMessageRouter;
167
168 impl MessageRouter for DefaultMessageRouter {
169         fn find_path(
170                 &self, _sender: PublicKey, _peers: Vec<PublicKey>, _destination: Destination
171         ) -> Result<OnionMessagePath, ()> {
172                 Err(())
173         }
174 }
175
176 /// A path for sending an [`OnionMessage`].
177 #[derive(Clone)]
178 pub struct OnionMessagePath {
179         /// Nodes on the path between the sender and the destination.
180         pub intermediate_nodes: Vec<PublicKey>,
181
182         /// The recipient of the message.
183         pub destination: Destination,
184 }
185
186 /// The destination of an onion message.
187 #[derive(Clone)]
188 pub enum Destination {
189         /// We're sending this onion message to a node.
190         Node(PublicKey),
191         /// We're sending this onion message to a blinded path.
192         BlindedPath(BlindedPath),
193 }
194
195 impl Destination {
196         pub(super) fn num_hops(&self) -> usize {
197                 match self {
198                         Destination::Node(_) => 1,
199                         Destination::BlindedPath(BlindedPath { blinded_hops, .. }) => blinded_hops.len(),
200                 }
201         }
202 }
203
204 /// Errors that may occur when [sending an onion message].
205 ///
206 /// [sending an onion message]: OnionMessenger::send_onion_message
207 #[derive(Debug, PartialEq, Eq)]
208 pub enum SendError {
209         /// Errored computing onion message packet keys.
210         Secp256k1(secp256k1::Error),
211         /// Because implementations such as Eclair will drop onion messages where the message packet
212         /// exceeds 32834 bytes, we refuse to send messages where the packet exceeds this size.
213         TooBigPacket,
214         /// The provided [`Destination`] was an invalid [`BlindedPath`], due to having fewer than two
215         /// blinded hops.
216         TooFewBlindedHops,
217         /// Our next-hop peer was offline or does not support onion message forwarding.
218         InvalidFirstHop,
219         /// Onion message contents must have a TLV type >= 64.
220         InvalidMessage,
221         /// Our next-hop peer's buffer was full or our total outbound buffer was full.
222         BufferFull,
223         /// Failed to retrieve our node id from the provided [`NodeSigner`].
224         ///
225         /// [`NodeSigner`]: crate::sign::NodeSigner
226         GetNodeIdFailed,
227         /// We attempted to send to a blinded path where we are the introduction node, and failed to
228         /// advance the blinded path to make the second hop the new introduction node. Either
229         /// [`NodeSigner::ecdh`] failed, we failed to tweak the current blinding point to get the
230         /// new blinding point, or we were attempting to send to ourselves.
231         BlindedPathAdvanceFailed,
232 }
233
234 /// Handler for custom onion messages. If you are using [`SimpleArcOnionMessenger`],
235 /// [`SimpleRefOnionMessenger`], or prefer to ignore inbound custom onion messages,
236 /// [`IgnoringMessageHandler`] must be provided to [`OnionMessenger::new`]. Otherwise, a custom
237 /// implementation of this trait must be provided, with [`CustomMessage`] specifying the supported
238 /// message types.
239 ///
240 /// See [`OnionMessenger`] for example usage.
241 ///
242 /// [`IgnoringMessageHandler`]: crate::ln::peer_handler::IgnoringMessageHandler
243 /// [`CustomMessage`]: Self::CustomMessage
244 pub trait CustomOnionMessageHandler {
245         /// The message known to the handler. To support multiple message types, you may want to make this
246         /// an enum with a variant for each supported message.
247         type CustomMessage: CustomOnionMessageContents;
248
249         /// Called with the custom message that was received, returning a response to send, if any.
250         fn handle_custom_message(&self, msg: Self::CustomMessage) -> Option<Self::CustomMessage>;
251
252         /// Read a custom message of type `message_type` from `buffer`, returning `Ok(None)` if the
253         /// message type is unknown.
254         fn read_custom_message<R: io::Read>(&self, message_type: u64, buffer: &mut R) -> Result<Option<Self::CustomMessage>, msgs::DecodeError>;
255 }
256
257 /// A processed incoming onion message, containing either a Forward (another onion message)
258 /// or a Receive payload with decrypted contents.
259 pub enum PeeledOnion<CM: CustomOnionMessageContents> {
260         /// Forwarded onion, with the next node id and a new onion
261         Forward(PublicKey, OnionMessage),
262         /// Received onion message, with decrypted contents, path_id, and reply path
263         Receive(OnionMessageContents<CM>, Option<[u8; 32]>, Option<BlindedPath>)
264 }
265
266 /// Creates an [`OnionMessage`] with the given `contents` for sending to the destination of
267 /// `path`.
268 ///
269 /// Returns both the node id of the peer to send the message to and the message itself.
270 pub fn create_onion_message<ES: Deref, NS: Deref, T: CustomOnionMessageContents>(
271         entropy_source: &ES, node_signer: &NS, secp_ctx: &Secp256k1<secp256k1::All>,
272         path: OnionMessagePath, contents: OnionMessageContents<T>, reply_path: Option<BlindedPath>,
273 ) -> Result<(PublicKey, OnionMessage), SendError>
274 where
275         ES::Target: EntropySource,
276         NS::Target: NodeSigner,
277 {
278         let OnionMessagePath { intermediate_nodes, mut destination } = path;
279         if let Destination::BlindedPath(BlindedPath { ref blinded_hops, .. }) = destination {
280                 if blinded_hops.len() < 2 {
281                         return Err(SendError::TooFewBlindedHops);
282                 }
283         }
284
285         if contents.tlv_type() < 64 { return Err(SendError::InvalidMessage) }
286
287         // If we are sending straight to a blinded path and we are the introduction node, we need to
288         // advance the blinded path by 1 hop so the second hop is the new introduction node.
289         if intermediate_nodes.len() == 0 {
290                 if let Destination::BlindedPath(ref mut blinded_path) = destination {
291                         let our_node_id = node_signer.get_node_id(Recipient::Node)
292                                 .map_err(|()| SendError::GetNodeIdFailed)?;
293                         if blinded_path.introduction_node_id == our_node_id {
294                                 advance_path_by_one(blinded_path, node_signer, &secp_ctx)
295                                         .map_err(|()| SendError::BlindedPathAdvanceFailed)?;
296                         }
297                 }
298         }
299
300         let blinding_secret_bytes = entropy_source.get_secure_random_bytes();
301         let blinding_secret = SecretKey::from_slice(&blinding_secret_bytes[..]).expect("RNG is busted");
302         let (first_node_id, blinding_point) = if let Some(first_node_id) = intermediate_nodes.first() {
303                 (*first_node_id, PublicKey::from_secret_key(&secp_ctx, &blinding_secret))
304         } else {
305                 match destination {
306                         Destination::Node(pk) => (pk, PublicKey::from_secret_key(&secp_ctx, &blinding_secret)),
307                         Destination::BlindedPath(BlindedPath { introduction_node_id, blinding_point, .. }) =>
308                                 (introduction_node_id, blinding_point),
309                 }
310         };
311         let (packet_payloads, packet_keys) = packet_payloads_and_keys(
312                 &secp_ctx, &intermediate_nodes, destination, contents, reply_path, &blinding_secret)
313                 .map_err(|e| SendError::Secp256k1(e))?;
314
315         let prng_seed = entropy_source.get_secure_random_bytes();
316         let onion_routing_packet = construct_onion_message_packet(
317                 packet_payloads, packet_keys, prng_seed).map_err(|()| SendError::TooBigPacket)?;
318
319         Ok((first_node_id, OnionMessage {
320                 blinding_point,
321                 onion_routing_packet
322         }))
323 }
324
325 /// Decode one layer of an incoming onion message
326 /// Returns either a Forward (another onion message), or Receive (decrypted content)
327 pub fn peel_onion<NS: Deref, L: Deref, CMH: Deref>(
328         node_signer: NS, secp_ctx: &Secp256k1<secp256k1::All>, logger: L, custom_handler: CMH,
329         msg: &OnionMessage,
330 ) -> Result<PeeledOnion<<<CMH>::Target as CustomOnionMessageHandler>::CustomMessage>, ()>
331 where
332         NS::Target: NodeSigner,
333         L::Target: Logger,
334         CMH::Target: CustomOnionMessageHandler,
335 {
336         let control_tlvs_ss = match node_signer.ecdh(Recipient::Node, &msg.blinding_point, None) {
337                 Ok(ss) => ss,
338                 Err(e) =>  {
339                         log_error!(logger, "Failed to retrieve node secret: {:?}", e);
340                         return Err(());
341                 }
342         };
343         let onion_decode_ss = {
344                 let blinding_factor = {
345                         let mut hmac = HmacEngine::<Sha256>::new(b"blinded_node_id");
346                         hmac.input(control_tlvs_ss.as_ref());
347                         Hmac::from_engine(hmac).into_inner()
348                 };
349                 match node_signer.ecdh(Recipient::Node, &msg.onion_routing_packet.public_key,
350                         Some(&Scalar::from_be_bytes(blinding_factor).unwrap()))
351                 {
352                         Ok(ss) => ss.secret_bytes(),
353                         Err(()) => {
354                                 log_trace!(logger, "Failed to compute onion packet shared secret");
355                                 return Err(());
356                         }
357                 }
358         };
359         match onion_utils::decode_next_untagged_hop(
360                 onion_decode_ss, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac,
361                 (control_tlvs_ss, custom_handler.deref(), logger.deref())
362         ) {
363                 Ok((Payload::Receive::<<<CMH as Deref>::Target as CustomOnionMessageHandler>::CustomMessage> {
364                         message, control_tlvs: ReceiveControlTlvs::Unblinded(ReceiveTlvs { path_id }), reply_path,
365                 }, None)) => {
366                         Ok(PeeledOnion::Receive(message, path_id, reply_path))
367                 },
368                 Ok((Payload::Forward(ForwardControlTlvs::Unblinded(ForwardTlvs {
369                         next_node_id, next_blinding_override
370                 })), Some((next_hop_hmac, new_packet_bytes)))) => {
371                         // TODO: we need to check whether `next_node_id` is our node, in which case this is a dummy
372                         // blinded hop and this onion message is destined for us. In this situation, we should keep
373                         // unwrapping the onion layers to get to the final payload. Since we don't have the option
374                         // of creating blinded paths with dummy hops currently, we should be ok to not handle this
375                         // for now.
376                         let new_pubkey = match onion_utils::next_hop_pubkey(&secp_ctx, msg.onion_routing_packet.public_key, &onion_decode_ss) {
377                                 Ok(pk) => pk,
378                                 Err(e) => {
379                                         log_trace!(logger, "Failed to compute next hop packet pubkey: {}", e);
380                                         return Err(())
381                                 }
382                         };
383                         let outgoing_packet = Packet {
384                                 version: 0,
385                                 public_key: new_pubkey,
386                                 hop_data: new_packet_bytes,
387                                 hmac: next_hop_hmac,
388                         };
389                         let onion_message = OnionMessage {
390                                 blinding_point: match next_blinding_override {
391                                         Some(blinding_point) => blinding_point,
392                                         None => {
393                                                 match onion_utils::next_hop_pubkey(
394                                                         &secp_ctx, msg.blinding_point, control_tlvs_ss.as_ref()
395                                                 ) {
396                                                         Ok(bp) => bp,
397                                                         Err(e) => {
398                                                                 log_trace!(logger, "Failed to compute next blinding point: {}", e);
399                                                                 return Err(())
400                                                         }
401                                                 }
402                                         }
403                                 },
404                                 onion_routing_packet: outgoing_packet,
405                         };
406
407                         Ok(PeeledOnion::Forward(next_node_id, onion_message))
408                 },
409                 Err(e) => {
410                         log_trace!(logger, "Errored decoding onion message packet: {:?}", e);
411                         Err(())
412                 },
413                 _ => {
414                         log_trace!(logger, "Received bogus onion message packet, either the sender encoded a final hop as a forwarding hop or vice versa");
415                         Err(())
416                 },
417         }
418 }
419
420 impl<ES: Deref, NS: Deref, L: Deref, MR: Deref, OMH: Deref, CMH: Deref>
421 OnionMessenger<ES, NS, L, MR, OMH, CMH>
422 where
423         ES::Target: EntropySource,
424         NS::Target: NodeSigner,
425         L::Target: Logger,
426         MR::Target: MessageRouter,
427         OMH::Target: OffersMessageHandler,
428         CMH::Target: CustomOnionMessageHandler,
429 {
430         /// Constructs a new `OnionMessenger` to send, forward, and delegate received onion messages to
431         /// their respective handlers.
432         pub fn new(
433                 entropy_source: ES, node_signer: NS, logger: L, message_router: MR, offers_handler: OMH,
434                 custom_handler: CMH
435         ) -> Self {
436                 let mut secp_ctx = Secp256k1::new();
437                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
438                 OnionMessenger {
439                         entropy_source,
440                         node_signer,
441                         pending_messages: Mutex::new(HashMap::new()),
442                         secp_ctx,
443                         logger,
444                         message_router,
445                         offers_handler,
446                         custom_handler,
447                 }
448         }
449
450         /// Sends an [`OnionMessage`] with the given `contents` for sending to the destination of
451         /// `path`.
452         ///
453         /// See [`OnionMessenger`] for example usage.
454         pub fn send_onion_message<T: CustomOnionMessageContents>(
455                 &self, path: OnionMessagePath, contents: OnionMessageContents<T>,
456                 reply_path: Option<BlindedPath>
457         ) -> Result<(), SendError> {
458                 let (first_node_id, onion_msg) = create_onion_message(
459                         &self.entropy_source, &self.node_signer, &self.secp_ctx, path, contents, reply_path
460                 )?;
461
462                 let mut pending_per_peer_msgs = self.pending_messages.lock().unwrap();
463                 if outbound_buffer_full(&first_node_id, &pending_per_peer_msgs) { return Err(SendError::BufferFull) }
464                 match pending_per_peer_msgs.entry(first_node_id) {
465                         hash_map::Entry::Vacant(_) => Err(SendError::InvalidFirstHop),
466                         hash_map::Entry::Occupied(mut e) => {
467                                 e.get_mut().push_back(onion_msg);
468                                 Ok(())
469                         }
470                 }
471         }
472
473         fn find_path_and_enqueue_onion_message<T: CustomOnionMessageContents>(
474                 &self, contents: OnionMessageContents<T>, destination: Destination,
475                 log_suffix: fmt::Arguments
476         ) {
477                 let sender = match self.node_signer.get_node_id(Recipient::Node) {
478                         Ok(node_id) => node_id,
479                         Err(_) => {
480                                 log_warn!(self.logger, "Unable to retrieve node id {}", log_suffix);
481                                 return;
482                         }
483                 };
484
485                 let peers = self.pending_messages.lock().unwrap().keys().copied().collect();
486                 let path = match self.message_router.find_path(sender, peers, destination) {
487                         Ok(path) => path,
488                         Err(()) => {
489                                 log_trace!(self.logger, "Failed to find path {}", log_suffix);
490                                 return;
491                         },
492                 };
493
494                 log_trace!(self.logger, "Sending onion message {}", log_suffix);
495
496                 if let Err(e) = self.send_onion_message(path, contents, None) {
497                         log_trace!(self.logger, "Failed sending onion message {}: {:?}", log_suffix, e);
498                         return;
499                 }
500         }
501
502         #[cfg(test)]
503         pub(super) fn release_pending_msgs(&self) -> HashMap<PublicKey, VecDeque<OnionMessage>> {
504                 let mut pending_msgs = self.pending_messages.lock().unwrap();
505                 let mut msgs = HashMap::new();
506                 // We don't want to disconnect the peers by removing them entirely from the original map, so we
507                 // swap the pending message buffers individually.
508                 for (peer_node_id, pending_messages) in &mut *pending_msgs {
509                         msgs.insert(*peer_node_id, core::mem::take(pending_messages));
510                 }
511                 msgs
512         }
513 }
514
515 fn outbound_buffer_full(peer_node_id: &PublicKey, buffer: &HashMap<PublicKey, VecDeque<OnionMessage>>) -> bool {
516         const MAX_TOTAL_BUFFER_SIZE: usize = (1 << 20) * 128;
517         const MAX_PER_PEER_BUFFER_SIZE: usize = (1 << 10) * 256;
518         let mut total_buffered_bytes = 0;
519         let mut peer_buffered_bytes = 0;
520         for (pk, peer_buf) in buffer {
521                 for om in peer_buf {
522                         let om_len = om.serialized_length();
523                         if pk == peer_node_id {
524                                 peer_buffered_bytes += om_len;
525                         }
526                         total_buffered_bytes += om_len;
527
528                         if total_buffered_bytes >= MAX_TOTAL_BUFFER_SIZE ||
529                                 peer_buffered_bytes >= MAX_PER_PEER_BUFFER_SIZE
530                         {
531                                 return true
532                         }
533                 }
534         }
535         false
536 }
537
538 impl<ES: Deref, NS: Deref, L: Deref, MR: Deref, OMH: Deref, CMH: Deref> OnionMessageHandler
539 for OnionMessenger<ES, NS, L, MR, OMH, CMH>
540 where
541         ES::Target: EntropySource,
542         NS::Target: NodeSigner,
543         L::Target: Logger,
544         MR::Target: MessageRouter,
545         OMH::Target: OffersMessageHandler,
546         CMH::Target: CustomOnionMessageHandler,
547 {
548         /// Handle an incoming onion message. Currently, if a message was destined for us we will log, but
549         /// soon we'll delegate the onion message to a handler that can generate invoices or send
550         /// payments.
551         fn handle_onion_message(&self, _peer_node_id: &PublicKey, msg: &OnionMessage) {
552                 match peel_onion(
553                         &*self.node_signer, &self.secp_ctx, &*self.logger, &*self.custom_handler, msg
554                 ) {
555                         Ok(PeeledOnion::Receive(message, path_id, reply_path)) => {
556                                 log_trace!(self.logger,
557                                         "Received an onion message with path_id {:02x?} and {} reply_path",
558                                                 path_id, if reply_path.is_some() { "a" } else { "no" });
559                                 let response = match message {
560                                         OnionMessageContents::Offers(msg) => {
561                                                 self.offers_handler.handle_message(msg)
562                                                         .map(|msg| OnionMessageContents::Offers(msg))
563                                         },
564                                         OnionMessageContents::Custom(msg) => {
565                                                 self.custom_handler.handle_custom_message(msg)
566                                                         .map(|msg| OnionMessageContents::Custom(msg))
567                                         },
568                                 };
569                                 if let Some(response) = response {
570                                         match reply_path {
571                                                 Some(reply_path) => {
572                                                         self.find_path_and_enqueue_onion_message(
573                                                                 response, Destination::BlindedPath(reply_path), format_args!(
574                                                                         "when responding to onion message with path_id {:02x?}", path_id
575                                                                 )
576                                                         );
577                                                 },
578                                                 None => {
579                                                         log_trace!(
580                                                                 self.logger,
581                                                                 "Missing reply path when responding to onion message with path_id {:02x?}",
582                                                                 path_id
583                                                         );
584                                                 },
585                                         }
586                                 }
587                         },
588                         Ok(PeeledOnion::Forward(next_node_id, onion_message)) => {
589                                 let mut pending_per_peer_msgs = self.pending_messages.lock().unwrap();
590                                 if outbound_buffer_full(&next_node_id, &pending_per_peer_msgs) {
591                                         log_trace!(self.logger, "Dropping forwarded onion message to peer {:?}: outbound buffer full", next_node_id);
592                                         return
593                                 }
594
595                                 #[cfg(fuzzing)]
596                                 pending_per_peer_msgs.entry(next_node_id).or_insert_with(VecDeque::new);
597
598                                 match pending_per_peer_msgs.entry(next_node_id) {
599                                         hash_map::Entry::Vacant(_) => {
600                                                 log_trace!(self.logger, "Dropping forwarded onion message to disconnected peer {:?}", next_node_id);
601                                                 return
602                                         },
603                                         hash_map::Entry::Occupied(mut e) => {
604                                                 e.get_mut().push_back(onion_message);
605                                                 log_trace!(self.logger, "Forwarding an onion message to peer {}", next_node_id);
606                                         }
607                                 }
608                         },
609                         Err(e) => {
610                                 log_error!(self.logger, "Failed to process onion message {:?}", e);
611                         }
612                 }
613         }
614
615         fn peer_connected(&self, their_node_id: &PublicKey, init: &msgs::Init, _inbound: bool) -> Result<(), ()> {
616                 if init.features.supports_onion_messages() {
617                         let mut peers = self.pending_messages.lock().unwrap();
618                         peers.insert(their_node_id.clone(), VecDeque::new());
619                 }
620                 Ok(())
621         }
622
623         fn peer_disconnected(&self, their_node_id: &PublicKey) {
624                 let mut pending_msgs = self.pending_messages.lock().unwrap();
625                 pending_msgs.remove(their_node_id);
626         }
627
628         fn provided_node_features(&self) -> NodeFeatures {
629                 let mut features = NodeFeatures::empty();
630                 features.set_onion_messages_optional();
631                 features
632         }
633
634         fn provided_init_features(&self, _their_node_id: &PublicKey) -> InitFeatures {
635                 let mut features = InitFeatures::empty();
636                 features.set_onion_messages_optional();
637                 features
638         }
639
640         fn next_onion_message_for_peer(&self, peer_node_id: PublicKey) -> Option<OnionMessage> {
641                 let mut pending_msgs = self.pending_messages.lock().unwrap();
642                 if let Some(msgs) = pending_msgs.get_mut(&peer_node_id) {
643                         return msgs.pop_front()
644                 }
645                 None
646         }
647 }
648
649 // TODO: parameterize the below Simple* types with OnionMessenger and handle the messages it
650 // produces
651 /// Useful for simplifying the parameters of [`SimpleArcChannelManager`] and
652 /// [`SimpleArcPeerManager`]. See their docs for more details.
653 ///
654 /// This is not exported to bindings users as `Arc`s don't make sense in bindings.
655 ///
656 /// [`SimpleArcChannelManager`]: crate::ln::channelmanager::SimpleArcChannelManager
657 /// [`SimpleArcPeerManager`]: crate::ln::peer_handler::SimpleArcPeerManager
658 pub type SimpleArcOnionMessenger<L> = OnionMessenger<
659         Arc<KeysManager>,
660         Arc<KeysManager>,
661         Arc<L>,
662         Arc<DefaultMessageRouter>,
663         IgnoringMessageHandler,
664         IgnoringMessageHandler
665 >;
666
667 /// Useful for simplifying the parameters of [`SimpleRefChannelManager`] and
668 /// [`SimpleRefPeerManager`]. See their docs for more details.
669 ///
670 /// This is not exported to bindings users as general type aliases don't make sense in bindings.
671 ///
672 /// [`SimpleRefChannelManager`]: crate::ln::channelmanager::SimpleRefChannelManager
673 /// [`SimpleRefPeerManager`]: crate::ln::peer_handler::SimpleRefPeerManager
674 pub type SimpleRefOnionMessenger<'a, 'b, 'c, L> = OnionMessenger<
675         &'a KeysManager,
676         &'a KeysManager,
677         &'b L,
678         &'c DefaultMessageRouter,
679         IgnoringMessageHandler,
680         IgnoringMessageHandler
681 >;
682
683 /// Construct onion packet payloads and keys for sending an onion message along the given
684 /// `unblinded_path` to the given `destination`.
685 fn packet_payloads_and_keys<T: CustomOnionMessageContents, S: secp256k1::Signing + secp256k1::Verification>(
686         secp_ctx: &Secp256k1<S>, unblinded_path: &[PublicKey], destination: Destination,
687         message: OnionMessageContents<T>, mut reply_path: Option<BlindedPath>, session_priv: &SecretKey
688 ) -> Result<(Vec<(Payload<T>, [u8; 32])>, Vec<onion_utils::OnionKeys>), secp256k1::Error> {
689         let num_hops = unblinded_path.len() + destination.num_hops();
690         let mut payloads = Vec::with_capacity(num_hops);
691         let mut onion_packet_keys = Vec::with_capacity(num_hops);
692
693         let (mut intro_node_id_blinding_pt, num_blinded_hops) = if let Destination::BlindedPath(BlindedPath {
694                 introduction_node_id, blinding_point, blinded_hops }) = &destination {
695                 (Some((*introduction_node_id, *blinding_point)), blinded_hops.len()) } else { (None, 0) };
696         let num_unblinded_hops = num_hops - num_blinded_hops;
697
698         let mut unblinded_path_idx = 0;
699         let mut blinded_path_idx = 0;
700         let mut prev_control_tlvs_ss = None;
701         let mut final_control_tlvs = None;
702         utils::construct_keys_callback(secp_ctx, unblinded_path.iter(), Some(destination), session_priv,
703                 |_, onion_packet_ss, ephemeral_pubkey, control_tlvs_ss, unblinded_pk_opt, enc_payload_opt| {
704                         if num_unblinded_hops != 0 && unblinded_path_idx < num_unblinded_hops {
705                                 if let Some(ss) = prev_control_tlvs_ss.take() {
706                                         payloads.push((Payload::Forward(ForwardControlTlvs::Unblinded(
707                                                 ForwardTlvs {
708                                                         next_node_id: unblinded_pk_opt.unwrap(),
709                                                         next_blinding_override: None,
710                                                 }
711                                         )), ss));
712                                 }
713                                 prev_control_tlvs_ss = Some(control_tlvs_ss);
714                                 unblinded_path_idx += 1;
715                         } else if let Some((intro_node_id, blinding_pt)) = intro_node_id_blinding_pt.take() {
716                                 if let Some(control_tlvs_ss) = prev_control_tlvs_ss.take() {
717                                         payloads.push((Payload::Forward(ForwardControlTlvs::Unblinded(ForwardTlvs {
718                                                 next_node_id: intro_node_id,
719                                                 next_blinding_override: Some(blinding_pt),
720                                         })), control_tlvs_ss));
721                                 }
722                         }
723                         if blinded_path_idx < num_blinded_hops.saturating_sub(1) && enc_payload_opt.is_some() {
724                                 payloads.push((Payload::Forward(ForwardControlTlvs::Blinded(enc_payload_opt.unwrap())),
725                                         control_tlvs_ss));
726                                 blinded_path_idx += 1;
727                         } else if let Some(encrypted_payload) = enc_payload_opt {
728                                 final_control_tlvs = Some(ReceiveControlTlvs::Blinded(encrypted_payload));
729                                 prev_control_tlvs_ss = Some(control_tlvs_ss);
730                         }
731
732                         let (rho, mu) = onion_utils::gen_rho_mu_from_shared_secret(onion_packet_ss.as_ref());
733                         onion_packet_keys.push(onion_utils::OnionKeys {
734                                 #[cfg(test)]
735                                 shared_secret: onion_packet_ss,
736                                 #[cfg(test)]
737                                 blinding_factor: [0; 32],
738                                 ephemeral_pubkey,
739                                 rho,
740                                 mu,
741                         });
742                 }
743         )?;
744
745         if let Some(control_tlvs) = final_control_tlvs {
746                 payloads.push((Payload::Receive {
747                         control_tlvs,
748                         reply_path: reply_path.take(),
749                         message,
750                 }, prev_control_tlvs_ss.unwrap()));
751         } else {
752                 payloads.push((Payload::Receive {
753                         control_tlvs: ReceiveControlTlvs::Unblinded(ReceiveTlvs { path_id: None, }),
754                         reply_path: reply_path.take(),
755                         message,
756                 }, prev_control_tlvs_ss.unwrap()));
757         }
758
759         Ok((payloads, onion_packet_keys))
760 }
761
762 /// Errors if the serialized payload size exceeds onion_message::BIG_PACKET_HOP_DATA_LEN
763 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, ()> {
764         // Spec rationale:
765         // "`len` allows larger messages to be sent than the standard 1300 bytes allowed for an HTLC
766         // onion, but this should be used sparingly as it is reduces anonymity set, hence the
767         // recommendation that it either look like an HTLC onion, or if larger, be a fixed size."
768         let payloads_ser_len = onion_utils::payloads_serialized_length(&payloads);
769         let hop_data_len = if payloads_ser_len <= SMALL_PACKET_HOP_DATA_LEN {
770                 SMALL_PACKET_HOP_DATA_LEN
771         } else if payloads_ser_len <= BIG_PACKET_HOP_DATA_LEN {
772                 BIG_PACKET_HOP_DATA_LEN
773         } else { return Err(()) };
774
775         onion_utils::construct_onion_message_packet::<_, _>(
776                 payloads, onion_keys, prng_seed, hop_data_len)
777 }