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