7754287202298345b2b7c829aa945c54a6f75751
[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, Secp256k1, SecretKey};
17
18 use chain::keysinterface::{InMemorySigner, KeysInterface, KeysManager, Recipient, Sign};
19 use ln::msgs;
20 use ln::onion_utils;
21 use super::blinded_route::{BlindedRoute, ForwardTlvs, ReceiveTlvs};
22 use super::packet::{BIG_PACKET_HOP_DATA_LEN, ForwardControlTlvs, Packet, Payload, ReceiveControlTlvs, SMALL_PACKET_HOP_DATA_LEN};
23 use super::utils;
24 use util::logger::Logger;
25
26 use core::ops::Deref;
27 use sync::{Arc, Mutex};
28 use prelude::*;
29
30 /// A sender, receiver and forwarder of onion messages. In upcoming releases, this object will be
31 /// used to retrieve invoices and fulfill invoice requests from [offers]. Currently, only sending
32 /// and receiving empty onion messages is supported.
33 ///
34 /// # Example
35 ///
36 //  Needs to be `ignore` until the `onion_message` module is made public, otherwise this is a test
37 //  failure.
38 /// ```ignore
39 /// # extern crate bitcoin;
40 /// # use bitcoin::hashes::_export::_core::time::Duration;
41 /// # use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
42 /// # use lightning::chain::keysinterface::{InMemorySigner, KeysManager, KeysInterface};
43 /// # use lightning::onion_message::{BlindedRoute, Destination, OnionMessenger};
44 /// # use lightning::util::logger::{Logger, Record};
45 /// # use std::sync::Arc;
46 /// # struct FakeLogger {};
47 /// # impl Logger for FakeLogger {
48 /// #     fn log(&self, record: &Record) { unimplemented!() }
49 /// # }
50 /// # let seed = [42u8; 32];
51 /// # let time = Duration::from_secs(123456);
52 /// # let keys_manager = KeysManager::new(&seed, time.as_secs(), time.subsec_nanos());
53 /// # let logger = Arc::new(FakeLogger {});
54 /// # let node_secret = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
55 /// # let secp_ctx = Secp256k1::new();
56 /// # let hop_node_id1 = PublicKey::from_secret_key(&secp_ctx, &node_secret);
57 /// # let (hop_node_id2, hop_node_id3, hop_node_id4) = (hop_node_id1, hop_node_id1,
58 /// hop_node_id1);
59 /// # let destination_node_id = hop_node_id1;
60 /// #
61 /// // Create the onion messenger. This must use the same `keys_manager` as is passed to your
62 /// // ChannelManager.
63 /// let onion_messenger = OnionMessenger::new(&keys_manager, logger);
64 ///
65 /// // Send an empty onion message to a node id.
66 /// let intermediate_hops = [hop_node_id1, hop_node_id2];
67 /// onion_messenger.send_onion_message(&intermediate_hops, Destination::Node(destination_node_id));
68 ///
69 /// // Create a blinded route to yourself, for someone to send an onion message to.
70 /// # let your_node_id = hop_node_id1;
71 /// let hops = [hop_node_id3, hop_node_id4, your_node_id];
72 /// let blinded_route = BlindedRoute::new::<InMemorySigner, _, _>(&hops, &keys_manager, &secp_ctx).unwrap();
73 ///
74 /// // Send an empty onion message to a blinded route.
75 /// # let intermediate_hops = [hop_node_id1, hop_node_id2];
76 /// onion_messenger.send_onion_message(&intermediate_hops, Destination::BlindedRoute(blinded_route));
77 /// ```
78 ///
79 /// [offers]: <https://github.com/lightning/bolts/pull/798>
80 /// [`OnionMessenger`]: crate::onion_message::OnionMessenger
81 pub struct OnionMessenger<Signer: Sign, K: Deref, L: Deref>
82         where K::Target: KeysInterface<Signer = Signer>,
83               L::Target: Logger,
84 {
85         keys_manager: K,
86         logger: L,
87         pending_messages: Mutex<HashMap<PublicKey, Vec<msgs::OnionMessage>>>,
88         secp_ctx: Secp256k1<secp256k1::All>,
89         // Coming soon:
90         // invoice_handler: InvoiceHandler,
91         // custom_handler: CustomHandler, // handles custom onion messages
92 }
93
94 /// The destination of an onion message.
95 pub enum Destination {
96         /// We're sending this onion message to a node.
97         Node(PublicKey),
98         /// We're sending this onion message to a blinded route.
99         BlindedRoute(BlindedRoute),
100 }
101
102 impl Destination {
103         pub(super) fn num_hops(&self) -> usize {
104                 match self {
105                         Destination::Node(_) => 1,
106                         Destination::BlindedRoute(BlindedRoute { blinded_hops, .. }) => blinded_hops.len(),
107                 }
108         }
109 }
110
111 impl<Signer: Sign, K: Deref, L: Deref> OnionMessenger<Signer, K, L>
112         where K::Target: KeysInterface<Signer = Signer>,
113               L::Target: Logger,
114 {
115         /// Constructs a new `OnionMessenger` to send, forward, and delegate received onion messages to
116         /// their respective handlers.
117         pub fn new(keys_manager: K, logger: L) -> Self {
118                 let mut secp_ctx = Secp256k1::new();
119                 secp_ctx.seeded_randomize(&keys_manager.get_secure_random_bytes());
120                 OnionMessenger {
121                         keys_manager,
122                         pending_messages: Mutex::new(HashMap::new()),
123                         secp_ctx,
124                         logger,
125                 }
126         }
127
128         /// Send an empty onion message to `destination`, routing it through `intermediate_nodes`.
129         /// See [`OnionMessenger`] for example usage.
130         pub fn send_onion_message(&self, intermediate_nodes: &[PublicKey], destination: Destination) -> Result<(), secp256k1::Error> {
131                 let blinding_secret_bytes = self.keys_manager.get_secure_random_bytes();
132                 let blinding_secret = SecretKey::from_slice(&blinding_secret_bytes[..]).expect("RNG is busted");
133                 let (introduction_node_id, blinding_point) = if intermediate_nodes.len() != 0 {
134                         (intermediate_nodes[0], PublicKey::from_secret_key(&self.secp_ctx, &blinding_secret))
135                 } else {
136                         match destination {
137                                 Destination::Node(pk) => (pk, PublicKey::from_secret_key(&self.secp_ctx, &blinding_secret)),
138                                 Destination::BlindedRoute(BlindedRoute { introduction_node_id, blinding_point, .. }) =>
139                                         (introduction_node_id, blinding_point),
140                         }
141                 };
142                 let (packet_payloads, packet_keys) = packet_payloads_and_keys(
143                         &self.secp_ctx, intermediate_nodes, destination, &blinding_secret)?;
144
145                 let prng_seed = self.keys_manager.get_secure_random_bytes();
146                 let onion_packet = construct_onion_message_packet(packet_payloads, packet_keys, prng_seed);
147
148                 let mut pending_per_peer_msgs = self.pending_messages.lock().unwrap();
149                 let pending_msgs = pending_per_peer_msgs.entry(introduction_node_id).or_insert(Vec::new());
150                 pending_msgs.push(
151                         msgs::OnionMessage {
152                                 blinding_point,
153                                 onion_routing_packet: onion_packet,
154                         }
155                 );
156                 Ok(())
157         }
158
159         /// Handle an incoming onion message. Currently, if a message was destined for us we will log, but
160         /// soon we'll delegate the onion message to a handler that can generate invoices or send
161         /// payments.
162         pub fn handle_onion_message(&self, _peer_node_id: &PublicKey, msg: &msgs::OnionMessage) {
163                 let control_tlvs_ss = match self.keys_manager.ecdh(Recipient::Node, &msg.blinding_point, None) {
164                         Ok(ss) => ss,
165                         Err(e) =>  {
166                                 log_error!(self.logger, "Failed to retrieve node secret: {:?}", e);
167                                 return
168                         }
169                 };
170                 let onion_decode_ss = {
171                         let blinding_factor = {
172                                 let mut hmac = HmacEngine::<Sha256>::new(b"blinded_node_id");
173                                 hmac.input(control_tlvs_ss.as_ref());
174                                 Hmac::from_engine(hmac).into_inner()
175                         };
176                         match self.keys_manager.ecdh(Recipient::Node, &msg.onion_routing_packet.public_key,
177                                 Some(&blinding_factor))
178                         {
179                                 Ok(ss) => ss.secret_bytes(),
180                                 Err(()) => {
181                                         log_trace!(self.logger, "Failed to compute onion packet shared secret");
182                                         return
183                                 }
184                         }
185                 };
186                 match onion_utils::decode_next_hop(onion_decode_ss, &msg.onion_routing_packet.hop_data[..],
187                         msg.onion_routing_packet.hmac, control_tlvs_ss)
188                 {
189                         Ok((Payload::Receive {
190                                 control_tlvs: ReceiveControlTlvs::Unblinded(ReceiveTlvs { path_id })
191                         }, None)) => {
192                                 log_info!(self.logger, "Received an onion message with path_id: {:02x?}", path_id);
193                         },
194                         Ok((Payload::Forward(ForwardControlTlvs::Unblinded(ForwardTlvs {
195                                 next_node_id, next_blinding_override
196                         })), Some((next_hop_hmac, new_packet_bytes)))) => {
197                                 // TODO: we need to check whether `next_node_id` is our node, in which case this is a dummy
198                                 // blinded hop and this onion message is destined for us. In this situation, we should keep
199                                 // unwrapping the onion layers to get to the final payload. Since we don't have the option
200                                 // of creating blinded routes with dummy hops currently, we should be ok to not handle this
201                                 // for now.
202                                 let new_pubkey = match onion_utils::next_hop_packet_pubkey(&self.secp_ctx, msg.onion_routing_packet.public_key, &onion_decode_ss) {
203                                         Ok(pk) => pk,
204                                         Err(e) => {
205                                                 log_trace!(self.logger, "Failed to compute next hop packet pubkey: {}", e);
206                                                 return
207                                         }
208                                 };
209                                 let outgoing_packet = Packet {
210                                         version: 0,
211                                         public_key: new_pubkey,
212                                         hop_data: new_packet_bytes,
213                                         hmac: next_hop_hmac,
214                                 };
215
216                                 let mut pending_per_peer_msgs = self.pending_messages.lock().unwrap();
217                                 let pending_msgs = pending_per_peer_msgs.entry(next_node_id).or_insert(Vec::new());
218                                 pending_msgs.push(
219                                         msgs::OnionMessage {
220                                                 blinding_point: match next_blinding_override {
221                                                         Some(blinding_point) => blinding_point,
222                                                         None => {
223                                                                 let blinding_factor = {
224                                                                         let mut sha = Sha256::engine();
225                                                                         sha.input(&msg.blinding_point.serialize()[..]);
226                                                                         sha.input(control_tlvs_ss.as_ref());
227                                                                         Sha256::from_engine(sha).into_inner()
228                                                                 };
229                                                                 let mut next_blinding_point = msg.blinding_point;
230                                                                 if let Err(e) = next_blinding_point.mul_assign(&self.secp_ctx, &blinding_factor[..]) {
231                                                                         log_trace!(self.logger, "Failed to compute next blinding point: {}", e);
232                                                                         return
233                                                                 }
234                                                                 next_blinding_point
235                                                         },
236                                                 },
237                                                 onion_routing_packet: outgoing_packet,
238                                         },
239                                 );
240                         },
241                         Err(e) => {
242                                 log_trace!(self.logger, "Errored decoding onion message packet: {:?}", e);
243                         },
244                         _ => {
245                                 log_trace!(self.logger, "Received bogus onion message packet, either the sender encoded a final hop as a forwarding hop or vice versa");
246                         },
247                 };
248         }
249 }
250
251 // TODO: parameterize the below Simple* types with OnionMessenger and handle the messages it
252 // produces
253 /// Useful for simplifying the parameters of [`SimpleArcChannelManager`] and
254 /// [`SimpleArcPeerManager`]. See their docs for more details.
255 ///
256 ///[`SimpleArcChannelManager`]: crate::ln::channelmanager::SimpleArcChannelManager
257 ///[`SimpleArcPeerManager`]: crate::ln::peer_handler::SimpleArcPeerManager
258 pub type SimpleArcOnionMessenger<L> = OnionMessenger<InMemorySigner, Arc<KeysManager>, Arc<L>>;
259 /// Useful for simplifying the parameters of [`SimpleRefChannelManager`] and
260 /// [`SimpleRefPeerManager`]. See their docs for more details.
261 ///
262 ///[`SimpleRefChannelManager`]: crate::ln::channelmanager::SimpleRefChannelManager
263 ///[`SimpleRefPeerManager`]: crate::ln::peer_handler::SimpleRefPeerManager
264 pub type SimpleRefOnionMessenger<'a, 'b, L> = OnionMessenger<InMemorySigner, &'a KeysManager, &'b L>;
265
266 /// Construct onion packet payloads and keys for sending an onion message along the given
267 /// `unblinded_path` to the given `destination`.
268 fn packet_payloads_and_keys<T: secp256k1::Signing + secp256k1::Verification>(
269         secp_ctx: &Secp256k1<T>, unblinded_path: &[PublicKey], destination: Destination, session_priv: &SecretKey
270 ) -> Result<(Vec<(Payload, [u8; 32])>, Vec<onion_utils::OnionKeys>), secp256k1::Error> {
271         let num_hops = unblinded_path.len() + destination.num_hops();
272         let mut payloads = Vec::with_capacity(num_hops);
273         let mut onion_packet_keys = Vec::with_capacity(num_hops);
274
275         let (mut intro_node_id_blinding_pt, num_blinded_hops) = if let Destination::BlindedRoute(BlindedRoute {
276                 introduction_node_id, blinding_point, blinded_hops }) = &destination {
277                 (Some((*introduction_node_id, *blinding_point)), blinded_hops.len()) } else { (None, 0) };
278         let num_unblinded_hops = num_hops - num_blinded_hops;
279
280         let mut unblinded_path_idx = 0;
281         let mut blinded_path_idx = 0;
282         let mut prev_control_tlvs_ss = None;
283         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| {
284                 if num_unblinded_hops != 0 && unblinded_path_idx < num_unblinded_hops {
285                         if let Some(ss) = prev_control_tlvs_ss.take() {
286                                 payloads.push((Payload::Forward(ForwardControlTlvs::Unblinded(
287                                         ForwardTlvs {
288                                                 next_node_id: unblinded_pk_opt.unwrap(),
289                                                 next_blinding_override: None,
290                                         }
291                                 )), ss));
292                         }
293                         prev_control_tlvs_ss = Some(control_tlvs_ss);
294                         unblinded_path_idx += 1;
295                 } else if let Some((intro_node_id, blinding_pt)) = intro_node_id_blinding_pt.take() {
296                         if let Some(control_tlvs_ss) = prev_control_tlvs_ss.take() {
297                                 payloads.push((Payload::Forward(ForwardControlTlvs::Unblinded(ForwardTlvs {
298                                         next_node_id: intro_node_id,
299                                         next_blinding_override: Some(blinding_pt),
300                                 })), control_tlvs_ss));
301                         }
302                         if let Some(encrypted_payload) = enc_payload_opt {
303                                 payloads.push((Payload::Forward(ForwardControlTlvs::Blinded(encrypted_payload)),
304                                         control_tlvs_ss));
305                         } else { debug_assert!(false); }
306                         blinded_path_idx += 1;
307                 } else if blinded_path_idx < num_blinded_hops - 1 && enc_payload_opt.is_some() {
308                         payloads.push((Payload::Forward(ForwardControlTlvs::Blinded(enc_payload_opt.unwrap())),
309                                 control_tlvs_ss));
310                         blinded_path_idx += 1;
311                 } else if let Some(encrypted_payload) = enc_payload_opt {
312                         payloads.push((Payload::Receive {
313                                 control_tlvs: ReceiveControlTlvs::Blinded(encrypted_payload),
314                         }, control_tlvs_ss));
315                 }
316
317                 let (rho, mu) = onion_utils::gen_rho_mu_from_shared_secret(onion_packet_ss.as_ref());
318                 onion_packet_keys.push(onion_utils::OnionKeys {
319                         #[cfg(test)]
320                         shared_secret: onion_packet_ss,
321                         #[cfg(test)]
322                         blinding_factor: [0; 32],
323                         ephemeral_pubkey,
324                         rho,
325                         mu,
326                 });
327         })?;
328
329         if let Some(control_tlvs_ss) = prev_control_tlvs_ss {
330                 payloads.push((Payload::Receive {
331                         control_tlvs: ReceiveControlTlvs::Unblinded(ReceiveTlvs { path_id: None, })
332                 }, control_tlvs_ss));
333         }
334
335         Ok((payloads, onion_packet_keys))
336 }
337
338 fn construct_onion_message_packet(payloads: Vec<(Payload, [u8; 32])>, onion_keys: Vec<onion_utils::OnionKeys>, prng_seed: [u8; 32]) -> Packet {
339         // Spec rationale:
340         // "`len` allows larger messages to be sent than the standard 1300 bytes allowed for an HTLC
341         // onion, but this should be used sparingly as it is reduces anonymity set, hence the
342         // recommendation that it either look like an HTLC onion, or if larger, be a fixed size."
343         let payloads_ser_len = onion_utils::payloads_serialized_length(&payloads);
344         let hop_data_len = if payloads_ser_len <= SMALL_PACKET_HOP_DATA_LEN {
345                 SMALL_PACKET_HOP_DATA_LEN
346         } else if payloads_ser_len <= BIG_PACKET_HOP_DATA_LEN {
347                 BIG_PACKET_HOP_DATA_LEN
348         } else { payloads_ser_len };
349
350         onion_utils::construct_onion_message_packet::<_, _>(payloads, onion_keys, prng_seed, hop_data_len)
351 }