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