0fc7c6b3a3d166096019407784b929588ddbddd8
[rust-lightning] / lightning / src / util / events.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 //! Events are returned from various bits in the library which indicate some action must be taken
11 //! by the client.
12 //!
13 //! Because we don't have a built-in runtime, it's up to the client to call events at a time in the
14 //! future, as well as generate and broadcast funding transactions handle payment preimages and a
15 //! few other things.
16
17 use ln::msgs;
18 use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
19 use chain::keysinterface::SpendableOutputDescriptor;
20 use util::ser::{Writeable, Writer, MaybeReadable, Readable, VecReadWrapper, VecWriteWrapper};
21
22 use bitcoin::blockdata::script::Script;
23
24 use bitcoin::secp256k1::key::PublicKey;
25
26 use prelude::*;
27 use core::time::Duration;
28 use core::ops::Deref;
29
30 /// An Event which you should probably take some action in response to.
31 ///
32 /// Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
33 /// them directly as they don't round-trip exactly (for example FundingGenerationReady is never
34 /// written as it makes no sense to respond to it after reconnecting to peers).
35 #[derive(Clone, Debug)]
36 pub enum Event {
37         /// Used to indicate that the client should generate a funding transaction with the given
38         /// parameters and then call ChannelManager::funding_transaction_generated.
39         /// Generated in ChannelManager message handling.
40         /// Note that *all inputs* in the funding transaction must spend SegWit outputs or your
41         /// counterparty can steal your funds!
42         FundingGenerationReady {
43                 /// The random channel_id we picked which you'll need to pass into
44                 /// ChannelManager::funding_transaction_generated.
45                 temporary_channel_id: [u8; 32],
46                 /// The value, in satoshis, that the output should have.
47                 channel_value_satoshis: u64,
48                 /// The script which should be used in the transaction output.
49                 output_script: Script,
50                 /// The value passed in to ChannelManager::create_channel
51                 user_channel_id: u64,
52         },
53         /// Indicates we've received money! Just gotta dig out that payment preimage and feed it to
54         /// ChannelManager::claim_funds to get it....
55         /// Note that if the preimage is not known or the amount paid is incorrect, you should call
56         /// ChannelManager::fail_htlc_backwards to free up resources for this HTLC and avoid
57         /// network congestion.
58         /// The amount paid should be considered 'incorrect' when it is less than or more than twice
59         /// the amount expected.
60         /// If you fail to call either ChannelManager::claim_funds or
61         /// ChannelManager::fail_htlc_backwards within the HTLC's timeout, the HTLC will be
62         /// automatically failed.
63         PaymentReceived {
64                 /// The hash for which the preimage should be handed to the ChannelManager.
65                 payment_hash: PaymentHash,
66                 /// The preimage to the payment_hash, if the payment hash (and secret) were fetched via
67                 /// [`ChannelManager::create_inbound_payment`]. If provided, this can be handed directly to
68                 /// [`ChannelManager::claim_funds`].
69                 ///
70                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
71                 /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
72                 payment_preimage: Option<PaymentPreimage>,
73                 /// The "payment secret". This authenticates the sender to the recipient, preventing a
74                 /// number of deanonymization attacks during the routing process.
75                 /// It is provided here for your reference, however its accuracy is enforced directly by
76                 /// [`ChannelManager`] using the values you previously provided to
77                 /// [`ChannelManager::create_inbound_payment`] or
78                 /// [`ChannelManager::create_inbound_payment_for_hash`].
79                 ///
80                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
81                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
82                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
83                 payment_secret: PaymentSecret,
84                 /// The value, in thousandths of a satoshi, that this payment is for. Note that you must
85                 /// compare this to the expected value before accepting the payment (as otherwise you are
86                 /// providing proof-of-payment for less than the value you expected!).
87                 amt: u64,
88                 /// This is the `user_payment_id` which was provided to
89                 /// [`ChannelManager::create_inbound_payment_for_hash`] or
90                 /// [`ChannelManager::create_inbound_payment`]. It has no meaning inside of LDK and is
91                 /// simply copied here. It may be used to correlate PaymentReceived events with invoice
92                 /// metadata stored elsewhere.
93                 ///
94                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
95                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
96                 user_payment_id: u64,
97         },
98         /// Indicates an outbound payment we made succeeded (ie it made it all the way to its target
99         /// and we got back the payment preimage for it).
100         PaymentSent {
101                 /// The preimage to the hash given to ChannelManager::send_payment.
102                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
103                 /// store it somehow!
104                 payment_preimage: PaymentPreimage,
105         },
106         /// Indicates an outbound payment we made failed. Probably some intermediary node dropped
107         /// something. You may wish to retry with a different route.
108         PaymentFailed {
109                 /// The hash which was given to ChannelManager::send_payment.
110                 payment_hash: PaymentHash,
111                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
112                 /// the payment has failed, not just the route in question. If this is not set, you may
113                 /// retry the payment via a different route.
114                 rejected_by_dest: bool,
115 #[cfg(test)]
116                 error_code: Option<u16>,
117 #[cfg(test)]
118                 error_data: Option<Vec<u8>>,
119         },
120         /// Used to indicate that ChannelManager::process_pending_htlc_forwards should be called at a
121         /// time in the future.
122         PendingHTLCsForwardable {
123                 /// The minimum amount of time that should be waited prior to calling
124                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
125                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
126                 /// now + 5*time_forwardable).
127                 time_forwardable: Duration,
128         },
129         /// Used to indicate that an output which you should know how to spend was confirmed on chain
130         /// and is now spendable.
131         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
132         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
133         /// somewhere and spend them when you create on-chain transactions.
134         SpendableOutputs {
135                 /// The outputs which you should store as spendable by you.
136                 outputs: Vec<SpendableOutputDescriptor>,
137         },
138 }
139
140 impl Writeable for Event {
141         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
142                 match self {
143                         &Event::FundingGenerationReady { .. } => {
144                                 0u8.write(writer)?;
145                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
146                                 // drop any channels which have not yet exchanged funding_signed.
147                         },
148                         &Event::PaymentReceived { ref payment_hash, ref payment_preimage, ref payment_secret, ref amt, ref user_payment_id } => {
149                                 1u8.write(writer)?;
150                                 write_tlv_fields!(writer, {
151                                         (0, payment_hash, required),
152                                         (2, payment_secret, required),
153                                         (4, amt, required),
154                                         (6, user_payment_id, required),
155                                         (8, payment_preimage, option),
156                                 });
157                         },
158                         &Event::PaymentSent { ref payment_preimage } => {
159                                 2u8.write(writer)?;
160                                 write_tlv_fields!(writer, {
161                                         (0, payment_preimage, required),
162                                 });
163                         },
164                         &Event::PaymentFailed { ref payment_hash, ref rejected_by_dest,
165                                 #[cfg(test)]
166                                 ref error_code,
167                                 #[cfg(test)]
168                                 ref error_data,
169                         } => {
170                                 3u8.write(writer)?;
171                                 #[cfg(test)]
172                                 error_code.write(writer)?;
173                                 #[cfg(test)]
174                                 error_data.write(writer)?;
175                                 write_tlv_fields!(writer, {
176                                         (0, payment_hash, required),
177                                         (2, rejected_by_dest, required),
178                                 });
179                         },
180                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
181                                 4u8.write(writer)?;
182                                 write_tlv_fields!(writer, {});
183                                 // We don't write the time_fordwardable out at all, as we presume when the user
184                                 // deserializes us at least that much time has elapsed.
185                         },
186                         &Event::SpendableOutputs { ref outputs } => {
187                                 5u8.write(writer)?;
188                                 write_tlv_fields!(writer, {
189                                         (0, VecWriteWrapper(outputs), required),
190                                 });
191                         },
192                 }
193                 Ok(())
194         }
195 }
196 impl MaybeReadable for Event {
197         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
198                 match Readable::read(reader)? {
199                         0u8 => Ok(None),
200                         1u8 => {
201                                 let f = || {
202                                         let mut payment_hash = PaymentHash([0; 32]);
203                                         let mut payment_preimage = None;
204                                         let mut payment_secret = PaymentSecret([0; 32]);
205                                         let mut amt = 0;
206                                         let mut user_payment_id = 0;
207                                         read_tlv_fields!(reader, {
208                                                 (0, payment_hash, required),
209                                                 (2, payment_secret, required),
210                                                 (4, amt, required),
211                                                 (6, user_payment_id, required),
212                                                 (8, payment_preimage, option),
213                                         });
214                                         Ok(Some(Event::PaymentReceived {
215                                                 payment_hash,
216                                                 payment_preimage,
217                                                 payment_secret,
218                                                 amt,
219                                                 user_payment_id,
220                                         }))
221                                 };
222                                 f()
223                         },
224                         2u8 => {
225                                 let f = || {
226                                         let mut payment_preimage = PaymentPreimage([0; 32]);
227                                         read_tlv_fields!(reader, {
228                                                 (0, payment_preimage, required),
229                                         });
230                                         Ok(Some(Event::PaymentSent {
231                                                 payment_preimage,
232                                         }))
233                                 };
234                                 f()
235                         },
236                         3u8 => {
237                                 let f = || {
238                                         #[cfg(test)]
239                                         let error_code = Readable::read(reader)?;
240                                         #[cfg(test)]
241                                         let error_data = Readable::read(reader)?;
242                                         let mut payment_hash = PaymentHash([0; 32]);
243                                         let mut rejected_by_dest = false;
244                                         read_tlv_fields!(reader, {
245                                                 (0, payment_hash, required),
246                                                 (2, rejected_by_dest, required),
247                                         });
248                                         Ok(Some(Event::PaymentFailed {
249                                                 payment_hash,
250                                                 rejected_by_dest,
251                                                 #[cfg(test)]
252                                                 error_code,
253                                                 #[cfg(test)]
254                                                 error_data,
255                                         }))
256                                 };
257                                 f()
258                         },
259                         4u8 => {
260                                 let f = || {
261                                         read_tlv_fields!(reader, {});
262                                         Ok(Some(Event::PendingHTLCsForwardable {
263                                                 time_forwardable: Duration::from_secs(0)
264                                         }))
265                                 };
266                                 f()
267                         },
268                         5u8 => {
269                                 let f = || {
270                                         let mut outputs = VecReadWrapper(Vec::new());
271                                         read_tlv_fields!(reader, {
272                                                 (0, outputs, required),
273                                         });
274                                         Ok(Some(Event::SpendableOutputs { outputs: outputs.0 }))
275                                 };
276                                 f()
277                         },
278                         _ => Err(msgs::DecodeError::InvalidValue)
279                 }
280         }
281 }
282
283 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
284 /// broadcast to most peers).
285 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
286 #[derive(Clone, Debug)]
287 pub enum MessageSendEvent {
288         /// Used to indicate that we've accepted a channel open and should send the accept_channel
289         /// message provided to the given peer.
290         SendAcceptChannel {
291                 /// The node_id of the node which should receive this message
292                 node_id: PublicKey,
293                 /// The message which should be sent.
294                 msg: msgs::AcceptChannel,
295         },
296         /// Used to indicate that we've initiated a channel open and should send the open_channel
297         /// message provided to the given peer.
298         SendOpenChannel {
299                 /// The node_id of the node which should receive this message
300                 node_id: PublicKey,
301                 /// The message which should be sent.
302                 msg: msgs::OpenChannel,
303         },
304         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
305         SendFundingCreated {
306                 /// The node_id of the node which should receive this message
307                 node_id: PublicKey,
308                 /// The message which should be sent.
309                 msg: msgs::FundingCreated,
310         },
311         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
312         SendFundingSigned {
313                 /// The node_id of the node which should receive this message
314                 node_id: PublicKey,
315                 /// The message which should be sent.
316                 msg: msgs::FundingSigned,
317         },
318         /// Used to indicate that a funding_locked message should be sent to the peer with the given node_id.
319         SendFundingLocked {
320                 /// The node_id of the node which should receive these message(s)
321                 node_id: PublicKey,
322                 /// The funding_locked message which should be sent.
323                 msg: msgs::FundingLocked,
324         },
325         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
326         SendAnnouncementSignatures {
327                 /// The node_id of the node which should receive these message(s)
328                 node_id: PublicKey,
329                 /// The announcement_signatures message which should be sent.
330                 msg: msgs::AnnouncementSignatures,
331         },
332         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
333         /// message should be sent to the peer with the given node_id.
334         UpdateHTLCs {
335                 /// The node_id of the node which should receive these message(s)
336                 node_id: PublicKey,
337                 /// The update messages which should be sent. ALL messages in the struct should be sent!
338                 updates: msgs::CommitmentUpdate,
339         },
340         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
341         SendRevokeAndACK {
342                 /// The node_id of the node which should receive this message
343                 node_id: PublicKey,
344                 /// The message which should be sent.
345                 msg: msgs::RevokeAndACK,
346         },
347         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
348         SendClosingSigned {
349                 /// The node_id of the node which should receive this message
350                 node_id: PublicKey,
351                 /// The message which should be sent.
352                 msg: msgs::ClosingSigned,
353         },
354         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
355         SendShutdown {
356                 /// The node_id of the node which should receive this message
357                 node_id: PublicKey,
358                 /// The message which should be sent.
359                 msg: msgs::Shutdown,
360         },
361         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
362         SendChannelReestablish {
363                 /// The node_id of the node which should receive this message
364                 node_id: PublicKey,
365                 /// The message which should be sent.
366                 msg: msgs::ChannelReestablish,
367         },
368         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
369         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
370         ///
371         /// Note that after doing so, you very likely (unless you did so very recently) want to call
372         /// ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event.
373         /// This ensures that any nodes which see our channel_announcement also have a relevant
374         /// node_announcement, including relevant feature flags which may be important for routing
375         /// through or to us.
376         BroadcastChannelAnnouncement {
377                 /// The channel_announcement which should be sent.
378                 msg: msgs::ChannelAnnouncement,
379                 /// The followup channel_update which should be sent.
380                 update_msg: msgs::ChannelUpdate,
381         },
382         /// Used to indicate that a node_announcement should be broadcast to all peers.
383         BroadcastNodeAnnouncement {
384                 /// The node_announcement which should be sent.
385                 msg: msgs::NodeAnnouncement,
386         },
387         /// Used to indicate that a channel_update should be broadcast to all peers.
388         BroadcastChannelUpdate {
389                 /// The channel_update which should be sent.
390                 msg: msgs::ChannelUpdate,
391         },
392         /// Used to indicate that a channel_update should be sent to a single peer.
393         /// In contrast to [`Self::BroadcastChannelUpdate`], this is used when the channel is a
394         /// private channel and we shouldn't be informing all of our peers of channel parameters.
395         SendChannelUpdate {
396                 /// The node_id of the node which should receive this message
397                 node_id: PublicKey,
398                 /// The channel_update which should be sent.
399                 msg: msgs::ChannelUpdate,
400         },
401         /// Broadcast an error downstream to be handled
402         HandleError {
403                 /// The node_id of the node which should receive this message
404                 node_id: PublicKey,
405                 /// The action which should be taken.
406                 action: msgs::ErrorAction
407         },
408         /// When a payment fails we may receive updates back from the hop where it failed. In such
409         /// cases this event is generated so that we can inform the network graph of this information.
410         PaymentFailureNetworkUpdate {
411                 /// The channel/node update which should be sent to NetGraphMsgHandler
412                 update: msgs::HTLCFailChannelUpdate,
413         },
414         /// Query a peer for channels with funding transaction UTXOs in a block range.
415         SendChannelRangeQuery {
416                 /// The node_id of this message recipient
417                 node_id: PublicKey,
418                 /// The query_channel_range which should be sent.
419                 msg: msgs::QueryChannelRange,
420         },
421         /// Request routing gossip messages from a peer for a list of channels identified by
422         /// their short_channel_ids.
423         SendShortIdsQuery {
424                 /// The node_id of this message recipient
425                 node_id: PublicKey,
426                 /// The query_short_channel_ids which should be sent.
427                 msg: msgs::QueryShortChannelIds,
428         },
429         /// Sends a reply to a channel range query. This may be one of several SendReplyChannelRange events
430         /// emitted during processing of the query.
431         SendReplyChannelRange {
432                 /// The node_id of this message recipient
433                 node_id: PublicKey,
434                 /// The reply_channel_range which should be sent.
435                 msg: msgs::ReplyChannelRange,
436         }
437 }
438
439 /// A trait indicating an object may generate message send events
440 pub trait MessageSendEventsProvider {
441         /// Gets the list of pending events which were generated by previous actions, clearing the list
442         /// in the process.
443         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
444 }
445
446 /// A trait indicating an object may generate events.
447 ///
448 /// Events are processed by passing an [`EventHandler`] to [`process_pending_events`].
449 ///
450 /// # Requirements
451 ///
452 /// See [`process_pending_events`] for requirements around event processing.
453 ///
454 /// When using this trait, [`process_pending_events`] will call [`handle_event`] for each pending
455 /// event since the last invocation. The handler must either act upon the event immediately
456 /// or preserve it for later handling.
457 ///
458 /// Note, handlers may call back into the provider and thus deadlocking must be avoided. Be sure to
459 /// consult the provider's documentation on the implication of processing events and how a handler
460 /// may safely use the provider (e.g., see [`ChannelManager::process_pending_events`] and
461 /// [`ChainMonitor::process_pending_events`]).
462 ///
463 /// (C-not implementable) As there is likely no reason for a user to implement this trait on their
464 /// own type(s).
465 ///
466 /// [`process_pending_events`]: Self::process_pending_events
467 /// [`handle_event`]: EventHandler::handle_event
468 /// [`ChannelManager::process_pending_events`]: crate::ln::channelmanager::ChannelManager#method.process_pending_events
469 /// [`ChainMonitor::process_pending_events`]: crate::chain::chainmonitor::ChainMonitor#method.process_pending_events
470 pub trait EventsProvider {
471         /// Processes any events generated since the last call using the given event handler.
472         ///
473         /// Subsequent calls must only process new events. However, handlers must be capable of handling
474         /// duplicate events across process restarts. This may occur if the provider was recovered from
475         /// an old state (i.e., it hadn't been successfully persisted after processing pending events).
476         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler;
477 }
478
479 /// A trait implemented for objects handling events from [`EventsProvider`].
480 pub trait EventHandler {
481         /// Handles the given [`Event`].
482         ///
483         /// See [`EventsProvider`] for details that must be considered when implementing this method.
484         fn handle_event(&self, event: Event);
485 }
486
487 impl<F> EventHandler for F where F: Fn(Event) {
488         fn handle_event(&self, event: Event) {
489                 self(event)
490         }
491 }