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