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