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