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