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