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