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