Drop ChannelManager::block_disconnected() entirely
[rust-lightning] / lightning / src / ln / channelmanager.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 //! The top-level channel management and payment tracking stuff lives here.
11 //!
12 //! The ChannelManager is the main chunk of logic implementing the lightning protocol and is
13 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
14 //! upon reconnect to the relevant peer(s).
15 //!
16 //! It does not manage routing logic (see routing::router::get_route for that) nor does it manage constructing
17 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
18 //! imply it needs to fail HTLCs/payments/channels it manages).
19 //!
20
21 use bitcoin::blockdata::block::{Block, BlockHeader};
22 use bitcoin::blockdata::constants::genesis_block;
23 use bitcoin::network::constants::Network;
24
25 use bitcoin::hashes::{Hash, HashEngine};
26 use bitcoin::hashes::hmac::{Hmac, HmacEngine};
27 use bitcoin::hashes::sha256::Hash as Sha256;
28 use bitcoin::hashes::sha256d::Hash as Sha256dHash;
29 use bitcoin::hashes::cmp::fixed_time_eq;
30 use bitcoin::hash_types::BlockHash;
31
32 use bitcoin::secp256k1::key::{SecretKey,PublicKey};
33 use bitcoin::secp256k1::Secp256k1;
34 use bitcoin::secp256k1::ecdh::SharedSecret;
35 use bitcoin::secp256k1;
36
37 use chain;
38 use chain::Watch;
39 use chain::chaininterface::{BroadcasterInterface, FeeEstimator};
40 use chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, ChannelMonitorUpdateErr, HTLC_FAIL_BACK_BUFFER, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY, MonitorEvent, CLOSED_CHANNEL_UPDATE_ID};
41 use chain::transaction::{OutPoint, TransactionData};
42 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
43 // construct one themselves.
44 pub use ln::channel::CounterpartyForwardingInfo;
45 use ln::channel::{Channel, ChannelError};
46 use ln::features::{InitFeatures, NodeFeatures};
47 use routing::router::{Route, RouteHop};
48 use ln::msgs;
49 use ln::msgs::NetAddress;
50 use ln::onion_utils;
51 use ln::msgs::{ChannelMessageHandler, DecodeError, LightningError, OptionalField};
52 use chain::keysinterface::{Sign, KeysInterface, KeysManager, InMemorySigner};
53 use util::config::UserConfig;
54 use util::events::{Event, EventsProvider, MessageSendEvent, MessageSendEventsProvider};
55 use util::{byte_utils, events};
56 use util::ser::{Readable, ReadableArgs, MaybeReadable, Writeable, Writer};
57 use util::chacha20::{ChaCha20, ChaChaReader};
58 use util::logger::Logger;
59 use util::errors::APIError;
60
61 use std::{cmp, mem};
62 use std::collections::{HashMap, hash_map, HashSet};
63 use std::io::{Cursor, Read};
64 use std::sync::{Arc, Condvar, Mutex, MutexGuard, RwLock, RwLockReadGuard};
65 use std::sync::atomic::{AtomicUsize, Ordering};
66 use std::time::Duration;
67 #[cfg(any(test, feature = "allow_wallclock_use"))]
68 use std::time::Instant;
69 use std::marker::{Sync, Send};
70 use std::ops::Deref;
71 use bitcoin::hashes::hex::ToHex;
72
73 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
74 //
75 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
76 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
77 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
78 //
79 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
80 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
81 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
82 // before we forward it.
83 //
84 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
85 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
86 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
87 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
88 // our payment, which we can use to decode errors or inform the user that the payment was sent.
89
90 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
91 enum PendingHTLCRouting {
92         Forward {
93                 onion_packet: msgs::OnionPacket,
94                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
95         },
96         Receive {
97                 payment_data: Option<msgs::FinalOnionHopData>,
98                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
99         },
100 }
101
102 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
103 pub(super) struct PendingHTLCInfo {
104         routing: PendingHTLCRouting,
105         incoming_shared_secret: [u8; 32],
106         payment_hash: PaymentHash,
107         pub(super) amt_to_forward: u64,
108         pub(super) outgoing_cltv_value: u32,
109 }
110
111 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
112 pub(super) enum HTLCFailureMsg {
113         Relay(msgs::UpdateFailHTLC),
114         Malformed(msgs::UpdateFailMalformedHTLC),
115 }
116
117 /// Stores whether we can't forward an HTLC or relevant forwarding info
118 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
119 pub(super) enum PendingHTLCStatus {
120         Forward(PendingHTLCInfo),
121         Fail(HTLCFailureMsg),
122 }
123
124 pub(super) enum HTLCForwardInfo {
125         AddHTLC {
126                 forward_info: PendingHTLCInfo,
127
128                 // These fields are produced in `forward_htlcs()` and consumed in
129                 // `process_pending_htlc_forwards()` for constructing the
130                 // `HTLCSource::PreviousHopData` for failed and forwarded
131                 // HTLCs.
132                 prev_short_channel_id: u64,
133                 prev_htlc_id: u64,
134                 prev_funding_outpoint: OutPoint,
135         },
136         FailHTLC {
137                 htlc_id: u64,
138                 err_packet: msgs::OnionErrorPacket,
139         },
140 }
141
142 /// Tracks the inbound corresponding to an outbound HTLC
143 #[derive(Clone, PartialEq)]
144 pub(crate) struct HTLCPreviousHopData {
145         short_channel_id: u64,
146         htlc_id: u64,
147         incoming_packet_shared_secret: [u8; 32],
148
149         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
150         // channel with a preimage provided by the forward channel.
151         outpoint: OutPoint,
152 }
153
154 struct ClaimableHTLC {
155         prev_hop: HTLCPreviousHopData,
156         value: u64,
157         /// Filled in when the HTLC was received with a payment_secret packet, which contains a
158         /// total_msat (which may differ from value if this is a Multi-Path Payment) and a
159         /// payment_secret which prevents path-probing attacks and can associate different HTLCs which
160         /// are part of the same payment.
161         payment_data: Option<msgs::FinalOnionHopData>,
162         cltv_expiry: u32,
163 }
164
165 /// Tracks the inbound corresponding to an outbound HTLC
166 #[derive(Clone, PartialEq)]
167 pub(crate) enum HTLCSource {
168         PreviousHopData(HTLCPreviousHopData),
169         OutboundRoute {
170                 path: Vec<RouteHop>,
171                 session_priv: SecretKey,
172                 /// Technically we can recalculate this from the route, but we cache it here to avoid
173                 /// doing a double-pass on route when we get a failure back
174                 first_hop_htlc_msat: u64,
175         },
176 }
177 #[cfg(test)]
178 impl HTLCSource {
179         pub fn dummy() -> Self {
180                 HTLCSource::OutboundRoute {
181                         path: Vec::new(),
182                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
183                         first_hop_htlc_msat: 0,
184                 }
185         }
186 }
187
188 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
189 pub(super) enum HTLCFailReason {
190         LightningError {
191                 err: msgs::OnionErrorPacket,
192         },
193         Reason {
194                 failure_code: u16,
195                 data: Vec<u8>,
196         }
197 }
198
199 /// payment_hash type, use to cross-lock hop
200 /// (C-not exported) as we just use [u8; 32] directly
201 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
202 pub struct PaymentHash(pub [u8;32]);
203 /// payment_preimage type, use to route payment between hop
204 /// (C-not exported) as we just use [u8; 32] directly
205 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
206 pub struct PaymentPreimage(pub [u8;32]);
207 /// payment_secret type, use to authenticate sender to the receiver and tie MPP HTLCs together
208 /// (C-not exported) as we just use [u8; 32] directly
209 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
210 pub struct PaymentSecret(pub [u8;32]);
211
212 type ShutdownResult = (Option<(OutPoint, ChannelMonitorUpdate)>, Vec<(HTLCSource, PaymentHash)>);
213
214 /// Error type returned across the channel_state mutex boundary. When an Err is generated for a
215 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
216 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
217 /// channel_state lock. We then return the set of things that need to be done outside the lock in
218 /// this struct and call handle_error!() on it.
219
220 struct MsgHandleErrInternal {
221         err: msgs::LightningError,
222         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
223 }
224 impl MsgHandleErrInternal {
225         #[inline]
226         fn send_err_msg_no_close(err: String, channel_id: [u8; 32]) -> Self {
227                 Self {
228                         err: LightningError {
229                                 err: err.clone(),
230                                 action: msgs::ErrorAction::SendErrorMessage {
231                                         msg: msgs::ErrorMessage {
232                                                 channel_id,
233                                                 data: err
234                                         },
235                                 },
236                         },
237                         shutdown_finish: None,
238                 }
239         }
240         #[inline]
241         fn ignore_no_close(err: String) -> Self {
242                 Self {
243                         err: LightningError {
244                                 err,
245                                 action: msgs::ErrorAction::IgnoreError,
246                         },
247                         shutdown_finish: None,
248                 }
249         }
250         #[inline]
251         fn from_no_close(err: msgs::LightningError) -> Self {
252                 Self { err, shutdown_finish: None }
253         }
254         #[inline]
255         fn from_finish_shutdown(err: String, channel_id: [u8; 32], shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>) -> Self {
256                 Self {
257                         err: LightningError {
258                                 err: err.clone(),
259                                 action: msgs::ErrorAction::SendErrorMessage {
260                                         msg: msgs::ErrorMessage {
261                                                 channel_id,
262                                                 data: err
263                                         },
264                                 },
265                         },
266                         shutdown_finish: Some((shutdown_res, channel_update)),
267                 }
268         }
269         #[inline]
270         fn from_chan_no_close(err: ChannelError, channel_id: [u8; 32]) -> Self {
271                 Self {
272                         err: match err {
273                                 ChannelError::Ignore(msg) => LightningError {
274                                         err: msg,
275                                         action: msgs::ErrorAction::IgnoreError,
276                                 },
277                                 ChannelError::Close(msg) => LightningError {
278                                         err: msg.clone(),
279                                         action: msgs::ErrorAction::SendErrorMessage {
280                                                 msg: msgs::ErrorMessage {
281                                                         channel_id,
282                                                         data: msg
283                                                 },
284                                         },
285                                 },
286                                 ChannelError::CloseDelayBroadcast(msg) => LightningError {
287                                         err: msg.clone(),
288                                         action: msgs::ErrorAction::SendErrorMessage {
289                                                 msg: msgs::ErrorMessage {
290                                                         channel_id,
291                                                         data: msg
292                                                 },
293                                         },
294                                 },
295                         },
296                         shutdown_finish: None,
297                 }
298         }
299 }
300
301 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
302 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
303 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
304 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
305 const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
306
307 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
308 /// be sent in the order they appear in the return value, however sometimes the order needs to be
309 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
310 /// they were originally sent). In those cases, this enum is also returned.
311 #[derive(Clone, PartialEq)]
312 pub(super) enum RAACommitmentOrder {
313         /// Send the CommitmentUpdate messages first
314         CommitmentFirst,
315         /// Send the RevokeAndACK message first
316         RevokeAndACKFirst,
317 }
318
319 // Note this is only exposed in cfg(test):
320 pub(super) struct ChannelHolder<Signer: Sign> {
321         pub(super) by_id: HashMap<[u8; 32], Channel<Signer>>,
322         pub(super) short_to_id: HashMap<u64, [u8; 32]>,
323         /// short channel id -> forward infos. Key of 0 means payments received
324         /// Note that while this is held in the same mutex as the channels themselves, no consistency
325         /// guarantees are made about the existence of a channel with the short id here, nor the short
326         /// ids in the PendingHTLCInfo!
327         pub(super) forward_htlcs: HashMap<u64, Vec<HTLCForwardInfo>>,
328         /// (payment_hash, payment_secret) -> Vec<HTLCs> for tracking HTLCs that
329         /// were to us and can be failed/claimed by the user
330         /// Note that while this is held in the same mutex as the channels themselves, no consistency
331         /// guarantees are made about the channels given here actually existing anymore by the time you
332         /// go to read them!
333         claimable_htlcs: HashMap<(PaymentHash, Option<PaymentSecret>), Vec<ClaimableHTLC>>,
334         /// Messages to send to peers - pushed to in the same lock that they are generated in (except
335         /// for broadcast messages, where ordering isn't as strict).
336         pub(super) pending_msg_events: Vec<MessageSendEvent>,
337 }
338
339 /// Events which we process internally but cannot be procsesed immediately at the generation site
340 /// for some reason. They are handled in timer_chan_freshness_every_min, so may be processed with
341 /// quite some time lag.
342 enum BackgroundEvent {
343         /// Handle a ChannelMonitorUpdate that closes a channel, broadcasting its current latest holder
344         /// commitment transaction.
345         ClosingMonitorUpdate((OutPoint, ChannelMonitorUpdate)),
346 }
347
348 /// State we hold per-peer. In the future we should put channels in here, but for now we only hold
349 /// the latest Init features we heard from the peer.
350 struct PeerState {
351         latest_features: InitFeatures,
352 }
353
354 #[cfg(not(any(target_pointer_width = "32", target_pointer_width = "64")))]
355 const ERR: () = "You need at least 32 bit pointers (well, usize, but we'll assume they're the same) for ChannelManager::latest_block_height";
356
357 /// SimpleArcChannelManager is useful when you need a ChannelManager with a static lifetime, e.g.
358 /// when you're using lightning-net-tokio (since tokio::spawn requires parameters with static
359 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
360 /// SimpleRefChannelManager is the more appropriate type. Defining these type aliases prevents
361 /// issues such as overly long function definitions. Note that the ChannelManager can take any
362 /// type that implements KeysInterface for its keys manager, but this type alias chooses the
363 /// concrete type of the KeysManager.
364 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<InMemorySigner, Arc<M>, Arc<T>, Arc<KeysManager>, Arc<F>, Arc<L>>;
365
366 /// SimpleRefChannelManager is a type alias for a ChannelManager reference, and is the reference
367 /// counterpart to the SimpleArcChannelManager type alias. Use this type by default when you don't
368 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
369 /// usage of lightning-net-tokio (since tokio::spawn requires parameters with static lifetimes).
370 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
371 /// helps with issues such as long function definitions. Note that the ChannelManager can take any
372 /// type that implements KeysInterface for its keys manager, but this type alias chooses the
373 /// concrete type of the KeysManager.
374 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, M, T, F, L> = ChannelManager<InMemorySigner, &'a M, &'b T, &'c KeysManager, &'d F, &'e L>;
375
376 /// Manager which keeps track of a number of channels and sends messages to the appropriate
377 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
378 ///
379 /// Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
380 /// to individual Channels.
381 ///
382 /// Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
383 /// all peers during write/read (though does not modify this instance, only the instance being
384 /// serialized). This will result in any channels which have not yet exchanged funding_created (ie
385 /// called funding_transaction_generated for outbound channels).
386 ///
387 /// Note that you can be a bit lazier about writing out ChannelManager than you can be with
388 /// ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
389 /// returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
390 /// happens out-of-band (and will prevent any other ChannelManager operations from occurring during
391 /// the serialization process). If the deserialized version is out-of-date compared to the
392 /// ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
393 /// ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
394 ///
395 /// Note that the deserializer is only implemented for (BlockHash, ChannelManager), which
396 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
397 /// the "reorg path" (ie call block_disconnected() until you get to a common block and then call
398 /// block_connected() to step towards your best block) upon deserialization before using the
399 /// object!
400 ///
401 /// Note that ChannelManager is responsible for tracking liveness of its channels and generating
402 /// ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
403 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
404 /// offline for a full minute. In order to track this, you must call
405 /// timer_chan_freshness_every_min roughly once per minute, though it doesn't have to be perfect.
406 ///
407 /// Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
408 /// a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
409 /// essentially you should default to using a SimpleRefChannelManager, and use a
410 /// SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
411 /// you're using lightning-net-tokio.
412 pub struct ChannelManager<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
413         where M::Target: chain::Watch<Signer>,
414         T::Target: BroadcasterInterface,
415         K::Target: KeysInterface<Signer = Signer>,
416         F::Target: FeeEstimator,
417                                 L::Target: Logger,
418 {
419         default_configuration: UserConfig,
420         genesis_hash: BlockHash,
421         fee_estimator: F,
422         chain_monitor: M,
423         tx_broadcaster: T,
424
425         #[cfg(test)]
426         pub(super) latest_block_height: AtomicUsize,
427         #[cfg(not(test))]
428         latest_block_height: AtomicUsize,
429         last_block_hash: RwLock<BlockHash>,
430         secp_ctx: Secp256k1<secp256k1::All>,
431
432         #[cfg(any(test, feature = "_test_utils"))]
433         pub(super) channel_state: Mutex<ChannelHolder<Signer>>,
434         #[cfg(not(any(test, feature = "_test_utils")))]
435         channel_state: Mutex<ChannelHolder<Signer>>,
436         our_network_key: SecretKey,
437
438         /// Used to track the last value sent in a node_announcement "timestamp" field. We ensure this
439         /// value increases strictly since we don't assume access to a time source.
440         last_node_announcement_serial: AtomicUsize,
441
442         /// The bulk of our storage will eventually be here (channels and message queues and the like).
443         /// If we are connected to a peer we always at least have an entry here, even if no channels
444         /// are currently open with that peer.
445         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
446         /// operate on the inner value freely. Sadly, this prevents parallel operation when opening a
447         /// new channel.
448         per_peer_state: RwLock<HashMap<PublicKey, Mutex<PeerState>>>,
449
450         pending_events: Mutex<Vec<events::Event>>,
451         pending_background_events: Mutex<Vec<BackgroundEvent>>,
452         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
453         /// Essentially just when we're serializing ourselves out.
454         /// Taken first everywhere where we are making changes before any other locks.
455         /// When acquiring this lock in read mode, rather than acquiring it directly, call
456         /// `PersistenceNotifierGuard::new(..)` and pass the lock to it, to ensure the PersistenceNotifier
457         /// the lock contains sends out a notification when the lock is released.
458         total_consistency_lock: RwLock<()>,
459
460         persistence_notifier: PersistenceNotifier,
461
462         keys_manager: K,
463
464         logger: L,
465 }
466
467 /// Chain-related parameters used to construct a new `ChannelManager`.
468 ///
469 /// Typically, the block-specific parameters are derived from the best block hash for the network,
470 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
471 /// are not needed when deserializing a previously constructed `ChannelManager`.
472 pub struct ChainParameters {
473         /// The network for determining the `chain_hash` in Lightning messages.
474         pub network: Network,
475
476         /// The hash of the latest block successfully connected.
477         pub latest_hash: BlockHash,
478
479         /// The height of the latest block successfully connected.
480         ///
481         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
482         pub latest_height: usize,
483 }
484
485 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
486 /// desirable to notify any listeners on `await_persistable_update_timeout`/
487 /// `await_persistable_update` that new updates are available for persistence. Therefore, this
488 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
489 /// sending the aforementioned notification (since the lock being released indicates that the
490 /// updates are ready for persistence).
491 struct PersistenceNotifierGuard<'a> {
492         persistence_notifier: &'a PersistenceNotifier,
493         // We hold onto this result so the lock doesn't get released immediately.
494         _read_guard: RwLockReadGuard<'a, ()>,
495 }
496
497 impl<'a> PersistenceNotifierGuard<'a> {
498         fn new(lock: &'a RwLock<()>, notifier: &'a PersistenceNotifier) -> Self {
499                 let read_guard = lock.read().unwrap();
500
501                 Self {
502                         persistence_notifier: notifier,
503                         _read_guard: read_guard,
504                 }
505         }
506 }
507
508 impl<'a> Drop for PersistenceNotifierGuard<'a> {
509         fn drop(&mut self) {
510                 self.persistence_notifier.notify();
511         }
512 }
513
514 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
515 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
516 ///
517 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
518 ///
519 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
520 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
521 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
522 /// the maximum required amount in lnd as of March 2021.
523 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
524
525 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
526 /// HTLC's CLTV. The current default represents roughly six hours of blocks at six blocks/hour.
527 ///
528 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
529 ///
530 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
531 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
532 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
533 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
534 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
535 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6 * 6;
536 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 6 * 24 * 7; //TODO?
537
538 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
539 // ie that if the next-hop peer fails the HTLC within
540 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
541 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
542 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
543 // LATENCY_GRACE_PERIOD_BLOCKS.
544 #[deny(const_err)]
545 #[allow(dead_code)]
546 const CHECK_CLTV_EXPIRY_SANITY: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - CLTV_CLAIM_BUFFER - ANTI_REORG_DELAY - LATENCY_GRACE_PERIOD_BLOCKS;
547
548 // Check for ability of an attacker to make us fail on-chain by delaying inbound claim. See
549 // ChannelMontior::would_broadcast_at_height for a description of why this is needed.
550 #[deny(const_err)]
551 #[allow(dead_code)]
552 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
553
554 /// Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
555 #[derive(Clone)]
556 pub struct ChannelDetails {
557         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
558         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
559         /// Note that this means this value is *not* persistent - it can change once during the
560         /// lifetime of the channel.
561         pub channel_id: [u8; 32],
562         /// The position of the funding transaction in the chain. None if the funding transaction has
563         /// not yet been confirmed and the channel fully opened.
564         pub short_channel_id: Option<u64>,
565         /// The node_id of our counterparty
566         pub remote_network_id: PublicKey,
567         /// The Features the channel counterparty provided upon last connection.
568         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
569         /// many routing-relevant features are present in the init context.
570         pub counterparty_features: InitFeatures,
571         /// The value, in satoshis, of this channel as appears in the funding output
572         pub channel_value_satoshis: u64,
573         /// The user_id passed in to create_channel, or 0 if the channel was inbound.
574         pub user_id: u64,
575         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
576         /// any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
577         /// available for inclusion in new outbound HTLCs). This further does not include any pending
578         /// outgoing HTLCs which are awaiting some other resolution to be sent.
579         pub outbound_capacity_msat: u64,
580         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
581         /// include any pending HTLCs which are not yet fully resolved (and, thus, who's balance is not
582         /// available for inclusion in new inbound HTLCs).
583         /// Note that there are some corner cases not fully handled here, so the actual available
584         /// inbound capacity may be slightly higher than this.
585         pub inbound_capacity_msat: u64,
586         /// True if the channel is (a) confirmed and funding_locked messages have been exchanged, (b)
587         /// the peer is connected, and (c) no monitor update failure is pending resolution.
588         pub is_live: bool,
589
590         /// Information on the fees and requirements that the counterparty requires when forwarding
591         /// payments to us through this channel.
592         pub counterparty_forwarding_info: Option<CounterpartyForwardingInfo>,
593 }
594
595 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
596 /// Err() type describing which state the payment is in, see the description of individual enum
597 /// states for more.
598 #[derive(Clone, Debug)]
599 pub enum PaymentSendFailure {
600         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
601         /// send the payment at all. No channel state has been changed or messages sent to peers, and
602         /// once you've changed the parameter at error, you can freely retry the payment in full.
603         ParameterError(APIError),
604         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
605         /// from attempting to send the payment at all. No channel state has been changed or messages
606         /// sent to peers, and once you've changed the parameter at error, you can freely retry the
607         /// payment in full.
608         ///
609         /// The results here are ordered the same as the paths in the route object which was passed to
610         /// send_payment.
611         PathParameterError(Vec<Result<(), APIError>>),
612         /// All paths which were attempted failed to send, with no channel state change taking place.
613         /// You can freely retry the payment in full (though you probably want to do so over different
614         /// paths than the ones selected).
615         AllFailedRetrySafe(Vec<APIError>),
616         /// Some paths which were attempted failed to send, though possibly not all. At least some
617         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
618         /// in over-/re-payment.
619         ///
620         /// The results here are ordered the same as the paths in the route object which was passed to
621         /// send_payment, and any Errs which are not APIError::MonitorUpdateFailed can be safely
622         /// retried (though there is currently no API with which to do so).
623         ///
624         /// Any entries which contain Err(APIError::MonitorUpdateFailed) or Ok(()) MUST NOT be retried
625         /// as they will result in over-/re-payment. These HTLCs all either successfully sent (in the
626         /// case of Ok(())) or will send once channel_monitor_updated is called on the next-hop channel
627         /// with the latest update_id.
628         PartialFailure(Vec<Result<(), APIError>>),
629 }
630
631 macro_rules! handle_error {
632         ($self: ident, $internal: expr, $counterparty_node_id: expr) => {
633                 match $internal {
634                         Ok(msg) => Ok(msg),
635                         Err(MsgHandleErrInternal { err, shutdown_finish }) => {
636                                 #[cfg(debug_assertions)]
637                                 {
638                                         // In testing, ensure there are no deadlocks where the lock is already held upon
639                                         // entering the macro.
640                                         assert!($self.channel_state.try_lock().is_ok());
641                                 }
642
643                                 let mut msg_events = Vec::with_capacity(2);
644
645                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
646                                         $self.finish_force_close_channel(shutdown_res);
647                                         if let Some(update) = update_option {
648                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
649                                                         msg: update
650                                                 });
651                                         }
652                                 }
653
654                                 log_error!($self.logger, "{}", err.err);
655                                 if let msgs::ErrorAction::IgnoreError = err.action {
656                                 } else {
657                                         msg_events.push(events::MessageSendEvent::HandleError {
658                                                 node_id: $counterparty_node_id,
659                                                 action: err.action.clone()
660                                         });
661                                 }
662
663                                 if !msg_events.is_empty() {
664                                         $self.channel_state.lock().unwrap().pending_msg_events.append(&mut msg_events);
665                                 }
666
667                                 // Return error in case higher-API need one
668                                 Err(err)
669                         },
670                 }
671         }
672 }
673
674 macro_rules! break_chan_entry {
675         ($self: ident, $res: expr, $channel_state: expr, $entry: expr) => {
676                 match $res {
677                         Ok(res) => res,
678                         Err(ChannelError::Ignore(msg)) => {
679                                 break Err(MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $entry.key().clone()))
680                         },
681                         Err(ChannelError::Close(msg)) => {
682                                 log_trace!($self.logger, "Closing channel {} due to Close-required error: {}", log_bytes!($entry.key()[..]), msg);
683                                 let (channel_id, mut chan) = $entry.remove_entry();
684                                 if let Some(short_id) = chan.get_short_channel_id() {
685                                         $channel_state.short_to_id.remove(&short_id);
686                                 }
687                                 break Err(MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, chan.force_shutdown(true), $self.get_channel_update(&chan).ok()))
688                         },
689                         Err(ChannelError::CloseDelayBroadcast(_)) => { panic!("Wait is only generated on receipt of channel_reestablish, which is handled by try_chan_entry, we don't bother to support it here"); }
690                 }
691         }
692 }
693
694 macro_rules! try_chan_entry {
695         ($self: ident, $res: expr, $channel_state: expr, $entry: expr) => {
696                 match $res {
697                         Ok(res) => res,
698                         Err(ChannelError::Ignore(msg)) => {
699                                 return Err(MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $entry.key().clone()))
700                         },
701                         Err(ChannelError::Close(msg)) => {
702                                 log_trace!($self.logger, "Closing channel {} due to Close-required error: {}", log_bytes!($entry.key()[..]), msg);
703                                 let (channel_id, mut chan) = $entry.remove_entry();
704                                 if let Some(short_id) = chan.get_short_channel_id() {
705                                         $channel_state.short_to_id.remove(&short_id);
706                                 }
707                                 return Err(MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, chan.force_shutdown(true), $self.get_channel_update(&chan).ok()))
708                         },
709                         Err(ChannelError::CloseDelayBroadcast(msg)) => {
710                                 log_error!($self.logger, "Channel {} need to be shutdown but closing transactions not broadcast due to {}", log_bytes!($entry.key()[..]), msg);
711                                 let (channel_id, mut chan) = $entry.remove_entry();
712                                 if let Some(short_id) = chan.get_short_channel_id() {
713                                         $channel_state.short_to_id.remove(&short_id);
714                                 }
715                                 let shutdown_res = chan.force_shutdown(false);
716                                 return Err(MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, shutdown_res, $self.get_channel_update(&chan).ok()))
717                         }
718                 }
719         }
720 }
721
722 macro_rules! handle_monitor_err {
723         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr) => {
724                 handle_monitor_err!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment, Vec::new(), Vec::new())
725         };
726         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $failed_forwards: expr, $failed_fails: expr) => {
727                 match $err {
728                         ChannelMonitorUpdateErr::PermanentFailure => {
729                                 log_error!($self.logger, "Closing channel {} due to monitor update PermanentFailure", log_bytes!($entry.key()[..]));
730                                 let (channel_id, mut chan) = $entry.remove_entry();
731                                 if let Some(short_id) = chan.get_short_channel_id() {
732                                         $channel_state.short_to_id.remove(&short_id);
733                                 }
734                                 // TODO: $failed_fails is dropped here, which will cause other channels to hit the
735                                 // chain in a confused state! We need to move them into the ChannelMonitor which
736                                 // will be responsible for failing backwards once things confirm on-chain.
737                                 // It's ok that we drop $failed_forwards here - at this point we'd rather they
738                                 // broadcast HTLC-Timeout and pay the associated fees to get their funds back than
739                                 // us bother trying to claim it just to forward on to another peer. If we're
740                                 // splitting hairs we'd prefer to claim payments that were to us, but we haven't
741                                 // given up the preimage yet, so might as well just wait until the payment is
742                                 // retried, avoiding the on-chain fees.
743                                 let res: Result<(), _> = Err(MsgHandleErrInternal::from_finish_shutdown("ChannelMonitor storage failure".to_owned(), channel_id, chan.force_shutdown(true), $self.get_channel_update(&chan).ok()));
744                                 res
745                         },
746                         ChannelMonitorUpdateErr::TemporaryFailure => {
747                                 log_info!($self.logger, "Disabling channel {} due to monitor update TemporaryFailure. On restore will send {} and process {} forwards and {} fails",
748                                                 log_bytes!($entry.key()[..]),
749                                                 if $resend_commitment && $resend_raa {
750                                                                 match $action_type {
751                                                                         RAACommitmentOrder::CommitmentFirst => { "commitment then RAA" },
752                                                                         RAACommitmentOrder::RevokeAndACKFirst => { "RAA then commitment" },
753                                                                 }
754                                                         } else if $resend_commitment { "commitment" }
755                                                         else if $resend_raa { "RAA" }
756                                                         else { "nothing" },
757                                                 (&$failed_forwards as &Vec<(PendingHTLCInfo, u64)>).len(),
758                                                 (&$failed_fails as &Vec<(HTLCSource, PaymentHash, HTLCFailReason)>).len());
759                                 if !$resend_commitment {
760                                         debug_assert!($action_type == RAACommitmentOrder::RevokeAndACKFirst || !$resend_raa);
761                                 }
762                                 if !$resend_raa {
763                                         debug_assert!($action_type == RAACommitmentOrder::CommitmentFirst || !$resend_commitment);
764                                 }
765                                 $entry.get_mut().monitor_update_failed($resend_raa, $resend_commitment, $failed_forwards, $failed_fails);
766                                 Err(MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore("Failed to update ChannelMonitor".to_owned()), *$entry.key()))
767                         },
768                 }
769         }
770 }
771
772 macro_rules! return_monitor_err {
773         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr) => {
774                 return handle_monitor_err!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment);
775         };
776         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $failed_forwards: expr, $failed_fails: expr) => {
777                 return handle_monitor_err!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment, $failed_forwards, $failed_fails);
778         }
779 }
780
781 // Does not break in case of TemporaryFailure!
782 macro_rules! maybe_break_monitor_err {
783         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr) => {
784                 match (handle_monitor_err!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment), $err) {
785                         (e, ChannelMonitorUpdateErr::PermanentFailure) => {
786                                 break e;
787                         },
788                         (_, ChannelMonitorUpdateErr::TemporaryFailure) => { },
789                 }
790         }
791 }
792
793 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelManager<Signer, M, T, K, F, L>
794         where M::Target: chain::Watch<Signer>,
795         T::Target: BroadcasterInterface,
796         K::Target: KeysInterface<Signer = Signer>,
797         F::Target: FeeEstimator,
798         L::Target: Logger,
799 {
800         /// Constructs a new ChannelManager to hold several channels and route between them.
801         ///
802         /// This is the main "logic hub" for all channel-related actions, and implements
803         /// ChannelMessageHandler.
804         ///
805         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
806         ///
807         /// panics if channel_value_satoshis is >= `MAX_FUNDING_SATOSHIS`!
808         ///
809         /// Users need to notify the new ChannelManager when a new block is connected or
810         /// disconnected using its `block_connected` and `block_disconnected` methods, starting
811         /// from after `params.latest_hash`.
812         pub fn new(fee_est: F, chain_monitor: M, tx_broadcaster: T, logger: L, keys_manager: K, config: UserConfig, params: ChainParameters) -> Self {
813                 let mut secp_ctx = Secp256k1::new();
814                 secp_ctx.seeded_randomize(&keys_manager.get_secure_random_bytes());
815
816                 ChannelManager {
817                         default_configuration: config.clone(),
818                         genesis_hash: genesis_block(params.network).header.block_hash(),
819                         fee_estimator: fee_est,
820                         chain_monitor,
821                         tx_broadcaster,
822
823                         latest_block_height: AtomicUsize::new(params.latest_height),
824                         last_block_hash: RwLock::new(params.latest_hash),
825                         secp_ctx,
826
827                         channel_state: Mutex::new(ChannelHolder{
828                                 by_id: HashMap::new(),
829                                 short_to_id: HashMap::new(),
830                                 forward_htlcs: HashMap::new(),
831                                 claimable_htlcs: HashMap::new(),
832                                 pending_msg_events: Vec::new(),
833                         }),
834                         our_network_key: keys_manager.get_node_secret(),
835
836                         last_node_announcement_serial: AtomicUsize::new(0),
837
838                         per_peer_state: RwLock::new(HashMap::new()),
839
840                         pending_events: Mutex::new(Vec::new()),
841                         pending_background_events: Mutex::new(Vec::new()),
842                         total_consistency_lock: RwLock::new(()),
843                         persistence_notifier: PersistenceNotifier::new(),
844
845                         keys_manager,
846
847                         logger,
848                 }
849         }
850
851         /// Creates a new outbound channel to the given remote node and with the given value.
852         ///
853         /// user_id will be provided back as user_channel_id in FundingGenerationReady and
854         /// FundingBroadcastSafe events to allow tracking of which events correspond with which
855         /// create_channel call. Note that user_channel_id defaults to 0 for inbound channels, so you
856         /// may wish to avoid using 0 for user_id here.
857         ///
858         /// If successful, will generate a SendOpenChannel message event, so you should probably poll
859         /// PeerManager::process_events afterwards.
860         ///
861         /// Raises APIError::APIMisuseError when channel_value_satoshis > 2**24 or push_msat is
862         /// greater than channel_value_satoshis * 1k or channel_value_satoshis is < 1000.
863         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_id: u64, override_config: Option<UserConfig>) -> Result<(), APIError> {
864                 if channel_value_satoshis < 1000 {
865                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
866                 }
867
868                 let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
869                 let channel = Channel::new_outbound(&self.fee_estimator, &self.keys_manager, their_network_key, channel_value_satoshis, push_msat, user_id, config)?;
870                 let res = channel.get_open_channel(self.genesis_hash.clone());
871
872                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
873                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
874                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
875
876                 let mut channel_state = self.channel_state.lock().unwrap();
877                 match channel_state.by_id.entry(channel.channel_id()) {
878                         hash_map::Entry::Occupied(_) => {
879                                 if cfg!(feature = "fuzztarget") {
880                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
881                                 } else {
882                                         panic!("RNG is bad???");
883                                 }
884                         },
885                         hash_map::Entry::Vacant(entry) => { entry.insert(channel); }
886                 }
887                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
888                         node_id: their_network_key,
889                         msg: res,
890                 });
891                 Ok(())
892         }
893
894         fn list_channels_with_filter<Fn: FnMut(&(&[u8; 32], &Channel<Signer>)) -> bool>(&self, f: Fn) -> Vec<ChannelDetails> {
895                 let mut res = Vec::new();
896                 {
897                         let channel_state = self.channel_state.lock().unwrap();
898                         res.reserve(channel_state.by_id.len());
899                         for (channel_id, channel) in channel_state.by_id.iter().filter(f) {
900                                 let (inbound_capacity_msat, outbound_capacity_msat) = channel.get_inbound_outbound_available_balance_msat();
901                                 res.push(ChannelDetails {
902                                         channel_id: (*channel_id).clone(),
903                                         short_channel_id: channel.get_short_channel_id(),
904                                         remote_network_id: channel.get_counterparty_node_id(),
905                                         counterparty_features: InitFeatures::empty(),
906                                         channel_value_satoshis: channel.get_value_satoshis(),
907                                         inbound_capacity_msat,
908                                         outbound_capacity_msat,
909                                         user_id: channel.get_user_id(),
910                                         is_live: channel.is_live(),
911                                         counterparty_forwarding_info: channel.counterparty_forwarding_info(),
912                                 });
913                         }
914                 }
915                 let per_peer_state = self.per_peer_state.read().unwrap();
916                 for chan in res.iter_mut() {
917                         if let Some(peer_state) = per_peer_state.get(&chan.remote_network_id) {
918                                 chan.counterparty_features = peer_state.lock().unwrap().latest_features.clone();
919                         }
920                 }
921                 res
922         }
923
924         /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
925         /// more information.
926         pub fn list_channels(&self) -> Vec<ChannelDetails> {
927                 self.list_channels_with_filter(|_| true)
928         }
929
930         /// Gets the list of usable channels, in random order. Useful as an argument to
931         /// get_route to ensure non-announced channels are used.
932         ///
933         /// These are guaranteed to have their is_live value set to true, see the documentation for
934         /// ChannelDetails::is_live for more info on exactly what the criteria are.
935         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
936                 // Note we use is_live here instead of usable which leads to somewhat confused
937                 // internal/external nomenclature, but that's ok cause that's probably what the user
938                 // really wanted anyway.
939                 self.list_channels_with_filter(|&(_, ref channel)| channel.is_live())
940         }
941
942         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
943         /// will be accepted on the given channel, and after additional timeout/the closing of all
944         /// pending HTLCs, the channel will be closed on chain.
945         ///
946         /// May generate a SendShutdown message event on success, which should be relayed.
947         pub fn close_channel(&self, channel_id: &[u8; 32]) -> Result<(), APIError> {
948                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
949
950                 let (mut failed_htlcs, chan_option) = {
951                         let mut channel_state_lock = self.channel_state.lock().unwrap();
952                         let channel_state = &mut *channel_state_lock;
953                         match channel_state.by_id.entry(channel_id.clone()) {
954                                 hash_map::Entry::Occupied(mut chan_entry) => {
955                                         let (shutdown_msg, failed_htlcs) = chan_entry.get_mut().get_shutdown()?;
956                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
957                                                 node_id: chan_entry.get().get_counterparty_node_id(),
958                                                 msg: shutdown_msg
959                                         });
960                                         if chan_entry.get().is_shutdown() {
961                                                 if let Some(short_id) = chan_entry.get().get_short_channel_id() {
962                                                         channel_state.short_to_id.remove(&short_id);
963                                                 }
964                                                 (failed_htlcs, Some(chan_entry.remove_entry().1))
965                                         } else { (failed_htlcs, None) }
966                                 },
967                                 hash_map::Entry::Vacant(_) => return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()})
968                         }
969                 };
970                 for htlc_source in failed_htlcs.drain(..) {
971                         self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), htlc_source.0, &htlc_source.1, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() });
972                 }
973                 let chan_update = if let Some(chan) = chan_option {
974                         if let Ok(update) = self.get_channel_update(&chan) {
975                                 Some(update)
976                         } else { None }
977                 } else { None };
978
979                 if let Some(update) = chan_update {
980                         let mut channel_state = self.channel_state.lock().unwrap();
981                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
982                                 msg: update
983                         });
984                 }
985
986                 Ok(())
987         }
988
989         #[inline]
990         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
991                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
992                 log_trace!(self.logger, "Finishing force-closure of channel {} HTLCs to fail", failed_htlcs.len());
993                 for htlc_source in failed_htlcs.drain(..) {
994                         self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), htlc_source.0, &htlc_source.1, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() });
995                 }
996                 if let Some((funding_txo, monitor_update)) = monitor_update_option {
997                         // There isn't anything we can do if we get an update failure - we're already
998                         // force-closing. The monitor update on the required in-memory copy should broadcast
999                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
1000                         // ignore the result here.
1001                         let _ = self.chain_monitor.update_channel(funding_txo, monitor_update);
1002                 }
1003         }
1004
1005         fn force_close_channel_with_peer(&self, channel_id: &[u8; 32], peer_node_id: Option<&PublicKey>) -> Result<PublicKey, APIError> {
1006                 let mut chan = {
1007                         let mut channel_state_lock = self.channel_state.lock().unwrap();
1008                         let channel_state = &mut *channel_state_lock;
1009                         if let hash_map::Entry::Occupied(chan) = channel_state.by_id.entry(channel_id.clone()) {
1010                                 if let Some(node_id) = peer_node_id {
1011                                         if chan.get().get_counterparty_node_id() != *node_id {
1012                                                 return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()});
1013                                         }
1014                                 }
1015                                 if let Some(short_id) = chan.get().get_short_channel_id() {
1016                                         channel_state.short_to_id.remove(&short_id);
1017                                 }
1018                                 chan.remove_entry().1
1019                         } else {
1020                                 return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()});
1021                         }
1022                 };
1023                 log_trace!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
1024                 self.finish_force_close_channel(chan.force_shutdown(true));
1025                 if let Ok(update) = self.get_channel_update(&chan) {
1026                         let mut channel_state = self.channel_state.lock().unwrap();
1027                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1028                                 msg: update
1029                         });
1030                 }
1031
1032                 Ok(chan.get_counterparty_node_id())
1033         }
1034
1035         /// Force closes a channel, immediately broadcasting the latest local commitment transaction to
1036         /// the chain and rejecting new HTLCs on the given channel. Fails if channel_id is unknown to the manager.
1037         pub fn force_close_channel(&self, channel_id: &[u8; 32]) -> Result<(), APIError> {
1038                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
1039                 match self.force_close_channel_with_peer(channel_id, None) {
1040                         Ok(counterparty_node_id) => {
1041                                 self.channel_state.lock().unwrap().pending_msg_events.push(
1042                                         events::MessageSendEvent::HandleError {
1043                                                 node_id: counterparty_node_id,
1044                                                 action: msgs::ErrorAction::SendErrorMessage {
1045                                                         msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
1046                                                 },
1047                                         }
1048                                 );
1049                                 Ok(())
1050                         },
1051                         Err(e) => Err(e)
1052                 }
1053         }
1054
1055         /// Force close all channels, immediately broadcasting the latest local commitment transaction
1056         /// for each to the chain and rejecting new HTLCs on each.
1057         pub fn force_close_all_channels(&self) {
1058                 for chan in self.list_channels() {
1059                         let _ = self.force_close_channel(&chan.channel_id);
1060                 }
1061         }
1062
1063         fn decode_update_add_htlc_onion(&self, msg: &msgs::UpdateAddHTLC) -> (PendingHTLCStatus, MutexGuard<ChannelHolder<Signer>>) {
1064                 macro_rules! return_malformed_err {
1065                         ($msg: expr, $err_code: expr) => {
1066                                 {
1067                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
1068                                         return (PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
1069                                                 channel_id: msg.channel_id,
1070                                                 htlc_id: msg.htlc_id,
1071                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
1072                                                 failure_code: $err_code,
1073                                         })), self.channel_state.lock().unwrap());
1074                                 }
1075                         }
1076                 }
1077
1078                 if let Err(_) = msg.onion_routing_packet.public_key {
1079                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
1080                 }
1081
1082                 let shared_secret = {
1083                         let mut arr = [0; 32];
1084                         arr.copy_from_slice(&SharedSecret::new(&msg.onion_routing_packet.public_key.unwrap(), &self.our_network_key)[..]);
1085                         arr
1086                 };
1087                 let (rho, mu) = onion_utils::gen_rho_mu_from_shared_secret(&shared_secret);
1088
1089                 if msg.onion_routing_packet.version != 0 {
1090                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
1091                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
1092                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
1093                         //receiving node would have to brute force to figure out which version was put in the
1094                         //packet by the node that send us the message, in the case of hashing the hop_data, the
1095                         //node knows the HMAC matched, so they already know what is there...
1096                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
1097                 }
1098
1099                 let mut hmac = HmacEngine::<Sha256>::new(&mu);
1100                 hmac.input(&msg.onion_routing_packet.hop_data);
1101                 hmac.input(&msg.payment_hash.0[..]);
1102                 if !fixed_time_eq(&Hmac::from_engine(hmac).into_inner(), &msg.onion_routing_packet.hmac) {
1103                         return_malformed_err!("HMAC Check failed", 0x8000 | 0x4000 | 5);
1104                 }
1105
1106                 let mut channel_state = None;
1107                 macro_rules! return_err {
1108                         ($msg: expr, $err_code: expr, $data: expr) => {
1109                                 {
1110                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
1111                                         if channel_state.is_none() {
1112                                                 channel_state = Some(self.channel_state.lock().unwrap());
1113                                         }
1114                                         return (PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
1115                                                 channel_id: msg.channel_id,
1116                                                 htlc_id: msg.htlc_id,
1117                                                 reason: onion_utils::build_first_hop_failure_packet(&shared_secret, $err_code, $data),
1118                                         })), channel_state.unwrap());
1119                                 }
1120                         }
1121                 }
1122
1123                 let mut chacha = ChaCha20::new(&rho, &[0u8; 8]);
1124                 let mut chacha_stream = ChaChaReader { chacha: &mut chacha, read: Cursor::new(&msg.onion_routing_packet.hop_data[..]) };
1125                 let (next_hop_data, next_hop_hmac) = {
1126                         match msgs::OnionHopData::read(&mut chacha_stream) {
1127                                 Err(err) => {
1128                                         let error_code = match err {
1129                                                 msgs::DecodeError::UnknownVersion => 0x4000 | 1, // unknown realm byte
1130                                                 msgs::DecodeError::UnknownRequiredFeature|
1131                                                 msgs::DecodeError::InvalidValue|
1132                                                 msgs::DecodeError::ShortRead => 0x4000 | 22, // invalid_onion_payload
1133                                                 _ => 0x2000 | 2, // Should never happen
1134                                         };
1135                                         return_err!("Unable to decode our hop data", error_code, &[0;0]);
1136                                 },
1137                                 Ok(msg) => {
1138                                         let mut hmac = [0; 32];
1139                                         if let Err(_) = chacha_stream.read_exact(&mut hmac[..]) {
1140                                                 return_err!("Unable to decode hop data", 0x4000 | 22, &[0;0]);
1141                                         }
1142                                         (msg, hmac)
1143                                 },
1144                         }
1145                 };
1146
1147                 let pending_forward_info = if next_hop_hmac == [0; 32] {
1148                                 #[cfg(test)]
1149                                 {
1150                                         // In tests, make sure that the initial onion pcket data is, at least, non-0.
1151                                         // We could do some fancy randomness test here, but, ehh, whatever.
1152                                         // This checks for the issue where you can calculate the path length given the
1153                                         // onion data as all the path entries that the originator sent will be here
1154                                         // as-is (and were originally 0s).
1155                                         // Of course reverse path calculation is still pretty easy given naive routing
1156                                         // algorithms, but this fixes the most-obvious case.
1157                                         let mut next_bytes = [0; 32];
1158                                         chacha_stream.read_exact(&mut next_bytes).unwrap();
1159                                         assert_ne!(next_bytes[..], [0; 32][..]);
1160                                         chacha_stream.read_exact(&mut next_bytes).unwrap();
1161                                         assert_ne!(next_bytes[..], [0; 32][..]);
1162                                 }
1163
1164                                 // OUR PAYMENT!
1165                                 // final_expiry_too_soon
1166                                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure we have at least
1167                                 // HTLC_FAIL_BACK_BUFFER blocks to go.
1168                                 // Also, ensure that, in the case of an unknown payment hash, our payment logic has enough time to fail the HTLC backward
1169                                 // before our onchain logic triggers a channel closure (see HTLC_FAIL_BACK_BUFFER rational).
1170                                 if (msg.cltv_expiry as u64) <= self.latest_block_height.load(Ordering::Acquire) as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
1171                                         return_err!("The final CLTV expiry is too soon to handle", 17, &[0;0]);
1172                                 }
1173                                 // final_incorrect_htlc_amount
1174                                 if next_hop_data.amt_to_forward > msg.amount_msat {
1175                                         return_err!("Upstream node sent less than we were supposed to receive in payment", 19, &byte_utils::be64_to_array(msg.amount_msat));
1176                                 }
1177                                 // final_incorrect_cltv_expiry
1178                                 if next_hop_data.outgoing_cltv_value != msg.cltv_expiry {
1179                                         return_err!("Upstream node set CLTV to the wrong value", 18, &byte_utils::be32_to_array(msg.cltv_expiry));
1180                                 }
1181
1182                                 let payment_data = match next_hop_data.format {
1183                                         msgs::OnionHopDataFormat::Legacy { .. } => None,
1184                                         msgs::OnionHopDataFormat::NonFinalNode { .. } => return_err!("Got non final data with an HMAC of 0", 0x4000 | 22, &[0;0]),
1185                                         msgs::OnionHopDataFormat::FinalNode { payment_data } => payment_data,
1186                                 };
1187
1188                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
1189                                 // message, however that would leak that we are the recipient of this payment, so
1190                                 // instead we stay symmetric with the forwarding case, only responding (after a
1191                                 // delay) once they've send us a commitment_signed!
1192
1193                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
1194                                         routing: PendingHTLCRouting::Receive {
1195                                                 payment_data,
1196                                                 incoming_cltv_expiry: msg.cltv_expiry,
1197                                         },
1198                                         payment_hash: msg.payment_hash.clone(),
1199                                         incoming_shared_secret: shared_secret,
1200                                         amt_to_forward: next_hop_data.amt_to_forward,
1201                                         outgoing_cltv_value: next_hop_data.outgoing_cltv_value,
1202                                 })
1203                         } else {
1204                                 let mut new_packet_data = [0; 20*65];
1205                                 let read_pos = chacha_stream.read(&mut new_packet_data).unwrap();
1206                                 #[cfg(debug_assertions)]
1207                                 {
1208                                         // Check two things:
1209                                         // a) that the behavior of our stream here will return Ok(0) even if the TLV
1210                                         //    read above emptied out our buffer and the unwrap() wont needlessly panic
1211                                         // b) that we didn't somehow magically end up with extra data.
1212                                         let mut t = [0; 1];
1213                                         debug_assert!(chacha_stream.read(&mut t).unwrap() == 0);
1214                                 }
1215                                 // Once we've emptied the set of bytes our peer gave us, encrypt 0 bytes until we
1216                                 // fill the onion hop data we'll forward to our next-hop peer.
1217                                 chacha_stream.chacha.process_in_place(&mut new_packet_data[read_pos..]);
1218
1219                                 let mut new_pubkey = msg.onion_routing_packet.public_key.unwrap();
1220
1221                                 let blinding_factor = {
1222                                         let mut sha = Sha256::engine();
1223                                         sha.input(&new_pubkey.serialize()[..]);
1224                                         sha.input(&shared_secret);
1225                                         Sha256::from_engine(sha).into_inner()
1226                                 };
1227
1228                                 let public_key = if let Err(e) = new_pubkey.mul_assign(&self.secp_ctx, &blinding_factor[..]) {
1229                                         Err(e)
1230                                 } else { Ok(new_pubkey) };
1231
1232                                 let outgoing_packet = msgs::OnionPacket {
1233                                         version: 0,
1234                                         public_key,
1235                                         hop_data: new_packet_data,
1236                                         hmac: next_hop_hmac.clone(),
1237                                 };
1238
1239                                 let short_channel_id = match next_hop_data.format {
1240                                         msgs::OnionHopDataFormat::Legacy { short_channel_id } => short_channel_id,
1241                                         msgs::OnionHopDataFormat::NonFinalNode { short_channel_id } => short_channel_id,
1242                                         msgs::OnionHopDataFormat::FinalNode { .. } => {
1243                                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0;0]);
1244                                         },
1245                                 };
1246
1247                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
1248                                         routing: PendingHTLCRouting::Forward {
1249                                                 onion_packet: outgoing_packet,
1250                                                 short_channel_id,
1251                                         },
1252                                         payment_hash: msg.payment_hash.clone(),
1253                                         incoming_shared_secret: shared_secret,
1254                                         amt_to_forward: next_hop_data.amt_to_forward,
1255                                         outgoing_cltv_value: next_hop_data.outgoing_cltv_value,
1256                                 })
1257                         };
1258
1259                 channel_state = Some(self.channel_state.lock().unwrap());
1260                 if let &PendingHTLCStatus::Forward(PendingHTLCInfo { ref routing, ref amt_to_forward, ref outgoing_cltv_value, .. }) = &pending_forward_info {
1261                         // If short_channel_id is 0 here, we'll reject the HTLC as there cannot be a channel
1262                         // with a short_channel_id of 0. This is important as various things later assume
1263                         // short_channel_id is non-0 in any ::Forward.
1264                         if let &PendingHTLCRouting::Forward { ref short_channel_id, .. } = routing {
1265                                 let id_option = channel_state.as_ref().unwrap().short_to_id.get(&short_channel_id).cloned();
1266                                 let forwarding_id = match id_option {
1267                                         None => { // unknown_next_peer
1268                                                 return_err!("Don't have available channel for forwarding as requested.", 0x4000 | 10, &[0;0]);
1269                                         },
1270                                         Some(id) => id.clone(),
1271                                 };
1272                                 if let Some((err, code, chan_update)) = loop {
1273                                         let chan = channel_state.as_mut().unwrap().by_id.get_mut(&forwarding_id).unwrap();
1274
1275                                         // Note that we could technically not return an error yet here and just hope
1276                                         // that the connection is reestablished or monitor updated by the time we get
1277                                         // around to doing the actual forward, but better to fail early if we can and
1278                                         // hopefully an attacker trying to path-trace payments cannot make this occur
1279                                         // on a small/per-node/per-channel scale.
1280                                         if !chan.is_live() { // channel_disabled
1281                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 20, Some(self.get_channel_update(chan).unwrap())));
1282                                         }
1283                                         if *amt_to_forward < chan.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
1284                                                 break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, Some(self.get_channel_update(chan).unwrap())));
1285                                         }
1286                                         let fee = amt_to_forward.checked_mul(chan.get_fee_proportional_millionths() as u64).and_then(|prop_fee| { (prop_fee / 1000000).checked_add(chan.get_holder_fee_base_msat(&self.fee_estimator) as u64) });
1287                                         if fee.is_none() || msg.amount_msat < fee.unwrap() || (msg.amount_msat - fee.unwrap()) < *amt_to_forward { // fee_insufficient
1288                                                 break Some(("Prior hop has deviated from specified fees parameters or origin node has obsolete ones", 0x1000 | 12, Some(self.get_channel_update(chan).unwrap())));
1289                                         }
1290                                         if (msg.cltv_expiry as u64) < (*outgoing_cltv_value) as u64 + chan.get_cltv_expiry_delta() as u64 { // incorrect_cltv_expiry
1291                                                 break Some(("Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta", 0x1000 | 13, Some(self.get_channel_update(chan).unwrap())));
1292                                         }
1293                                         let cur_height = self.latest_block_height.load(Ordering::Acquire) as u32 + 1;
1294                                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now, but we want to be robust wrt to counterparty
1295                                         // packet sanitization (see HTLC_FAIL_BACK_BUFFER rational)
1296                                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
1297                                                 break Some(("CLTV expiry is too close", 0x1000 | 14, Some(self.get_channel_update(chan).unwrap())));
1298                                         }
1299                                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
1300                                                 break Some(("CLTV expiry is too far in the future", 21, None));
1301                                         }
1302                                         // In theory, we would be safe against unitentional channel-closure, if we only required a margin of LATENCY_GRACE_PERIOD_BLOCKS.
1303                                         // But, to be safe against policy reception, we use a longuer delay.
1304                                         if (*outgoing_cltv_value) as u64 <= (cur_height + HTLC_FAIL_BACK_BUFFER) as u64 {
1305                                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, Some(self.get_channel_update(chan).unwrap())));
1306                                         }
1307
1308                                         break None;
1309                                 }
1310                                 {
1311                                         let mut res = Vec::with_capacity(8 + 128);
1312                                         if let Some(chan_update) = chan_update {
1313                                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
1314                                                         res.extend_from_slice(&byte_utils::be64_to_array(msg.amount_msat));
1315                                                 }
1316                                                 else if code == 0x1000 | 13 {
1317                                                         res.extend_from_slice(&byte_utils::be32_to_array(msg.cltv_expiry));
1318                                                 }
1319                                                 else if code == 0x1000 | 20 {
1320                                                         // TODO: underspecified, follow https://github.com/lightningnetwork/lightning-rfc/issues/791
1321                                                         res.extend_from_slice(&byte_utils::be16_to_array(0));
1322                                                 }
1323                                                 res.extend_from_slice(&chan_update.encode_with_len()[..]);
1324                                         }
1325                                         return_err!(err, code, &res[..]);
1326                                 }
1327                         }
1328                 }
1329
1330                 (pending_forward_info, channel_state.unwrap())
1331         }
1332
1333         /// only fails if the channel does not yet have an assigned short_id
1334         /// May be called with channel_state already locked!
1335         fn get_channel_update(&self, chan: &Channel<Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
1336                 let short_channel_id = match chan.get_short_channel_id() {
1337                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
1338                         Some(id) => id,
1339                 };
1340
1341                 let were_node_one = PublicKey::from_secret_key(&self.secp_ctx, &self.our_network_key).serialize()[..] < chan.get_counterparty_node_id().serialize()[..];
1342
1343                 let unsigned = msgs::UnsignedChannelUpdate {
1344                         chain_hash: self.genesis_hash,
1345                         short_channel_id,
1346                         timestamp: chan.get_update_time_counter(),
1347                         flags: (!were_node_one) as u8 | ((!chan.is_live() as u8) << 1),
1348                         cltv_expiry_delta: chan.get_cltv_expiry_delta(),
1349                         htlc_minimum_msat: chan.get_counterparty_htlc_minimum_msat(),
1350                         htlc_maximum_msat: OptionalField::Present(chan.get_announced_htlc_max_msat()),
1351                         fee_base_msat: chan.get_holder_fee_base_msat(&self.fee_estimator),
1352                         fee_proportional_millionths: chan.get_fee_proportional_millionths(),
1353                         excess_data: Vec::new(),
1354                 };
1355
1356                 let msg_hash = Sha256dHash::hash(&unsigned.encode()[..]);
1357                 let sig = self.secp_ctx.sign(&hash_to_message!(&msg_hash[..]), &self.our_network_key);
1358
1359                 Ok(msgs::ChannelUpdate {
1360                         signature: sig,
1361                         contents: unsigned
1362                 })
1363         }
1364
1365         // Only public for testing, this should otherwise never be called direcly
1366         pub(crate) fn send_payment_along_path(&self, path: &Vec<RouteHop>, payment_hash: &PaymentHash, payment_secret: &Option<PaymentSecret>, total_value: u64, cur_height: u32) -> Result<(), APIError> {
1367                 log_trace!(self.logger, "Attempting to send payment for path with next hop {}", path.first().unwrap().short_channel_id);
1368                 let prng_seed = self.keys_manager.get_secure_random_bytes();
1369                 let session_priv = SecretKey::from_slice(&self.keys_manager.get_secure_random_bytes()[..]).expect("RNG is busted");
1370
1371                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
1372                         .map_err(|_| APIError::RouteError{err: "Pubkey along hop was maliciously selected"})?;
1373                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, payment_secret, cur_height)?;
1374                 if onion_utils::route_size_insane(&onion_payloads) {
1375                         return Err(APIError::RouteError{err: "Route size too large considering onion data"});
1376                 }
1377                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash);
1378
1379                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
1380
1381                 let err: Result<(), _> = loop {
1382                         let mut channel_lock = self.channel_state.lock().unwrap();
1383                         let id = match channel_lock.short_to_id.get(&path.first().unwrap().short_channel_id) {
1384                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
1385                                 Some(id) => id.clone(),
1386                         };
1387
1388                         let channel_state = &mut *channel_lock;
1389                         if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(id) {
1390                                 match {
1391                                         if chan.get().get_counterparty_node_id() != path.first().unwrap().pubkey {
1392                                                 return Err(APIError::RouteError{err: "Node ID mismatch on first hop!"});
1393                                         }
1394                                         if !chan.get().is_live() {
1395                                                 return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected/pending monitor update!".to_owned()});
1396                                         }
1397                                         break_chan_entry!(self, chan.get_mut().send_htlc_and_commit(htlc_msat, payment_hash.clone(), htlc_cltv, HTLCSource::OutboundRoute {
1398                                                 path: path.clone(),
1399                                                 session_priv: session_priv.clone(),
1400                                                 first_hop_htlc_msat: htlc_msat,
1401                                         }, onion_packet, &self.logger), channel_state, chan)
1402                                 } {
1403                                         Some((update_add, commitment_signed, monitor_update)) => {
1404                                                 if let Err(e) = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
1405                                                         maybe_break_monitor_err!(self, e, channel_state, chan, RAACommitmentOrder::CommitmentFirst, false, true);
1406                                                         // Note that MonitorUpdateFailed here indicates (per function docs)
1407                                                         // that we will resend the commitment update once monitor updating
1408                                                         // is restored. Therefore, we must return an error indicating that
1409                                                         // it is unsafe to retry the payment wholesale, which we do in the
1410                                                         // send_payment check for MonitorUpdateFailed, below.
1411                                                         return Err(APIError::MonitorUpdateFailed);
1412                                                 }
1413
1414                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
1415                                                         node_id: path.first().unwrap().pubkey,
1416                                                         updates: msgs::CommitmentUpdate {
1417                                                                 update_add_htlcs: vec![update_add],
1418                                                                 update_fulfill_htlcs: Vec::new(),
1419                                                                 update_fail_htlcs: Vec::new(),
1420                                                                 update_fail_malformed_htlcs: Vec::new(),
1421                                                                 update_fee: None,
1422                                                                 commitment_signed,
1423                                                         },
1424                                                 });
1425                                         },
1426                                         None => {},
1427                                 }
1428                         } else { unreachable!(); }
1429                         return Ok(());
1430                 };
1431
1432                 match handle_error!(self, err, path.first().unwrap().pubkey) {
1433                         Ok(_) => unreachable!(),
1434                         Err(e) => {
1435                                 Err(APIError::ChannelUnavailable { err: e.err })
1436                         },
1437                 }
1438         }
1439
1440         /// Sends a payment along a given route.
1441         ///
1442         /// Value parameters are provided via the last hop in route, see documentation for RouteHop
1443         /// fields for more info.
1444         ///
1445         /// Note that if the payment_hash already exists elsewhere (eg you're sending a duplicative
1446         /// payment), we don't do anything to stop you! We always try to ensure that if the provided
1447         /// next hop knows the preimage to payment_hash they can claim an additional amount as
1448         /// specified in the last hop in the route! Thus, you should probably do your own
1449         /// payment_preimage tracking (which you should already be doing as they represent "proof of
1450         /// payment") and prevent double-sends yourself.
1451         ///
1452         /// May generate SendHTLCs message(s) event on success, which should be relayed.
1453         ///
1454         /// Each path may have a different return value, and PaymentSendValue may return a Vec with
1455         /// each entry matching the corresponding-index entry in the route paths, see
1456         /// PaymentSendFailure for more info.
1457         ///
1458         /// In general, a path may raise:
1459         ///  * APIError::RouteError when an invalid route or forwarding parameter (cltv_delta, fee,
1460         ///    node public key) is specified.
1461         ///  * APIError::ChannelUnavailable if the next-hop channel is not available for updates
1462         ///    (including due to previous monitor update failure or new permanent monitor update
1463         ///    failure).
1464         ///  * APIError::MonitorUpdateFailed if a new monitor update failure prevented sending the
1465         ///    relevant updates.
1466         ///
1467         /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
1468         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
1469         /// different route unless you intend to pay twice!
1470         ///
1471         /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
1472         /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
1473         /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
1474         /// must not contain multiple paths as multi-path payments require a recipient-provided
1475         /// payment_secret.
1476         /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
1477         /// bit set (either as required or as available). If multiple paths are present in the Route,
1478         /// we assume the invoice had the basic_mpp feature set.
1479         pub fn send_payment(&self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>) -> Result<(), PaymentSendFailure> {
1480                 if route.paths.len() < 1 {
1481                         return Err(PaymentSendFailure::ParameterError(APIError::RouteError{err: "There must be at least one path to send over"}));
1482                 }
1483                 if route.paths.len() > 10 {
1484                         // This limit is completely arbitrary - there aren't any real fundamental path-count
1485                         // limits. After we support retrying individual paths we should likely bump this, but
1486                         // for now more than 10 paths likely carries too much one-path failure.
1487                         return Err(PaymentSendFailure::ParameterError(APIError::RouteError{err: "Sending over more than 10 paths is not currently supported"}));
1488                 }
1489                 let mut total_value = 0;
1490                 let our_node_id = self.get_our_node_id();
1491                 let mut path_errs = Vec::with_capacity(route.paths.len());
1492                 'path_check: for path in route.paths.iter() {
1493                         if path.len() < 1 || path.len() > 20 {
1494                                 path_errs.push(Err(APIError::RouteError{err: "Path didn't go anywhere/had bogus size"}));
1495                                 continue 'path_check;
1496                         }
1497                         for (idx, hop) in path.iter().enumerate() {
1498                                 if idx != path.len() - 1 && hop.pubkey == our_node_id {
1499                                         path_errs.push(Err(APIError::RouteError{err: "Path went through us but wasn't a simple rebalance loop to us"}));
1500                                         continue 'path_check;
1501                                 }
1502                         }
1503                         total_value += path.last().unwrap().fee_msat;
1504                         path_errs.push(Ok(()));
1505                 }
1506                 if path_errs.iter().any(|e| e.is_err()) {
1507                         return Err(PaymentSendFailure::PathParameterError(path_errs));
1508                 }
1509
1510                 let cur_height = self.latest_block_height.load(Ordering::Acquire) as u32 + 1;
1511                 let mut results = Vec::new();
1512                 for path in route.paths.iter() {
1513                         results.push(self.send_payment_along_path(&path, &payment_hash, payment_secret, total_value, cur_height));
1514                 }
1515                 let mut has_ok = false;
1516                 let mut has_err = false;
1517                 for res in results.iter() {
1518                         if res.is_ok() { has_ok = true; }
1519                         if res.is_err() { has_err = true; }
1520                         if let &Err(APIError::MonitorUpdateFailed) = res {
1521                                 // MonitorUpdateFailed is inherently unsafe to retry, so we call it a
1522                                 // PartialFailure.
1523                                 has_err = true;
1524                                 has_ok = true;
1525                                 break;
1526                         }
1527                 }
1528                 if has_err && has_ok {
1529                         Err(PaymentSendFailure::PartialFailure(results))
1530                 } else if has_err {
1531                         Err(PaymentSendFailure::AllFailedRetrySafe(results.drain(..).map(|r| r.unwrap_err()).collect()))
1532                 } else {
1533                         Ok(())
1534                 }
1535         }
1536
1537         /// Call this upon creation of a funding transaction for the given channel.
1538         ///
1539         /// Note that ALL inputs in the transaction pointed to by funding_txo MUST spend SegWit outputs
1540         /// or your counterparty can steal your funds!
1541         ///
1542         /// Panics if a funding transaction has already been provided for this channel.
1543         ///
1544         /// May panic if the funding_txo is duplicative with some other channel (note that this should
1545         /// be trivially prevented by using unique funding transaction keys per-channel).
1546         pub fn funding_transaction_generated(&self, temporary_channel_id: &[u8; 32], funding_txo: OutPoint) {
1547                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
1548
1549                 let (chan, msg) = {
1550                         let (res, chan) = match self.channel_state.lock().unwrap().by_id.remove(temporary_channel_id) {
1551                                 Some(mut chan) => {
1552                                         (chan.get_outbound_funding_created(funding_txo, &self.logger)
1553                                                 .map_err(|e| if let ChannelError::Close(msg) = e {
1554                                                         MsgHandleErrInternal::from_finish_shutdown(msg, chan.channel_id(), chan.force_shutdown(true), None)
1555                                                 } else { unreachable!(); })
1556                                         , chan)
1557                                 },
1558                                 None => return
1559                         };
1560                         match handle_error!(self, res, chan.get_counterparty_node_id()) {
1561                                 Ok(funding_msg) => {
1562                                         (chan, funding_msg)
1563                                 },
1564                                 Err(_) => { return; }
1565                         }
1566                 };
1567
1568                 let mut channel_state = self.channel_state.lock().unwrap();
1569                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
1570                         node_id: chan.get_counterparty_node_id(),
1571                         msg,
1572                 });
1573                 match channel_state.by_id.entry(chan.channel_id()) {
1574                         hash_map::Entry::Occupied(_) => {
1575                                 panic!("Generated duplicate funding txid?");
1576                         },
1577                         hash_map::Entry::Vacant(e) => {
1578                                 e.insert(chan);
1579                         }
1580                 }
1581         }
1582
1583         fn get_announcement_sigs(&self, chan: &Channel<Signer>) -> Option<msgs::AnnouncementSignatures> {
1584                 if !chan.should_announce() {
1585                         log_trace!(self.logger, "Can't send announcement_signatures for private channel {}", log_bytes!(chan.channel_id()));
1586                         return None
1587                 }
1588
1589                 let (announcement, our_bitcoin_sig) = match chan.get_channel_announcement(self.get_our_node_id(), self.genesis_hash.clone()) {
1590                         Ok(res) => res,
1591                         Err(_) => return None, // Only in case of state precondition violations eg channel is closing
1592                 };
1593                 let msghash = hash_to_message!(&Sha256dHash::hash(&announcement.encode()[..])[..]);
1594                 let our_node_sig = self.secp_ctx.sign(&msghash, &self.our_network_key);
1595
1596                 Some(msgs::AnnouncementSignatures {
1597                         channel_id: chan.channel_id(),
1598                         short_channel_id: chan.get_short_channel_id().unwrap(),
1599                         node_signature: our_node_sig,
1600                         bitcoin_signature: our_bitcoin_sig,
1601                 })
1602         }
1603
1604         #[allow(dead_code)]
1605         // Messages of up to 64KB should never end up more than half full with addresses, as that would
1606         // be absurd. We ensure this by checking that at least 500 (our stated public contract on when
1607         // broadcast_node_announcement panics) of the maximum-length addresses would fit in a 64KB
1608         // message...
1609         const HALF_MESSAGE_IS_ADDRS: u32 = ::std::u16::MAX as u32 / (NetAddress::MAX_LEN as u32 + 1) / 2;
1610         #[deny(const_err)]
1611         #[allow(dead_code)]
1612         // ...by failing to compile if the number of addresses that would be half of a message is
1613         // smaller than 500:
1614         const STATIC_ASSERT: u32 = Self::HALF_MESSAGE_IS_ADDRS - 500;
1615
1616         /// Generates a signed node_announcement from the given arguments and creates a
1617         /// BroadcastNodeAnnouncement event. Note that such messages will be ignored unless peers have
1618         /// seen a channel_announcement from us (ie unless we have public channels open).
1619         ///
1620         /// RGB is a node "color" and alias is a printable human-readable string to describe this node
1621         /// to humans. They carry no in-protocol meaning.
1622         ///
1623         /// addresses represent the set (possibly empty) of socket addresses on which this node accepts
1624         /// incoming connections. These will be broadcast to the network, publicly tying these
1625         /// addresses together. If you wish to preserve user privacy, addresses should likely contain
1626         /// only Tor Onion addresses.
1627         ///
1628         /// Panics if addresses is absurdly large (more than 500).
1629         pub fn broadcast_node_announcement(&self, rgb: [u8; 3], alias: [u8; 32], addresses: Vec<NetAddress>) {
1630                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
1631
1632                 if addresses.len() > 500 {
1633                         panic!("More than half the message size was taken up by public addresses!");
1634                 }
1635
1636                 let announcement = msgs::UnsignedNodeAnnouncement {
1637                         features: NodeFeatures::known(),
1638                         timestamp: self.last_node_announcement_serial.fetch_add(1, Ordering::AcqRel) as u32,
1639                         node_id: self.get_our_node_id(),
1640                         rgb, alias, addresses,
1641                         excess_address_data: Vec::new(),
1642                         excess_data: Vec::new(),
1643                 };
1644                 let msghash = hash_to_message!(&Sha256dHash::hash(&announcement.encode()[..])[..]);
1645
1646                 let mut channel_state = self.channel_state.lock().unwrap();
1647                 channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastNodeAnnouncement {
1648                         msg: msgs::NodeAnnouncement {
1649                                 signature: self.secp_ctx.sign(&msghash, &self.our_network_key),
1650                                 contents: announcement
1651                         },
1652                 });
1653         }
1654
1655         /// Processes HTLCs which are pending waiting on random forward delay.
1656         ///
1657         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
1658         /// Will likely generate further events.
1659         pub fn process_pending_htlc_forwards(&self) {
1660                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
1661
1662                 let mut new_events = Vec::new();
1663                 let mut failed_forwards = Vec::new();
1664                 let mut handle_errors = Vec::new();
1665                 {
1666                         let mut channel_state_lock = self.channel_state.lock().unwrap();
1667                         let channel_state = &mut *channel_state_lock;
1668
1669                         for (short_chan_id, mut pending_forwards) in channel_state.forward_htlcs.drain() {
1670                                 if short_chan_id != 0 {
1671                                         let forward_chan_id = match channel_state.short_to_id.get(&short_chan_id) {
1672                                                 Some(chan_id) => chan_id.clone(),
1673                                                 None => {
1674                                                         failed_forwards.reserve(pending_forwards.len());
1675                                                         for forward_info in pending_forwards.drain(..) {
1676                                                                 match forward_info {
1677                                                                         HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info,
1678                                                                                                    prev_funding_outpoint } => {
1679                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
1680                                                                                         short_channel_id: prev_short_channel_id,
1681                                                                                         outpoint: prev_funding_outpoint,
1682                                                                                         htlc_id: prev_htlc_id,
1683                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
1684                                                                                 });
1685                                                                                 failed_forwards.push((htlc_source, forward_info.payment_hash,
1686                                                                                         HTLCFailReason::Reason { failure_code: 0x4000 | 10, data: Vec::new() }
1687                                                                                 ));
1688                                                                         },
1689                                                                         HTLCForwardInfo::FailHTLC { .. } => {
1690                                                                                 // Channel went away before we could fail it. This implies
1691                                                                                 // the channel is now on chain and our counterparty is
1692                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
1693                                                                                 // problem, not ours.
1694                                                                         }
1695                                                                 }
1696                                                         }
1697                                                         continue;
1698                                                 }
1699                                         };
1700                                         if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(forward_chan_id) {
1701                                                 let mut add_htlc_msgs = Vec::new();
1702                                                 let mut fail_htlc_msgs = Vec::new();
1703                                                 for forward_info in pending_forwards.drain(..) {
1704                                                         match forward_info {
1705                                                                 HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info: PendingHTLCInfo {
1706                                                                                 routing: PendingHTLCRouting::Forward {
1707                                                                                         onion_packet, ..
1708                                                                                 }, incoming_shared_secret, payment_hash, amt_to_forward, outgoing_cltv_value },
1709                                                                                 prev_funding_outpoint } => {
1710                                                                         log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", log_bytes!(payment_hash.0), prev_short_channel_id, short_chan_id);
1711                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
1712                                                                                 short_channel_id: prev_short_channel_id,
1713                                                                                 outpoint: prev_funding_outpoint,
1714                                                                                 htlc_id: prev_htlc_id,
1715                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
1716                                                                         });
1717                                                                         match chan.get_mut().send_htlc(amt_to_forward, payment_hash, outgoing_cltv_value, htlc_source.clone(), onion_packet) {
1718                                                                                 Err(e) => {
1719                                                                                         if let ChannelError::Ignore(msg) = e {
1720                                                                                                 log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", log_bytes!(payment_hash.0), msg);
1721                                                                                         } else {
1722                                                                                                 panic!("Stated return value requirements in send_htlc() were not met");
1723                                                                                         }
1724                                                                                         let chan_update = self.get_channel_update(chan.get()).unwrap();
1725                                                                                         failed_forwards.push((htlc_source, payment_hash,
1726                                                                                                 HTLCFailReason::Reason { failure_code: 0x1000 | 7, data: chan_update.encode_with_len() }
1727                                                                                         ));
1728                                                                                         continue;
1729                                                                                 },
1730                                                                                 Ok(update_add) => {
1731                                                                                         match update_add {
1732                                                                                                 Some(msg) => { add_htlc_msgs.push(msg); },
1733                                                                                                 None => {
1734                                                                                                         // Nothing to do here...we're waiting on a remote
1735                                                                                                         // revoke_and_ack before we can add anymore HTLCs. The Channel
1736                                                                                                         // will automatically handle building the update_add_htlc and
1737                                                                                                         // commitment_signed messages when we can.
1738                                                                                                         // TODO: Do some kind of timer to set the channel as !is_live()
1739                                                                                                         // as we don't really want others relying on us relaying through
1740                                                                                                         // this channel currently :/.
1741                                                                                                 }
1742                                                                                         }
1743                                                                                 }
1744                                                                         }
1745                                                                 },
1746                                                                 HTLCForwardInfo::AddHTLC { .. } => {
1747                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
1748                                                                 },
1749                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
1750                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} after delay", short_chan_id);
1751                                                                         match chan.get_mut().get_update_fail_htlc(htlc_id, err_packet) {
1752                                                                                 Err(e) => {
1753                                                                                         if let ChannelError::Ignore(msg) = e {
1754                                                                                                 log_trace!(self.logger, "Failed to fail backwards to short_id {}: {}", short_chan_id, msg);
1755                                                                                         } else {
1756                                                                                                 panic!("Stated return value requirements in get_update_fail_htlc() were not met");
1757                                                                                         }
1758                                                                                         // fail-backs are best-effort, we probably already have one
1759                                                                                         // pending, and if not that's OK, if not, the channel is on
1760                                                                                         // the chain and sending the HTLC-Timeout is their problem.
1761                                                                                         continue;
1762                                                                                 },
1763                                                                                 Ok(Some(msg)) => { fail_htlc_msgs.push(msg); },
1764                                                                                 Ok(None) => {
1765                                                                                         // Nothing to do here...we're waiting on a remote
1766                                                                                         // revoke_and_ack before we can update the commitment
1767                                                                                         // transaction. The Channel will automatically handle
1768                                                                                         // building the update_fail_htlc and commitment_signed
1769                                                                                         // messages when we can.
1770                                                                                         // We don't need any kind of timer here as they should fail
1771                                                                                         // the channel onto the chain if they can't get our
1772                                                                                         // update_fail_htlc in time, it's not our problem.
1773                                                                                 }
1774                                                                         }
1775                                                                 },
1776                                                         }
1777                                                 }
1778
1779                                                 if !add_htlc_msgs.is_empty() || !fail_htlc_msgs.is_empty() {
1780                                                         let (commitment_msg, monitor_update) = match chan.get_mut().send_commitment(&self.logger) {
1781                                                                 Ok(res) => res,
1782                                                                 Err(e) => {
1783                                                                         // We surely failed send_commitment due to bad keys, in that case
1784                                                                         // close channel and then send error message to peer.
1785                                                                         let counterparty_node_id = chan.get().get_counterparty_node_id();
1786                                                                         let err: Result<(), _>  = match e {
1787                                                                                 ChannelError::Ignore(_) => {
1788                                                                                         panic!("Stated return value requirements in send_commitment() were not met");
1789                                                                                 },
1790                                                                                 ChannelError::Close(msg) => {
1791                                                                                         log_trace!(self.logger, "Closing channel {} due to Close-required error: {}", log_bytes!(chan.key()[..]), msg);
1792                                                                                         let (channel_id, mut channel) = chan.remove_entry();
1793                                                                                         if let Some(short_id) = channel.get_short_channel_id() {
1794                                                                                                 channel_state.short_to_id.remove(&short_id);
1795                                                                                         }
1796                                                                                         Err(MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, channel.force_shutdown(true), self.get_channel_update(&channel).ok()))
1797                                                                                 },
1798                                                                                 ChannelError::CloseDelayBroadcast(_) => { panic!("Wait is only generated on receipt of channel_reestablish, which is handled by try_chan_entry, we don't bother to support it here"); }
1799                                                                         };
1800                                                                         handle_errors.push((counterparty_node_id, err));
1801                                                                         continue;
1802                                                                 }
1803                                                         };
1804                                                         if let Err(e) = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
1805                                                                 handle_errors.push((chan.get().get_counterparty_node_id(), handle_monitor_err!(self, e, channel_state, chan, RAACommitmentOrder::CommitmentFirst, false, true)));
1806                                                                 continue;
1807                                                         }
1808                                                         channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
1809                                                                 node_id: chan.get().get_counterparty_node_id(),
1810                                                                 updates: msgs::CommitmentUpdate {
1811                                                                         update_add_htlcs: add_htlc_msgs,
1812                                                                         update_fulfill_htlcs: Vec::new(),
1813                                                                         update_fail_htlcs: fail_htlc_msgs,
1814                                                                         update_fail_malformed_htlcs: Vec::new(),
1815                                                                         update_fee: None,
1816                                                                         commitment_signed: commitment_msg,
1817                                                                 },
1818                                                         });
1819                                                 }
1820                                         } else {
1821                                                 unreachable!();
1822                                         }
1823                                 } else {
1824                                         for forward_info in pending_forwards.drain(..) {
1825                                                 match forward_info {
1826                                                         HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info: PendingHTLCInfo {
1827                                                                         routing: PendingHTLCRouting::Receive { payment_data, incoming_cltv_expiry },
1828                                                                         incoming_shared_secret, payment_hash, amt_to_forward, .. },
1829                                                                         prev_funding_outpoint } => {
1830                                                                 let prev_hop = HTLCPreviousHopData {
1831                                                                         short_channel_id: prev_short_channel_id,
1832                                                                         outpoint: prev_funding_outpoint,
1833                                                                         htlc_id: prev_htlc_id,
1834                                                                         incoming_packet_shared_secret: incoming_shared_secret,
1835                                                                 };
1836
1837                                                                 let mut total_value = 0;
1838                                                                 let payment_secret_opt =
1839                                                                         if let &Some(ref data) = &payment_data { Some(data.payment_secret.clone()) } else { None };
1840                                                                 let htlcs = channel_state.claimable_htlcs.entry((payment_hash, payment_secret_opt))
1841                                                                         .or_insert(Vec::new());
1842                                                                 htlcs.push(ClaimableHTLC {
1843                                                                         prev_hop,
1844                                                                         value: amt_to_forward,
1845                                                                         payment_data: payment_data.clone(),
1846                                                                         cltv_expiry: incoming_cltv_expiry,
1847                                                                 });
1848                                                                 if let &Some(ref data) = &payment_data {
1849                                                                         for htlc in htlcs.iter() {
1850                                                                                 total_value += htlc.value;
1851                                                                                 if htlc.payment_data.as_ref().unwrap().total_msat != data.total_msat {
1852                                                                                         total_value = msgs::MAX_VALUE_MSAT;
1853                                                                                 }
1854                                                                                 if total_value >= msgs::MAX_VALUE_MSAT { break; }
1855                                                                         }
1856                                                                         if total_value >= msgs::MAX_VALUE_MSAT || total_value > data.total_msat  {
1857                                                                                 for htlc in htlcs.iter() {
1858                                                                                         let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
1859                                                                                         htlc_msat_height_data.extend_from_slice(
1860                                                                                                 &byte_utils::be32_to_array(
1861                                                                                                         self.latest_block_height.load(Ordering::Acquire)
1862                                                                                                                 as u32,
1863                                                                                                 ),
1864                                                                                         );
1865                                                                                         failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
1866                                                                                                         short_channel_id: htlc.prev_hop.short_channel_id,
1867                                                                                                         outpoint: prev_funding_outpoint,
1868                                                                                                         htlc_id: htlc.prev_hop.htlc_id,
1869                                                                                                         incoming_packet_shared_secret: htlc.prev_hop.incoming_packet_shared_secret,
1870                                                                                                 }), payment_hash,
1871                                                                                                 HTLCFailReason::Reason { failure_code: 0x4000 | 15, data: htlc_msat_height_data }
1872                                                                                         ));
1873                                                                                 }
1874                                                                         } else if total_value == data.total_msat {
1875                                                                                 new_events.push(events::Event::PaymentReceived {
1876                                                                                         payment_hash,
1877                                                                                         payment_secret: Some(data.payment_secret),
1878                                                                                         amt: total_value,
1879                                                                                 });
1880                                                                         }
1881                                                                 } else {
1882                                                                         new_events.push(events::Event::PaymentReceived {
1883                                                                                 payment_hash,
1884                                                                                 payment_secret: None,
1885                                                                                 amt: amt_to_forward,
1886                                                                         });
1887                                                                 }
1888                                                         },
1889                                                         HTLCForwardInfo::AddHTLC { .. } => {
1890                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
1891                                                         },
1892                                                         HTLCForwardInfo::FailHTLC { .. } => {
1893                                                                 panic!("Got pending fail of our own HTLC");
1894                                                         }
1895                                                 }
1896                                         }
1897                                 }
1898                         }
1899                 }
1900
1901                 for (htlc_source, payment_hash, failure_reason) in failed_forwards.drain(..) {
1902                         self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), htlc_source, &payment_hash, failure_reason);
1903                 }
1904
1905                 for (counterparty_node_id, err) in handle_errors.drain(..) {
1906                         let _ = handle_error!(self, err, counterparty_node_id);
1907                 }
1908
1909                 if new_events.is_empty() { return }
1910                 let mut events = self.pending_events.lock().unwrap();
1911                 events.append(&mut new_events);
1912         }
1913
1914         /// Free the background events, generally called from timer_chan_freshness_every_min.
1915         ///
1916         /// Exposed for testing to allow us to process events quickly without generating accidental
1917         /// BroadcastChannelUpdate events in timer_chan_freshness_every_min.
1918         ///
1919         /// Expects the caller to have a total_consistency_lock read lock.
1920         fn process_background_events(&self) {
1921                 let mut background_events = Vec::new();
1922                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
1923                 for event in background_events.drain(..) {
1924                         match event {
1925                                 BackgroundEvent::ClosingMonitorUpdate((funding_txo, update)) => {
1926                                         // The channel has already been closed, so no use bothering to care about the
1927                                         // monitor updating completing.
1928                                         let _ = self.chain_monitor.update_channel(funding_txo, update);
1929                                 },
1930                         }
1931                 }
1932         }
1933
1934         #[cfg(any(test, feature = "_test_utils"))]
1935         pub(crate) fn test_process_background_events(&self) {
1936                 self.process_background_events();
1937         }
1938
1939         /// If a peer is disconnected we mark any channels with that peer as 'disabled'.
1940         /// After some time, if channels are still disabled we need to broadcast a ChannelUpdate
1941         /// to inform the network about the uselessness of these channels.
1942         ///
1943         /// This method handles all the details, and must be called roughly once per minute.
1944         ///
1945         /// Note that in some rare cases this may generate a `chain::Watch::update_channel` call.
1946         pub fn timer_chan_freshness_every_min(&self) {
1947                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
1948                 self.process_background_events();
1949
1950                 let mut channel_state_lock = self.channel_state.lock().unwrap();
1951                 let channel_state = &mut *channel_state_lock;
1952                 for (_, chan) in channel_state.by_id.iter_mut() {
1953                         if chan.is_disabled_staged() && !chan.is_live() {
1954                                 if let Ok(update) = self.get_channel_update(&chan) {
1955                                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1956                                                 msg: update
1957                                         });
1958                                 }
1959                                 chan.to_fresh();
1960                         } else if chan.is_disabled_staged() && chan.is_live() {
1961                                 chan.to_fresh();
1962                         } else if chan.is_disabled_marked() {
1963                                 chan.to_disabled_staged();
1964                         }
1965                 }
1966         }
1967
1968         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
1969         /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
1970         /// along the path (including in our own channel on which we received it).
1971         /// Returns false if no payment was found to fail backwards, true if the process of failing the
1972         /// HTLC backwards has been started.
1973         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash, payment_secret: &Option<PaymentSecret>) -> bool {
1974                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
1975
1976                 let mut channel_state = Some(self.channel_state.lock().unwrap());
1977                 let removed_source = channel_state.as_mut().unwrap().claimable_htlcs.remove(&(*payment_hash, *payment_secret));
1978                 if let Some(mut sources) = removed_source {
1979                         for htlc in sources.drain(..) {
1980                                 if channel_state.is_none() { channel_state = Some(self.channel_state.lock().unwrap()); }
1981                                 let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
1982                                 htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(
1983                                         self.latest_block_height.load(Ordering::Acquire) as u32,
1984                                 ));
1985                                 self.fail_htlc_backwards_internal(channel_state.take().unwrap(),
1986                                                 HTLCSource::PreviousHopData(htlc.prev_hop), payment_hash,
1987                                                 HTLCFailReason::Reason { failure_code: 0x4000 | 15, data: htlc_msat_height_data });
1988                         }
1989                         true
1990                 } else { false }
1991         }
1992
1993         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
1994         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
1995         // be surfaced to the user.
1996         fn fail_holding_cell_htlcs(&self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: [u8; 32]) {
1997                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
1998                         match htlc_src {
1999                                 HTLCSource::PreviousHopData(HTLCPreviousHopData { .. }) => {
2000                                         let (failure_code, onion_failure_data) =
2001                                                 match self.channel_state.lock().unwrap().by_id.entry(channel_id) {
2002                                                         hash_map::Entry::Occupied(chan_entry) => {
2003                                                                 if let Ok(upd) = self.get_channel_update(&chan_entry.get()) {
2004                                                                         (0x1000|7, upd.encode_with_len())
2005                                                                 } else {
2006                                                                         (0x4000|10, Vec::new())
2007                                                                 }
2008                                                         },
2009                                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
2010                                                 };
2011                                         let channel_state = self.channel_state.lock().unwrap();
2012                                         self.fail_htlc_backwards_internal(channel_state,
2013                                                 htlc_src, &payment_hash, HTLCFailReason::Reason { failure_code, data: onion_failure_data});
2014                                 },
2015                                 HTLCSource::OutboundRoute { .. } => {
2016                                         self.pending_events.lock().unwrap().push(
2017                                                 events::Event::PaymentFailed {
2018                                                         payment_hash,
2019                                                         rejected_by_dest: false,
2020 #[cfg(test)]
2021                                                         error_code: None,
2022 #[cfg(test)]
2023                                                         error_data: None,
2024                                                 }
2025                                         )
2026                                 },
2027                         };
2028                 }
2029         }
2030
2031         /// Fails an HTLC backwards to the sender of it to us.
2032         /// Note that while we take a channel_state lock as input, we do *not* assume consistency here.
2033         /// There are several callsites that do stupid things like loop over a list of payment_hashes
2034         /// to fail and take the channel_state lock for each iteration (as we take ownership and may
2035         /// drop it). In other words, no assumptions are made that entries in claimable_htlcs point to
2036         /// still-available channels.
2037         fn fail_htlc_backwards_internal(&self, mut channel_state_lock: MutexGuard<ChannelHolder<Signer>>, source: HTLCSource, payment_hash: &PaymentHash, onion_error: HTLCFailReason) {
2038                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
2039                 //identify whether we sent it or not based on the (I presume) very different runtime
2040                 //between the branches here. We should make this async and move it into the forward HTLCs
2041                 //timer handling.
2042
2043                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
2044                 // from block_connected which may run during initialization prior to the chain_monitor
2045                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
2046                 match source {
2047                         HTLCSource::OutboundRoute { ref path, .. } => {
2048                                 log_trace!(self.logger, "Failing outbound payment HTLC with payment_hash {}", log_bytes!(payment_hash.0));
2049                                 mem::drop(channel_state_lock);
2050                                 match &onion_error {
2051                                         &HTLCFailReason::LightningError { ref err } => {
2052 #[cfg(test)]
2053                                                 let (channel_update, payment_retryable, onion_error_code, onion_error_data) = onion_utils::process_onion_failure(&self.secp_ctx, &self.logger, &source, err.data.clone());
2054 #[cfg(not(test))]
2055                                                 let (channel_update, payment_retryable, _, _) = onion_utils::process_onion_failure(&self.secp_ctx, &self.logger, &source, err.data.clone());
2056                                                 // TODO: If we decided to blame ourselves (or one of our channels) in
2057                                                 // process_onion_failure we should close that channel as it implies our
2058                                                 // next-hop is needlessly blaming us!
2059                                                 if let Some(update) = channel_update {
2060                                                         self.channel_state.lock().unwrap().pending_msg_events.push(
2061                                                                 events::MessageSendEvent::PaymentFailureNetworkUpdate {
2062                                                                         update,
2063                                                                 }
2064                                                         );
2065                                                 }
2066                                                 self.pending_events.lock().unwrap().push(
2067                                                         events::Event::PaymentFailed {
2068                                                                 payment_hash: payment_hash.clone(),
2069                                                                 rejected_by_dest: !payment_retryable,
2070 #[cfg(test)]
2071                                                                 error_code: onion_error_code,
2072 #[cfg(test)]
2073                                                                 error_data: onion_error_data
2074                                                         }
2075                                                 );
2076                                         },
2077                                         &HTLCFailReason::Reason {
2078 #[cfg(test)]
2079                                                         ref failure_code,
2080 #[cfg(test)]
2081                                                         ref data,
2082                                                         .. } => {
2083                                                 // we get a fail_malformed_htlc from the first hop
2084                                                 // TODO: We'd like to generate a PaymentFailureNetworkUpdate for temporary
2085                                                 // failures here, but that would be insufficient as get_route
2086                                                 // generally ignores its view of our own channels as we provide them via
2087                                                 // ChannelDetails.
2088                                                 // TODO: For non-temporary failures, we really should be closing the
2089                                                 // channel here as we apparently can't relay through them anyway.
2090                                                 self.pending_events.lock().unwrap().push(
2091                                                         events::Event::PaymentFailed {
2092                                                                 payment_hash: payment_hash.clone(),
2093                                                                 rejected_by_dest: path.len() == 1,
2094 #[cfg(test)]
2095                                                                 error_code: Some(*failure_code),
2096 #[cfg(test)]
2097                                                                 error_data: Some(data.clone()),
2098                                                         }
2099                                                 );
2100                                         }
2101                                 }
2102                         },
2103                         HTLCSource::PreviousHopData(HTLCPreviousHopData { short_channel_id, htlc_id, incoming_packet_shared_secret, .. }) => {
2104                                 let err_packet = match onion_error {
2105                                         HTLCFailReason::Reason { failure_code, data } => {
2106                                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with code {}", log_bytes!(payment_hash.0), failure_code);
2107                                                 let packet = onion_utils::build_failure_packet(&incoming_packet_shared_secret, failure_code, &data[..]).encode();
2108                                                 onion_utils::encrypt_failure_packet(&incoming_packet_shared_secret, &packet)
2109                                         },
2110                                         HTLCFailReason::LightningError { err } => {
2111                                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards with pre-built LightningError", log_bytes!(payment_hash.0));
2112                                                 onion_utils::encrypt_failure_packet(&incoming_packet_shared_secret, &err.data)
2113                                         }
2114                                 };
2115
2116                                 let mut forward_event = None;
2117                                 if channel_state_lock.forward_htlcs.is_empty() {
2118                                         forward_event = Some(Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS));
2119                                 }
2120                                 match channel_state_lock.forward_htlcs.entry(short_channel_id) {
2121                                         hash_map::Entry::Occupied(mut entry) => {
2122                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id, err_packet });
2123                                         },
2124                                         hash_map::Entry::Vacant(entry) => {
2125                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id, err_packet }));
2126                                         }
2127                                 }
2128                                 mem::drop(channel_state_lock);
2129                                 if let Some(time) = forward_event {
2130                                         let mut pending_events = self.pending_events.lock().unwrap();
2131                                         pending_events.push(events::Event::PendingHTLCsForwardable {
2132                                                 time_forwardable: time
2133                                         });
2134                                 }
2135                         },
2136                 }
2137         }
2138
2139         /// Provides a payment preimage in response to a PaymentReceived event, returning true and
2140         /// generating message events for the net layer to claim the payment, if possible. Thus, you
2141         /// should probably kick the net layer to go send messages if this returns true!
2142         ///
2143         /// You must specify the expected amounts for this HTLC, and we will only claim HTLCs
2144         /// available within a few percent of the expected amount. This is critical for several
2145         /// reasons : a) it avoids providing senders with `proof-of-payment` (in the form of the
2146         /// payment_preimage without having provided the full value and b) it avoids certain
2147         /// privacy-breaking recipient-probing attacks which may reveal payment activity to
2148         /// motivated attackers.
2149         ///
2150         /// Note that the privacy concerns in (b) are not relevant in payments with a payment_secret
2151         /// set. Thus, for such payments we will claim any payments which do not under-pay.
2152         ///
2153         /// May panic if called except in response to a PaymentReceived event.
2154         pub fn claim_funds(&self, payment_preimage: PaymentPreimage, payment_secret: &Option<PaymentSecret>, expected_amount: u64) -> bool {
2155                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2156
2157                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
2158
2159                 let mut channel_state = Some(self.channel_state.lock().unwrap());
2160                 let removed_source = channel_state.as_mut().unwrap().claimable_htlcs.remove(&(payment_hash, *payment_secret));
2161                 if let Some(mut sources) = removed_source {
2162                         assert!(!sources.is_empty());
2163
2164                         // If we are claiming an MPP payment, we have to take special care to ensure that each
2165                         // channel exists before claiming all of the payments (inside one lock).
2166                         // Note that channel existance is sufficient as we should always get a monitor update
2167                         // which will take care of the real HTLC claim enforcement.
2168                         //
2169                         // If we find an HTLC which we would need to claim but for which we do not have a
2170                         // channel, we will fail all parts of the MPP payment. While we could wait and see if
2171                         // the sender retries the already-failed path(s), it should be a pretty rare case where
2172                         // we got all the HTLCs and then a channel closed while we were waiting for the user to
2173                         // provide the preimage, so worrying too much about the optimal handling isn't worth
2174                         // it.
2175
2176                         let (is_mpp, mut valid_mpp) = if let &Some(ref data) = &sources[0].payment_data {
2177                                 assert!(payment_secret.is_some());
2178                                 (true, data.total_msat >= expected_amount)
2179                         } else {
2180                                 assert!(payment_secret.is_none());
2181                                 (false, false)
2182                         };
2183
2184                         for htlc in sources.iter() {
2185                                 if !is_mpp || !valid_mpp { break; }
2186                                 if let None = channel_state.as_ref().unwrap().short_to_id.get(&htlc.prev_hop.short_channel_id) {
2187                                         valid_mpp = false;
2188                                 }
2189                         }
2190
2191                         let mut errs = Vec::new();
2192                         let mut claimed_any_htlcs = false;
2193                         for htlc in sources.drain(..) {
2194                                 if channel_state.is_none() { channel_state = Some(self.channel_state.lock().unwrap()); }
2195                                 if (is_mpp && !valid_mpp) || (!is_mpp && (htlc.value < expected_amount || htlc.value > expected_amount * 2)) {
2196                                         let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
2197                                         htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(
2198                                                 self.latest_block_height.load(Ordering::Acquire) as u32,
2199                                         ));
2200                                         self.fail_htlc_backwards_internal(channel_state.take().unwrap(),
2201                                                                          HTLCSource::PreviousHopData(htlc.prev_hop), &payment_hash,
2202                                                                          HTLCFailReason::Reason { failure_code: 0x4000|15, data: htlc_msat_height_data });
2203                                 } else {
2204                                         match self.claim_funds_from_hop(channel_state.as_mut().unwrap(), htlc.prev_hop, payment_preimage) {
2205                                                 Err(Some(e)) => {
2206                                                         if let msgs::ErrorAction::IgnoreError = e.1.err.action {
2207                                                                 // We got a temporary failure updating monitor, but will claim the
2208                                                                 // HTLC when the monitor updating is restored (or on chain).
2209                                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", e.1.err.err);
2210                                                                 claimed_any_htlcs = true;
2211                                                         } else { errs.push(e); }
2212                                                 },
2213                                                 Err(None) if is_mpp => unreachable!("We already checked for channel existence, we can't fail here!"),
2214                                                 Err(None) => {
2215                                                         log_warn!(self.logger, "Channel we expected to claim an HTLC from was closed.");
2216                                                 },
2217                                                 Ok(()) => claimed_any_htlcs = true,
2218                                         }
2219                                 }
2220                         }
2221
2222                         // Now that we've done the entire above loop in one lock, we can handle any errors
2223                         // which were generated.
2224                         channel_state.take();
2225
2226                         for (counterparty_node_id, err) in errs.drain(..) {
2227                                 let res: Result<(), _> = Err(err);
2228                                 let _ = handle_error!(self, res, counterparty_node_id);
2229                         }
2230
2231                         claimed_any_htlcs
2232                 } else { false }
2233         }
2234
2235         fn claim_funds_from_hop(&self, channel_state_lock: &mut MutexGuard<ChannelHolder<Signer>>, prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage) -> Result<(), Option<(PublicKey, MsgHandleErrInternal)>> {
2236                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
2237                 let channel_state = &mut **channel_state_lock;
2238                 let chan_id = match channel_state.short_to_id.get(&prev_hop.short_channel_id) {
2239                         Some(chan_id) => chan_id.clone(),
2240                         None => {
2241                                 return Err(None)
2242                         }
2243                 };
2244
2245                 if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(chan_id) {
2246                         let was_frozen_for_monitor = chan.get().is_awaiting_monitor_update();
2247                         match chan.get_mut().get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger) {
2248                                 Ok((msgs, monitor_option)) => {
2249                                         if let Some(monitor_update) = monitor_option {
2250                                                 if let Err(e) = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
2251                                                         if was_frozen_for_monitor {
2252                                                                 assert!(msgs.is_none());
2253                                                         } else {
2254                                                                 return Err(Some((chan.get().get_counterparty_node_id(), handle_monitor_err!(self, e, channel_state, chan, RAACommitmentOrder::CommitmentFirst, false, msgs.is_some()).unwrap_err())));
2255                                                         }
2256                                                 }
2257                                         }
2258                                         if let Some((msg, commitment_signed)) = msgs {
2259                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
2260                                                         node_id: chan.get().get_counterparty_node_id(),
2261                                                         updates: msgs::CommitmentUpdate {
2262                                                                 update_add_htlcs: Vec::new(),
2263                                                                 update_fulfill_htlcs: vec![msg],
2264                                                                 update_fail_htlcs: Vec::new(),
2265                                                                 update_fail_malformed_htlcs: Vec::new(),
2266                                                                 update_fee: None,
2267                                                                 commitment_signed,
2268                                                         }
2269                                                 });
2270                                         }
2271                                         return Ok(())
2272                                 },
2273                                 Err(e) => {
2274                                         // TODO: Do something with e?
2275                                         // This should only occur if we are claiming an HTLC at the same time as the
2276                                         // HTLC is being failed (eg because a block is being connected and this caused
2277                                         // an HTLC to time out). This should, of course, only occur if the user is the
2278                                         // one doing the claiming (as it being a part of a peer claim would imply we're
2279                                         // about to lose funds) and only if the lock in claim_funds was dropped as a
2280                                         // previous HTLC was failed (thus not for an MPP payment).
2281                                         debug_assert!(false, "This shouldn't be reachable except in absurdly rare cases between monitor updates and HTLC timeouts: {:?}", e);
2282                                         return Err(None)
2283                                 },
2284                         }
2285                 } else { unreachable!(); }
2286         }
2287
2288         fn claim_funds_internal(&self, mut channel_state_lock: MutexGuard<ChannelHolder<Signer>>, source: HTLCSource, payment_preimage: PaymentPreimage) {
2289                 match source {
2290                         HTLCSource::OutboundRoute { .. } => {
2291                                 mem::drop(channel_state_lock);
2292                                 let mut pending_events = self.pending_events.lock().unwrap();
2293                                 pending_events.push(events::Event::PaymentSent {
2294                                         payment_preimage
2295                                 });
2296                         },
2297                         HTLCSource::PreviousHopData(hop_data) => {
2298                                 let prev_outpoint = hop_data.outpoint;
2299                                 if let Err((counterparty_node_id, err)) = match self.claim_funds_from_hop(&mut channel_state_lock, hop_data, payment_preimage) {
2300                                         Ok(()) => Ok(()),
2301                                         Err(None) => {
2302                                                 let preimage_update = ChannelMonitorUpdate {
2303                                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
2304                                                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
2305                                                                 payment_preimage: payment_preimage.clone(),
2306                                                         }],
2307                                                 };
2308                                                 // We update the ChannelMonitor on the backward link, after
2309                                                 // receiving an offchain preimage event from the forward link (the
2310                                                 // event being update_fulfill_htlc).
2311                                                 if let Err(e) = self.chain_monitor.update_channel(prev_outpoint, preimage_update) {
2312                                                         log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
2313                                                                    payment_preimage, e);
2314                                                 }
2315                                                 Ok(())
2316                                         },
2317                                         Err(Some(res)) => Err(res),
2318                                 } {
2319                                         mem::drop(channel_state_lock);
2320                                         let res: Result<(), _> = Err(err);
2321                                         let _ = handle_error!(self, res, counterparty_node_id);
2322                                 }
2323                         },
2324                 }
2325         }
2326
2327         /// Gets the node_id held by this ChannelManager
2328         pub fn get_our_node_id(&self) -> PublicKey {
2329                 PublicKey::from_secret_key(&self.secp_ctx, &self.our_network_key)
2330         }
2331
2332         /// Restores a single, given channel to normal operation after a
2333         /// ChannelMonitorUpdateErr::TemporaryFailure was returned from a channel monitor update
2334         /// operation.
2335         ///
2336         /// All ChannelMonitor updates up to and including highest_applied_update_id must have been
2337         /// fully committed in every copy of the given channels' ChannelMonitors.
2338         ///
2339         /// Note that there is no effect to calling with a highest_applied_update_id other than the
2340         /// current latest ChannelMonitorUpdate and one call to this function after multiple
2341         /// ChannelMonitorUpdateErr::TemporaryFailures is fine. The highest_applied_update_id field
2342         /// exists largely only to prevent races between this and concurrent update_monitor calls.
2343         ///
2344         /// Thus, the anticipated use is, at a high level:
2345         ///  1) You register a chain::Watch with this ChannelManager,
2346         ///  2) it stores each update to disk, and begins updating any remote (eg watchtower) copies of
2347         ///     said ChannelMonitors as it can, returning ChannelMonitorUpdateErr::TemporaryFailures
2348         ///     any time it cannot do so instantly,
2349         ///  3) update(s) are applied to each remote copy of a ChannelMonitor,
2350         ///  4) once all remote copies are updated, you call this function with the update_id that
2351         ///     completed, and once it is the latest the Channel will be re-enabled.
2352         pub fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64) {
2353                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
2354
2355                 let mut close_results = Vec::new();
2356                 let mut htlc_forwards = Vec::new();
2357                 let mut htlc_failures = Vec::new();
2358                 let mut pending_events = Vec::new();
2359
2360                 {
2361                         let mut channel_lock = self.channel_state.lock().unwrap();
2362                         let channel_state = &mut *channel_lock;
2363                         let short_to_id = &mut channel_state.short_to_id;
2364                         let pending_msg_events = &mut channel_state.pending_msg_events;
2365                         let channel = match channel_state.by_id.get_mut(&funding_txo.to_channel_id()) {
2366                                 Some(chan) => chan,
2367                                 None => return,
2368                         };
2369                         if !channel.is_awaiting_monitor_update() || channel.get_latest_monitor_update_id() != highest_applied_update_id {
2370                                 return;
2371                         }
2372
2373                         let (raa, commitment_update, order, pending_forwards, mut pending_failures, needs_broadcast_safe, funding_locked) = channel.monitor_updating_restored(&self.logger);
2374                         if !pending_forwards.is_empty() {
2375                                 htlc_forwards.push((channel.get_short_channel_id().expect("We can't have pending forwards before funding confirmation"), funding_txo.clone(), pending_forwards));
2376                         }
2377                         htlc_failures.append(&mut pending_failures);
2378
2379                         macro_rules! handle_cs { () => {
2380                                 if let Some(update) = commitment_update {
2381                                         pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
2382                                                 node_id: channel.get_counterparty_node_id(),
2383                                                 updates: update,
2384                                         });
2385                                 }
2386                         } }
2387                         macro_rules! handle_raa { () => {
2388                                 if let Some(revoke_and_ack) = raa {
2389                                         pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
2390                                                 node_id: channel.get_counterparty_node_id(),
2391                                                 msg: revoke_and_ack,
2392                                         });
2393                                 }
2394                         } }
2395                         match order {
2396                                 RAACommitmentOrder::CommitmentFirst => {
2397                                         handle_cs!();
2398                                         handle_raa!();
2399                                 },
2400                                 RAACommitmentOrder::RevokeAndACKFirst => {
2401                                         handle_raa!();
2402                                         handle_cs!();
2403                                 },
2404                         }
2405                         if needs_broadcast_safe {
2406                                 pending_events.push(events::Event::FundingBroadcastSafe {
2407                                         funding_txo: channel.get_funding_txo().unwrap(),
2408                                         user_channel_id: channel.get_user_id(),
2409                                 });
2410                         }
2411                         if let Some(msg) = funding_locked {
2412                                 pending_msg_events.push(events::MessageSendEvent::SendFundingLocked {
2413                                         node_id: channel.get_counterparty_node_id(),
2414                                         msg,
2415                                 });
2416                                 if let Some(announcement_sigs) = self.get_announcement_sigs(channel) {
2417                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
2418                                                 node_id: channel.get_counterparty_node_id(),
2419                                                 msg: announcement_sigs,
2420                                         });
2421                                 }
2422                                 short_to_id.insert(channel.get_short_channel_id().unwrap(), channel.channel_id());
2423                         }
2424                 }
2425
2426                 self.pending_events.lock().unwrap().append(&mut pending_events);
2427
2428                 for failure in htlc_failures.drain(..) {
2429                         self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), failure.0, &failure.1, failure.2);
2430                 }
2431                 self.forward_htlcs(&mut htlc_forwards[..]);
2432
2433                 for res in close_results.drain(..) {
2434                         self.finish_force_close_channel(res);
2435                 }
2436         }
2437
2438         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
2439                 if msg.chain_hash != self.genesis_hash {
2440                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
2441                 }
2442
2443                 let channel = Channel::new_from_req(&self.fee_estimator, &self.keys_manager, counterparty_node_id.clone(), their_features, msg, 0, &self.default_configuration)
2444                         .map_err(|e| MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id))?;
2445                 let mut channel_state_lock = self.channel_state.lock().unwrap();
2446                 let channel_state = &mut *channel_state_lock;
2447                 match channel_state.by_id.entry(channel.channel_id()) {
2448                         hash_map::Entry::Occupied(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision!".to_owned(), msg.temporary_channel_id.clone())),
2449                         hash_map::Entry::Vacant(entry) => {
2450                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
2451                                         node_id: counterparty_node_id.clone(),
2452                                         msg: channel.get_accept_channel(),
2453                                 });
2454                                 entry.insert(channel);
2455                         }
2456                 }
2457                 Ok(())
2458         }
2459
2460         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
2461                 let (value, output_script, user_id) = {
2462                         let mut channel_lock = self.channel_state.lock().unwrap();
2463                         let channel_state = &mut *channel_lock;
2464                         match channel_state.by_id.entry(msg.temporary_channel_id) {
2465                                 hash_map::Entry::Occupied(mut chan) => {
2466                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2467                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.temporary_channel_id));
2468                                         }
2469                                         try_chan_entry!(self, chan.get_mut().accept_channel(&msg, &self.default_configuration, their_features), channel_state, chan);
2470                                         (chan.get().get_value_satoshis(), chan.get().get_funding_redeemscript().to_v0_p2wsh(), chan.get().get_user_id())
2471                                 },
2472                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.temporary_channel_id))
2473                         }
2474                 };
2475                 let mut pending_events = self.pending_events.lock().unwrap();
2476                 pending_events.push(events::Event::FundingGenerationReady {
2477                         temporary_channel_id: msg.temporary_channel_id,
2478                         channel_value_satoshis: value,
2479                         output_script,
2480                         user_channel_id: user_id,
2481                 });
2482                 Ok(())
2483         }
2484
2485         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
2486                 let ((funding_msg, monitor), mut chan) = {
2487                         let last_block_hash = *self.last_block_hash.read().unwrap();
2488                         let mut channel_lock = self.channel_state.lock().unwrap();
2489                         let channel_state = &mut *channel_lock;
2490                         match channel_state.by_id.entry(msg.temporary_channel_id.clone()) {
2491                                 hash_map::Entry::Occupied(mut chan) => {
2492                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2493                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.temporary_channel_id));
2494                                         }
2495                                         (try_chan_entry!(self, chan.get_mut().funding_created(msg, last_block_hash, &self.logger), channel_state, chan), chan.remove())
2496                                 },
2497                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.temporary_channel_id))
2498                         }
2499                 };
2500                 // Because we have exclusive ownership of the channel here we can release the channel_state
2501                 // lock before watch_channel
2502                 if let Err(e) = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor) {
2503                         match e {
2504                                 ChannelMonitorUpdateErr::PermanentFailure => {
2505                                         // Note that we reply with the new channel_id in error messages if we gave up on the
2506                                         // channel, not the temporary_channel_id. This is compatible with ourselves, but the
2507                                         // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
2508                                         // any messages referencing a previously-closed channel anyway.
2509                                         // We do not do a force-close here as that would generate a monitor update for
2510                                         // a monitor that we didn't manage to store (and that we don't care about - we
2511                                         // don't respond with the funding_signed so the channel can never go on chain).
2512                                         let (_monitor_update, failed_htlcs) = chan.force_shutdown(true);
2513                                         assert!(failed_htlcs.is_empty());
2514                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("ChannelMonitor storage failure".to_owned(), funding_msg.channel_id));
2515                                 },
2516                                 ChannelMonitorUpdateErr::TemporaryFailure => {
2517                                         // There's no problem signing a counterparty's funding transaction if our monitor
2518                                         // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
2519                                         // accepted payment from yet. We do, however, need to wait to send our funding_locked
2520                                         // until we have persisted our monitor.
2521                                         chan.monitor_update_failed(false, false, Vec::new(), Vec::new());
2522                                 },
2523                         }
2524                 }
2525                 let mut channel_state_lock = self.channel_state.lock().unwrap();
2526                 let channel_state = &mut *channel_state_lock;
2527                 match channel_state.by_id.entry(funding_msg.channel_id) {
2528                         hash_map::Entry::Occupied(_) => {
2529                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
2530                         },
2531                         hash_map::Entry::Vacant(e) => {
2532                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
2533                                         node_id: counterparty_node_id.clone(),
2534                                         msg: funding_msg,
2535                                 });
2536                                 e.insert(chan);
2537                         }
2538                 }
2539                 Ok(())
2540         }
2541
2542         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
2543                 let (funding_txo, user_id) = {
2544                         let last_block_hash = *self.last_block_hash.read().unwrap();
2545                         let mut channel_lock = self.channel_state.lock().unwrap();
2546                         let channel_state = &mut *channel_lock;
2547                         match channel_state.by_id.entry(msg.channel_id) {
2548                                 hash_map::Entry::Occupied(mut chan) => {
2549                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2550                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2551                                         }
2552                                         let monitor = match chan.get_mut().funding_signed(&msg, last_block_hash, &self.logger) {
2553                                                 Ok(update) => update,
2554                                                 Err(e) => try_chan_entry!(self, Err(e), channel_state, chan),
2555                                         };
2556                                         if let Err(e) = self.chain_monitor.watch_channel(chan.get().get_funding_txo().unwrap(), monitor) {
2557                                                 return_monitor_err!(self, e, channel_state, chan, RAACommitmentOrder::RevokeAndACKFirst, false, false);
2558                                         }
2559                                         (chan.get().get_funding_txo().unwrap(), chan.get().get_user_id())
2560                                 },
2561                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2562                         }
2563                 };
2564                 let mut pending_events = self.pending_events.lock().unwrap();
2565                 pending_events.push(events::Event::FundingBroadcastSafe {
2566                         funding_txo,
2567                         user_channel_id: user_id,
2568                 });
2569                 Ok(())
2570         }
2571
2572         fn internal_funding_locked(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingLocked) -> Result<(), MsgHandleErrInternal> {
2573                 let mut channel_state_lock = self.channel_state.lock().unwrap();
2574                 let channel_state = &mut *channel_state_lock;
2575                 match channel_state.by_id.entry(msg.channel_id) {
2576                         hash_map::Entry::Occupied(mut chan) => {
2577                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2578                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2579                                 }
2580                                 try_chan_entry!(self, chan.get_mut().funding_locked(&msg), channel_state, chan);
2581                                 if let Some(announcement_sigs) = self.get_announcement_sigs(chan.get()) {
2582                                         log_trace!(self.logger, "Sending announcement_signatures for {} in response to funding_locked", log_bytes!(chan.get().channel_id()));
2583                                         // If we see locking block before receiving remote funding_locked, we broadcast our
2584                                         // announcement_sigs at remote funding_locked reception. If we receive remote
2585                                         // funding_locked before seeing locking block, we broadcast our announcement_sigs at locking
2586                                         // block connection. We should guanrantee to broadcast announcement_sigs to our peer whatever
2587                                         // the order of the events but our peer may not receive it due to disconnection. The specs
2588                                         // lacking an acknowledgement for announcement_sigs we may have to re-send them at peer
2589                                         // connection in the future if simultaneous misses by both peers due to network/hardware
2590                                         // failures is an issue. Note, to achieve its goal, only one of the announcement_sigs needs
2591                                         // to be received, from then sigs are going to be flood to the whole network.
2592                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
2593                                                 node_id: counterparty_node_id.clone(),
2594                                                 msg: announcement_sigs,
2595                                         });
2596                                 }
2597                                 Ok(())
2598                         },
2599                         hash_map::Entry::Vacant(_) => Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2600                 }
2601         }
2602
2603         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, their_features: &InitFeatures, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
2604                 let (mut dropped_htlcs, chan_option) = {
2605                         let mut channel_state_lock = self.channel_state.lock().unwrap();
2606                         let channel_state = &mut *channel_state_lock;
2607
2608                         match channel_state.by_id.entry(msg.channel_id.clone()) {
2609                                 hash_map::Entry::Occupied(mut chan_entry) => {
2610                                         if chan_entry.get().get_counterparty_node_id() != *counterparty_node_id {
2611                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2612                                         }
2613                                         let (shutdown, closing_signed, dropped_htlcs) = try_chan_entry!(self, chan_entry.get_mut().shutdown(&self.fee_estimator, &their_features, &msg), channel_state, chan_entry);
2614                                         if let Some(msg) = shutdown {
2615                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2616                                                         node_id: counterparty_node_id.clone(),
2617                                                         msg,
2618                                                 });
2619                                         }
2620                                         if let Some(msg) = closing_signed {
2621                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
2622                                                         node_id: counterparty_node_id.clone(),
2623                                                         msg,
2624                                                 });
2625                                         }
2626                                         if chan_entry.get().is_shutdown() {
2627                                                 if let Some(short_id) = chan_entry.get().get_short_channel_id() {
2628                                                         channel_state.short_to_id.remove(&short_id);
2629                                                 }
2630                                                 (dropped_htlcs, Some(chan_entry.remove_entry().1))
2631                                         } else { (dropped_htlcs, None) }
2632                                 },
2633                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2634                         }
2635                 };
2636                 for htlc_source in dropped_htlcs.drain(..) {
2637                         self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), htlc_source.0, &htlc_source.1, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() });
2638                 }
2639                 if let Some(chan) = chan_option {
2640                         if let Ok(update) = self.get_channel_update(&chan) {
2641                                 let mut channel_state = self.channel_state.lock().unwrap();
2642                                 channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2643                                         msg: update
2644                                 });
2645                         }
2646                 }
2647                 Ok(())
2648         }
2649
2650         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
2651                 let (tx, chan_option) = {
2652                         let mut channel_state_lock = self.channel_state.lock().unwrap();
2653                         let channel_state = &mut *channel_state_lock;
2654                         match channel_state.by_id.entry(msg.channel_id.clone()) {
2655                                 hash_map::Entry::Occupied(mut chan_entry) => {
2656                                         if chan_entry.get().get_counterparty_node_id() != *counterparty_node_id {
2657                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2658                                         }
2659                                         let (closing_signed, tx) = try_chan_entry!(self, chan_entry.get_mut().closing_signed(&self.fee_estimator, &msg), channel_state, chan_entry);
2660                                         if let Some(msg) = closing_signed {
2661                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
2662                                                         node_id: counterparty_node_id.clone(),
2663                                                         msg,
2664                                                 });
2665                                         }
2666                                         if tx.is_some() {
2667                                                 // We're done with this channel, we've got a signed closing transaction and
2668                                                 // will send the closing_signed back to the remote peer upon return. This
2669                                                 // also implies there are no pending HTLCs left on the channel, so we can
2670                                                 // fully delete it from tracking (the channel monitor is still around to
2671                                                 // watch for old state broadcasts)!
2672                                                 if let Some(short_id) = chan_entry.get().get_short_channel_id() {
2673                                                         channel_state.short_to_id.remove(&short_id);
2674                                                 }
2675                                                 (tx, Some(chan_entry.remove_entry().1))
2676                                         } else { (tx, None) }
2677                                 },
2678                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2679                         }
2680                 };
2681                 if let Some(broadcast_tx) = tx {
2682                         log_trace!(self.logger, "Broadcast onchain {}", log_tx!(broadcast_tx));
2683                         self.tx_broadcaster.broadcast_transaction(&broadcast_tx);
2684                 }
2685                 if let Some(chan) = chan_option {
2686                         if let Ok(update) = self.get_channel_update(&chan) {
2687                                 let mut channel_state = self.channel_state.lock().unwrap();
2688                                 channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2689                                         msg: update
2690                                 });
2691                         }
2692                 }
2693                 Ok(())
2694         }
2695
2696         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
2697                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
2698                 //determine the state of the payment based on our response/if we forward anything/the time
2699                 //we take to respond. We should take care to avoid allowing such an attack.
2700                 //
2701                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
2702                 //us repeatedly garbled in different ways, and compare our error messages, which are
2703                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
2704                 //but we should prevent it anyway.
2705
2706                 let (pending_forward_info, mut channel_state_lock) = self.decode_update_add_htlc_onion(msg);
2707                 let channel_state = &mut *channel_state_lock;
2708
2709                 match channel_state.by_id.entry(msg.channel_id) {
2710                         hash_map::Entry::Occupied(mut chan) => {
2711                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2712                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2713                                 }
2714
2715                                 let create_pending_htlc_status = |chan: &Channel<Signer>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
2716                                         // Ensure error_code has the UPDATE flag set, since by default we send a
2717                                         // channel update along as part of failing the HTLC.
2718                                         assert!((error_code & 0x1000) != 0);
2719                                         // If the update_add is completely bogus, the call will Err and we will close,
2720                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
2721                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
2722                                         match pending_forward_info {
2723                                                 PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
2724                                                         let reason = if let Ok(upd) = self.get_channel_update(chan) {
2725                                                                 onion_utils::build_first_hop_failure_packet(incoming_shared_secret, error_code, &{
2726                                                                         let mut res = Vec::with_capacity(8 + 128);
2727                                                                         // TODO: underspecified, follow https://github.com/lightningnetwork/lightning-rfc/issues/791
2728                                                                         res.extend_from_slice(&byte_utils::be16_to_array(0));
2729                                                                         res.extend_from_slice(&upd.encode_with_len()[..]);
2730                                                                         res
2731                                                                 }[..])
2732                                                         } else {
2733                                                                 // The only case where we'd be unable to
2734                                                                 // successfully get a channel update is if the
2735                                                                 // channel isn't in the fully-funded state yet,
2736                                                                 // implying our counterparty is trying to route
2737                                                                 // payments over the channel back to themselves
2738                                                                 // (cause no one else should know the short_id
2739                                                                 // is a lightning channel yet). We should have
2740                                                                 // no problem just calling this
2741                                                                 // unknown_next_peer (0x4000|10).
2742                                                                 onion_utils::build_first_hop_failure_packet(incoming_shared_secret, 0x4000|10, &[])
2743                                                         };
2744                                                         let msg = msgs::UpdateFailHTLC {
2745                                                                 channel_id: msg.channel_id,
2746                                                                 htlc_id: msg.htlc_id,
2747                                                                 reason
2748                                                         };
2749                                                         PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
2750                                                 },
2751                                                 _ => pending_forward_info
2752                                         }
2753                                 };
2754                                 try_chan_entry!(self, chan.get_mut().update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.logger), channel_state, chan);
2755                         },
2756                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2757                 }
2758                 Ok(())
2759         }
2760
2761         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
2762                 let mut channel_lock = self.channel_state.lock().unwrap();
2763                 let htlc_source = {
2764                         let channel_state = &mut *channel_lock;
2765                         match channel_state.by_id.entry(msg.channel_id) {
2766                                 hash_map::Entry::Occupied(mut chan) => {
2767                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2768                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2769                                         }
2770                                         try_chan_entry!(self, chan.get_mut().update_fulfill_htlc(&msg), channel_state, chan)
2771                                 },
2772                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2773                         }
2774                 };
2775                 self.claim_funds_internal(channel_lock, htlc_source, msg.payment_preimage.clone());
2776                 Ok(())
2777         }
2778
2779         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
2780                 let mut channel_lock = self.channel_state.lock().unwrap();
2781                 let channel_state = &mut *channel_lock;
2782                 match channel_state.by_id.entry(msg.channel_id) {
2783                         hash_map::Entry::Occupied(mut chan) => {
2784                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2785                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2786                                 }
2787                                 try_chan_entry!(self, chan.get_mut().update_fail_htlc(&msg, HTLCFailReason::LightningError { err: msg.reason.clone() }), channel_state, chan);
2788                         },
2789                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2790                 }
2791                 Ok(())
2792         }
2793
2794         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
2795                 let mut channel_lock = self.channel_state.lock().unwrap();
2796                 let channel_state = &mut *channel_lock;
2797                 match channel_state.by_id.entry(msg.channel_id) {
2798                         hash_map::Entry::Occupied(mut chan) => {
2799                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2800                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2801                                 }
2802                                 if (msg.failure_code & 0x8000) == 0 {
2803                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
2804                                         try_chan_entry!(self, Err(chan_err), channel_state, chan);
2805                                 }
2806                                 try_chan_entry!(self, chan.get_mut().update_fail_malformed_htlc(&msg, HTLCFailReason::Reason { failure_code: msg.failure_code, data: Vec::new() }), channel_state, chan);
2807                                 Ok(())
2808                         },
2809                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2810                 }
2811         }
2812
2813         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
2814                 let mut channel_state_lock = self.channel_state.lock().unwrap();
2815                 let channel_state = &mut *channel_state_lock;
2816                 match channel_state.by_id.entry(msg.channel_id) {
2817                         hash_map::Entry::Occupied(mut chan) => {
2818                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2819                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2820                                 }
2821                                 let (revoke_and_ack, commitment_signed, closing_signed, monitor_update) =
2822                                         match chan.get_mut().commitment_signed(&msg, &self.fee_estimator, &self.logger) {
2823                                                 Err((None, e)) => try_chan_entry!(self, Err(e), channel_state, chan),
2824                                                 Err((Some(update), e)) => {
2825                                                         assert!(chan.get().is_awaiting_monitor_update());
2826                                                         let _ = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), update);
2827                                                         try_chan_entry!(self, Err(e), channel_state, chan);
2828                                                         unreachable!();
2829                                                 },
2830                                                 Ok(res) => res
2831                                         };
2832                                 if let Err(e) = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
2833                                         return_monitor_err!(self, e, channel_state, chan, RAACommitmentOrder::RevokeAndACKFirst, true, commitment_signed.is_some());
2834                                         //TODO: Rebroadcast closing_signed if present on monitor update restoration
2835                                 }
2836                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
2837                                         node_id: counterparty_node_id.clone(),
2838                                         msg: revoke_and_ack,
2839                                 });
2840                                 if let Some(msg) = commitment_signed {
2841                                         channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
2842                                                 node_id: counterparty_node_id.clone(),
2843                                                 updates: msgs::CommitmentUpdate {
2844                                                         update_add_htlcs: Vec::new(),
2845                                                         update_fulfill_htlcs: Vec::new(),
2846                                                         update_fail_htlcs: Vec::new(),
2847                                                         update_fail_malformed_htlcs: Vec::new(),
2848                                                         update_fee: None,
2849                                                         commitment_signed: msg,
2850                                                 },
2851                                         });
2852                                 }
2853                                 if let Some(msg) = closing_signed {
2854                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
2855                                                 node_id: counterparty_node_id.clone(),
2856                                                 msg,
2857                                         });
2858                                 }
2859                                 Ok(())
2860                         },
2861                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2862                 }
2863         }
2864
2865         #[inline]
2866         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, Vec<(PendingHTLCInfo, u64)>)]) {
2867                 for &mut (prev_short_channel_id, prev_funding_outpoint, ref mut pending_forwards) in per_source_pending_forwards {
2868                         let mut forward_event = None;
2869                         if !pending_forwards.is_empty() {
2870                                 let mut channel_state = self.channel_state.lock().unwrap();
2871                                 if channel_state.forward_htlcs.is_empty() {
2872                                         forward_event = Some(Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS))
2873                                 }
2874                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
2875                                         match channel_state.forward_htlcs.entry(match forward_info.routing {
2876                                                         PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
2877                                                         PendingHTLCRouting::Receive { .. } => 0,
2878                                         }) {
2879                                                 hash_map::Entry::Occupied(mut entry) => {
2880                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_funding_outpoint,
2881                                                                                                         prev_htlc_id, forward_info });
2882                                                 },
2883                                                 hash_map::Entry::Vacant(entry) => {
2884                                                         entry.insert(vec!(HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_funding_outpoint,
2885                                                                                                      prev_htlc_id, forward_info }));
2886                                                 }
2887                                         }
2888                                 }
2889                         }
2890                         match forward_event {
2891                                 Some(time) => {
2892                                         let mut pending_events = self.pending_events.lock().unwrap();
2893                                         pending_events.push(events::Event::PendingHTLCsForwardable {
2894                                                 time_forwardable: time
2895                                         });
2896                                 }
2897                                 None => {},
2898                         }
2899                 }
2900         }
2901
2902         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
2903                 let mut htlcs_to_fail = Vec::new();
2904                 let res = loop {
2905                         let mut channel_state_lock = self.channel_state.lock().unwrap();
2906                         let channel_state = &mut *channel_state_lock;
2907                         match channel_state.by_id.entry(msg.channel_id) {
2908                                 hash_map::Entry::Occupied(mut chan) => {
2909                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2910                                                 break Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2911                                         }
2912                                         let was_frozen_for_monitor = chan.get().is_awaiting_monitor_update();
2913                                         let (commitment_update, pending_forwards, pending_failures, closing_signed, monitor_update, htlcs_to_fail_in) =
2914                                                 break_chan_entry!(self, chan.get_mut().revoke_and_ack(&msg, &self.fee_estimator, &self.logger), channel_state, chan);
2915                                         htlcs_to_fail = htlcs_to_fail_in;
2916                                         if let Err(e) = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
2917                                                 if was_frozen_for_monitor {
2918                                                         assert!(commitment_update.is_none() && closing_signed.is_none() && pending_forwards.is_empty() && pending_failures.is_empty());
2919                                                         break Err(MsgHandleErrInternal::ignore_no_close("Previous monitor update failure prevented responses to RAA".to_owned()));
2920                                                 } else {
2921                                                         if let Err(e) = handle_monitor_err!(self, e, channel_state, chan, RAACommitmentOrder::CommitmentFirst, false, commitment_update.is_some(), pending_forwards, pending_failures) {
2922                                                                 break Err(e);
2923                                                         } else { unreachable!(); }
2924                                                 }
2925                                         }
2926                                         if let Some(updates) = commitment_update {
2927                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
2928                                                         node_id: counterparty_node_id.clone(),
2929                                                         updates,
2930                                                 });
2931                                         }
2932                                         if let Some(msg) = closing_signed {
2933                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
2934                                                         node_id: counterparty_node_id.clone(),
2935                                                         msg,
2936                                                 });
2937                                         }
2938                                         break Ok((pending_forwards, pending_failures, chan.get().get_short_channel_id().expect("RAA should only work on a short-id-available channel"), chan.get().get_funding_txo().unwrap()))
2939                                 },
2940                                 hash_map::Entry::Vacant(_) => break Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2941                         }
2942                 };
2943                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id);
2944                 match res {
2945                         Ok((pending_forwards, mut pending_failures, short_channel_id, channel_outpoint)) => {
2946                                 for failure in pending_failures.drain(..) {
2947                                         self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), failure.0, &failure.1, failure.2);
2948                                 }
2949                                 self.forward_htlcs(&mut [(short_channel_id, channel_outpoint, pending_forwards)]);
2950                                 Ok(())
2951                         },
2952                         Err(e) => Err(e)
2953                 }
2954         }
2955
2956         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
2957                 let mut channel_lock = self.channel_state.lock().unwrap();
2958                 let channel_state = &mut *channel_lock;
2959                 match channel_state.by_id.entry(msg.channel_id) {
2960                         hash_map::Entry::Occupied(mut chan) => {
2961                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2962                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2963                                 }
2964                                 try_chan_entry!(self, chan.get_mut().update_fee(&self.fee_estimator, &msg), channel_state, chan);
2965                         },
2966                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
2967                 }
2968                 Ok(())
2969         }
2970
2971         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
2972                 let mut channel_state_lock = self.channel_state.lock().unwrap();
2973                 let channel_state = &mut *channel_state_lock;
2974
2975                 match channel_state.by_id.entry(msg.channel_id) {
2976                         hash_map::Entry::Occupied(mut chan) => {
2977                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
2978                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
2979                                 }
2980                                 if !chan.get().is_usable() {
2981                                         return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
2982                                 }
2983
2984                                 let our_node_id = self.get_our_node_id();
2985                                 let (announcement, our_bitcoin_sig) =
2986                                         try_chan_entry!(self, chan.get_mut().get_channel_announcement(our_node_id.clone(), self.genesis_hash.clone()), channel_state, chan);
2987
2988                                 let were_node_one = announcement.node_id_1 == our_node_id;
2989                                 let msghash = hash_to_message!(&Sha256dHash::hash(&announcement.encode()[..])[..]);
2990                                 {
2991                                         let their_node_key = if were_node_one { &announcement.node_id_2 } else { &announcement.node_id_1 };
2992                                         let their_bitcoin_key = if were_node_one { &announcement.bitcoin_key_2 } else { &announcement.bitcoin_key_1 };
2993                                         match (self.secp_ctx.verify(&msghash, &msg.node_signature, their_node_key),
2994                                                    self.secp_ctx.verify(&msghash, &msg.bitcoin_signature, their_bitcoin_key)) {
2995                                                 (Err(e), _) => {
2996                                                         let chan_err: ChannelError = ChannelError::Close(format!("Bad announcement_signatures. Failed to verify node_signature: {:?}. Maybe using different node_secret for transport and routing msg? UnsignedChannelAnnouncement used for verification is {:?}. their_node_key is {:?}", e, &announcement, their_node_key));
2997                                                         try_chan_entry!(self, Err(chan_err), channel_state, chan);
2998                                                 },
2999                                                 (_, Err(e)) => {
3000                                                         let chan_err: ChannelError = ChannelError::Close(format!("Bad announcement_signatures. Failed to verify bitcoin_signature: {:?}. UnsignedChannelAnnouncement used for verification is {:?}. their_bitcoin_key is ({:?})", e, &announcement, their_bitcoin_key));
3001                                                         try_chan_entry!(self, Err(chan_err), channel_state, chan);
3002                                                 },
3003                                                 _ => {}
3004                                         }
3005                                 }
3006
3007                                 let our_node_sig = self.secp_ctx.sign(&msghash, &self.our_network_key);
3008
3009                                 channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
3010                                         msg: msgs::ChannelAnnouncement {
3011                                                 node_signature_1: if were_node_one { our_node_sig } else { msg.node_signature },
3012                                                 node_signature_2: if were_node_one { msg.node_signature } else { our_node_sig },
3013                                                 bitcoin_signature_1: if were_node_one { our_bitcoin_sig } else { msg.bitcoin_signature },
3014                                                 bitcoin_signature_2: if were_node_one { msg.bitcoin_signature } else { our_bitcoin_sig },
3015                                                 contents: announcement,
3016                                         },
3017                                         update_msg: self.get_channel_update(chan.get()).unwrap(), // can only fail if we're not in a ready state
3018                                 });
3019                         },
3020                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
3021                 }
3022                 Ok(())
3023         }
3024
3025         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<(), MsgHandleErrInternal> {
3026                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3027                 let channel_state = &mut *channel_state_lock;
3028                 let chan_id = match channel_state.short_to_id.get(&msg.contents.short_channel_id) {
3029                         Some(chan_id) => chan_id.clone(),
3030                         None => {
3031                                 // It's not a local channel
3032                                 return Ok(())
3033                         }
3034                 };
3035                 match channel_state.by_id.entry(chan_id) {
3036                         hash_map::Entry::Occupied(mut chan) => {
3037                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
3038                                         // TODO: see issue #153, need a consistent behavior on obnoxious behavior from random node
3039                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), chan_id));
3040                                 }
3041                                 try_chan_entry!(self, chan.get_mut().channel_update(&msg), channel_state, chan);
3042                         },
3043                         hash_map::Entry::Vacant(_) => unreachable!()
3044                 }
3045                 Ok(())
3046         }
3047
3048         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
3049                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3050                 let channel_state = &mut *channel_state_lock;
3051
3052                 match channel_state.by_id.entry(msg.channel_id) {
3053                         hash_map::Entry::Occupied(mut chan) => {
3054                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
3055                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
3056                                 }
3057                                 // Currently, we expect all holding cell update_adds to be dropped on peer
3058                                 // disconnect, so Channel's reestablish will never hand us any holding cell
3059                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
3060                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
3061                                 let (funding_locked, revoke_and_ack, commitment_update, monitor_update_opt, mut order, shutdown) =
3062                                         try_chan_entry!(self, chan.get_mut().channel_reestablish(msg, &self.logger), channel_state, chan);
3063                                 if let Some(monitor_update) = monitor_update_opt {
3064                                         if let Err(e) = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
3065                                                 // channel_reestablish doesn't guarantee the order it returns is sensical
3066                                                 // for the messages it returns, but if we're setting what messages to
3067                                                 // re-transmit on monitor update success, we need to make sure it is sane.
3068                                                 if revoke_and_ack.is_none() {
3069                                                         order = RAACommitmentOrder::CommitmentFirst;
3070                                                 }
3071                                                 if commitment_update.is_none() {
3072                                                         order = RAACommitmentOrder::RevokeAndACKFirst;
3073                                                 }
3074                                                 return_monitor_err!(self, e, channel_state, chan, order, revoke_and_ack.is_some(), commitment_update.is_some());
3075                                                 //TODO: Resend the funding_locked if needed once we get the monitor running again
3076                                         }
3077                                 }
3078                                 if let Some(msg) = funding_locked {
3079                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendFundingLocked {
3080                                                 node_id: counterparty_node_id.clone(),
3081                                                 msg
3082                                         });
3083                                 }
3084                                 macro_rules! send_raa { () => {
3085                                         if let Some(msg) = revoke_and_ack {
3086                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
3087                                                         node_id: counterparty_node_id.clone(),
3088                                                         msg
3089                                                 });
3090                                         }
3091                                 } }
3092                                 macro_rules! send_cu { () => {
3093                                         if let Some(updates) = commitment_update {
3094                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
3095                                                         node_id: counterparty_node_id.clone(),
3096                                                         updates
3097                                                 });
3098                                         }
3099                                 } }
3100                                 match order {
3101                                         RAACommitmentOrder::RevokeAndACKFirst => {
3102                                                 send_raa!();
3103                                                 send_cu!();
3104                                         },
3105                                         RAACommitmentOrder::CommitmentFirst => {
3106                                                 send_cu!();
3107                                                 send_raa!();
3108                                         },
3109                                 }
3110                                 if let Some(msg) = shutdown {
3111                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
3112                                                 node_id: counterparty_node_id.clone(),
3113                                                 msg,
3114                                         });
3115                                 }
3116                                 Ok(())
3117                         },
3118                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
3119                 }
3120         }
3121
3122         /// Begin Update fee process. Allowed only on an outbound channel.
3123         /// If successful, will generate a UpdateHTLCs event, so you should probably poll
3124         /// PeerManager::process_events afterwards.
3125         /// Note: This API is likely to change!
3126         /// (C-not exported) Cause its doc(hidden) anyway
3127         #[doc(hidden)]
3128         pub fn update_fee(&self, channel_id: [u8;32], feerate_per_kw: u32) -> Result<(), APIError> {
3129                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3130                 let counterparty_node_id;
3131                 let err: Result<(), _> = loop {
3132                         let mut channel_state_lock = self.channel_state.lock().unwrap();
3133                         let channel_state = &mut *channel_state_lock;
3134
3135                         match channel_state.by_id.entry(channel_id) {
3136                                 hash_map::Entry::Vacant(_) => return Err(APIError::APIMisuseError{err: format!("Failed to find corresponding channel for id {}", channel_id.to_hex())}),
3137                                 hash_map::Entry::Occupied(mut chan) => {
3138                                         if !chan.get().is_outbound() {
3139                                                 return Err(APIError::APIMisuseError{err: "update_fee cannot be sent for an inbound channel".to_owned()});
3140                                         }
3141                                         if chan.get().is_awaiting_monitor_update() {
3142                                                 return Err(APIError::MonitorUpdateFailed);
3143                                         }
3144                                         if !chan.get().is_live() {
3145                                                 return Err(APIError::ChannelUnavailable{err: "Channel is either not yet fully established or peer is currently disconnected".to_owned()});
3146                                         }
3147                                         counterparty_node_id = chan.get().get_counterparty_node_id();
3148                                         if let Some((update_fee, commitment_signed, monitor_update)) =
3149                                                         break_chan_entry!(self, chan.get_mut().send_update_fee_and_commit(feerate_per_kw, &self.logger), channel_state, chan)
3150                                         {
3151                                                 if let Err(_e) = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
3152                                                         unimplemented!();
3153                                                 }
3154                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
3155                                                         node_id: chan.get().get_counterparty_node_id(),
3156                                                         updates: msgs::CommitmentUpdate {
3157                                                                 update_add_htlcs: Vec::new(),
3158                                                                 update_fulfill_htlcs: Vec::new(),
3159                                                                 update_fail_htlcs: Vec::new(),
3160                                                                 update_fail_malformed_htlcs: Vec::new(),
3161                                                                 update_fee: Some(update_fee),
3162                                                                 commitment_signed,
3163                                                         },
3164                                                 });
3165                                         }
3166                                 },
3167                         }
3168                         return Ok(())
3169                 };
3170
3171                 match handle_error!(self, err, counterparty_node_id) {
3172                         Ok(_) => unreachable!(),
3173                         Err(e) => { Err(APIError::APIMisuseError { err: e.err })}
3174                 }
3175         }
3176
3177         /// Process pending events from the `chain::Watch`.
3178         fn process_pending_monitor_events(&self) {
3179                 let mut failed_channels = Vec::new();
3180                 {
3181                         for monitor_event in self.chain_monitor.release_pending_monitor_events() {
3182                                 match monitor_event {
3183                                         MonitorEvent::HTLCEvent(htlc_update) => {
3184                                                 if let Some(preimage) = htlc_update.payment_preimage {
3185                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", log_bytes!(preimage.0));
3186                                                         self.claim_funds_internal(self.channel_state.lock().unwrap(), htlc_update.source, preimage);
3187                                                 } else {
3188                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", log_bytes!(htlc_update.payment_hash.0));
3189                                                         self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), htlc_update.source, &htlc_update.payment_hash, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() });
3190                                                 }
3191                                         },
3192                                         MonitorEvent::CommitmentTxBroadcasted(funding_outpoint) => {
3193                                                 let mut channel_lock = self.channel_state.lock().unwrap();
3194                                                 let channel_state = &mut *channel_lock;
3195                                                 let by_id = &mut channel_state.by_id;
3196                                                 let short_to_id = &mut channel_state.short_to_id;
3197                                                 let pending_msg_events = &mut channel_state.pending_msg_events;
3198                                                 if let Some(mut chan) = by_id.remove(&funding_outpoint.to_channel_id()) {
3199                                                         if let Some(short_id) = chan.get_short_channel_id() {
3200                                                                 short_to_id.remove(&short_id);
3201                                                         }
3202                                                         failed_channels.push(chan.force_shutdown(false));
3203                                                         if let Ok(update) = self.get_channel_update(&chan) {
3204                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3205                                                                         msg: update
3206                                                                 });
3207                                                         }
3208                                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
3209                                                                 node_id: chan.get_counterparty_node_id(),
3210                                                                 action: msgs::ErrorAction::SendErrorMessage {
3211                                                                         msg: msgs::ErrorMessage { channel_id: chan.channel_id(), data: "Channel force-closed".to_owned() }
3212                                                                 },
3213                                                         });
3214                                                 }
3215                                         },
3216                                 }
3217                         }
3218                 }
3219
3220                 for failure in failed_channels.drain(..) {
3221                         self.finish_force_close_channel(failure);
3222                 }
3223         }
3224
3225         /// Handle a list of channel failures during a block_connected or block_disconnected call,
3226         /// pushing the channel monitor update (if any) to the background events queue and removing the
3227         /// Channel object.
3228         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
3229                 for mut failure in failed_channels.drain(..) {
3230                         // Either a commitment transactions has been confirmed on-chain or
3231                         // Channel::block_disconnected detected that the funding transaction has been
3232                         // reorganized out of the main chain.
3233                         // We cannot broadcast our latest local state via monitor update (as
3234                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
3235                         // so we track the update internally and handle it when the user next calls
3236                         // timer_chan_freshness_every_min, guaranteeing we're running normally.
3237                         if let Some((funding_txo, update)) = failure.0.take() {
3238                                 assert_eq!(update.updates.len(), 1);
3239                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
3240                                         assert!(should_broadcast);
3241                                 } else { unreachable!(); }
3242                                 self.pending_background_events.lock().unwrap().push(BackgroundEvent::ClosingMonitorUpdate((funding_txo, update)));
3243                         }
3244                         self.finish_force_close_channel(failure);
3245                 }
3246         }
3247 }
3248
3249 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> MessageSendEventsProvider for ChannelManager<Signer, M, T, K, F, L>
3250         where M::Target: chain::Watch<Signer>,
3251         T::Target: BroadcasterInterface,
3252         K::Target: KeysInterface<Signer = Signer>,
3253         F::Target: FeeEstimator,
3254                                 L::Target: Logger,
3255 {
3256         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
3257                 //TODO: This behavior should be documented. It's non-intuitive that we query
3258                 // ChannelMonitors when clearing other events.
3259                 self.process_pending_monitor_events();
3260
3261                 let mut ret = Vec::new();
3262                 let mut channel_state = self.channel_state.lock().unwrap();
3263                 mem::swap(&mut ret, &mut channel_state.pending_msg_events);
3264                 ret
3265         }
3266 }
3267
3268 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> EventsProvider for ChannelManager<Signer, M, T, K, F, L>
3269         where M::Target: chain::Watch<Signer>,
3270         T::Target: BroadcasterInterface,
3271         K::Target: KeysInterface<Signer = Signer>,
3272         F::Target: FeeEstimator,
3273                                 L::Target: Logger,
3274 {
3275         fn get_and_clear_pending_events(&self) -> Vec<Event> {
3276                 //TODO: This behavior should be documented. It's non-intuitive that we query
3277                 // ChannelMonitors when clearing other events.
3278                 self.process_pending_monitor_events();
3279
3280                 let mut ret = Vec::new();
3281                 let mut pending_events = self.pending_events.lock().unwrap();
3282                 mem::swap(&mut ret, &mut *pending_events);
3283                 ret
3284         }
3285 }
3286
3287 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> chain::Listen for ChannelManager<Signer, M, T, K, F, L>
3288 where
3289         M::Target: chain::Watch<Signer>,
3290         T::Target: BroadcasterInterface,
3291         K::Target: KeysInterface<Signer = Signer>,
3292         F::Target: FeeEstimator,
3293         L::Target: Logger,
3294 {
3295         fn block_connected(&self, block: &Block, height: u32) {
3296                 assert_eq!(*self.last_block_hash.read().unwrap(), block.header.prev_blockhash,
3297                         "Blocks must be connected in chain-order - the connected header must build on the last connected header");
3298                 assert_eq!(self.latest_block_height.load(Ordering::Acquire) as u64, height as u64 - 1,
3299                         "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
3300                 let txdata: Vec<_> = block.txdata.iter().enumerate().collect();
3301                 self.transactions_confirmed(&block.header, height, &txdata);
3302                 self.update_best_block(&block.header, height);
3303         }
3304
3305         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
3306                 assert_eq!(*self.last_block_hash.read().unwrap(), header.block_hash(),
3307                         "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
3308
3309                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3310                 let new_height = self.latest_block_height.fetch_sub(1, Ordering::AcqRel) as u32 - 1;
3311                 assert_eq!(new_height, height - 1,
3312                         "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
3313                 *self.last_block_hash.write().unwrap() = header.prev_blockhash;
3314
3315                 self.do_chain_event(new_height, |channel| channel.update_best_block(new_height, header.time));
3316         }
3317 }
3318
3319 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelManager<Signer, M, T, K, F, L>
3320         where M::Target: chain::Watch<Signer>,
3321         T::Target: BroadcasterInterface,
3322         K::Target: KeysInterface<Signer = Signer>,
3323         F::Target: FeeEstimator,
3324         L::Target: Logger,
3325 {
3326         fn do_chain_event<FN: Fn(&mut Channel<Signer>) -> Result<(Option<msgs::FundingLocked>, Vec<(HTLCSource, PaymentHash)>), msgs::ErrorMessage>>
3327                         (&self, height: u32, f: FN) {
3328                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
3329                 // during initialization prior to the chain_monitor being fully configured in some cases.
3330                 // See the docs for `ChannelManagerReadArgs` for more.
3331
3332                 let mut failed_channels = Vec::new();
3333                 let mut timed_out_htlcs = Vec::new();
3334                 {
3335                         let mut channel_lock = self.channel_state.lock().unwrap();
3336                         let channel_state = &mut *channel_lock;
3337                         let short_to_id = &mut channel_state.short_to_id;
3338                         let pending_msg_events = &mut channel_state.pending_msg_events;
3339                         channel_state.by_id.retain(|_, channel| {
3340                                 let res = f(channel);
3341                                 if let Ok((chan_res, mut timed_out_pending_htlcs)) = res {
3342                                         for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
3343                                                 let chan_update = self.get_channel_update(&channel).map(|u| u.encode_with_len()).unwrap(); // Cannot add/recv HTLCs before we have a short_id so unwrap is safe
3344                                                 timed_out_htlcs.push((source, payment_hash,  HTLCFailReason::Reason {
3345                                                         failure_code: 0x1000 | 14, // expiry_too_soon, or at least it is now
3346                                                         data: chan_update,
3347                                                 }));
3348                                         }
3349                                         if let Some(funding_locked) = chan_res {
3350                                                 pending_msg_events.push(events::MessageSendEvent::SendFundingLocked {
3351                                                         node_id: channel.get_counterparty_node_id(),
3352                                                         msg: funding_locked,
3353                                                 });
3354                                                 if let Some(announcement_sigs) = self.get_announcement_sigs(channel) {
3355                                                         log_trace!(self.logger, "Sending funding_locked and announcement_signatures for {}", log_bytes!(channel.channel_id()));
3356                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
3357                                                                 node_id: channel.get_counterparty_node_id(),
3358                                                                 msg: announcement_sigs,
3359                                                         });
3360                                                 } else {
3361                                                         log_trace!(self.logger, "Sending funding_locked WITHOUT announcement_signatures for {}", log_bytes!(channel.channel_id()));
3362                                                 }
3363                                                 short_to_id.insert(channel.get_short_channel_id().unwrap(), channel.channel_id());
3364                                         }
3365                                 } else if let Err(e) = res {
3366                                         if let Some(short_id) = channel.get_short_channel_id() {
3367                                                 short_to_id.remove(&short_id);
3368                                         }
3369                                         // It looks like our counterparty went on-chain or funding transaction was
3370                                         // reorged out of the main chain. Close the channel.
3371                                         failed_channels.push(channel.force_shutdown(true));
3372                                         if let Ok(update) = self.get_channel_update(&channel) {
3373                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3374                                                         msg: update
3375                                                 });
3376                                         }
3377                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
3378                                                 node_id: channel.get_counterparty_node_id(),
3379                                                 action: msgs::ErrorAction::SendErrorMessage { msg: e },
3380                                         });
3381                                         return false;
3382                                 }
3383                                 true
3384                         });
3385
3386                         channel_state.claimable_htlcs.retain(|&(ref payment_hash, _), htlcs| {
3387                                 htlcs.retain(|htlc| {
3388                                         // If height is approaching the number of blocks we think it takes us to get
3389                                         // our commitment transaction confirmed before the HTLC expires, plus the
3390                                         // number of blocks we generally consider it to take to do a commitment update,
3391                                         // just give up on it and fail the HTLC.
3392                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
3393                                                 let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
3394                                                 htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(height));
3395                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(), HTLCFailReason::Reason {
3396                                                         failure_code: 0x4000 | 15,
3397                                                         data: htlc_msat_height_data
3398                                                 }));
3399                                                 false
3400                                         } else { true }
3401                                 });
3402                                 !htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
3403                         });
3404                 }
3405
3406                 self.handle_init_event_channel_failures(failed_channels);
3407
3408                 for (source, payment_hash, reason) in timed_out_htlcs.drain(..) {
3409                         self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), source, &payment_hash, reason);
3410                 }
3411         }
3412
3413         /// Updates channel state to take note of transactions which were confirmed in the given block
3414         /// at the given height.
3415         ///
3416         /// Note that you must still call (or have called) [`update_best_block`] with the block
3417         /// information which is included here.
3418         ///
3419         /// This method may be called before or after [`update_best_block`] for a given block's
3420         /// transaction data and may be called multiple times with additional transaction data for a
3421         /// given block.
3422         ///
3423         /// This method may be called for a previous block after an [`update_best_block`] call has
3424         /// been made for a later block, however it must *not* be called with transaction data from a
3425         /// block which is no longer in the best chain (ie where [`update_best_block`] has already
3426         /// been informed about a blockchain reorganization which no longer includes the block which
3427         /// corresponds to `header`).
3428         ///
3429         /// [`update_best_block`]: `Self::update_best_block`
3430         pub fn transactions_confirmed(&self, header: &BlockHeader, height: u32, txdata: &TransactionData) {
3431                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
3432                 // during initialization prior to the chain_monitor being fully configured in some cases.
3433                 // See the docs for `ChannelManagerReadArgs` for more.
3434
3435                 let block_hash = header.block_hash();
3436                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
3437
3438                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3439                 self.do_chain_event(height, |channel| channel.transactions_confirmed(&block_hash, height, txdata, &self.logger).map(|_| (None, Vec::new())));
3440         }
3441
3442         /// Updates channel state with the current best blockchain tip. You should attempt to call this
3443         /// quickly after a new block becomes available, however if multiple new blocks become
3444         /// available at the same time, only a single `update_best_block()` call needs to be made.
3445         ///
3446         /// This method should also be called immediately after any block disconnections, once at the
3447         /// reorganization fork point, and once with the new chain tip. Calling this method at the
3448         /// blockchain reorganization fork point ensures we learn when a funding transaction which was
3449         /// previously confirmed is reorganized out of the blockchain, ensuring we do not continue to
3450         /// accept payments which cannot be enforced on-chain.
3451         ///
3452         /// In both the block-connection and block-disconnection case, this method may be called either
3453         /// once per block connected or disconnected, or simply at the fork point and new tip(s),
3454         /// skipping any intermediary blocks.
3455         pub fn update_best_block(&self, header: &BlockHeader, height: u32) {
3456                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
3457                 // during initialization prior to the chain_monitor being fully configured in some cases.
3458                 // See the docs for `ChannelManagerReadArgs` for more.
3459
3460                 let block_hash = header.block_hash();
3461                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
3462
3463                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3464
3465                 self.latest_block_height.store(height as usize, Ordering::Release);
3466                 *self.last_block_hash.write().unwrap() = block_hash;
3467
3468                 self.do_chain_event(height, |channel| channel.update_best_block(height, header.time));
3469
3470                 loop {
3471                         // Update last_node_announcement_serial to be the max of its current value and the
3472                         // block timestamp. This should keep us close to the current time without relying on
3473                         // having an explicit local time source.
3474                         // Just in case we end up in a race, we loop until we either successfully update
3475                         // last_node_announcement_serial or decide we don't need to.
3476                         let old_serial = self.last_node_announcement_serial.load(Ordering::Acquire);
3477                         if old_serial >= header.time as usize { break; }
3478                         if self.last_node_announcement_serial.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
3479                                 break;
3480                         }
3481                 }
3482         }
3483
3484         /// Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
3485         /// indicating whether persistence is necessary. Only one listener on
3486         /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
3487         /// up.
3488         /// Note that the feature `allow_wallclock_use` must be enabled to use this function.
3489         #[cfg(any(test, feature = "allow_wallclock_use"))]
3490         pub fn await_persistable_update_timeout(&self, max_wait: Duration) -> bool {
3491                 self.persistence_notifier.wait_timeout(max_wait)
3492         }
3493
3494         /// Blocks until ChannelManager needs to be persisted. Only one listener on
3495         /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
3496         /// up.
3497         pub fn await_persistable_update(&self) {
3498                 self.persistence_notifier.wait()
3499         }
3500
3501         #[cfg(any(test, feature = "_test_utils"))]
3502         pub fn get_persistence_condvar_value(&self) -> bool {
3503                 let mutcond = &self.persistence_notifier.persistence_lock;
3504                 let &(ref mtx, _) = mutcond;
3505                 let guard = mtx.lock().unwrap();
3506                 *guard
3507         }
3508 }
3509
3510 impl<Signer: Sign, M: Deref + Sync + Send, T: Deref + Sync + Send, K: Deref + Sync + Send, F: Deref + Sync + Send, L: Deref + Sync + Send>
3511         ChannelMessageHandler for ChannelManager<Signer, M, T, K, F, L>
3512         where M::Target: chain::Watch<Signer>,
3513         T::Target: BroadcasterInterface,
3514         K::Target: KeysInterface<Signer = Signer>,
3515         F::Target: FeeEstimator,
3516         L::Target: Logger,
3517 {
3518         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::OpenChannel) {
3519                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3520                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, their_features, msg), *counterparty_node_id);
3521         }
3522
3523         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::AcceptChannel) {
3524                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3525                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, their_features, msg), *counterparty_node_id);
3526         }
3527
3528         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
3529                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3530                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
3531         }
3532
3533         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
3534                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3535                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
3536         }
3537
3538         fn handle_funding_locked(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingLocked) {
3539                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3540                 let _ = handle_error!(self, self.internal_funding_locked(counterparty_node_id, msg), *counterparty_node_id);
3541         }
3542
3543         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, their_features: &InitFeatures, msg: &msgs::Shutdown) {
3544                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3545                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, their_features, msg), *counterparty_node_id);
3546         }
3547
3548         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
3549                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3550                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
3551         }
3552
3553         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
3554                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3555                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
3556         }
3557
3558         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
3559                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3560                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
3561         }
3562
3563         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
3564                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3565                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
3566         }
3567
3568         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
3569                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3570                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
3571         }
3572
3573         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
3574                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3575                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
3576         }
3577
3578         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
3579                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3580                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
3581         }
3582
3583         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
3584                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3585                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
3586         }
3587
3588         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
3589                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3590                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
3591         }
3592
3593         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
3594                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3595                 let _ = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id);
3596         }
3597
3598         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
3599                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3600                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
3601         }
3602
3603         fn peer_disconnected(&self, counterparty_node_id: &PublicKey, no_connection_possible: bool) {
3604                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3605                 let mut failed_channels = Vec::new();
3606                 let mut failed_payments = Vec::new();
3607                 let mut no_channels_remain = true;
3608                 {
3609                         let mut channel_state_lock = self.channel_state.lock().unwrap();
3610                         let channel_state = &mut *channel_state_lock;
3611                         let short_to_id = &mut channel_state.short_to_id;
3612                         let pending_msg_events = &mut channel_state.pending_msg_events;
3613                         if no_connection_possible {
3614                                 log_debug!(self.logger, "Failing all channels with {} due to no_connection_possible", log_pubkey!(counterparty_node_id));
3615                                 channel_state.by_id.retain(|_, chan| {
3616                                         if chan.get_counterparty_node_id() == *counterparty_node_id {
3617                                                 if let Some(short_id) = chan.get_short_channel_id() {
3618                                                         short_to_id.remove(&short_id);
3619                                                 }
3620                                                 failed_channels.push(chan.force_shutdown(true));
3621                                                 if let Ok(update) = self.get_channel_update(&chan) {
3622                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3623                                                                 msg: update
3624                                                         });
3625                                                 }
3626                                                 false
3627                                         } else {
3628                                                 true
3629                                         }
3630                                 });
3631                         } else {
3632                                 log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates", log_pubkey!(counterparty_node_id));
3633                                 channel_state.by_id.retain(|_, chan| {
3634                                         if chan.get_counterparty_node_id() == *counterparty_node_id {
3635                                                 // Note that currently on channel reestablish we assert that there are no
3636                                                 // holding cell add-HTLCs, so if in the future we stop removing uncommitted HTLCs
3637                                                 // on peer disconnect here, there will need to be corresponding changes in
3638                                                 // reestablish logic.
3639                                                 let failed_adds = chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
3640                                                 chan.to_disabled_marked();
3641                                                 if !failed_adds.is_empty() {
3642                                                         let chan_update = self.get_channel_update(&chan).map(|u| u.encode_with_len()).unwrap(); // Cannot add/recv HTLCs before we have a short_id so unwrap is safe
3643                                                         failed_payments.push((chan_update, failed_adds));
3644                                                 }
3645                                                 if chan.is_shutdown() {
3646                                                         if let Some(short_id) = chan.get_short_channel_id() {
3647                                                                 short_to_id.remove(&short_id);
3648                                                         }
3649                                                         return false;
3650                                                 } else {
3651                                                         no_channels_remain = false;
3652                                                 }
3653                                         }
3654                                         true
3655                                 })
3656                         }
3657                         pending_msg_events.retain(|msg| {
3658                                 match msg {
3659                                         &events::MessageSendEvent::SendAcceptChannel { ref node_id, .. } => node_id != counterparty_node_id,
3660                                         &events::MessageSendEvent::SendOpenChannel { ref node_id, .. } => node_id != counterparty_node_id,
3661                                         &events::MessageSendEvent::SendFundingCreated { ref node_id, .. } => node_id != counterparty_node_id,
3662                                         &events::MessageSendEvent::SendFundingSigned { ref node_id, .. } => node_id != counterparty_node_id,
3663                                         &events::MessageSendEvent::SendFundingLocked { ref node_id, .. } => node_id != counterparty_node_id,
3664                                         &events::MessageSendEvent::SendAnnouncementSignatures { ref node_id, .. } => node_id != counterparty_node_id,
3665                                         &events::MessageSendEvent::UpdateHTLCs { ref node_id, .. } => node_id != counterparty_node_id,
3666                                         &events::MessageSendEvent::SendRevokeAndACK { ref node_id, .. } => node_id != counterparty_node_id,
3667                                         &events::MessageSendEvent::SendClosingSigned { ref node_id, .. } => node_id != counterparty_node_id,
3668                                         &events::MessageSendEvent::SendShutdown { ref node_id, .. } => node_id != counterparty_node_id,
3669                                         &events::MessageSendEvent::SendChannelReestablish { ref node_id, .. } => node_id != counterparty_node_id,
3670                                         &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
3671                                         &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
3672                                         &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
3673                                         &events::MessageSendEvent::HandleError { ref node_id, .. } => node_id != counterparty_node_id,
3674                                         &events::MessageSendEvent::PaymentFailureNetworkUpdate { .. } => true,
3675                                         &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
3676                                         &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
3677                                         &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
3678                                 }
3679                         });
3680                 }
3681                 if no_channels_remain {
3682                         self.per_peer_state.write().unwrap().remove(counterparty_node_id);
3683                 }
3684
3685                 for failure in failed_channels.drain(..) {
3686                         self.finish_force_close_channel(failure);
3687                 }
3688                 for (chan_update, mut htlc_sources) in failed_payments {
3689                         for (htlc_source, payment_hash) in htlc_sources.drain(..) {
3690                                 self.fail_htlc_backwards_internal(self.channel_state.lock().unwrap(), htlc_source, &payment_hash, HTLCFailReason::Reason { failure_code: 0x1000 | 7, data: chan_update.clone() });
3691                         }
3692                 }
3693         }
3694
3695         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init) {
3696                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
3697
3698                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3699
3700                 {
3701                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
3702                         match peer_state_lock.entry(counterparty_node_id.clone()) {
3703                                 hash_map::Entry::Vacant(e) => {
3704                                         e.insert(Mutex::new(PeerState {
3705                                                 latest_features: init_msg.features.clone(),
3706                                         }));
3707                                 },
3708                                 hash_map::Entry::Occupied(e) => {
3709                                         e.get().lock().unwrap().latest_features = init_msg.features.clone();
3710                                 },
3711                         }
3712                 }
3713
3714                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3715                 let channel_state = &mut *channel_state_lock;
3716                 let pending_msg_events = &mut channel_state.pending_msg_events;
3717                 channel_state.by_id.retain(|_, chan| {
3718                         if chan.get_counterparty_node_id() == *counterparty_node_id {
3719                                 if !chan.have_received_message() {
3720                                         // If we created this (outbound) channel while we were disconnected from the
3721                                         // peer we probably failed to send the open_channel message, which is now
3722                                         // lost. We can't have had anything pending related to this channel, so we just
3723                                         // drop it.
3724                                         false
3725                                 } else {
3726                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
3727                                                 node_id: chan.get_counterparty_node_id(),
3728                                                 msg: chan.get_channel_reestablish(&self.logger),
3729                                         });
3730                                         true
3731                                 }
3732                         } else { true }
3733                 });
3734                 //TODO: Also re-broadcast announcement_signatures
3735         }
3736
3737         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
3738                 let _persistence_guard = PersistenceNotifierGuard::new(&self.total_consistency_lock, &self.persistence_notifier);
3739
3740                 if msg.channel_id == [0; 32] {
3741                         for chan in self.list_channels() {
3742                                 if chan.remote_network_id == *counterparty_node_id {
3743                                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
3744                                         let _ = self.force_close_channel_with_peer(&chan.channel_id, Some(counterparty_node_id));
3745                                 }
3746                         }
3747                 } else {
3748                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
3749                         let _ = self.force_close_channel_with_peer(&msg.channel_id, Some(counterparty_node_id));
3750                 }
3751         }
3752 }
3753
3754 /// Used to signal to the ChannelManager persister that the manager needs to be re-persisted to
3755 /// disk/backups, through `await_persistable_update_timeout` and `await_persistable_update`.
3756 struct PersistenceNotifier {
3757         /// Users won't access the persistence_lock directly, but rather wait on its bool using
3758         /// `wait_timeout` and `wait`.
3759         persistence_lock: (Mutex<bool>, Condvar),
3760 }
3761
3762 impl PersistenceNotifier {
3763         fn new() -> Self {
3764                 Self {
3765                         persistence_lock: (Mutex::new(false), Condvar::new()),
3766                 }
3767         }
3768
3769         fn wait(&self) {
3770                 loop {
3771                         let &(ref mtx, ref cvar) = &self.persistence_lock;
3772                         let mut guard = mtx.lock().unwrap();
3773                         guard = cvar.wait(guard).unwrap();
3774                         let result = *guard;
3775                         if result {
3776                                 *guard = false;
3777                                 return
3778                         }
3779                 }
3780         }
3781
3782         #[cfg(any(test, feature = "allow_wallclock_use"))]
3783         fn wait_timeout(&self, max_wait: Duration) -> bool {
3784                 let current_time = Instant::now();
3785                 loop {
3786                         let &(ref mtx, ref cvar) = &self.persistence_lock;
3787                         let mut guard = mtx.lock().unwrap();
3788                         guard = cvar.wait_timeout(guard, max_wait).unwrap().0;
3789                         // Due to spurious wakeups that can happen on `wait_timeout`, here we need to check if the
3790                         // desired wait time has actually passed, and if not then restart the loop with a reduced wait
3791                         // time. Note that this logic can be highly simplified through the use of
3792                         // `Condvar::wait_while` and `Condvar::wait_timeout_while`, if and when our MSRV is raised to
3793                         // 1.42.0.
3794                         let elapsed = current_time.elapsed();
3795                         let result = *guard;
3796                         if result || elapsed >= max_wait {
3797                                 *guard = false;
3798                                 return result;
3799                         }
3800                         match max_wait.checked_sub(elapsed) {
3801                                 None => return result,
3802                                 Some(_) => continue
3803                         }
3804                 }
3805         }
3806
3807         // Signal to the ChannelManager persister that there are updates necessitating persisting to disk.
3808         fn notify(&self) {
3809                 let &(ref persist_mtx, ref cnd) = &self.persistence_lock;
3810                 let mut persistence_lock = persist_mtx.lock().unwrap();
3811                 *persistence_lock = true;
3812                 mem::drop(persistence_lock);
3813                 cnd.notify_all();
3814         }
3815 }
3816
3817 const SERIALIZATION_VERSION: u8 = 1;
3818 const MIN_SERIALIZATION_VERSION: u8 = 1;
3819
3820 impl Writeable for PendingHTLCInfo {
3821         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
3822                 match &self.routing {
3823                         &PendingHTLCRouting::Forward { ref onion_packet, ref short_channel_id } => {
3824                                 0u8.write(writer)?;
3825                                 onion_packet.write(writer)?;
3826                                 short_channel_id.write(writer)?;
3827                         },
3828                         &PendingHTLCRouting::Receive { ref payment_data, ref incoming_cltv_expiry } => {
3829                                 1u8.write(writer)?;
3830                                 payment_data.write(writer)?;
3831                                 incoming_cltv_expiry.write(writer)?;
3832                         },
3833                 }
3834                 self.incoming_shared_secret.write(writer)?;
3835                 self.payment_hash.write(writer)?;
3836                 self.amt_to_forward.write(writer)?;
3837                 self.outgoing_cltv_value.write(writer)?;
3838                 Ok(())
3839         }
3840 }
3841
3842 impl Readable for PendingHTLCInfo {
3843         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<PendingHTLCInfo, DecodeError> {
3844                 Ok(PendingHTLCInfo {
3845                         routing: match Readable::read(reader)? {
3846                                 0u8 => PendingHTLCRouting::Forward {
3847                                         onion_packet: Readable::read(reader)?,
3848                                         short_channel_id: Readable::read(reader)?,
3849                                 },
3850                                 1u8 => PendingHTLCRouting::Receive {
3851                                         payment_data: Readable::read(reader)?,
3852                                         incoming_cltv_expiry: Readable::read(reader)?,
3853                                 },
3854                                 _ => return Err(DecodeError::InvalidValue),
3855                         },
3856                         incoming_shared_secret: Readable::read(reader)?,
3857                         payment_hash: Readable::read(reader)?,
3858                         amt_to_forward: Readable::read(reader)?,
3859                         outgoing_cltv_value: Readable::read(reader)?,
3860                 })
3861         }
3862 }
3863
3864 impl Writeable for HTLCFailureMsg {
3865         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
3866                 match self {
3867                         &HTLCFailureMsg::Relay(ref fail_msg) => {
3868                                 0u8.write(writer)?;
3869                                 fail_msg.write(writer)?;
3870                         },
3871                         &HTLCFailureMsg::Malformed(ref fail_msg) => {
3872                                 1u8.write(writer)?;
3873                                 fail_msg.write(writer)?;
3874                         }
3875                 }
3876                 Ok(())
3877         }
3878 }
3879
3880 impl Readable for HTLCFailureMsg {
3881         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<HTLCFailureMsg, DecodeError> {
3882                 match <u8 as Readable>::read(reader)? {
3883                         0 => Ok(HTLCFailureMsg::Relay(Readable::read(reader)?)),
3884                         1 => Ok(HTLCFailureMsg::Malformed(Readable::read(reader)?)),
3885                         _ => Err(DecodeError::InvalidValue),
3886                 }
3887         }
3888 }
3889
3890 impl Writeable for PendingHTLCStatus {
3891         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
3892                 match self {
3893                         &PendingHTLCStatus::Forward(ref forward_info) => {
3894                                 0u8.write(writer)?;
3895                                 forward_info.write(writer)?;
3896                         },
3897                         &PendingHTLCStatus::Fail(ref fail_msg) => {
3898                                 1u8.write(writer)?;
3899                                 fail_msg.write(writer)?;
3900                         }
3901                 }
3902                 Ok(())
3903         }
3904 }
3905
3906 impl Readable for PendingHTLCStatus {
3907         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<PendingHTLCStatus, DecodeError> {
3908                 match <u8 as Readable>::read(reader)? {
3909                         0 => Ok(PendingHTLCStatus::Forward(Readable::read(reader)?)),
3910                         1 => Ok(PendingHTLCStatus::Fail(Readable::read(reader)?)),
3911                         _ => Err(DecodeError::InvalidValue),
3912                 }
3913         }
3914 }
3915
3916 impl_writeable!(HTLCPreviousHopData, 0, {
3917         short_channel_id,
3918         outpoint,
3919         htlc_id,
3920         incoming_packet_shared_secret
3921 });
3922
3923 impl_writeable!(ClaimableHTLC, 0, {
3924         prev_hop,
3925         value,
3926         payment_data,
3927         cltv_expiry
3928 });
3929
3930 impl Writeable for HTLCSource {
3931         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
3932                 match self {
3933                         &HTLCSource::PreviousHopData(ref hop_data) => {
3934                                 0u8.write(writer)?;
3935                                 hop_data.write(writer)?;
3936                         },
3937                         &HTLCSource::OutboundRoute { ref path, ref session_priv, ref first_hop_htlc_msat } => {
3938                                 1u8.write(writer)?;
3939                                 path.write(writer)?;
3940                                 session_priv.write(writer)?;
3941                                 first_hop_htlc_msat.write(writer)?;
3942                         }
3943                 }
3944                 Ok(())
3945         }
3946 }
3947
3948 impl Readable for HTLCSource {
3949         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<HTLCSource, DecodeError> {
3950                 match <u8 as Readable>::read(reader)? {
3951                         0 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
3952                         1 => Ok(HTLCSource::OutboundRoute {
3953                                 path: Readable::read(reader)?,
3954                                 session_priv: Readable::read(reader)?,
3955                                 first_hop_htlc_msat: Readable::read(reader)?,
3956                         }),
3957                         _ => Err(DecodeError::InvalidValue),
3958                 }
3959         }
3960 }
3961
3962 impl Writeable for HTLCFailReason {
3963         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
3964                 match self {
3965                         &HTLCFailReason::LightningError { ref err } => {
3966                                 0u8.write(writer)?;
3967                                 err.write(writer)?;
3968                         },
3969                         &HTLCFailReason::Reason { ref failure_code, ref data } => {
3970                                 1u8.write(writer)?;
3971                                 failure_code.write(writer)?;
3972                                 data.write(writer)?;
3973                         }
3974                 }
3975                 Ok(())
3976         }
3977 }
3978
3979 impl Readable for HTLCFailReason {
3980         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<HTLCFailReason, DecodeError> {
3981                 match <u8 as Readable>::read(reader)? {
3982                         0 => Ok(HTLCFailReason::LightningError { err: Readable::read(reader)? }),
3983                         1 => Ok(HTLCFailReason::Reason {
3984                                 failure_code: Readable::read(reader)?,
3985                                 data: Readable::read(reader)?,
3986                         }),
3987                         _ => Err(DecodeError::InvalidValue),
3988                 }
3989         }
3990 }
3991
3992 impl Writeable for HTLCForwardInfo {
3993         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
3994                 match self {
3995                         &HTLCForwardInfo::AddHTLC { ref prev_short_channel_id, ref prev_funding_outpoint, ref prev_htlc_id, ref forward_info } => {
3996                                 0u8.write(writer)?;
3997                                 prev_short_channel_id.write(writer)?;
3998                                 prev_funding_outpoint.write(writer)?;
3999                                 prev_htlc_id.write(writer)?;
4000                                 forward_info.write(writer)?;
4001                         },
4002                         &HTLCForwardInfo::FailHTLC { ref htlc_id, ref err_packet } => {
4003                                 1u8.write(writer)?;
4004                                 htlc_id.write(writer)?;
4005                                 err_packet.write(writer)?;
4006                         },
4007                 }
4008                 Ok(())
4009         }
4010 }
4011
4012 impl Readable for HTLCForwardInfo {
4013         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<HTLCForwardInfo, DecodeError> {
4014                 match <u8 as Readable>::read(reader)? {
4015                         0 => Ok(HTLCForwardInfo::AddHTLC {
4016                                 prev_short_channel_id: Readable::read(reader)?,
4017                                 prev_funding_outpoint: Readable::read(reader)?,
4018                                 prev_htlc_id: Readable::read(reader)?,
4019                                 forward_info: Readable::read(reader)?,
4020                         }),
4021                         1 => Ok(HTLCForwardInfo::FailHTLC {
4022                                 htlc_id: Readable::read(reader)?,
4023                                 err_packet: Readable::read(reader)?,
4024                         }),
4025                         _ => Err(DecodeError::InvalidValue),
4026                 }
4027         }
4028 }
4029
4030 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> Writeable for ChannelManager<Signer, M, T, K, F, L>
4031         where M::Target: chain::Watch<Signer>,
4032         T::Target: BroadcasterInterface,
4033         K::Target: KeysInterface<Signer = Signer>,
4034         F::Target: FeeEstimator,
4035         L::Target: Logger,
4036 {
4037         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
4038                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
4039
4040                 writer.write_all(&[SERIALIZATION_VERSION; 1])?;
4041                 writer.write_all(&[MIN_SERIALIZATION_VERSION; 1])?;
4042
4043                 self.genesis_hash.write(writer)?;
4044                 (self.latest_block_height.load(Ordering::Acquire) as u32).write(writer)?;
4045                 self.last_block_hash.read().unwrap().write(writer)?;
4046
4047                 let channel_state = self.channel_state.lock().unwrap();
4048                 let mut unfunded_channels = 0;
4049                 for (_, channel) in channel_state.by_id.iter() {
4050                         if !channel.is_funding_initiated() {
4051                                 unfunded_channels += 1;
4052                         }
4053                 }
4054                 ((channel_state.by_id.len() - unfunded_channels) as u64).write(writer)?;
4055                 for (_, channel) in channel_state.by_id.iter() {
4056                         if channel.is_funding_initiated() {
4057                                 channel.write(writer)?;
4058                         }
4059                 }
4060
4061                 (channel_state.forward_htlcs.len() as u64).write(writer)?;
4062                 for (short_channel_id, pending_forwards) in channel_state.forward_htlcs.iter() {
4063                         short_channel_id.write(writer)?;
4064                         (pending_forwards.len() as u64).write(writer)?;
4065                         for forward in pending_forwards {
4066                                 forward.write(writer)?;
4067                         }
4068                 }
4069
4070                 (channel_state.claimable_htlcs.len() as u64).write(writer)?;
4071                 for (payment_hash, previous_hops) in channel_state.claimable_htlcs.iter() {
4072                         payment_hash.write(writer)?;
4073                         (previous_hops.len() as u64).write(writer)?;
4074                         for htlc in previous_hops.iter() {
4075                                 htlc.write(writer)?;
4076                         }
4077                 }
4078
4079                 let per_peer_state = self.per_peer_state.write().unwrap();
4080                 (per_peer_state.len() as u64).write(writer)?;
4081                 for (peer_pubkey, peer_state_mutex) in per_peer_state.iter() {
4082                         peer_pubkey.write(writer)?;
4083                         let peer_state = peer_state_mutex.lock().unwrap();
4084                         peer_state.latest_features.write(writer)?;
4085                 }
4086
4087                 let events = self.pending_events.lock().unwrap();
4088                 (events.len() as u64).write(writer)?;
4089                 for event in events.iter() {
4090                         event.write(writer)?;
4091                 }
4092
4093                 let background_events = self.pending_background_events.lock().unwrap();
4094                 (background_events.len() as u64).write(writer)?;
4095                 for event in background_events.iter() {
4096                         match event {
4097                                 BackgroundEvent::ClosingMonitorUpdate((funding_txo, monitor_update)) => {
4098                                         0u8.write(writer)?;
4099                                         funding_txo.write(writer)?;
4100                                         monitor_update.write(writer)?;
4101                                 },
4102                         }
4103                 }
4104
4105                 (self.last_node_announcement_serial.load(Ordering::Acquire) as u32).write(writer)?;
4106
4107                 Ok(())
4108         }
4109 }
4110
4111 /// Arguments for the creation of a ChannelManager that are not deserialized.
4112 ///
4113 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
4114 /// is:
4115 /// 1) Deserialize all stored ChannelMonitors.
4116 /// 2) Deserialize the ChannelManager by filling in this struct and calling:
4117 ///    <(BlockHash, ChannelManager)>::read(reader, args)
4118 ///    This may result in closing some Channels if the ChannelMonitor is newer than the stored
4119 ///    ChannelManager state to ensure no loss of funds. Thus, transactions may be broadcasted.
4120 /// 3) If you are not fetching full blocks, register all relevant ChannelMonitor outpoints the same
4121 ///    way you would handle a `chain::Filter` call using ChannelMonitor::get_outputs_to_watch() and
4122 ///    ChannelMonitor::get_funding_txo().
4123 /// 4) Reconnect blocks on your ChannelMonitors.
4124 /// 5) Disconnect/connect blocks on the ChannelManager.
4125 /// 6) Move the ChannelMonitors into your local chain::Watch.
4126 ///
4127 /// Note that the ordering of #4-6 is not of importance, however all three must occur before you
4128 /// call any other methods on the newly-deserialized ChannelManager.
4129 ///
4130 /// Note that because some channels may be closed during deserialization, it is critical that you
4131 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
4132 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
4133 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
4134 /// not force-close the same channels but consider them live), you may end up revoking a state for
4135 /// which you've already broadcasted the transaction.
4136 pub struct ChannelManagerReadArgs<'a, Signer: 'a + Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
4137         where M::Target: chain::Watch<Signer>,
4138         T::Target: BroadcasterInterface,
4139         K::Target: KeysInterface<Signer = Signer>,
4140         F::Target: FeeEstimator,
4141         L::Target: Logger,
4142 {
4143         /// The keys provider which will give us relevant keys. Some keys will be loaded during
4144         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
4145         /// signing data.
4146         pub keys_manager: K,
4147
4148         /// The fee_estimator for use in the ChannelManager in the future.
4149         ///
4150         /// No calls to the FeeEstimator will be made during deserialization.
4151         pub fee_estimator: F,
4152         /// The chain::Watch for use in the ChannelManager in the future.
4153         ///
4154         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
4155         /// you have deserialized ChannelMonitors separately and will add them to your
4156         /// chain::Watch after deserializing this ChannelManager.
4157         pub chain_monitor: M,
4158
4159         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
4160         /// used to broadcast the latest local commitment transactions of channels which must be
4161         /// force-closed during deserialization.
4162         pub tx_broadcaster: T,
4163         /// The Logger for use in the ChannelManager and which may be used to log information during
4164         /// deserialization.
4165         pub logger: L,
4166         /// Default settings used for new channels. Any existing channels will continue to use the
4167         /// runtime settings which were stored when the ChannelManager was serialized.
4168         pub default_config: UserConfig,
4169
4170         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
4171         /// value.get_funding_txo() should be the key).
4172         ///
4173         /// If a monitor is inconsistent with the channel state during deserialization the channel will
4174         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
4175         /// is true for missing channels as well. If there is a monitor missing for which we find
4176         /// channel data Err(DecodeError::InvalidValue) will be returned.
4177         ///
4178         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
4179         /// this struct.
4180         ///
4181         /// (C-not exported) because we have no HashMap bindings
4182         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<Signer>>,
4183 }
4184
4185 impl<'a, Signer: 'a + Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
4186                 ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>
4187         where M::Target: chain::Watch<Signer>,
4188                 T::Target: BroadcasterInterface,
4189                 K::Target: KeysInterface<Signer = Signer>,
4190                 F::Target: FeeEstimator,
4191                 L::Target: Logger,
4192         {
4193         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
4194         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
4195         /// populate a HashMap directly from C.
4196         pub fn new(keys_manager: K, fee_estimator: F, chain_monitor: M, tx_broadcaster: T, logger: L, default_config: UserConfig,
4197                         mut channel_monitors: Vec<&'a mut ChannelMonitor<Signer>>) -> Self {
4198                 Self {
4199                         keys_manager, fee_estimator, chain_monitor, tx_broadcaster, logger, default_config,
4200                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
4201                 }
4202         }
4203 }
4204
4205 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
4206 // SipmleArcChannelManager type:
4207 impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
4208         ReadableArgs<ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>> for (BlockHash, Arc<ChannelManager<Signer, M, T, K, F, L>>)
4209         where M::Target: chain::Watch<Signer>,
4210         T::Target: BroadcasterInterface,
4211         K::Target: KeysInterface<Signer = Signer>,
4212         F::Target: FeeEstimator,
4213         L::Target: Logger,
4214 {
4215         fn read<R: ::std::io::Read>(reader: &mut R, args: ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>) -> Result<Self, DecodeError> {
4216                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<Signer, M, T, K, F, L>)>::read(reader, args)?;
4217                 Ok((blockhash, Arc::new(chan_manager)))
4218         }
4219 }
4220
4221 impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
4222         ReadableArgs<ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>> for (BlockHash, ChannelManager<Signer, M, T, K, F, L>)
4223         where M::Target: chain::Watch<Signer>,
4224         T::Target: BroadcasterInterface,
4225         K::Target: KeysInterface<Signer = Signer>,
4226         F::Target: FeeEstimator,
4227         L::Target: Logger,
4228 {
4229         fn read<R: ::std::io::Read>(reader: &mut R, mut args: ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>) -> Result<Self, DecodeError> {
4230                 let _ver: u8 = Readable::read(reader)?;
4231                 let min_ver: u8 = Readable::read(reader)?;
4232                 if min_ver > SERIALIZATION_VERSION {
4233                         return Err(DecodeError::UnknownVersion);
4234                 }
4235
4236                 let genesis_hash: BlockHash = Readable::read(reader)?;
4237                 let latest_block_height: u32 = Readable::read(reader)?;
4238                 let last_block_hash: BlockHash = Readable::read(reader)?;
4239
4240                 let mut failed_htlcs = Vec::new();
4241
4242                 let channel_count: u64 = Readable::read(reader)?;
4243                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
4244                 let mut by_id = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
4245                 let mut short_to_id = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
4246                 for _ in 0..channel_count {
4247                         let mut channel: Channel<Signer> = Channel::read(reader, &args.keys_manager)?;
4248                         let funding_txo = channel.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
4249                         funding_txo_set.insert(funding_txo.clone());
4250                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
4251                                 if channel.get_cur_holder_commitment_transaction_number() < monitor.get_cur_holder_commitment_number() ||
4252                                                 channel.get_revoked_counterparty_commitment_transaction_number() < monitor.get_min_seen_secret() ||
4253                                                 channel.get_cur_counterparty_commitment_transaction_number() < monitor.get_cur_counterparty_commitment_number() ||
4254                                                 channel.get_latest_monitor_update_id() > monitor.get_latest_update_id() {
4255                                         // If the channel is ahead of the monitor, return InvalidValue:
4256                                         return Err(DecodeError::InvalidValue);
4257                                 } else if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
4258                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
4259                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
4260                                                 channel.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
4261                                         // But if the channel is behind of the monitor, close the channel:
4262                                         let (_, mut new_failed_htlcs) = channel.force_shutdown(true);
4263                                         failed_htlcs.append(&mut new_failed_htlcs);
4264                                         monitor.broadcast_latest_holder_commitment_txn(&args.tx_broadcaster, &args.logger);
4265                                 } else {
4266                                         if let Some(short_channel_id) = channel.get_short_channel_id() {
4267                                                 short_to_id.insert(short_channel_id, channel.channel_id());
4268                                         }
4269                                         by_id.insert(channel.channel_id(), channel);
4270                                 }
4271                         } else {
4272                                 return Err(DecodeError::InvalidValue);
4273                         }
4274                 }
4275
4276                 for (ref funding_txo, ref mut monitor) in args.channel_monitors.iter_mut() {
4277                         if !funding_txo_set.contains(funding_txo) {
4278                                 monitor.broadcast_latest_holder_commitment_txn(&args.tx_broadcaster, &args.logger);
4279                         }
4280                 }
4281
4282                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
4283                 let forward_htlcs_count: u64 = Readable::read(reader)?;
4284                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
4285                 for _ in 0..forward_htlcs_count {
4286                         let short_channel_id = Readable::read(reader)?;
4287                         let pending_forwards_count: u64 = Readable::read(reader)?;
4288                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
4289                         for _ in 0..pending_forwards_count {
4290                                 pending_forwards.push(Readable::read(reader)?);
4291                         }
4292                         forward_htlcs.insert(short_channel_id, pending_forwards);
4293                 }
4294
4295                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
4296                 let mut claimable_htlcs = HashMap::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
4297                 for _ in 0..claimable_htlcs_count {
4298                         let payment_hash = Readable::read(reader)?;
4299                         let previous_hops_len: u64 = Readable::read(reader)?;
4300                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
4301                         for _ in 0..previous_hops_len {
4302                                 previous_hops.push(Readable::read(reader)?);
4303                         }
4304                         claimable_htlcs.insert(payment_hash, previous_hops);
4305                 }
4306
4307                 let peer_count: u64 = Readable::read(reader)?;
4308                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState>)>()));
4309                 for _ in 0..peer_count {
4310                         let peer_pubkey = Readable::read(reader)?;
4311                         let peer_state = PeerState {
4312                                 latest_features: Readable::read(reader)?,
4313                         };
4314                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
4315                 }
4316
4317                 let event_count: u64 = Readable::read(reader)?;
4318                 let mut pending_events_read: Vec<events::Event> = Vec::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<events::Event>()));
4319                 for _ in 0..event_count {
4320                         match MaybeReadable::read(reader)? {
4321                                 Some(event) => pending_events_read.push(event),
4322                                 None => continue,
4323                         }
4324                 }
4325
4326                 let background_event_count: u64 = Readable::read(reader)?;
4327                 let mut pending_background_events_read: Vec<BackgroundEvent> = Vec::with_capacity(cmp::min(background_event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<BackgroundEvent>()));
4328                 for _ in 0..background_event_count {
4329                         match <u8 as Readable>::read(reader)? {
4330                                 0 => pending_background_events_read.push(BackgroundEvent::ClosingMonitorUpdate((Readable::read(reader)?, Readable::read(reader)?))),
4331                                 _ => return Err(DecodeError::InvalidValue),
4332                         }
4333                 }
4334
4335                 let last_node_announcement_serial: u32 = Readable::read(reader)?;
4336
4337                 let mut secp_ctx = Secp256k1::new();
4338                 secp_ctx.seeded_randomize(&args.keys_manager.get_secure_random_bytes());
4339
4340                 let channel_manager = ChannelManager {
4341                         genesis_hash,
4342                         fee_estimator: args.fee_estimator,
4343                         chain_monitor: args.chain_monitor,
4344                         tx_broadcaster: args.tx_broadcaster,
4345
4346                         latest_block_height: AtomicUsize::new(latest_block_height as usize),
4347                         last_block_hash: RwLock::new(last_block_hash),
4348                         secp_ctx,
4349
4350                         channel_state: Mutex::new(ChannelHolder {
4351                                 by_id,
4352                                 short_to_id,
4353                                 forward_htlcs,
4354                                 claimable_htlcs,
4355                                 pending_msg_events: Vec::new(),
4356                         }),
4357                         our_network_key: args.keys_manager.get_node_secret(),
4358
4359                         last_node_announcement_serial: AtomicUsize::new(last_node_announcement_serial as usize),
4360
4361                         per_peer_state: RwLock::new(per_peer_state),
4362
4363                         pending_events: Mutex::new(pending_events_read),
4364                         pending_background_events: Mutex::new(pending_background_events_read),
4365                         total_consistency_lock: RwLock::new(()),
4366                         persistence_notifier: PersistenceNotifier::new(),
4367
4368                         keys_manager: args.keys_manager,
4369                         logger: args.logger,
4370                         default_configuration: args.default_config,
4371                 };
4372
4373                 for htlc_source in failed_htlcs.drain(..) {
4374                         channel_manager.fail_htlc_backwards_internal(channel_manager.channel_state.lock().unwrap(), htlc_source.0, &htlc_source.1, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() });
4375                 }
4376
4377                 //TODO: Broadcast channel update for closed channels, but only after we've made a
4378                 //connection or two.
4379
4380                 Ok((last_block_hash.clone(), channel_manager))
4381         }
4382 }
4383
4384 #[cfg(test)]
4385 mod tests {
4386         use ln::channelmanager::PersistenceNotifier;
4387         use std::sync::Arc;
4388         use std::sync::atomic::{AtomicBool, Ordering};
4389         use std::thread;
4390         use std::time::Duration;
4391
4392         #[test]
4393         fn test_wait_timeout() {
4394                 let persistence_notifier = Arc::new(PersistenceNotifier::new());
4395                 let thread_notifier = Arc::clone(&persistence_notifier);
4396
4397                 let exit_thread = Arc::new(AtomicBool::new(false));
4398                 let exit_thread_clone = exit_thread.clone();
4399                 thread::spawn(move || {
4400                         loop {
4401                                 let &(ref persist_mtx, ref cnd) = &thread_notifier.persistence_lock;
4402                                 let mut persistence_lock = persist_mtx.lock().unwrap();
4403                                 *persistence_lock = true;
4404                                 cnd.notify_all();
4405
4406                                 if exit_thread_clone.load(Ordering::SeqCst) {
4407                                         break
4408                                 }
4409                         }
4410                 });
4411
4412                 // Check that we can block indefinitely until updates are available.
4413                 let _ = persistence_notifier.wait();
4414
4415                 // Check that the PersistenceNotifier will return after the given duration if updates are
4416                 // available.
4417                 loop {
4418                         if persistence_notifier.wait_timeout(Duration::from_millis(100)) {
4419                                 break
4420                         }
4421                 }
4422
4423                 exit_thread.store(true, Ordering::SeqCst);
4424
4425                 // Check that the PersistenceNotifier will return after the given duration even if no updates
4426                 // are available.
4427                 loop {
4428                         if !persistence_notifier.wait_timeout(Duration::from_millis(100)) {
4429                                 break
4430                         }
4431                 }
4432         }
4433 }