Add ChannelClosed generation at cooperative/force-close/error processing
[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 chain::keysinterface::SpendableOutputDescriptor;
18 use ln::msgs;
19 use ln::msgs::DecodeError;
20 use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
21 use routing::network_graph::NetworkUpdate;
22 use util::ser::{Writeable, Writer, MaybeReadable, Readable, VecReadWrapper, VecWriteWrapper};
23
24 use bitcoin::blockdata::script::Script;
25
26 use bitcoin::secp256k1::key::PublicKey;
27
28 use io;
29 use prelude::*;
30 use core::time::Duration;
31 use core::ops::Deref;
32
33 /// Some information provided on receipt of payment depends on whether the payment received is a
34 /// spontaneous payment or a "conventional" lightning payment that's paying an invoice.
35 #[derive(Clone, Debug)]
36 pub enum PaymentPurpose {
37         /// Information for receiving a payment that we generated an invoice for.
38         InvoicePayment {
39                 /// The preimage to the payment_hash, if the payment hash (and secret) were fetched via
40                 /// [`ChannelManager::create_inbound_payment`]. If provided, this can be handed directly to
41                 /// [`ChannelManager::claim_funds`].
42                 ///
43                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
44                 /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
45                 payment_preimage: Option<PaymentPreimage>,
46                 /// The "payment secret". This authenticates the sender to the recipient, preventing a
47                 /// number of deanonymization attacks during the routing process.
48                 /// It is provided here for your reference, however its accuracy is enforced directly by
49                 /// [`ChannelManager`] using the values you previously provided to
50                 /// [`ChannelManager::create_inbound_payment`] or
51                 /// [`ChannelManager::create_inbound_payment_for_hash`].
52                 ///
53                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
54                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
55                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
56                 payment_secret: PaymentSecret,
57                 /// This is the `user_payment_id` which was provided to
58                 /// [`ChannelManager::create_inbound_payment_for_hash`] or
59                 /// [`ChannelManager::create_inbound_payment`]. It has no meaning inside of LDK and is
60                 /// simply copied here. It may be used to correlate PaymentReceived events with invoice
61                 /// metadata stored elsewhere.
62                 ///
63                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
64                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
65                 user_payment_id: u64,
66         },
67         /// Because this is a spontaneous payment, the payer generated their own preimage rather than us
68         /// (the payee) providing a preimage.
69         SpontaneousPayment(PaymentPreimage),
70 }
71
72 #[derive(Clone, Debug)]
73 pub enum ClosureDescriptor {
74         ForceClosed,
75         UserInitiated,
76         CounterpartyInitiated,
77         CooperativeClosure,
78         UnknownOnchainCommitment,
79         ProcessingError,
80         DisconnectedPeer,
81 }
82
83 impl Writeable for ClosureDescriptor {
84         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
85                 match self {
86                         ClosureDescriptor::ForceClosed => 0u8.write(writer)?,
87                         ClosureDescriptor::UserInitiated => 1u8.write(writer)?,
88                         ClosureDescriptor::CounterpartyInitiated => 2u8.write(writer)?,
89                         ClosureDescriptor::CooperativeClosure => 3u8.write(writer)?,
90                         ClosureDescriptor::UnknownOnchainCommitment => 4u8.write(writer)?,
91                         ClosureDescriptor::ProcessingError => 5u8.write(writer)?,
92                         ClosureDescriptor::DisconnectedPeer => 6u8.write(writer)?,
93                 }
94                 Ok(())
95         }
96 }
97
98 impl Readable for ClosureDescriptor {
99         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
100                 Ok(match <u8 as Readable>::read(reader)? {
101                         0 => ClosureDescriptor::ForceClosed,
102                         1 => ClosureDescriptor::UserInitiated,
103                         2 => ClosureDescriptor::CounterpartyInitiated,
104                         3 => ClosureDescriptor::CooperativeClosure,
105                         4 => ClosureDescriptor::UnknownOnchainCommitment,
106                         5 => ClosureDescriptor::ProcessingError,
107                         6 => ClosureDescriptor::DisconnectedPeer,
108                         _ => return Err(DecodeError::InvalidValue),
109                 })
110         }
111 }
112
113 /// An Event which you should probably take some action in response to.
114 ///
115 /// Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
116 /// them directly as they don't round-trip exactly (for example FundingGenerationReady is never
117 /// written as it makes no sense to respond to it after reconnecting to peers).
118 #[derive(Clone, Debug)]
119 pub enum Event {
120         /// Used to indicate that the client should generate a funding transaction with the given
121         /// parameters and then call ChannelManager::funding_transaction_generated.
122         /// Generated in ChannelManager message handling.
123         /// Note that *all inputs* in the funding transaction must spend SegWit outputs or your
124         /// counterparty can steal your funds!
125         FundingGenerationReady {
126                 /// The random channel_id we picked which you'll need to pass into
127                 /// ChannelManager::funding_transaction_generated.
128                 temporary_channel_id: [u8; 32],
129                 /// The value, in satoshis, that the output should have.
130                 channel_value_satoshis: u64,
131                 /// The script which should be used in the transaction output.
132                 output_script: Script,
133                 /// The value passed in to ChannelManager::create_channel
134                 user_channel_id: u64,
135         },
136         /// Indicates we've received money! Just gotta dig out that payment preimage and feed it to
137         /// ChannelManager::claim_funds to get it....
138         /// Note that if the preimage is not known or the amount paid is incorrect, you should call
139         /// ChannelManager::fail_htlc_backwards to free up resources for this HTLC and avoid
140         /// network congestion.
141         /// The amount paid should be considered 'incorrect' when it is less than or more than twice
142         /// the amount expected.
143         /// If you fail to call either ChannelManager::claim_funds or
144         /// ChannelManager::fail_htlc_backwards within the HTLC's timeout, the HTLC will be
145         /// automatically failed.
146         PaymentReceived {
147                 /// The hash for which the preimage should be handed to the ChannelManager.
148                 payment_hash: PaymentHash,
149                 /// The value, in thousandths of a satoshi, that this payment is for. Note that you must
150                 /// compare this to the expected value before accepting the payment (as otherwise you are
151                 /// providing proof-of-payment for less than the value you expected!).
152                 amt: u64,
153                 /// Information for claiming this received payment, based on whether the purpose of the
154                 /// payment is to pay an invoice or to send a spontaneous payment.
155                 purpose: PaymentPurpose,
156         },
157         /// Indicates an outbound payment we made succeeded (i.e. it made it all the way to its target
158         /// and we got back the payment preimage for it).
159         ///
160         /// Note for MPP payments: in rare cases, this event may be preceded by a `PaymentFailed` event.
161         /// In this situation, you SHOULD treat this payment as having succeeded.
162         PaymentSent {
163                 /// The preimage to the hash given to ChannelManager::send_payment.
164                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
165                 /// store it somehow!
166                 payment_preimage: PaymentPreimage,
167         },
168         /// Indicates an outbound payment we made failed. Probably some intermediary node dropped
169         /// something. You may wish to retry with a different route.
170         PaymentFailed {
171                 /// The hash which was given to ChannelManager::send_payment.
172                 payment_hash: PaymentHash,
173                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
174                 /// the payment has failed, not just the route in question. If this is not set, you may
175                 /// retry the payment via a different route.
176                 rejected_by_dest: bool,
177                 /// Any failure information conveyed via the Onion return packet by a node along the failed
178                 /// payment route.
179                 ///
180                 /// Should be applied to the [`NetworkGraph`] so that routing decisions can take into
181                 /// account the update. [`NetGraphMsgHandler`] is capable of doing this.
182                 ///
183                 /// [`NetworkGraph`]: crate::routing::network_graph::NetworkGraph
184                 /// [`NetGraphMsgHandler`]: crate::routing::network_graph::NetGraphMsgHandler
185                 network_update: Option<NetworkUpdate>,
186                 /// For both single-path and multi-path payments, this is set if all paths of the payment have
187                 /// failed. This will be set to false if (1) this is an MPP payment and (2) other parts of the
188                 /// larger MPP payment were still in flight when this event was generated.
189                 all_paths_failed: bool,
190 #[cfg(test)]
191                 error_code: Option<u16>,
192 #[cfg(test)]
193                 error_data: Option<Vec<u8>>,
194         },
195         /// Used to indicate that ChannelManager::process_pending_htlc_forwards should be called at a
196         /// time in the future.
197         PendingHTLCsForwardable {
198                 /// The minimum amount of time that should be waited prior to calling
199                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
200                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
201                 /// now + 5*time_forwardable).
202                 time_forwardable: Duration,
203         },
204         /// Used to indicate that an output which you should know how to spend was confirmed on chain
205         /// and is now spendable.
206         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
207         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
208         /// somewhere and spend them when you create on-chain transactions.
209         SpendableOutputs {
210                 /// The outputs which you should store as spendable by you.
211                 outputs: Vec<SpendableOutputDescriptor>,
212         },
213         /// This event is generated when a payment has been successfully forwarded through us and a
214         /// forwarding fee earned.
215         PaymentForwarded {
216                 /// The fee, in milli-satoshis, which was earned as a result of the payment.
217                 ///
218                 /// Note that if we force-closed the channel over which we forwarded an HTLC while the HTLC
219                 /// was pending, the amount the next hop claimed will have been rounded down to the nearest
220                 /// whole satoshi. Thus, the fee calculated here may be higher than expected as we still
221                 /// claimed the full value in millisatoshis from the source. In this case,
222                 /// `claim_from_onchain_tx` will be set.
223                 ///
224                 /// If the channel which sent us the payment has been force-closed, we will claim the funds
225                 /// via an on-chain transaction. In that case we do not yet know the on-chain transaction
226                 /// fees which we will spend and will instead set this to `None`. It is possible duplicate
227                 /// `PaymentForwarded` events are generated for the same payment iff `fee_earned_msat` is
228                 /// `None`.
229                 fee_earned_msat: Option<u64>,
230                 /// If this is `true`, the forwarded HTLC was claimed by our counterparty via an on-chain
231                 /// transaction.
232                 claim_from_onchain_tx: bool,
233         },
234         /// Used to indicate that a channel was closed at the given timestamp.
235         ChannelClosed  {
236                 /// The channel_id which has been barren from further off-chain updates but
237                 /// funding output might still be not resolved yet.
238                 channel_id: [u8; 32],
239                 /// A machine-readable error message
240                 err: ClosureDescriptor
241         }
242 }
243
244 impl Writeable for Event {
245         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
246                 match self {
247                         &Event::FundingGenerationReady { .. } => {
248                                 0u8.write(writer)?;
249                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
250                                 // drop any channels which have not yet exchanged funding_signed.
251                         },
252                         &Event::PaymentReceived { ref payment_hash, ref amt, ref purpose } => {
253                                 1u8.write(writer)?;
254                                 let mut payment_secret = None;
255                                 let mut user_payment_id = None;
256                                 let payment_preimage;
257                                 match &purpose {
258                                         PaymentPurpose::InvoicePayment { payment_preimage: preimage, payment_secret: secret, user_payment_id: id } => {
259                                                 payment_secret = Some(secret);
260                                                 payment_preimage = *preimage;
261                                                 user_payment_id = Some(id);
262                                         },
263                                         PaymentPurpose::SpontaneousPayment(preimage) => {
264                                                 payment_preimage = Some(*preimage);
265                                         }
266                                 }
267                                 write_tlv_fields!(writer, {
268                                         (0, payment_hash, required),
269                                         (2, payment_secret, option),
270                                         (4, amt, required),
271                                         (6, user_payment_id, option),
272                                         (8, payment_preimage, option),
273                                 });
274                         },
275                         &Event::PaymentSent { ref payment_preimage } => {
276                                 2u8.write(writer)?;
277                                 write_tlv_fields!(writer, {
278                                         (0, payment_preimage, required),
279                                 });
280                         },
281                         &Event::PaymentFailed { ref payment_hash, ref rejected_by_dest, ref network_update, ref all_paths_failed,
282                                 #[cfg(test)]
283                                 ref error_code,
284                                 #[cfg(test)]
285                                 ref error_data,
286                         } => {
287                                 3u8.write(writer)?;
288                                 #[cfg(test)]
289                                 error_code.write(writer)?;
290                                 #[cfg(test)]
291                                 error_data.write(writer)?;
292                                 write_tlv_fields!(writer, {
293                                         (0, payment_hash, required),
294                                         (1, network_update, option),
295                                         (2, rejected_by_dest, required),
296                                         (3, all_paths_failed, required),
297                                 });
298                         },
299                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
300                                 4u8.write(writer)?;
301                                 write_tlv_fields!(writer, {});
302                                 // We don't write the time_fordwardable out at all, as we presume when the user
303                                 // deserializes us at least that much time has elapsed.
304                         },
305                         &Event::SpendableOutputs { ref outputs } => {
306                                 5u8.write(writer)?;
307                                 write_tlv_fields!(writer, {
308                                         (0, VecWriteWrapper(outputs), required),
309                                 });
310                         },
311                         &Event::PaymentForwarded { fee_earned_msat, claim_from_onchain_tx } => {
312                                 7u8.write(writer)?;
313                                 write_tlv_fields!(writer, {
314                                         (0, fee_earned_msat, option),
315                                         (2, claim_from_onchain_tx, required),
316                                 });
317                         },
318                         &Event::ChannelClosed { ref channel_id, ref err } => {
319                                 6u8.write(writer)?;
320                                 channel_id.write(writer)?;
321                                 err.write(writer)?;
322                                 write_tlv_fields!(writer, {});
323                         },
324                 }
325                 Ok(())
326         }
327 }
328 impl MaybeReadable for Event {
329         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
330                 match Readable::read(reader)? {
331                         0u8 => Ok(None),
332                         1u8 => {
333                                 let f = || {
334                                         let mut payment_hash = PaymentHash([0; 32]);
335                                         let mut payment_preimage = None;
336                                         let mut payment_secret = None;
337                                         let mut amt = 0;
338                                         let mut user_payment_id = None;
339                                         read_tlv_fields!(reader, {
340                                                 (0, payment_hash, required),
341                                                 (2, payment_secret, option),
342                                                 (4, amt, required),
343                                                 (6, user_payment_id, option),
344                                                 (8, payment_preimage, option),
345                                         });
346                                         let purpose = match payment_secret {
347                                                 Some(secret) => PaymentPurpose::InvoicePayment {
348                                                         payment_preimage,
349                                                         payment_secret: secret,
350                                                         user_payment_id: if let Some(id) = user_payment_id {
351                                                                 id
352                                                         } else { return Err(msgs::DecodeError::InvalidValue) }
353                                                 },
354                                                 None if payment_preimage.is_some() => PaymentPurpose::SpontaneousPayment(payment_preimage.unwrap()),
355                                                 None => return Err(msgs::DecodeError::InvalidValue),
356                                         };
357                                         Ok(Some(Event::PaymentReceived {
358                                                 payment_hash,
359                                                 amt,
360                                                 purpose,
361                                         }))
362                                 };
363                                 f()
364                         },
365                         2u8 => {
366                                 let f = || {
367                                         let mut payment_preimage = PaymentPreimage([0; 32]);
368                                         read_tlv_fields!(reader, {
369                                                 (0, payment_preimage, required),
370                                         });
371                                         Ok(Some(Event::PaymentSent {
372                                                 payment_preimage,
373                                         }))
374                                 };
375                                 f()
376                         },
377                         3u8 => {
378                                 let f = || {
379                                         #[cfg(test)]
380                                         let error_code = Readable::read(reader)?;
381                                         #[cfg(test)]
382                                         let error_data = Readable::read(reader)?;
383                                         let mut payment_hash = PaymentHash([0; 32]);
384                                         let mut rejected_by_dest = false;
385                                         let mut network_update = None;
386                                         let mut all_paths_failed = Some(true);
387                                         read_tlv_fields!(reader, {
388                                                 (0, payment_hash, required),
389                                                 (1, network_update, ignorable),
390                                                 (2, rejected_by_dest, required),
391                                                 (3, all_paths_failed, option),
392                                         });
393                                         Ok(Some(Event::PaymentFailed {
394                                                 payment_hash,
395                                                 rejected_by_dest,
396                                                 network_update,
397                                                 all_paths_failed: all_paths_failed.unwrap(),
398                                                 #[cfg(test)]
399                                                 error_code,
400                                                 #[cfg(test)]
401                                                 error_data,
402                                         }))
403                                 };
404                                 f()
405                         },
406                         4u8 => {
407                                 let f = || {
408                                         read_tlv_fields!(reader, {});
409                                         Ok(Some(Event::PendingHTLCsForwardable {
410                                                 time_forwardable: Duration::from_secs(0)
411                                         }))
412                                 };
413                                 f()
414                         },
415                         5u8 => {
416                                 let f = || {
417                                         let mut outputs = VecReadWrapper(Vec::new());
418                                         read_tlv_fields!(reader, {
419                                                 (0, outputs, required),
420                                         });
421                                         Ok(Some(Event::SpendableOutputs { outputs: outputs.0 }))
422                                 };
423                                 f()
424                         },
425                         7u8 => {
426                                 let f = || {
427                                         let mut fee_earned_msat = None;
428                                         let mut claim_from_onchain_tx = false;
429                                         read_tlv_fields!(reader, {
430                                                 (0, fee_earned_msat, option),
431                                                 (2, claim_from_onchain_tx, required),
432                                         });
433                                         Ok(Some(Event::PaymentForwarded { fee_earned_msat, claim_from_onchain_tx }))
434                                 };
435                                 f()
436                         },
437                         // Versions prior to 0.0.100 did not ignore odd types, instead returning InvalidValue.
438                         x if x % 2 == 1 => Ok(None),
439                         6u8 => {
440                                 let f = || {
441                                         let channel_id = Readable::read(reader)?;
442                                         let err = Readable::read(reader)?;
443                                         read_tlv_fields!(reader, {});
444                                         Ok(Some(Event::ChannelClosed { channel_id, err}))
445                                 };
446                                 f()
447                         },
448                         _ => Err(msgs::DecodeError::InvalidValue)
449                 }
450         }
451 }
452
453 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
454 /// broadcast to most peers).
455 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
456 #[derive(Clone, Debug)]
457 pub enum MessageSendEvent {
458         /// Used to indicate that we've accepted a channel open and should send the accept_channel
459         /// message provided to the given peer.
460         SendAcceptChannel {
461                 /// The node_id of the node which should receive this message
462                 node_id: PublicKey,
463                 /// The message which should be sent.
464                 msg: msgs::AcceptChannel,
465         },
466         /// Used to indicate that we've initiated a channel open and should send the open_channel
467         /// message provided to the given peer.
468         SendOpenChannel {
469                 /// The node_id of the node which should receive this message
470                 node_id: PublicKey,
471                 /// The message which should be sent.
472                 msg: msgs::OpenChannel,
473         },
474         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
475         SendFundingCreated {
476                 /// The node_id of the node which should receive this message
477                 node_id: PublicKey,
478                 /// The message which should be sent.
479                 msg: msgs::FundingCreated,
480         },
481         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
482         SendFundingSigned {
483                 /// The node_id of the node which should receive this message
484                 node_id: PublicKey,
485                 /// The message which should be sent.
486                 msg: msgs::FundingSigned,
487         },
488         /// Used to indicate that a funding_locked message should be sent to the peer with the given node_id.
489         SendFundingLocked {
490                 /// The node_id of the node which should receive these message(s)
491                 node_id: PublicKey,
492                 /// The funding_locked message which should be sent.
493                 msg: msgs::FundingLocked,
494         },
495         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
496         SendAnnouncementSignatures {
497                 /// The node_id of the node which should receive these message(s)
498                 node_id: PublicKey,
499                 /// The announcement_signatures message which should be sent.
500                 msg: msgs::AnnouncementSignatures,
501         },
502         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
503         /// message should be sent to the peer with the given node_id.
504         UpdateHTLCs {
505                 /// The node_id of the node which should receive these message(s)
506                 node_id: PublicKey,
507                 /// The update messages which should be sent. ALL messages in the struct should be sent!
508                 updates: msgs::CommitmentUpdate,
509         },
510         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
511         SendRevokeAndACK {
512                 /// The node_id of the node which should receive this message
513                 node_id: PublicKey,
514                 /// The message which should be sent.
515                 msg: msgs::RevokeAndACK,
516         },
517         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
518         SendClosingSigned {
519                 /// The node_id of the node which should receive this message
520                 node_id: PublicKey,
521                 /// The message which should be sent.
522                 msg: msgs::ClosingSigned,
523         },
524         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
525         SendShutdown {
526                 /// The node_id of the node which should receive this message
527                 node_id: PublicKey,
528                 /// The message which should be sent.
529                 msg: msgs::Shutdown,
530         },
531         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
532         SendChannelReestablish {
533                 /// The node_id of the node which should receive this message
534                 node_id: PublicKey,
535                 /// The message which should be sent.
536                 msg: msgs::ChannelReestablish,
537         },
538         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
539         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
540         ///
541         /// Note that after doing so, you very likely (unless you did so very recently) want to call
542         /// ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event.
543         /// This ensures that any nodes which see our channel_announcement also have a relevant
544         /// node_announcement, including relevant feature flags which may be important for routing
545         /// through or to us.
546         BroadcastChannelAnnouncement {
547                 /// The channel_announcement which should be sent.
548                 msg: msgs::ChannelAnnouncement,
549                 /// The followup channel_update which should be sent.
550                 update_msg: msgs::ChannelUpdate,
551         },
552         /// Used to indicate that a node_announcement should be broadcast to all peers.
553         BroadcastNodeAnnouncement {
554                 /// The node_announcement which should be sent.
555                 msg: msgs::NodeAnnouncement,
556         },
557         /// Used to indicate that a channel_update should be broadcast to all peers.
558         BroadcastChannelUpdate {
559                 /// The channel_update which should be sent.
560                 msg: msgs::ChannelUpdate,
561         },
562         /// Used to indicate that a channel_update should be sent to a single peer.
563         /// In contrast to [`Self::BroadcastChannelUpdate`], this is used when the channel is a
564         /// private channel and we shouldn't be informing all of our peers of channel parameters.
565         SendChannelUpdate {
566                 /// The node_id of the node which should receive this message
567                 node_id: PublicKey,
568                 /// The channel_update which should be sent.
569                 msg: msgs::ChannelUpdate,
570         },
571         /// Broadcast an error downstream to be handled
572         HandleError {
573                 /// The node_id of the node which should receive this message
574                 node_id: PublicKey,
575                 /// The action which should be taken.
576                 action: msgs::ErrorAction
577         },
578         /// Query a peer for channels with funding transaction UTXOs in a block range.
579         SendChannelRangeQuery {
580                 /// The node_id of this message recipient
581                 node_id: PublicKey,
582                 /// The query_channel_range which should be sent.
583                 msg: msgs::QueryChannelRange,
584         },
585         /// Request routing gossip messages from a peer for a list of channels identified by
586         /// their short_channel_ids.
587         SendShortIdsQuery {
588                 /// The node_id of this message recipient
589                 node_id: PublicKey,
590                 /// The query_short_channel_ids which should be sent.
591                 msg: msgs::QueryShortChannelIds,
592         },
593         /// Sends a reply to a channel range query. This may be one of several SendReplyChannelRange events
594         /// emitted during processing of the query.
595         SendReplyChannelRange {
596                 /// The node_id of this message recipient
597                 node_id: PublicKey,
598                 /// The reply_channel_range which should be sent.
599                 msg: msgs::ReplyChannelRange,
600         }
601 }
602
603 /// A trait indicating an object may generate message send events
604 pub trait MessageSendEventsProvider {
605         /// Gets the list of pending events which were generated by previous actions, clearing the list
606         /// in the process.
607         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
608 }
609
610 /// A trait indicating an object may generate events.
611 ///
612 /// Events are processed by passing an [`EventHandler`] to [`process_pending_events`].
613 ///
614 /// # Requirements
615 ///
616 /// See [`process_pending_events`] for requirements around event processing.
617 ///
618 /// When using this trait, [`process_pending_events`] will call [`handle_event`] for each pending
619 /// event since the last invocation. The handler must either act upon the event immediately
620 /// or preserve it for later handling.
621 ///
622 /// Note, handlers may call back into the provider and thus deadlocking must be avoided. Be sure to
623 /// consult the provider's documentation on the implication of processing events and how a handler
624 /// may safely use the provider (e.g., see [`ChannelManager::process_pending_events`] and
625 /// [`ChainMonitor::process_pending_events`]).
626 ///
627 /// (C-not implementable) As there is likely no reason for a user to implement this trait on their
628 /// own type(s).
629 ///
630 /// [`process_pending_events`]: Self::process_pending_events
631 /// [`handle_event`]: EventHandler::handle_event
632 /// [`ChannelManager::process_pending_events`]: crate::ln::channelmanager::ChannelManager#method.process_pending_events
633 /// [`ChainMonitor::process_pending_events`]: crate::chain::chainmonitor::ChainMonitor#method.process_pending_events
634 pub trait EventsProvider {
635         /// Processes any events generated since the last call using the given event handler.
636         ///
637         /// Subsequent calls must only process new events. However, handlers must be capable of handling
638         /// duplicate events across process restarts. This may occur if the provider was recovered from
639         /// an old state (i.e., it hadn't been successfully persisted after processing pending events).
640         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler;
641 }
642
643 /// A trait implemented for objects handling events from [`EventsProvider`].
644 pub trait EventHandler {
645         /// Handles the given [`Event`].
646         ///
647         /// See [`EventsProvider`] for details that must be considered when implementing this method.
648         fn handle_event(&self, event: &Event);
649 }
650
651 impl<F> EventHandler for F where F: Fn(&Event) {
652         fn handle_event(&self, event: &Event) {
653                 self(event)
654         }
655 }