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