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