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