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