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