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