8f34605675c4ee2992a9f045bc8b49d19e9ffd81
[rust-lightning] / lightning / src / util / events.rs
1 //! Events are returned from various bits in the library which indicate some action must be taken
2 //! by the client.
3 //!
4 //! Because we don't have a built-in runtime, it's up to the client to call events at a time in the
5 //! future, as well as generate and broadcast funding transactions handle payment preimages and a
6 //! few other things.
7
8 use ln::msgs;
9 use ln::channelmanager::{PaymentPreimage, PaymentHash, PaymentSecret};
10 use chain::transaction::OutPoint;
11 use chain::keysinterface::SpendableOutputDescriptor;
12 use util::ser::{Writeable, Writer, MaybeReadable, Readable};
13
14 use bitcoin::blockdata::script::Script;
15
16 use secp256k1::key::PublicKey;
17
18 use std::time::Duration;
19
20 /// An Event which you should probably take some action in response to.
21 ///
22 /// Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
23 /// them directly as they don't round-trip exactly (for example FundingGenerationReady is never
24 /// written as it makes no sense to respond to it after reconnecting to peers).
25 pub enum Event {
26         /// Used to indicate that the client should generate a funding transaction with the given
27         /// parameters and then call ChannelManager::funding_transaction_generated.
28         /// Generated in ChannelManager message handling.
29         /// Note that *all inputs* in the funding transaction must spend SegWit outputs or your
30         /// counterparty can steal your funds!
31         FundingGenerationReady {
32                 /// The random channel_id we picked which you'll need to pass into
33                 /// ChannelManager::funding_transaction_generated.
34                 temporary_channel_id: [u8; 32],
35                 /// The value, in satoshis, that the output should have.
36                 channel_value_satoshis: u64,
37                 /// The script which should be used in the transaction output.
38                 output_script: Script,
39                 /// The value passed in to ChannelManager::create_channel
40                 user_channel_id: u64,
41         },
42         /// Used to indicate that the client may now broadcast the funding transaction it created for a
43         /// channel. Broadcasting such a transaction prior to this event may lead to our counterparty
44         /// trivially stealing all funds in the funding transaction!
45         FundingBroadcastSafe {
46                 /// The output, which was passed to ChannelManager::funding_transaction_generated, which is
47                 /// now safe to broadcast.
48                 funding_txo: OutPoint,
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 must call
55         /// ChannelManager::fail_htlc_backwards to free up resources for this HTLC.
56         /// The amount paid should be considered 'incorrect' when it is less than or more than twice
57         /// the amount expected.
58         PaymentReceived {
59                 /// The hash for which the preimage should be handed to the ChannelManager.
60                 payment_hash: PaymentHash,
61                 /// The "payment secret". This authenticates the sender to the recipient, preventing a
62                 /// number of deanonymization attacks during the routing process.
63                 /// As nodes upgrade, the invoices you provide should likely migrate to setting the
64                 /// payment_secret feature to required, at which point you should fail_backwards any HTLCs
65                 /// which have a None here.
66                 /// Until then, however, values of None should be ignored, and only incorrect Some values
67                 /// should result in an HTLC fail_backwards.
68                 /// Note that, in any case, this value must be passed as-is to any fail or claim calls as
69                 /// the HTLC index includes this value.
70                 payment_secret: Option<PaymentSecret>,
71                 /// The value, in thousandths of a satoshi, that this payment is for. Note that you must
72                 /// compare this to the expected value before accepting the payment (as otherwise you are
73                 /// providing proof-of-payment for less than the value you expected!).
74                 amt: u64,
75         },
76         /// Indicates an outbound payment we made succeeded (ie it made it all the way to its target
77         /// and we got back the payment preimage for it).
78         /// Note that duplicative PaymentSent Events may be generated - it is your responsibility to
79         /// deduplicate them by payment_preimage (which MUST be unique)!
80         PaymentSent {
81                 /// The preimage to the hash given to ChannelManager::send_payment.
82                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
83                 /// store it somehow!
84                 payment_preimage: PaymentPreimage,
85         },
86         /// Indicates an outbound payment we made failed. Probably some intermediary node dropped
87         /// something. You may wish to retry with a different route.
88         /// Note that duplicative PaymentFailed Events may be generated - it is your responsibility to
89         /// deduplicate them by payment_hash (which MUST be unique)!
90         PaymentFailed {
91                 /// The hash which was given to ChannelManager::send_payment.
92                 payment_hash: PaymentHash,
93                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
94                 /// the payment has failed, not just the route in question. If this is not set, you may
95                 /// retry the payment via a different route.
96                 rejected_by_dest: bool,
97 #[cfg(test)]
98                 error_code: Option<u16>,
99 #[cfg(test)]
100                 error_data: Option<Vec<u8>>,
101         },
102         /// Used to indicate that ChannelManager::process_pending_htlc_forwards should be called at a
103         /// time in the future.
104         PendingHTLCsForwardable {
105                 /// The minimum amount of time that should be waited prior to calling
106                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
107                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
108                 /// now + 5*time_forwardable).
109                 time_forwardable: Duration,
110         },
111         /// Used to indicate that an output was generated on-chain which you should know how to spend.
112         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
113         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
114         /// somewhere and spend them when you create on-chain transactions.
115         SpendableOutputs {
116                 /// The outputs which you should store as spendable by you.
117                 outputs: Vec<SpendableOutputDescriptor>,
118         },
119 }
120
121 impl Writeable for Event {
122         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
123                 match self {
124                         &Event::FundingGenerationReady { .. } => {
125                                 0u8.write(writer)?;
126                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
127                                 // drop any channels which have not yet exchanged funding_signed.
128                         },
129                         &Event::FundingBroadcastSafe { ref funding_txo, ref user_channel_id } => {
130                                 1u8.write(writer)?;
131                                 funding_txo.write(writer)?;
132                                 user_channel_id.write(writer)?;
133                         },
134                         &Event::PaymentReceived { ref payment_hash, ref payment_secret, ref amt } => {
135                                 2u8.write(writer)?;
136                                 payment_hash.write(writer)?;
137                                 payment_secret.write(writer)?;
138                                 amt.write(writer)?;
139                         },
140                         &Event::PaymentSent { ref payment_preimage } => {
141                                 3u8.write(writer)?;
142                                 payment_preimage.write(writer)?;
143                         },
144                         &Event::PaymentFailed { ref payment_hash, ref rejected_by_dest,
145                                 #[cfg(test)]
146                                 ref error_code,
147                                 #[cfg(test)]
148                                 ref error_data,
149                         } => {
150                                 4u8.write(writer)?;
151                                 payment_hash.write(writer)?;
152                                 rejected_by_dest.write(writer)?;
153                                 #[cfg(test)]
154                                 error_code.write(writer)?;
155                                 #[cfg(test)]
156                                 error_data.write(writer)?;
157                         },
158                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
159                                 5u8.write(writer)?;
160                                 // We don't write the time_fordwardable out at all, as we presume when the user
161                                 // deserializes us at least that much time has elapsed.
162                         },
163                         &Event::SpendableOutputs { ref outputs } => {
164                                 6u8.write(writer)?;
165                                 (outputs.len() as u64).write(writer)?;
166                                 for output in outputs.iter() {
167                                         output.write(writer)?;
168                                 }
169                         },
170                 }
171                 Ok(())
172         }
173 }
174 impl MaybeReadable for Event {
175         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
176                 match Readable::read(reader)? {
177                         0u8 => Ok(None),
178                         1u8 => Ok(Some(Event::FundingBroadcastSafe {
179                                         funding_txo: Readable::read(reader)?,
180                                         user_channel_id: Readable::read(reader)?,
181                                 })),
182                         2u8 => Ok(Some(Event::PaymentReceived {
183                                         payment_hash: Readable::read(reader)?,
184                                         payment_secret: Readable::read(reader)?,
185                                         amt: Readable::read(reader)?,
186                                 })),
187                         3u8 => Ok(Some(Event::PaymentSent {
188                                         payment_preimage: Readable::read(reader)?,
189                                 })),
190                         4u8 => Ok(Some(Event::PaymentFailed {
191                                         payment_hash: Readable::read(reader)?,
192                                         rejected_by_dest: Readable::read(reader)?,
193                                         #[cfg(test)]
194                                         error_code: Readable::read(reader)?,
195                                         #[cfg(test)]
196                                         error_data: Readable::read(reader)?,
197                                 })),
198                         5u8 => Ok(Some(Event::PendingHTLCsForwardable {
199                                         time_forwardable: Duration::from_secs(0)
200                                 })),
201                         6u8 => {
202                                 let outputs_len: u64 = Readable::read(reader)?;
203                                 let mut outputs = Vec::new();
204                                 for _ in 0..outputs_len {
205                                         outputs.push(Readable::read(reader)?);
206                                 }
207                                 Ok(Some(Event::SpendableOutputs { outputs }))
208                         },
209                         _ => Err(msgs::DecodeError::InvalidValue)
210                 }
211         }
212 }
213
214 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
215 /// broadcast to most peers).
216 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
217 #[derive(Clone)]
218 pub enum MessageSendEvent {
219         /// Used to indicate that we've accepted a channel open and should send the accept_channel
220         /// message provided to the given peer.
221         SendAcceptChannel {
222                 /// The node_id of the node which should receive this message
223                 node_id: PublicKey,
224                 /// The message which should be sent.
225                 msg: msgs::AcceptChannel,
226         },
227         /// Used to indicate that we've initiated a channel open and should send the open_channel
228         /// message provided to the given peer.
229         SendOpenChannel {
230                 /// The node_id of the node which should receive this message
231                 node_id: PublicKey,
232                 /// The message which should be sent.
233                 msg: msgs::OpenChannel,
234         },
235         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
236         SendFundingCreated {
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::FundingCreated,
241         },
242         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
243         SendFundingSigned {
244                 /// The node_id of the node which should receive this message
245                 node_id: PublicKey,
246                 /// The message which should be sent.
247                 msg: msgs::FundingSigned,
248         },
249         /// Used to indicate that a funding_locked message should be sent to the peer with the given node_id.
250         SendFundingLocked {
251                 /// The node_id of the node which should receive these message(s)
252                 node_id: PublicKey,
253                 /// The funding_locked message which should be sent.
254                 msg: msgs::FundingLocked,
255         },
256         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
257         SendAnnouncementSignatures {
258                 /// The node_id of the node which should receive these message(s)
259                 node_id: PublicKey,
260                 /// The announcement_signatures message which should be sent.
261                 msg: msgs::AnnouncementSignatures,
262         },
263         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
264         /// message should be sent to the peer with the given node_id.
265         UpdateHTLCs {
266                 /// The node_id of the node which should receive these message(s)
267                 node_id: PublicKey,
268                 /// The update messages which should be sent. ALL messages in the struct should be sent!
269                 updates: msgs::CommitmentUpdate,
270         },
271         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
272         SendRevokeAndACK {
273                 /// The node_id of the node which should receive this message
274                 node_id: PublicKey,
275                 /// The message which should be sent.
276                 msg: msgs::RevokeAndACK,
277         },
278         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
279         SendClosingSigned {
280                 /// The node_id of the node which should receive this message
281                 node_id: PublicKey,
282                 /// The message which should be sent.
283                 msg: msgs::ClosingSigned,
284         },
285         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
286         SendShutdown {
287                 /// The node_id of the node which should receive this message
288                 node_id: PublicKey,
289                 /// The message which should be sent.
290                 msg: msgs::Shutdown,
291         },
292         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
293         SendChannelReestablish {
294                 /// The node_id of the node which should receive this message
295                 node_id: PublicKey,
296                 /// The message which should be sent.
297                 msg: msgs::ChannelReestablish,
298         },
299         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
300         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
301         ///
302         /// Note that after doing so, you very likely (unless you did so very recently) want to call
303         /// ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event.
304         /// This ensures that any nodes which see our channel_announcement also have a relevant
305         /// node_announcement, including relevant feature flags which may be important for routing
306         /// through or to us.
307         BroadcastChannelAnnouncement {
308                 /// The channel_announcement which should be sent.
309                 msg: msgs::ChannelAnnouncement,
310                 /// The followup channel_update which should be sent.
311                 update_msg: msgs::ChannelUpdate,
312         },
313         /// Used to indicate that a node_announcement should be broadcast to all peers.
314         BroadcastNodeAnnouncement {
315                 /// The node_announcement which should be sent.
316                 msg: msgs::NodeAnnouncement,
317         },
318         /// Used to indicate that a channel_update should be broadcast to all peers.
319         BroadcastChannelUpdate {
320                 /// The channel_update which should be sent.
321                 msg: msgs::ChannelUpdate,
322         },
323         /// Broadcast an error downstream to be handled
324         HandleError {
325                 /// The node_id of the node which should receive this message
326                 node_id: PublicKey,
327                 /// The action which should be taken.
328                 action: msgs::ErrorAction
329         },
330         /// When a payment fails we may receive updates back from the hop where it failed. In such
331         /// cases this event is generated so that we can inform the router of this information.
332         PaymentFailureNetworkUpdate {
333                 /// The channel/node update which should be sent to router
334                 update: msgs::HTLCFailChannelUpdate,
335         }
336 }
337
338 /// A trait indicating an object may generate message send events
339 pub trait MessageSendEventsProvider {
340         /// Gets the list of pending events which were generated by previous actions, clearing the list
341         /// in the process.
342         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
343 }
344
345 /// A trait indicating an object may generate events
346 pub trait EventsProvider {
347         /// Gets the list of pending events which were generated by previous actions, clearing the list
348         /// in the process.
349         fn get_and_clear_pending_events(&self) -> Vec<Event>;
350 }