2282ea55ab36211576b4726645af7579179001f8
[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::channelmanager::PaymentId;
19 use ln::channel::FUNDING_CONF_DEADLINE_BLOCKS;
20 use ln::features::ChannelTypeFeatures;
21 use ln::msgs;
22 use ln::msgs::DecodeError;
23 use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
24 use routing::gossip::NetworkUpdate;
25 use util::ser::{BigSize, FixedLengthReader, Writeable, Writer, MaybeReadable, Readable, VecReadWrapper, VecWriteWrapper};
26 use routing::router::{RouteHop, RouteParameters};
27
28 use bitcoin::Transaction;
29 use bitcoin::blockdata::script::Script;
30 use bitcoin::hashes::Hash;
31 use bitcoin::hashes::sha256::Hash as Sha256;
32 use bitcoin::secp256k1::PublicKey;
33 use io;
34 use prelude::*;
35 use core::time::Duration;
36 use core::ops::Deref;
37 use sync::Arc;
38
39 /// Some information provided on receipt of payment depends on whether the payment received is a
40 /// spontaneous payment or a "conventional" lightning payment that's paying an invoice.
41 #[derive(Clone, Debug)]
42 pub enum PaymentPurpose {
43         /// Information for receiving a payment that we generated an invoice for.
44         InvoicePayment {
45                 /// The preimage to the payment_hash, if the payment hash (and secret) were fetched via
46                 /// [`ChannelManager::create_inbound_payment`]. If provided, this can be handed directly to
47                 /// [`ChannelManager::claim_funds`].
48                 ///
49                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
50                 /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
51                 payment_preimage: Option<PaymentPreimage>,
52                 /// The "payment secret". This authenticates the sender to the recipient, preventing a
53                 /// number of deanonymization attacks during the routing process.
54                 /// It is provided here for your reference, however its accuracy is enforced directly by
55                 /// [`ChannelManager`] using the values you previously provided to
56                 /// [`ChannelManager::create_inbound_payment`] or
57                 /// [`ChannelManager::create_inbound_payment_for_hash`].
58                 ///
59                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
60                 /// [`ChannelManager::create_inbound_payment`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment
61                 /// [`ChannelManager::create_inbound_payment_for_hash`]: crate::ln::channelmanager::ChannelManager::create_inbound_payment_for_hash
62                 payment_secret: PaymentSecret,
63         },
64         /// Because this is a spontaneous payment, the payer generated their own preimage rather than us
65         /// (the payee) providing a preimage.
66         SpontaneousPayment(PaymentPreimage),
67 }
68
69 impl_writeable_tlv_based_enum!(PaymentPurpose,
70         (0, InvoicePayment) => {
71                 (0, payment_preimage, option),
72                 (2, payment_secret, required),
73         };
74         (2, SpontaneousPayment)
75 );
76
77 #[derive(Clone, Debug, PartialEq)]
78 /// The reason the channel was closed. See individual variants more details.
79 pub enum ClosureReason {
80         /// Closure generated from receiving a peer error message.
81         ///
82         /// Our counterparty may have broadcasted their latest commitment state, and we have
83         /// as well.
84         CounterpartyForceClosed {
85                 /// The error which the peer sent us.
86                 ///
87                 /// The string should be sanitized before it is used (e.g emitted to logs
88                 /// or printed to stdout). Otherwise, a well crafted error message may exploit
89                 /// a security vulnerability in the terminal emulator or the logging subsystem.
90                 peer_msg: String,
91         },
92         /// Closure generated from [`ChannelManager::force_close_channel`], called by the user.
93         ///
94         /// [`ChannelManager::force_close_channel`]: crate::ln::channelmanager::ChannelManager::force_close_channel.
95         HolderForceClosed,
96         /// The channel was closed after negotiating a cooperative close and we've now broadcasted
97         /// the cooperative close transaction. Note the shutdown may have been initiated by us.
98         //TODO: split between CounterpartyInitiated/LocallyInitiated
99         CooperativeClosure,
100         /// A commitment transaction was confirmed on chain, closing the channel. Most likely this
101         /// commitment transaction came from our counterparty, but it may also have come from
102         /// a copy of our own `ChannelMonitor`.
103         CommitmentTxConfirmed,
104         /// The funding transaction failed to confirm in a timely manner on an inbound channel.
105         FundingTimedOut,
106         /// Closure generated from processing an event, likely a HTLC forward/relay/reception.
107         ProcessingError {
108                 /// A developer-readable error message which we generated.
109                 err: String,
110         },
111         /// The peer disconnected prior to funding completing. In this case the spec mandates that we
112         /// forget the channel entirely - we can attempt again if the peer reconnects.
113         ///
114         /// In LDK versions prior to 0.0.107 this could also occur if we were unable to connect to the
115         /// peer because of mutual incompatibility between us and our channel counterparty.
116         DisconnectedPeer,
117         /// Closure generated from `ChannelManager::read` if the ChannelMonitor is newer than
118         /// the ChannelManager deserialized.
119         OutdatedChannelManager
120 }
121
122 impl core::fmt::Display for ClosureReason {
123         fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
124                 f.write_str("Channel closed because ")?;
125                 match self {
126                         ClosureReason::CounterpartyForceClosed { peer_msg } => {
127                                 f.write_str("counterparty force-closed with message ")?;
128                                 f.write_str(&peer_msg)
129                         },
130                         ClosureReason::HolderForceClosed => f.write_str("user manually force-closed the channel"),
131                         ClosureReason::CooperativeClosure => f.write_str("the channel was cooperatively closed"),
132                         ClosureReason::CommitmentTxConfirmed => f.write_str("commitment or closing transaction was confirmed on chain."),
133                         ClosureReason::FundingTimedOut => write!(f, "funding transaction failed to confirm within {} blocks", FUNDING_CONF_DEADLINE_BLOCKS),
134                         ClosureReason::ProcessingError { err } => {
135                                 f.write_str("of an exception: ")?;
136                                 f.write_str(&err)
137                         },
138                         ClosureReason::DisconnectedPeer => f.write_str("the peer disconnected prior to the channel being funded"),
139                         ClosureReason::OutdatedChannelManager => f.write_str("the ChannelManager read from disk was stale compared to ChannelMonitor(s)"),
140                 }
141         }
142 }
143
144 impl_writeable_tlv_based_enum_upgradable!(ClosureReason,
145         (0, CounterpartyForceClosed) => { (1, peer_msg, required) },
146         (1, FundingTimedOut) => {},
147         (2, HolderForceClosed) => {},
148         (6, CommitmentTxConfirmed) => {},
149         (4, CooperativeClosure) => {},
150         (8, ProcessingError) => { (1, err, required) },
151         (10, DisconnectedPeer) => {},
152         (12, OutdatedChannelManager) => {},
153 );
154
155 /// An Event which you should probably take some action in response to.
156 ///
157 /// Note that while Writeable and Readable are implemented for Event, you probably shouldn't use
158 /// them directly as they don't round-trip exactly (for example FundingGenerationReady is never
159 /// written as it makes no sense to respond to it after reconnecting to peers).
160 #[derive(Clone, Debug)]
161 pub enum Event {
162         /// Used to indicate that the client should generate a funding transaction with the given
163         /// parameters and then call [`ChannelManager::funding_transaction_generated`].
164         /// Generated in [`ChannelManager`] message handling.
165         /// Note that *all inputs* in the funding transaction must spend SegWit outputs or your
166         /// counterparty can steal your funds!
167         ///
168         /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
169         /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
170         FundingGenerationReady {
171                 /// The random channel_id we picked which you'll need to pass into
172                 /// [`ChannelManager::funding_transaction_generated`].
173                 ///
174                 /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
175                 temporary_channel_id: [u8; 32],
176                 /// The counterparty's node_id, which you'll need to pass back into
177                 /// [`ChannelManager::funding_transaction_generated`].
178                 ///
179                 /// [`ChannelManager::funding_transaction_generated`]: crate::ln::channelmanager::ChannelManager::funding_transaction_generated
180                 counterparty_node_id: PublicKey,
181                 /// The value, in satoshis, that the output should have.
182                 channel_value_satoshis: u64,
183                 /// The script which should be used in the transaction output.
184                 output_script: Script,
185                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`], or 0 for
186                 /// an inbound channel.
187                 ///
188                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
189                 user_channel_id: u64,
190         },
191         /// Indicates we've received (an offer of) money! Just gotta dig out that payment preimage and
192         /// feed it to [`ChannelManager::claim_funds`] to get it....
193         ///
194         /// Note that if the preimage is not known, you should call
195         /// [`ChannelManager::fail_htlc_backwards`] to free up resources for this HTLC and avoid
196         /// network congestion.
197         /// If you fail to call either [`ChannelManager::claim_funds`] or
198         /// [`ChannelManager::fail_htlc_backwards`] within the HTLC's timeout, the HTLC will be
199         /// automatically failed.
200         ///
201         /// # Note
202         /// LDK will not stop an inbound payment from being paid multiple times, so multiple
203         /// `PaymentReceived` events may be generated for the same payment.
204         ///
205         /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
206         /// [`ChannelManager::fail_htlc_backwards`]: crate::ln::channelmanager::ChannelManager::fail_htlc_backwards
207         PaymentReceived {
208                 /// The hash for which the preimage should be handed to the ChannelManager. Note that LDK will
209                 /// not stop you from registering duplicate payment hashes for inbound payments.
210                 payment_hash: PaymentHash,
211                 /// The value, in thousandths of a satoshi, that this payment is for.
212                 amount_msat: u64,
213                 /// Information for claiming this received payment, based on whether the purpose of the
214                 /// payment is to pay an invoice or to send a spontaneous payment.
215                 purpose: PaymentPurpose,
216         },
217         /// Indicates a payment has been claimed and we've received money!
218         ///
219         /// This most likely occurs when [`ChannelManager::claim_funds`] has been called in response
220         /// to an [`Event::PaymentReceived`]. However, if we previously crashed during a
221         /// [`ChannelManager::claim_funds`] call you may see this event without a corresponding
222         /// [`Event::PaymentReceived`] event.
223         ///
224         /// # Note
225         /// LDK will not stop an inbound payment from being paid multiple times, so multiple
226         /// `PaymentReceived` events may be generated for the same payment. If you then call
227         /// [`ChannelManager::claim_funds`] twice for the same [`Event::PaymentReceived`] you may get
228         /// multiple `PaymentClaimed` events.
229         ///
230         /// [`ChannelManager::claim_funds`]: crate::ln::channelmanager::ChannelManager::claim_funds
231         PaymentClaimed {
232                 /// The payment hash of the claimed payment. Note that LDK will not stop you from
233                 /// registering duplicate payment hashes for inbound payments.
234                 payment_hash: PaymentHash,
235                 /// The value, in thousandths of a satoshi, that this payment is for.
236                 amount_msat: u64,
237                 /// The purpose of this claimed payment, i.e. whether the payment was for an invoice or a
238                 /// spontaneous payment.
239                 purpose: PaymentPurpose,
240         },
241         /// Indicates an outbound payment we made succeeded (i.e. it made it all the way to its target
242         /// and we got back the payment preimage for it).
243         ///
244         /// Note for MPP payments: in rare cases, this event may be preceded by a `PaymentPathFailed`
245         /// event. In this situation, you SHOULD treat this payment as having succeeded.
246         PaymentSent {
247                 /// The id returned by [`ChannelManager::send_payment`] and used with
248                 /// [`ChannelManager::retry_payment`].
249                 ///
250                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
251                 /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
252                 payment_id: Option<PaymentId>,
253                 /// The preimage to the hash given to ChannelManager::send_payment.
254                 /// Note that this serves as a payment receipt, if you wish to have such a thing, you must
255                 /// store it somehow!
256                 payment_preimage: PaymentPreimage,
257                 /// The hash that was given to [`ChannelManager::send_payment`].
258                 ///
259                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
260                 payment_hash: PaymentHash,
261                 /// The total fee which was spent at intermediate hops in this payment, across all paths.
262                 ///
263                 /// Note that, like [`Route::get_total_fees`] this does *not* include any potential
264                 /// overpayment to the recipient node.
265                 ///
266                 /// If the recipient or an intermediate node misbehaves and gives us free money, this may
267                 /// overstate the amount paid, though this is unlikely.
268                 ///
269                 /// [`Route::get_total_fees`]: crate::routing::router::Route::get_total_fees
270                 fee_paid_msat: Option<u64>,
271         },
272         /// Indicates an outbound payment failed. Individual [`Event::PaymentPathFailed`] events
273         /// provide failure information for each MPP part in the payment.
274         ///
275         /// This event is provided once there are no further pending HTLCs for the payment and the
276         /// payment is no longer retryable, either due to a several-block timeout or because
277         /// [`ChannelManager::abandon_payment`] was previously called for the corresponding payment.
278         ///
279         /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
280         PaymentFailed {
281                 /// The id returned by [`ChannelManager::send_payment`] and used with
282                 /// [`ChannelManager::retry_payment`] and [`ChannelManager::abandon_payment`].
283                 ///
284                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
285                 /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
286                 /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
287                 payment_id: PaymentId,
288                 /// The hash that was given to [`ChannelManager::send_payment`].
289                 ///
290                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
291                 payment_hash: PaymentHash,
292         },
293         /// Indicates that a path for an outbound payment was successful.
294         ///
295         /// Always generated after [`Event::PaymentSent`] and thus useful for scoring channels. See
296         /// [`Event::PaymentSent`] for obtaining the payment preimage.
297         PaymentPathSuccessful {
298                 /// The id returned by [`ChannelManager::send_payment`] and used with
299                 /// [`ChannelManager::retry_payment`].
300                 ///
301                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
302                 /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
303                 payment_id: PaymentId,
304                 /// The hash that was given to [`ChannelManager::send_payment`].
305                 ///
306                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
307                 payment_hash: Option<PaymentHash>,
308                 /// The payment path that was successful.
309                 ///
310                 /// May contain a closed channel if the HTLC sent along the path was fulfilled on chain.
311                 path: Vec<RouteHop>,
312         },
313         /// Indicates an outbound HTLC we sent failed. Probably some intermediary node dropped
314         /// something. You may wish to retry with a different route.
315         ///
316         /// Note that this does *not* indicate that all paths for an MPP payment have failed, see
317         /// [`Event::PaymentFailed`] and [`all_paths_failed`].
318         ///
319         /// [`all_paths_failed`]: Self::PaymentPathFailed::all_paths_failed
320         PaymentPathFailed {
321                 /// The id returned by [`ChannelManager::send_payment`] and used with
322                 /// [`ChannelManager::retry_payment`] and [`ChannelManager::abandon_payment`].
323                 ///
324                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
325                 /// [`ChannelManager::retry_payment`]: crate::ln::channelmanager::ChannelManager::retry_payment
326                 /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
327                 payment_id: Option<PaymentId>,
328                 /// The hash that was given to [`ChannelManager::send_payment`].
329                 ///
330                 /// [`ChannelManager::send_payment`]: crate::ln::channelmanager::ChannelManager::send_payment
331                 payment_hash: PaymentHash,
332                 /// Indicates the payment was rejected for some reason by the recipient. This implies that
333                 /// the payment has failed, not just the route in question. If this is not set, you may
334                 /// retry the payment via a different route.
335                 rejected_by_dest: bool,
336                 /// Any failure information conveyed via the Onion return packet by a node along the failed
337                 /// payment route.
338                 ///
339                 /// Should be applied to the [`NetworkGraph`] so that routing decisions can take into
340                 /// account the update.
341                 ///
342                 /// [`NetworkGraph`]: crate::routing::gossip::NetworkGraph
343                 network_update: Option<NetworkUpdate>,
344                 /// For both single-path and multi-path payments, this is set if all paths of the payment have
345                 /// failed. This will be set to false if (1) this is an MPP payment and (2) other parts of the
346                 /// larger MPP payment were still in flight when this event was generated.
347                 ///
348                 /// Note that if you are retrying individual MPP parts, using this value to determine if a
349                 /// payment has fully failed is race-y. Because multiple failures can happen prior to events
350                 /// being processed, you may retry in response to a first failure, with a second failure
351                 /// (with `all_paths_failed` set) still pending. Then, when the second failure is processed
352                 /// you will see `all_paths_failed` set even though the retry of the first failure still
353                 /// has an associated in-flight HTLC. See (1) for an example of such a failure.
354                 ///
355                 /// If you wish to retry individual MPP parts and learn when a payment has failed, you must
356                 /// call [`ChannelManager::abandon_payment`] and wait for a [`Event::PaymentFailed`] event.
357                 ///
358                 /// (1) <https://github.com/lightningdevkit/rust-lightning/issues/1164>
359                 ///
360                 /// [`ChannelManager::abandon_payment`]: crate::ln::channelmanager::ChannelManager::abandon_payment
361                 all_paths_failed: bool,
362                 /// The payment path that failed.
363                 path: Vec<RouteHop>,
364                 /// The channel responsible for the failed payment path.
365                 ///
366                 /// Note that for route hints or for the first hop in a path this may be an SCID alias and
367                 /// may not refer to a channel in the public network graph. These aliases may also collide
368                 /// with channels in the public network graph.
369                 ///
370                 /// If this is `Some`, then the corresponding channel should be avoided when the payment is
371                 /// retried. May be `None` for older [`Event`] serializations.
372                 short_channel_id: Option<u64>,
373                 /// Parameters needed to compute a new [`Route`] when retrying the failed payment path.
374                 ///
375                 /// See [`find_route`] for details.
376                 ///
377                 /// [`Route`]: crate::routing::router::Route
378                 /// [`find_route`]: crate::routing::router::find_route
379                 retry: Option<RouteParameters>,
380 #[cfg(test)]
381                 error_code: Option<u16>,
382 #[cfg(test)]
383                 error_data: Option<Vec<u8>>,
384         },
385         /// Indicates that a probe payment we sent returned successful, i.e., only failed at the destination.
386         ProbeSuccessful {
387                 /// The id returned by [`ChannelManager::send_probe`].
388                 ///
389                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
390                 payment_id: PaymentId,
391                 /// The hash generated by [`ChannelManager::send_probe`].
392                 ///
393                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
394                 payment_hash: PaymentHash,
395                 /// The payment path that was successful.
396                 path: Vec<RouteHop>,
397         },
398         /// Indicates that a probe payment we sent failed at an intermediary node on the path.
399         ProbeFailed {
400                 /// The id returned by [`ChannelManager::send_probe`].
401                 ///
402                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
403                 payment_id: PaymentId,
404                 /// The hash generated by [`ChannelManager::send_probe`].
405                 ///
406                 /// [`ChannelManager::send_probe`]: crate::ln::channelmanager::ChannelManager::send_probe
407                 payment_hash: PaymentHash,
408                 /// The payment path that failed.
409                 path: Vec<RouteHop>,
410                 /// The channel responsible for the failed probe.
411                 ///
412                 /// Note that for route hints or for the first hop in a path this may be an SCID alias and
413                 /// may not refer to a channel in the public network graph. These aliases may also collide
414                 /// with channels in the public network graph.
415                 short_channel_id: Option<u64>,
416         },
417         /// Used to indicate that [`ChannelManager::process_pending_htlc_forwards`] should be called at
418         /// a time in the future.
419         ///
420         /// [`ChannelManager::process_pending_htlc_forwards`]: crate::ln::channelmanager::ChannelManager::process_pending_htlc_forwards
421         PendingHTLCsForwardable {
422                 /// The minimum amount of time that should be waited prior to calling
423                 /// process_pending_htlc_forwards. To increase the effort required to correlate payments,
424                 /// you should wait a random amount of time in roughly the range (now + time_forwardable,
425                 /// now + 5*time_forwardable).
426                 time_forwardable: Duration,
427         },
428         /// Used to indicate that an output which you should know how to spend was confirmed on chain
429         /// and is now spendable.
430         /// Such an output will *not* ever be spent by rust-lightning, and are not at risk of your
431         /// counterparty spending them due to some kind of timeout. Thus, you need to store them
432         /// somewhere and spend them when you create on-chain transactions.
433         SpendableOutputs {
434                 /// The outputs which you should store as spendable by you.
435                 outputs: Vec<SpendableOutputDescriptor>,
436         },
437         /// This event is generated when a payment has been successfully forwarded through us and a
438         /// forwarding fee earned.
439         PaymentForwarded {
440                 /// The incoming channel between the previous node and us. This is only `None` for events
441                 /// generated or serialized by versions prior to 0.0.107.
442                 prev_channel_id: Option<[u8; 32]>,
443                 /// The outgoing channel between the next node and us. This is only `None` for events
444                 /// generated or serialized by versions prior to 0.0.107.
445                 next_channel_id: Option<[u8; 32]>,
446                 /// The fee, in milli-satoshis, which was earned as a result of the payment.
447                 ///
448                 /// Note that if we force-closed the channel over which we forwarded an HTLC while the HTLC
449                 /// was pending, the amount the next hop claimed will have been rounded down to the nearest
450                 /// whole satoshi. Thus, the fee calculated here may be higher than expected as we still
451                 /// claimed the full value in millisatoshis from the source. In this case,
452                 /// `claim_from_onchain_tx` will be set.
453                 ///
454                 /// If the channel which sent us the payment has been force-closed, we will claim the funds
455                 /// via an on-chain transaction. In that case we do not yet know the on-chain transaction
456                 /// fees which we will spend and will instead set this to `None`. It is possible duplicate
457                 /// `PaymentForwarded` events are generated for the same payment iff `fee_earned_msat` is
458                 /// `None`.
459                 fee_earned_msat: Option<u64>,
460                 /// If this is `true`, the forwarded HTLC was claimed by our counterparty via an on-chain
461                 /// transaction.
462                 claim_from_onchain_tx: bool,
463         },
464         /// Used to indicate that a previously opened channel with the given `channel_id` is in the
465         /// process of closure.
466         ChannelClosed  {
467                 /// The channel_id of the channel which has been closed. Note that on-chain transactions
468                 /// resolving the channel are likely still awaiting confirmation.
469                 channel_id: [u8; 32],
470                 /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
471                 /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
472                 /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
473                 /// `user_channel_id` will be 0 for an inbound channel.
474                 /// This will always be zero for objects serialized with LDK versions prior to 0.0.102.
475                 ///
476                 /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
477                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
478                 /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
479                 user_channel_id: u64,
480                 /// The reason the channel was closed.
481                 reason: ClosureReason
482         },
483         /// Used to indicate to the user that they can abandon the funding transaction and recycle the
484         /// inputs for another purpose.
485         DiscardFunding {
486                 /// The channel_id of the channel which has been closed.
487                 channel_id: [u8; 32],
488                 /// The full transaction received from the user
489                 transaction: Transaction
490         },
491         /// Indicates a request to open a new channel by a peer.
492         ///
493         /// To accept the request, call [`ChannelManager::accept_inbound_channel`]. To reject the
494         /// request, call [`ChannelManager::force_close_without_broadcasting_txn`].
495         ///
496         /// The event is only triggered when a new open channel request is received and the
497         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true.
498         ///
499         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
500         /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
501         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
502         OpenChannelRequest {
503                 /// The temporary channel ID of the channel requested to be opened.
504                 ///
505                 /// When responding to the request, the `temporary_channel_id` should be passed
506                 /// back to the ChannelManager through [`ChannelManager::accept_inbound_channel`] to accept,
507                 /// or through [`ChannelManager::force_close_without_broadcasting_txn`] to reject.
508                 ///
509                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
510                 /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
511                 temporary_channel_id: [u8; 32],
512                 /// The node_id of the counterparty requesting to open the channel.
513                 ///
514                 /// When responding to the request, the `counterparty_node_id` should be passed
515                 /// back to the `ChannelManager` through [`ChannelManager::accept_inbound_channel`] to
516                 /// accept the request, or through [`ChannelManager::force_close_without_broadcasting_txn`] to reject the
517                 /// request.
518                 ///
519                 /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
520                 /// [`ChannelManager::force_close_without_broadcasting_txn`]: crate::ln::channelmanager::ChannelManager::force_close_without_broadcasting_txn
521                 counterparty_node_id: PublicKey,
522                 /// The channel value of the requested channel.
523                 funding_satoshis: u64,
524                 /// Our starting balance in the channel if the request is accepted, in milli-satoshi.
525                 push_msat: u64,
526                 /// The features that this channel will operate with. If you reject the channel, a
527                 /// well-behaved counterparty may automatically re-attempt the channel with a new set of
528                 /// feature flags.
529                 ///
530                 /// Note that if [`ChannelTypeFeatures::supports_scid_privacy`] returns true on this type,
531                 /// the resulting [`ChannelManager`] will not be readable by versions of LDK prior to
532                 /// 0.0.106.
533                 ///
534                 /// Furthermore, note that if [`ChannelTypeFeatures::supports_zero_conf`] returns true on this type,
535                 /// the resulting [`ChannelManager`] will not be readable by versions of LDK prior to
536                 /// 0.0.107. Channels setting this type also need to get manually accepted via
537                 /// [`crate::ln::channelmanager::ChannelManager::accept_inbound_channel_from_trusted_peer_0conf`],
538                 /// or will be rejected otherwise.
539                 ///
540                 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
541                 channel_type: ChannelTypeFeatures,
542         },
543 }
544
545 impl Writeable for Event {
546         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
547                 match self {
548                         &Event::FundingGenerationReady { .. } => {
549                                 0u8.write(writer)?;
550                                 // We never write out FundingGenerationReady events as, upon disconnection, peers
551                                 // drop any channels which have not yet exchanged funding_signed.
552                         },
553                         &Event::PaymentReceived { ref payment_hash, ref amount_msat, ref purpose } => {
554                                 1u8.write(writer)?;
555                                 let mut payment_secret = None;
556                                 let payment_preimage;
557                                 match &purpose {
558                                         PaymentPurpose::InvoicePayment { payment_preimage: preimage, payment_secret: secret } => {
559                                                 payment_secret = Some(secret);
560                                                 payment_preimage = *preimage;
561                                         },
562                                         PaymentPurpose::SpontaneousPayment(preimage) => {
563                                                 payment_preimage = Some(*preimage);
564                                         }
565                                 }
566                                 write_tlv_fields!(writer, {
567                                         (0, payment_hash, required),
568                                         (2, payment_secret, option),
569                                         (4, amount_msat, required),
570                                         (6, 0u64, required), // user_payment_id required for compatibility with 0.0.103 and earlier
571                                         (8, payment_preimage, option),
572                                 });
573                         },
574                         &Event::PaymentSent { ref payment_id, ref payment_preimage, ref payment_hash, ref fee_paid_msat } => {
575                                 2u8.write(writer)?;
576                                 write_tlv_fields!(writer, {
577                                         (0, payment_preimage, required),
578                                         (1, payment_hash, required),
579                                         (3, payment_id, option),
580                                         (5, fee_paid_msat, option),
581                                 });
582                         },
583                         &Event::PaymentPathFailed {
584                                 ref payment_id, ref payment_hash, ref rejected_by_dest, ref network_update,
585                                 ref all_paths_failed, ref path, ref short_channel_id, ref retry,
586                                 #[cfg(test)]
587                                 ref error_code,
588                                 #[cfg(test)]
589                                 ref error_data,
590                         } => {
591                                 3u8.write(writer)?;
592                                 #[cfg(test)]
593                                 error_code.write(writer)?;
594                                 #[cfg(test)]
595                                 error_data.write(writer)?;
596                                 write_tlv_fields!(writer, {
597                                         (0, payment_hash, required),
598                                         (1, network_update, option),
599                                         (2, rejected_by_dest, required),
600                                         (3, all_paths_failed, required),
601                                         (5, path, vec_type),
602                                         (7, short_channel_id, option),
603                                         (9, retry, option),
604                                         (11, payment_id, option),
605                                 });
606                         },
607                         &Event::PendingHTLCsForwardable { time_forwardable: _ } => {
608                                 4u8.write(writer)?;
609                                 // Note that we now ignore these on the read end as we'll re-generate them in
610                                 // ChannelManager, we write them here only for backwards compatibility.
611                         },
612                         &Event::SpendableOutputs { ref outputs } => {
613                                 5u8.write(writer)?;
614                                 write_tlv_fields!(writer, {
615                                         (0, VecWriteWrapper(outputs), required),
616                                 });
617                         },
618                         &Event::PaymentForwarded { fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id } => {
619                                 7u8.write(writer)?;
620                                 write_tlv_fields!(writer, {
621                                         (0, fee_earned_msat, option),
622                                         (1, prev_channel_id, option),
623                                         (2, claim_from_onchain_tx, required),
624                                         (3, next_channel_id, option),
625                                 });
626                         },
627                         &Event::ChannelClosed { ref channel_id, ref user_channel_id, ref reason } => {
628                                 9u8.write(writer)?;
629                                 write_tlv_fields!(writer, {
630                                         (0, channel_id, required),
631                                         (1, user_channel_id, required),
632                                         (2, reason, required)
633                                 });
634                         },
635                         &Event::DiscardFunding { ref channel_id, ref transaction } => {
636                                 11u8.write(writer)?;
637                                 write_tlv_fields!(writer, {
638                                         (0, channel_id, required),
639                                         (2, transaction, required)
640                                 })
641                         },
642                         &Event::PaymentPathSuccessful { ref payment_id, ref payment_hash, ref path } => {
643                                 13u8.write(writer)?;
644                                 write_tlv_fields!(writer, {
645                                         (0, payment_id, required),
646                                         (2, payment_hash, option),
647                                         (4, path, vec_type)
648                                 })
649                         },
650                         &Event::PaymentFailed { ref payment_id, ref payment_hash } => {
651                                 15u8.write(writer)?;
652                                 write_tlv_fields!(writer, {
653                                         (0, payment_id, required),
654                                         (2, payment_hash, required),
655                                 })
656                         },
657                         &Event::OpenChannelRequest { .. } => {
658                                 17u8.write(writer)?;
659                                 // We never write the OpenChannelRequest events as, upon disconnection, peers
660                                 // drop any channels which have not yet exchanged funding_signed.
661                         },
662                         &Event::PaymentClaimed { ref payment_hash, ref amount_msat, ref purpose } => {
663                                 19u8.write(writer)?;
664                                 write_tlv_fields!(writer, {
665                                         (0, payment_hash, required),
666                                         (2, purpose, required),
667                                         (4, amount_msat, required),
668                                 });
669                         },
670                         &Event::ProbeSuccessful { ref payment_id, ref payment_hash, ref path } => {
671                                 21u8.write(writer)?;
672                                 write_tlv_fields!(writer, {
673                                         (0, payment_id, required),
674                                         (2, payment_hash, required),
675                                         (4, path, vec_type)
676                                 })
677                         },
678                         &Event::ProbeFailed { ref payment_id, ref payment_hash, ref path, ref short_channel_id } => {
679                                 23u8.write(writer)?;
680                                 write_tlv_fields!(writer, {
681                                         (0, payment_id, required),
682                                         (2, payment_hash, required),
683                                         (4, path, vec_type),
684                                         (6, short_channel_id, option),
685                                 })
686                         },
687                         // Note that, going forward, all new events must only write data inside of
688                         // `write_tlv_fields`. Versions 0.0.101+ will ignore odd-numbered events that write
689                         // data via `write_tlv_fields`.
690                 }
691                 Ok(())
692         }
693 }
694 impl MaybeReadable for Event {
695         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, msgs::DecodeError> {
696                 match Readable::read(reader)? {
697                         // Note that we do not write a length-prefixed TLV for FundingGenerationReady events,
698                         // unlike all other events, thus we return immediately here.
699                         0u8 => Ok(None),
700                         1u8 => {
701                                 let f = || {
702                                         let mut payment_hash = PaymentHash([0; 32]);
703                                         let mut payment_preimage = None;
704                                         let mut payment_secret = None;
705                                         let mut amount_msat = 0;
706                                         let mut _user_payment_id = None::<u64>; // For compatibility with 0.0.103 and earlier
707                                         read_tlv_fields!(reader, {
708                                                 (0, payment_hash, required),
709                                                 (2, payment_secret, option),
710                                                 (4, amount_msat, required),
711                                                 (6, _user_payment_id, option),
712                                                 (8, payment_preimage, option),
713                                         });
714                                         let purpose = match payment_secret {
715                                                 Some(secret) => PaymentPurpose::InvoicePayment {
716                                                         payment_preimage,
717                                                         payment_secret: secret
718                                                 },
719                                                 None if payment_preimage.is_some() => PaymentPurpose::SpontaneousPayment(payment_preimage.unwrap()),
720                                                 None => return Err(msgs::DecodeError::InvalidValue),
721                                         };
722                                         Ok(Some(Event::PaymentReceived {
723                                                 payment_hash,
724                                                 amount_msat,
725                                                 purpose,
726                                         }))
727                                 };
728                                 f()
729                         },
730                         2u8 => {
731                                 let f = || {
732                                         let mut payment_preimage = PaymentPreimage([0; 32]);
733                                         let mut payment_hash = None;
734                                         let mut payment_id = None;
735                                         let mut fee_paid_msat = None;
736                                         read_tlv_fields!(reader, {
737                                                 (0, payment_preimage, required),
738                                                 (1, payment_hash, option),
739                                                 (3, payment_id, option),
740                                                 (5, fee_paid_msat, option),
741                                         });
742                                         if payment_hash.is_none() {
743                                                 payment_hash = Some(PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner()));
744                                         }
745                                         Ok(Some(Event::PaymentSent {
746                                                 payment_id,
747                                                 payment_preimage,
748                                                 payment_hash: payment_hash.unwrap(),
749                                                 fee_paid_msat,
750                                         }))
751                                 };
752                                 f()
753                         },
754                         3u8 => {
755                                 let f = || {
756                                         #[cfg(test)]
757                                         let error_code = Readable::read(reader)?;
758                                         #[cfg(test)]
759                                         let error_data = Readable::read(reader)?;
760                                         let mut payment_hash = PaymentHash([0; 32]);
761                                         let mut rejected_by_dest = false;
762                                         let mut network_update = None;
763                                         let mut all_paths_failed = Some(true);
764                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
765                                         let mut short_channel_id = None;
766                                         let mut retry = None;
767                                         let mut payment_id = None;
768                                         read_tlv_fields!(reader, {
769                                                 (0, payment_hash, required),
770                                                 (1, network_update, ignorable),
771                                                 (2, rejected_by_dest, required),
772                                                 (3, all_paths_failed, option),
773                                                 (5, path, vec_type),
774                                                 (7, short_channel_id, option),
775                                                 (9, retry, option),
776                                                 (11, payment_id, option),
777                                         });
778                                         Ok(Some(Event::PaymentPathFailed {
779                                                 payment_id,
780                                                 payment_hash,
781                                                 rejected_by_dest,
782                                                 network_update,
783                                                 all_paths_failed: all_paths_failed.unwrap(),
784                                                 path: path.unwrap(),
785                                                 short_channel_id,
786                                                 retry,
787                                                 #[cfg(test)]
788                                                 error_code,
789                                                 #[cfg(test)]
790                                                 error_data,
791                                         }))
792                                 };
793                                 f()
794                         },
795                         4u8 => Ok(None),
796                         5u8 => {
797                                 let f = || {
798                                         let mut outputs = VecReadWrapper(Vec::new());
799                                         read_tlv_fields!(reader, {
800                                                 (0, outputs, required),
801                                         });
802                                         Ok(Some(Event::SpendableOutputs { outputs: outputs.0 }))
803                                 };
804                                 f()
805                         },
806                         7u8 => {
807                                 let f = || {
808                                         let mut fee_earned_msat = None;
809                                         let mut prev_channel_id = None;
810                                         let mut claim_from_onchain_tx = false;
811                                         let mut next_channel_id = None;
812                                         read_tlv_fields!(reader, {
813                                                 (0, fee_earned_msat, option),
814                                                 (1, prev_channel_id, option),
815                                                 (2, claim_from_onchain_tx, required),
816                                                 (3, next_channel_id, option),
817                                         });
818                                         Ok(Some(Event::PaymentForwarded { fee_earned_msat, prev_channel_id, claim_from_onchain_tx, next_channel_id }))
819                                 };
820                                 f()
821                         },
822                         9u8 => {
823                                 let f = || {
824                                         let mut channel_id = [0; 32];
825                                         let mut reason = None;
826                                         let mut user_channel_id_opt = None;
827                                         read_tlv_fields!(reader, {
828                                                 (0, channel_id, required),
829                                                 (1, user_channel_id_opt, option),
830                                                 (2, reason, ignorable),
831                                         });
832                                         if reason.is_none() { return Ok(None); }
833                                         let user_channel_id = if let Some(id) = user_channel_id_opt { id } else { 0 };
834                                         Ok(Some(Event::ChannelClosed { channel_id, user_channel_id, reason: reason.unwrap() }))
835                                 };
836                                 f()
837                         },
838                         11u8 => {
839                                 let f = || {
840                                         let mut channel_id = [0; 32];
841                                         let mut transaction = Transaction{ version: 2, lock_time: 0, input: Vec::new(), output: Vec::new() };
842                                         read_tlv_fields!(reader, {
843                                                 (0, channel_id, required),
844                                                 (2, transaction, required),
845                                         });
846                                         Ok(Some(Event::DiscardFunding { channel_id, transaction } ))
847                                 };
848                                 f()
849                         },
850                         13u8 => {
851                                 let f = || {
852                                         let mut payment_id = PaymentId([0; 32]);
853                                         let mut payment_hash = None;
854                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
855                                         read_tlv_fields!(reader, {
856                                                 (0, payment_id, required),
857                                                 (2, payment_hash, option),
858                                                 (4, path, vec_type),
859                                         });
860                                         Ok(Some(Event::PaymentPathSuccessful {
861                                                 payment_id,
862                                                 payment_hash,
863                                                 path: path.unwrap(),
864                                         }))
865                                 };
866                                 f()
867                         },
868                         15u8 => {
869                                 let f = || {
870                                         let mut payment_hash = PaymentHash([0; 32]);
871                                         let mut payment_id = PaymentId([0; 32]);
872                                         read_tlv_fields!(reader, {
873                                                 (0, payment_id, required),
874                                                 (2, payment_hash, required),
875                                         });
876                                         Ok(Some(Event::PaymentFailed {
877                                                 payment_id,
878                                                 payment_hash,
879                                         }))
880                                 };
881                                 f()
882                         },
883                         17u8 => {
884                                 // Value 17 is used for `Event::OpenChannelRequest`.
885                                 Ok(None)
886                         },
887                         19u8 => {
888                                 let f = || {
889                                         let mut payment_hash = PaymentHash([0; 32]);
890                                         let mut purpose = None;
891                                         let mut amount_msat = 0;
892                                         read_tlv_fields!(reader, {
893                                                 (0, payment_hash, required),
894                                                 (2, purpose, ignorable),
895                                                 (4, amount_msat, required),
896                                         });
897                                         if purpose.is_none() { return Ok(None); }
898                                         Ok(Some(Event::PaymentClaimed {
899                                                 payment_hash,
900                                                 purpose: purpose.unwrap(),
901                                                 amount_msat,
902                                         }))
903                                 };
904                                 f()
905                         },
906                         21u8 => {
907                                 let f = || {
908                                         let mut payment_id = PaymentId([0; 32]);
909                                         let mut payment_hash = PaymentHash([0; 32]);
910                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
911                                         read_tlv_fields!(reader, {
912                                                 (0, payment_id, required),
913                                                 (2, payment_hash, required),
914                                                 (4, path, vec_type),
915                                         });
916                                         Ok(Some(Event::ProbeSuccessful {
917                                                 payment_id,
918                                                 payment_hash,
919                                                 path: path.unwrap(),
920                                         }))
921                                 };
922                                 f()
923                         },
924                         23u8 => {
925                                 let f = || {
926                                         let mut payment_id = PaymentId([0; 32]);
927                                         let mut payment_hash = PaymentHash([0; 32]);
928                                         let mut path: Option<Vec<RouteHop>> = Some(vec![]);
929                                         let mut short_channel_id = None;
930                                         read_tlv_fields!(reader, {
931                                                 (0, payment_id, required),
932                                                 (2, payment_hash, required),
933                                                 (4, path, vec_type),
934                                                 (6, short_channel_id, option),
935                                         });
936                                         Ok(Some(Event::ProbeFailed{
937                                                 payment_id,
938                                                 payment_hash,
939                                                 path: path.unwrap(),
940                                                 short_channel_id,
941                                         }))
942                                 };
943                                 f()
944                         },
945                         // Versions prior to 0.0.100 did not ignore odd types, instead returning InvalidValue.
946                         // Version 0.0.100 failed to properly ignore odd types, possibly resulting in corrupt
947                         // reads.
948                         x if x % 2 == 1 => {
949                                 // If the event is of unknown type, assume it was written with `write_tlv_fields`,
950                                 // which prefixes the whole thing with a length BigSize. Because the event is
951                                 // odd-type unknown, we should treat it as `Ok(None)` even if it has some TLV
952                                 // fields that are even. Thus, we avoid using `read_tlv_fields` and simply read
953                                 // exactly the number of bytes specified, ignoring them entirely.
954                                 let tlv_len: BigSize = Readable::read(reader)?;
955                                 FixedLengthReader::new(reader, tlv_len.0)
956                                         .eat_remaining().map_err(|_| msgs::DecodeError::ShortRead)?;
957                                 Ok(None)
958                         },
959                         _ => Err(msgs::DecodeError::InvalidValue)
960                 }
961         }
962 }
963
964 /// An event generated by ChannelManager which indicates a message should be sent to a peer (or
965 /// broadcast to most peers).
966 /// These events are handled by PeerManager::process_events if you are using a PeerManager.
967 #[derive(Clone, Debug)]
968 pub enum MessageSendEvent {
969         /// Used to indicate that we've accepted a channel open and should send the accept_channel
970         /// message provided to the given peer.
971         SendAcceptChannel {
972                 /// The node_id of the node which should receive this message
973                 node_id: PublicKey,
974                 /// The message which should be sent.
975                 msg: msgs::AcceptChannel,
976         },
977         /// Used to indicate that we've initiated a channel open and should send the open_channel
978         /// message provided to the given peer.
979         SendOpenChannel {
980                 /// The node_id of the node which should receive this message
981                 node_id: PublicKey,
982                 /// The message which should be sent.
983                 msg: msgs::OpenChannel,
984         },
985         /// Used to indicate that a funding_created message should be sent to the peer with the given node_id.
986         SendFundingCreated {
987                 /// The node_id of the node which should receive this message
988                 node_id: PublicKey,
989                 /// The message which should be sent.
990                 msg: msgs::FundingCreated,
991         },
992         /// Used to indicate that a funding_signed message should be sent to the peer with the given node_id.
993         SendFundingSigned {
994                 /// The node_id of the node which should receive this message
995                 node_id: PublicKey,
996                 /// The message which should be sent.
997                 msg: msgs::FundingSigned,
998         },
999         /// Used to indicate that a channel_ready message should be sent to the peer with the given node_id.
1000         SendChannelReady {
1001                 /// The node_id of the node which should receive these message(s)
1002                 node_id: PublicKey,
1003                 /// The channel_ready message which should be sent.
1004                 msg: msgs::ChannelReady,
1005         },
1006         /// Used to indicate that an announcement_signatures message should be sent to the peer with the given node_id.
1007         SendAnnouncementSignatures {
1008                 /// The node_id of the node which should receive these message(s)
1009                 node_id: PublicKey,
1010                 /// The announcement_signatures message which should be sent.
1011                 msg: msgs::AnnouncementSignatures,
1012         },
1013         /// Used to indicate that a series of HTLC update messages, as well as a commitment_signed
1014         /// message should be sent to the peer with the given node_id.
1015         UpdateHTLCs {
1016                 /// The node_id of the node which should receive these message(s)
1017                 node_id: PublicKey,
1018                 /// The update messages which should be sent. ALL messages in the struct should be sent!
1019                 updates: msgs::CommitmentUpdate,
1020         },
1021         /// Used to indicate that a revoke_and_ack message should be sent to the peer with the given node_id.
1022         SendRevokeAndACK {
1023                 /// The node_id of the node which should receive this message
1024                 node_id: PublicKey,
1025                 /// The message which should be sent.
1026                 msg: msgs::RevokeAndACK,
1027         },
1028         /// Used to indicate that a closing_signed message should be sent to the peer with the given node_id.
1029         SendClosingSigned {
1030                 /// The node_id of the node which should receive this message
1031                 node_id: PublicKey,
1032                 /// The message which should be sent.
1033                 msg: msgs::ClosingSigned,
1034         },
1035         /// Used to indicate that a shutdown message should be sent to the peer with the given node_id.
1036         SendShutdown {
1037                 /// The node_id of the node which should receive this message
1038                 node_id: PublicKey,
1039                 /// The message which should be sent.
1040                 msg: msgs::Shutdown,
1041         },
1042         /// Used to indicate that a channel_reestablish message should be sent to the peer with the given node_id.
1043         SendChannelReestablish {
1044                 /// The node_id of the node which should receive this message
1045                 node_id: PublicKey,
1046                 /// The message which should be sent.
1047                 msg: msgs::ChannelReestablish,
1048         },
1049         /// Used to indicate that a channel_announcement and channel_update should be broadcast to all
1050         /// peers (except the peer with node_id either msg.contents.node_id_1 or msg.contents.node_id_2).
1051         ///
1052         /// Note that after doing so, you very likely (unless you did so very recently) want to call
1053         /// ChannelManager::broadcast_node_announcement to trigger a BroadcastNodeAnnouncement event.
1054         /// This ensures that any nodes which see our channel_announcement also have a relevant
1055         /// node_announcement, including relevant feature flags which may be important for routing
1056         /// through or to us.
1057         BroadcastChannelAnnouncement {
1058                 /// The channel_announcement which should be sent.
1059                 msg: msgs::ChannelAnnouncement,
1060                 /// The followup channel_update which should be sent.
1061                 update_msg: msgs::ChannelUpdate,
1062         },
1063         /// Used to indicate that a node_announcement should be broadcast to all peers.
1064         BroadcastNodeAnnouncement {
1065                 /// The node_announcement which should be sent.
1066                 msg: msgs::NodeAnnouncement,
1067         },
1068         /// Used to indicate that a channel_update should be broadcast to all peers.
1069         BroadcastChannelUpdate {
1070                 /// The channel_update which should be sent.
1071                 msg: msgs::ChannelUpdate,
1072         },
1073         /// Used to indicate that a channel_update should be sent to a single peer.
1074         /// In contrast to [`Self::BroadcastChannelUpdate`], this is used when the channel is a
1075         /// private channel and we shouldn't be informing all of our peers of channel parameters.
1076         SendChannelUpdate {
1077                 /// The node_id of the node which should receive this message
1078                 node_id: PublicKey,
1079                 /// The channel_update which should be sent.
1080                 msg: msgs::ChannelUpdate,
1081         },
1082         /// Broadcast an error downstream to be handled
1083         HandleError {
1084                 /// The node_id of the node which should receive this message
1085                 node_id: PublicKey,
1086                 /// The action which should be taken.
1087                 action: msgs::ErrorAction
1088         },
1089         /// Query a peer for channels with funding transaction UTXOs in a block range.
1090         SendChannelRangeQuery {
1091                 /// The node_id of this message recipient
1092                 node_id: PublicKey,
1093                 /// The query_channel_range which should be sent.
1094                 msg: msgs::QueryChannelRange,
1095         },
1096         /// Request routing gossip messages from a peer for a list of channels identified by
1097         /// their short_channel_ids.
1098         SendShortIdsQuery {
1099                 /// The node_id of this message recipient
1100                 node_id: PublicKey,
1101                 /// The query_short_channel_ids which should be sent.
1102                 msg: msgs::QueryShortChannelIds,
1103         },
1104         /// Sends a reply to a channel range query. This may be one of several SendReplyChannelRange events
1105         /// emitted during processing of the query.
1106         SendReplyChannelRange {
1107                 /// The node_id of this message recipient
1108                 node_id: PublicKey,
1109                 /// The reply_channel_range which should be sent.
1110                 msg: msgs::ReplyChannelRange,
1111         },
1112         /// Sends a timestamp filter for inbound gossip. This should be sent on each new connection to
1113         /// enable receiving gossip messages from the peer.
1114         SendGossipTimestampFilter {
1115                 /// The node_id of this message recipient
1116                 node_id: PublicKey,
1117                 /// The gossip_timestamp_filter which should be sent.
1118                 msg: msgs::GossipTimestampFilter,
1119         },
1120 }
1121
1122 /// A trait indicating an object may generate message send events
1123 pub trait MessageSendEventsProvider {
1124         /// Gets the list of pending events which were generated by previous actions, clearing the list
1125         /// in the process.
1126         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>;
1127 }
1128
1129 /// A trait indicating an object may generate events.
1130 ///
1131 /// Events are processed by passing an [`EventHandler`] to [`process_pending_events`].
1132 ///
1133 /// # Requirements
1134 ///
1135 /// See [`process_pending_events`] for requirements around event processing.
1136 ///
1137 /// When using this trait, [`process_pending_events`] will call [`handle_event`] for each pending
1138 /// event since the last invocation. The handler must either act upon the event immediately
1139 /// or preserve it for later handling.
1140 ///
1141 /// Note, handlers may call back into the provider and thus deadlocking must be avoided. Be sure to
1142 /// consult the provider's documentation on the implication of processing events and how a handler
1143 /// may safely use the provider (e.g., see [`ChannelManager::process_pending_events`] and
1144 /// [`ChainMonitor::process_pending_events`]).
1145 ///
1146 /// (C-not implementable) As there is likely no reason for a user to implement this trait on their
1147 /// own type(s).
1148 ///
1149 /// [`process_pending_events`]: Self::process_pending_events
1150 /// [`handle_event`]: EventHandler::handle_event
1151 /// [`ChannelManager::process_pending_events`]: crate::ln::channelmanager::ChannelManager#method.process_pending_events
1152 /// [`ChainMonitor::process_pending_events`]: crate::chain::chainmonitor::ChainMonitor#method.process_pending_events
1153 pub trait EventsProvider {
1154         /// Processes any events generated since the last call using the given event handler.
1155         ///
1156         /// Subsequent calls must only process new events. However, handlers must be capable of handling
1157         /// duplicate events across process restarts. This may occur if the provider was recovered from
1158         /// an old state (i.e., it hadn't been successfully persisted after processing pending events).
1159         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler;
1160 }
1161
1162 /// A trait implemented for objects handling events from [`EventsProvider`].
1163 pub trait EventHandler {
1164         /// Handles the given [`Event`].
1165         ///
1166         /// See [`EventsProvider`] for details that must be considered when implementing this method.
1167         fn handle_event(&self, event: &Event);
1168 }
1169
1170 impl<F> EventHandler for F where F: Fn(&Event) {
1171         fn handle_event(&self, event: &Event) {
1172                 self(event)
1173         }
1174 }
1175
1176 impl<T: EventHandler> EventHandler for Arc<T> {
1177         fn handle_event(&self, event: &Event) {
1178                 self.deref().handle_event(event)
1179         }
1180 }