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