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