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