8b8cc1230372821aa52c0cd4e6edbdc01cb5f1bd
[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::channelmanager::{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 "payment secret". This authenticates the sender to the recipient, preventing a
65                 /// number of deanonymization attacks during the routing process.
66                 /// As nodes upgrade, the invoices you provide should likely migrate to setting the
67                 /// payment_secret feature to required, at which point you should fail_backwards any HTLCs
68                 /// which have a None here.
69                 /// Until then, however, values of None should be ignored, and only incorrect Some values
70                 /// should result in an HTLC fail_backwards.
71                 /// Note that, in any case, this value must be passed as-is to any fail or claim calls as
72                 /// the HTLC index includes this value.
73                 payment_secret: Option<PaymentSecret>,
74                 /// The value, in thousandths of a satoshi, that this payment is for. Note that you must
75                 /// compare this to the expected value before accepting the payment (as otherwise you are
76                 /// providing proof-of-payment for less than the value you expected!).
77                 amt: u64,
78         },
79         /// Indicates an outbound payment we made succeeded (ie it made it all the way to its target
80         /// and we got back the payment preimage for it).
81         /// Note that duplicative PaymentSent Events may be generated - it is your responsibility to
82         /// deduplicate them by payment_preimage (which MUST be unique)!
83         PaymentSent {
84                 /// The preimage to the hash given to ChannelManager::send_payment.
85                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
86                 /// store it somehow!
87                 payment_preimage: PaymentPreimage,
88         },
89         /// Indicates an outbound payment we made failed. Probably some intermediary node dropped
90         /// something. You may wish to retry with a different route.
91         /// Note that duplicative PaymentFailed Events may be generated - it is your responsibility to
92         /// deduplicate them by payment_hash (which MUST be unique)!
93         PaymentFailed {
94                 /// The hash which was given to ChannelManager::send_payment.
95                 payment_hash: PaymentHash,
96                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
97                 /// the payment has failed, not just the route in question. If this is not set, you may
98                 /// retry the payment via a different route.
99                 rejected_by_dest: bool,
100 #[cfg(test)]
101                 error_code: Option<u16>,
102 #[cfg(test)]
103                 error_data: Option<Vec<u8>>,
104         },
105         /// Used to indicate that ChannelManager::process_pending_htlc_forwards should be called at a
106         /// time in the future.
107         PendingHTLCsForwardable {
108                 /// The minimum amount of time that should be waited prior to calling
109                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
110                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
111                 /// now + 5*time_forwardable).
112                 time_forwardable: Duration,
113         },
114         /// Used to indicate that an output was generated on-chain which you should know how to spend.
115         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
116         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
117         /// somewhere and spend them when you create on-chain transactions.
118         SpendableOutputs {
119                 /// The outputs which you should store as spendable by you.
120                 outputs: Vec<SpendableOutputDescriptor>,
121         },
122 }
123
124 impl Writeable for Event {
125         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
126                 match self {
127                         &Event::FundingGenerationReady { .. } => {
128                                 0u8.write(writer)?;
129                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
130                                 // drop any channels which have not yet exchanged funding_signed.
131                         },
132                         &Event::PaymentReceived { ref payment_hash, ref payment_secret, ref amt } => {
133                                 1u8.write(writer)?;
134                                 payment_hash.write(writer)?;
135                                 payment_secret.write(writer)?;
136                                 amt.write(writer)?;
137                         },
138                         &Event::PaymentSent { ref payment_preimage } => {
139                                 2u8.write(writer)?;
140                                 payment_preimage.write(writer)?;
141                         },
142                         &Event::PaymentFailed { ref payment_hash, ref rejected_by_dest,
143                                 #[cfg(test)]
144                                 ref error_code,
145                                 #[cfg(test)]
146                                 ref error_data,
147                         } => {
148                                 3u8.write(writer)?;
149                                 payment_hash.write(writer)?;
150                                 rejected_by_dest.write(writer)?;
151                                 #[cfg(test)]
152                                 error_code.write(writer)?;
153                                 #[cfg(test)]
154                                 error_data.write(writer)?;
155                         },
156                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
157                                 4u8.write(writer)?;
158                                 // We don't write the time_fordwardable out at all, as we presume when the user
159                                 // deserializes us at least that much time has elapsed.
160                         },
161                         &Event::SpendableOutputs { ref outputs } => {
162                                 5u8.write(writer)?;
163                                 (outputs.len() as u64).write(writer)?;
164                                 for output in outputs.iter() {
165                                         output.write(writer)?;
166                                 }
167                         },
168                 }
169                 Ok(())
170         }
171 }
172 impl MaybeReadable for Event {
173         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
174                 match Readable::read(reader)? {
175                         0u8 => Ok(None),
176                         1u8 => Ok(Some(Event::PaymentReceived {
177                                         payment_hash: Readable::read(reader)?,
178                                         payment_secret: Readable::read(reader)?,
179                                         amt: Readable::read(reader)?,
180                                 })),
181                         2u8 => Ok(Some(Event::PaymentSent {
182                                         payment_preimage: Readable::read(reader)?,
183                                 })),
184                         3u8 => Ok(Some(Event::PaymentFailed {
185                                         payment_hash: Readable::read(reader)?,
186                                         rejected_by_dest: Readable::read(reader)?,
187                                         #[cfg(test)]
188                                         error_code: Readable::read(reader)?,
189                                         #[cfg(test)]
190                                         error_data: Readable::read(reader)?,
191                                 })),
192                         4u8 => Ok(Some(Event::PendingHTLCsForwardable {
193                                         time_forwardable: Duration::from_secs(0)
194                                 })),
195                         5u8 => {
196                                 let outputs_len: u64 = Readable::read(reader)?;
197                                 let mut outputs = Vec::new();
198                                 for _ in 0..outputs_len {
199                                         outputs.push(Readable::read(reader)?);
200                                 }
201                                 Ok(Some(Event::SpendableOutputs { outputs }))
202                         },
203                         _ => Err(msgs::DecodeError::InvalidValue)
204                 }
205         }
206 }
207
208 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
209 /// broadcast to most peers).
210 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
211 #[derive(Clone, Debug)]
212 pub enum MessageSendEvent {
213         /// Used to indicate that we've accepted a channel open and should send the accept_channel
214         /// message provided to the given peer.
215         SendAcceptChannel {
216                 /// The node_id of the node which should receive this message
217                 node_id: PublicKey,
218                 /// The message which should be sent.
219                 msg: msgs::AcceptChannel,
220         },
221         /// Used to indicate that we've initiated a channel open and should send the open_channel
222         /// message provided to the given peer.
223         SendOpenChannel {
224                 /// The node_id of the node which should receive this message
225                 node_id: PublicKey,
226                 /// The message which should be sent.
227                 msg: msgs::OpenChannel,
228         },
229         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
230         SendFundingCreated {
231                 /// The node_id of the node which should receive this message
232                 node_id: PublicKey,
233                 /// The message which should be sent.
234                 msg: msgs::FundingCreated,
235         },
236         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
237         SendFundingSigned {
238                 /// The node_id of the node which should receive this message
239                 node_id: PublicKey,
240                 /// The message which should be sent.
241                 msg: msgs::FundingSigned,
242         },
243         /// Used to indicate that a funding_locked message should be sent to the peer with the given node_id.
244         SendFundingLocked {
245                 /// The node_id of the node which should receive these message(s)
246                 node_id: PublicKey,
247                 /// The funding_locked message which should be sent.
248                 msg: msgs::FundingLocked,
249         },
250         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
251         SendAnnouncementSignatures {
252                 /// The node_id of the node which should receive these message(s)
253                 node_id: PublicKey,
254                 /// The announcement_signatures message which should be sent.
255                 msg: msgs::AnnouncementSignatures,
256         },
257         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
258         /// message should be sent to the peer with the given node_id.
259         UpdateHTLCs {
260                 /// The node_id of the node which should receive these message(s)
261                 node_id: PublicKey,
262                 /// The update messages which should be sent. ALL messages in the struct should be sent!
263                 updates: msgs::CommitmentUpdate,
264         },
265         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
266         SendRevokeAndACK {
267                 /// The node_id of the node which should receive this message
268                 node_id: PublicKey,
269                 /// The message which should be sent.
270                 msg: msgs::RevokeAndACK,
271         },
272         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
273         SendClosingSigned {
274                 /// The node_id of the node which should receive this message
275                 node_id: PublicKey,
276                 /// The message which should be sent.
277                 msg: msgs::ClosingSigned,
278         },
279         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
280         SendShutdown {
281                 /// The node_id of the node which should receive this message
282                 node_id: PublicKey,
283                 /// The message which should be sent.
284                 msg: msgs::Shutdown,
285         },
286         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
287         SendChannelReestablish {
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::ChannelReestablish,
292         },
293         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
294         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
295         ///
296         /// Note that after doing so, you very likely (unless you did so very recently) want to call
297         /// ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event.
298         /// This ensures that any nodes which see our channel_announcement also have a relevant
299         /// node_announcement, including relevant feature flags which may be important for routing
300         /// through or to us.
301         BroadcastChannelAnnouncement {
302                 /// The channel_announcement which should be sent.
303                 msg: msgs::ChannelAnnouncement,
304                 /// The followup channel_update which should be sent.
305                 update_msg: msgs::ChannelUpdate,
306         },
307         /// Used to indicate that a node_announcement should be broadcast to all peers.
308         BroadcastNodeAnnouncement {
309                 /// The node_announcement which should be sent.
310                 msg: msgs::NodeAnnouncement,
311         },
312         /// Used to indicate that a channel_update should be broadcast to all peers.
313         BroadcastChannelUpdate {
314                 /// The channel_update which should be sent.
315                 msg: msgs::ChannelUpdate,
316         },
317         /// Broadcast an error downstream to be handled
318         HandleError {
319                 /// The node_id of the node which should receive this message
320                 node_id: PublicKey,
321                 /// The action which should be taken.
322                 action: msgs::ErrorAction
323         },
324         /// When a payment fails we may receive updates back from the hop where it failed. In such
325         /// cases this event is generated so that we can inform the network graph of this information.
326         PaymentFailureNetworkUpdate {
327                 /// The channel/node update which should be sent to NetGraphMsgHandler
328                 update: msgs::HTLCFailChannelUpdate,
329         },
330         /// Query a peer for channels with funding transaction UTXOs in a block range.
331         SendChannelRangeQuery {
332                 /// The node_id of this message recipient
333                 node_id: PublicKey,
334                 /// The query_channel_range which should be sent.
335                 msg: msgs::QueryChannelRange,
336         },
337         /// Request routing gossip messages from a peer for a list of channels identified by
338         /// their short_channel_ids.
339         SendShortIdsQuery {
340                 /// The node_id of this message recipient
341                 node_id: PublicKey,
342                 /// The query_short_channel_ids which should be sent.
343                 msg: msgs::QueryShortChannelIds,
344         },
345         /// Sends a reply to a channel range query. This may be one of several SendReplyChannelRange events
346         /// emitted during processing of the query.
347         SendReplyChannelRange {
348                 /// The node_id of this message recipient
349                 node_id: PublicKey,
350                 /// The reply_channel_range which should be sent.
351                 msg: msgs::ReplyChannelRange,
352         }
353 }
354
355 /// A trait indicating an object may generate message send events
356 pub trait MessageSendEventsProvider {
357         /// Gets the list of pending events which were generated by previous actions, clearing the list
358         /// in the process.
359         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
360 }
361
362 /// A trait indicating an object may generate events
363 pub trait EventsProvider {
364         /// Gets the list of pending events which were generated by previous actions, clearing the list
365         /// in the process.
366         fn get_and_clear_pending_events(&self) -> Vec<Event>;
367 }