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