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