Track a `counter` for each node in our network graph
[rust-lightning] / lightning / src / routing / gossip.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The [`NetworkGraph`] stores the network gossip and [`P2PGossipSync`] fetches it from peers
11
12 use bitcoin::blockdata::constants::ChainHash;
13
14 use bitcoin::secp256k1::constants::PUBLIC_KEY_SIZE;
15 use bitcoin::secp256k1::{PublicKey, Verification};
16 use bitcoin::secp256k1::Secp256k1;
17 use bitcoin::secp256k1;
18
19 use bitcoin::hashes::sha256d::Hash as Sha256dHash;
20 use bitcoin::hashes::Hash;
21 use bitcoin::network::constants::Network;
22
23 use crate::events::{MessageSendEvent, MessageSendEventsProvider};
24 use crate::ln::ChannelId;
25 use crate::ln::features::{ChannelFeatures, NodeFeatures, InitFeatures};
26 use crate::ln::msgs::{DecodeError, ErrorAction, Init, LightningError, RoutingMessageHandler, SocketAddress, MAX_VALUE_MSAT};
27 use crate::ln::msgs::{ChannelAnnouncement, ChannelUpdate, NodeAnnouncement, GossipTimestampFilter};
28 use crate::ln::msgs::{QueryChannelRange, ReplyChannelRange, QueryShortChannelIds, ReplyShortChannelIdsEnd};
29 use crate::ln::msgs;
30 use crate::routing::utxo::{self, UtxoLookup, UtxoResolver};
31 use crate::util::ser::{Readable, ReadableArgs, Writeable, Writer, MaybeReadable};
32 use crate::util::logger::{Logger, Level};
33 use crate::util::scid_utils::{block_from_scid, scid_from_parts, MAX_SCID_BLOCK};
34 use crate::util::string::PrintableString;
35 use crate::util::indexed_map::{IndexedMap, Entry as IndexedMapEntry};
36
37 use crate::io;
38 use crate::io_extras::{copy, sink};
39 use crate::prelude::*;
40 use core::{cmp, fmt};
41 use core::convert::TryFrom;
42 use crate::sync::{RwLock, RwLockReadGuard, LockTestExt};
43 use core::sync::atomic::{AtomicUsize, Ordering};
44 use crate::sync::Mutex;
45 use core::ops::{Bound, Deref};
46 use core::str::FromStr;
47
48 #[cfg(feature = "std")]
49 use std::time::{SystemTime, UNIX_EPOCH};
50
51 /// We remove stale channel directional info two weeks after the last update, per BOLT 7's
52 /// suggestion.
53 const STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS: u64 = 60 * 60 * 24 * 14;
54
55 /// We stop tracking the removal of permanently failed nodes and channels one week after removal
56 const REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS: u64 = 60 * 60 * 24 * 7;
57
58 /// The maximum number of extra bytes which we do not understand in a gossip message before we will
59 /// refuse to relay the message.
60 const MAX_EXCESS_BYTES_FOR_RELAY: usize = 1024;
61
62 /// Maximum number of short_channel_ids that will be encoded in one gossip reply message.
63 /// This value ensures a reply fits within the 65k payload limit and is consistent with other implementations.
64 const MAX_SCIDS_PER_REPLY: usize = 8000;
65
66 /// Represents the compressed public key of a node
67 #[derive(Clone, Copy)]
68 pub struct NodeId([u8; PUBLIC_KEY_SIZE]);
69
70 impl NodeId {
71         /// Create a new NodeId from a public key
72         pub fn from_pubkey(pubkey: &PublicKey) -> Self {
73                 NodeId(pubkey.serialize())
74         }
75
76         /// Get the public key slice from this NodeId
77         pub fn as_slice(&self) -> &[u8] {
78                 &self.0
79         }
80
81         /// Get the public key as an array from this NodeId
82         pub fn as_array(&self) -> &[u8; PUBLIC_KEY_SIZE] {
83                 &self.0
84         }
85
86         /// Get the public key from this NodeId
87         pub fn as_pubkey(&self) -> Result<PublicKey, secp256k1::Error> {
88                 PublicKey::from_slice(&self.0)
89         }
90 }
91
92 impl fmt::Debug for NodeId {
93         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
94                 write!(f, "NodeId({})", crate::util::logger::DebugBytes(&self.0))
95         }
96 }
97 impl fmt::Display for NodeId {
98         fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
99                 crate::util::logger::DebugBytes(&self.0).fmt(f)
100         }
101 }
102
103 impl core::hash::Hash for NodeId {
104         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
105                 self.0.hash(hasher);
106         }
107 }
108
109 impl Eq for NodeId {}
110
111 impl PartialEq for NodeId {
112         fn eq(&self, other: &Self) -> bool {
113                 self.0[..] == other.0[..]
114         }
115 }
116
117 impl cmp::PartialOrd for NodeId {
118         fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
119                 Some(self.cmp(other))
120         }
121 }
122
123 impl Ord for NodeId {
124         fn cmp(&self, other: &Self) -> cmp::Ordering {
125                 self.0[..].cmp(&other.0[..])
126         }
127 }
128
129 impl Writeable for NodeId {
130         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
131                 writer.write_all(&self.0)?;
132                 Ok(())
133         }
134 }
135
136 impl Readable for NodeId {
137         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
138                 let mut buf = [0; PUBLIC_KEY_SIZE];
139                 reader.read_exact(&mut buf)?;
140                 Ok(Self(buf))
141         }
142 }
143
144 impl From<PublicKey> for NodeId {
145         fn from(pubkey: PublicKey) -> Self {
146                 Self::from_pubkey(&pubkey)
147         }
148 }
149
150 impl TryFrom<NodeId> for PublicKey {
151         type Error = secp256k1::Error;
152
153         fn try_from(node_id: NodeId) -> Result<Self, Self::Error> {
154                 node_id.as_pubkey()
155         }
156 }
157
158 impl FromStr for NodeId {
159         type Err = hex::parse::HexToArrayError;
160
161         fn from_str(s: &str) -> Result<Self, Self::Err> {
162                 let data: [u8; PUBLIC_KEY_SIZE] = hex::FromHex::from_hex(s)?;
163                 Ok(NodeId(data))
164         }
165 }
166
167 /// Represents the network as nodes and channels between them
168 pub struct NetworkGraph<L: Deref> where L::Target: Logger {
169         secp_ctx: Secp256k1<secp256k1::VerifyOnly>,
170         last_rapid_gossip_sync_timestamp: Mutex<Option<u32>>,
171         chain_hash: ChainHash,
172         logger: L,
173         // Lock order: channels -> nodes
174         channels: RwLock<IndexedMap<u64, ChannelInfo>>,
175         nodes: RwLock<IndexedMap<NodeId, NodeInfo>>,
176         removed_node_counters: Mutex<Vec<u32>>,
177         next_node_counter: AtomicUsize,
178         // Lock order: removed_channels -> removed_nodes
179         //
180         // NOTE: In the following `removed_*` maps, we use seconds since UNIX epoch to track time instead
181         // of `std::time::Instant`s for a few reasons:
182         //   * We want it to be possible to do tracking in no-std environments where we can compare
183         //     a provided current UNIX timestamp with the time at which we started tracking.
184         //   * In the future, if we decide to persist these maps, they will already be serializable.
185         //   * Although we lose out on the platform's monotonic clock, the system clock in a std
186         //     environment should be practical over the time period we are considering (on the order of a
187         //     week).
188         //
189         /// Keeps track of short channel IDs for channels we have explicitly removed due to permanent
190         /// failure so that we don't resync them from gossip. Each SCID is mapped to the time (in seconds)
191         /// it was removed so that once some time passes, we can potentially resync it from gossip again.
192         removed_channels: Mutex<HashMap<u64, Option<u64>>>,
193         /// Keeps track of `NodeId`s we have explicitly removed due to permanent failure so that we don't
194         /// resync them from gossip. Each `NodeId` is mapped to the time (in seconds) it was removed so
195         /// that once some time passes, we can potentially resync it from gossip again.
196         removed_nodes: Mutex<HashMap<NodeId, Option<u64>>>,
197         /// Announcement messages which are awaiting an on-chain lookup to be processed.
198         pub(super) pending_checks: utxo::PendingChecks,
199 }
200
201 /// A read-only view of [`NetworkGraph`].
202 pub struct ReadOnlyNetworkGraph<'a> {
203         channels: RwLockReadGuard<'a, IndexedMap<u64, ChannelInfo>>,
204         nodes: RwLockReadGuard<'a, IndexedMap<NodeId, NodeInfo>>,
205 }
206
207 /// Update to the [`NetworkGraph`] based on payment failure information conveyed via the Onion
208 /// return packet by a node along the route. See [BOLT #4] for details.
209 ///
210 /// [BOLT #4]: https://github.com/lightning/bolts/blob/master/04-onion-routing.md
211 #[derive(Clone, Debug, PartialEq, Eq)]
212 pub enum NetworkUpdate {
213         /// An error indicating a `channel_update` messages should be applied via
214         /// [`NetworkGraph::update_channel`].
215         ChannelUpdateMessage {
216                 /// The update to apply via [`NetworkGraph::update_channel`].
217                 msg: ChannelUpdate,
218         },
219         /// An error indicating that a channel failed to route a payment, which should be applied via
220         /// [`NetworkGraph::channel_failed_permanent`] if permanent.
221         ChannelFailure {
222                 /// The short channel id of the closed channel.
223                 short_channel_id: u64,
224                 /// Whether the channel should be permanently removed or temporarily disabled until a new
225                 /// `channel_update` message is received.
226                 is_permanent: bool,
227         },
228         /// An error indicating that a node failed to route a payment, which should be applied via
229         /// [`NetworkGraph::node_failed_permanent`] if permanent.
230         NodeFailure {
231                 /// The node id of the failed node.
232                 node_id: PublicKey,
233                 /// Whether the node should be permanently removed from consideration or can be restored
234                 /// when a new `channel_update` message is received.
235                 is_permanent: bool,
236         }
237 }
238
239 impl_writeable_tlv_based_enum_upgradable!(NetworkUpdate,
240         (0, ChannelUpdateMessage) => {
241                 (0, msg, required),
242         },
243         (2, ChannelFailure) => {
244                 (0, short_channel_id, required),
245                 (2, is_permanent, required),
246         },
247         (4, NodeFailure) => {
248                 (0, node_id, required),
249                 (2, is_permanent, required),
250         },
251 );
252
253 /// Receives and validates network updates from peers,
254 /// stores authentic and relevant data as a network graph.
255 /// This network graph is then used for routing payments.
256 /// Provides interface to help with initial routing sync by
257 /// serving historical announcements.
258 pub struct P2PGossipSync<G: Deref<Target=NetworkGraph<L>>, U: Deref, L: Deref>
259 where U::Target: UtxoLookup, L::Target: Logger
260 {
261         network_graph: G,
262         utxo_lookup: RwLock<Option<U>>,
263         #[cfg(feature = "std")]
264         full_syncs_requested: AtomicUsize,
265         pending_events: Mutex<Vec<MessageSendEvent>>,
266         logger: L,
267 }
268
269 impl<G: Deref<Target=NetworkGraph<L>>, U: Deref, L: Deref> P2PGossipSync<G, U, L>
270 where U::Target: UtxoLookup, L::Target: Logger
271 {
272         /// Creates a new tracker of the actual state of the network of channels and nodes,
273         /// assuming an existing [`NetworkGraph`].
274         /// UTXO lookup is used to make sure announced channels exist on-chain, channel data is
275         /// correct, and the announcement is signed with channel owners' keys.
276         pub fn new(network_graph: G, utxo_lookup: Option<U>, logger: L) -> Self {
277                 P2PGossipSync {
278                         network_graph,
279                         #[cfg(feature = "std")]
280                         full_syncs_requested: AtomicUsize::new(0),
281                         utxo_lookup: RwLock::new(utxo_lookup),
282                         pending_events: Mutex::new(vec![]),
283                         logger,
284                 }
285         }
286
287         /// Adds a provider used to check new announcements. Does not affect
288         /// existing announcements unless they are updated.
289         /// Add, update or remove the provider would replace the current one.
290         pub fn add_utxo_lookup(&self, utxo_lookup: Option<U>) {
291                 *self.utxo_lookup.write().unwrap() = utxo_lookup;
292         }
293
294         /// Gets a reference to the underlying [`NetworkGraph`] which was provided in
295         /// [`P2PGossipSync::new`].
296         ///
297         /// This is not exported to bindings users as bindings don't support a reference-to-a-reference yet
298         pub fn network_graph(&self) -> &G {
299                 &self.network_graph
300         }
301
302         #[cfg(feature = "std")]
303         /// Returns true when a full routing table sync should be performed with a peer.
304         fn should_request_full_sync(&self, _node_id: &PublicKey) -> bool {
305                 //TODO: Determine whether to request a full sync based on the network map.
306                 const FULL_SYNCS_TO_REQUEST: usize = 5;
307                 if self.full_syncs_requested.load(Ordering::Acquire) < FULL_SYNCS_TO_REQUEST {
308                         self.full_syncs_requested.fetch_add(1, Ordering::AcqRel);
309                         true
310                 } else {
311                         false
312                 }
313         }
314
315         /// Used to broadcast forward gossip messages which were validated async.
316         ///
317         /// Note that this will ignore events other than `Broadcast*` or messages with too much excess
318         /// data.
319         pub(super) fn forward_gossip_msg(&self, mut ev: MessageSendEvent) {
320                 match &mut ev {
321                         MessageSendEvent::BroadcastChannelAnnouncement { msg, ref mut update_msg } => {
322                                 if msg.contents.excess_data.len() > MAX_EXCESS_BYTES_FOR_RELAY { return; }
323                                 if update_msg.as_ref()
324                                         .map(|msg| msg.contents.excess_data.len()).unwrap_or(0) > MAX_EXCESS_BYTES_FOR_RELAY
325                                 {
326                                         *update_msg = None;
327                                 }
328                         },
329                         MessageSendEvent::BroadcastChannelUpdate { msg } => {
330                                 if msg.contents.excess_data.len() > MAX_EXCESS_BYTES_FOR_RELAY { return; }
331                         },
332                         MessageSendEvent::BroadcastNodeAnnouncement { msg } => {
333                                 if msg.contents.excess_data.len() >  MAX_EXCESS_BYTES_FOR_RELAY ||
334                                    msg.contents.excess_address_data.len() > MAX_EXCESS_BYTES_FOR_RELAY ||
335                                    msg.contents.excess_data.len() + msg.contents.excess_address_data.len() > MAX_EXCESS_BYTES_FOR_RELAY
336                                 {
337                                         return;
338                                 }
339                         },
340                         _ => return,
341                 }
342                 self.pending_events.lock().unwrap().push(ev);
343         }
344 }
345
346 impl<L: Deref> NetworkGraph<L> where L::Target: Logger {
347         /// Handles any network updates originating from [`Event`]s.
348         //
349         /// Note that this will skip applying any [`NetworkUpdate::ChannelUpdateMessage`] to avoid
350         /// leaking possibly identifying information of the sender to the public network.
351         ///
352         /// [`Event`]: crate::events::Event
353         pub fn handle_network_update(&self, network_update: &NetworkUpdate) {
354                 match *network_update {
355                         NetworkUpdate::ChannelUpdateMessage { ref msg } => {
356                                 let short_channel_id = msg.contents.short_channel_id;
357                                 let is_enabled = msg.contents.flags & (1 << 1) != (1 << 1);
358                                 let status = if is_enabled { "enabled" } else { "disabled" };
359                                 log_debug!(self.logger, "Skipping application of a channel update from a payment failure. Channel {} is {}.", short_channel_id, status);
360                         },
361                         NetworkUpdate::ChannelFailure { short_channel_id, is_permanent } => {
362                                 if is_permanent {
363                                         log_debug!(self.logger, "Removing channel graph entry for {} due to a payment failure.", short_channel_id);
364                                         self.channel_failed_permanent(short_channel_id);
365                                 }
366                         },
367                         NetworkUpdate::NodeFailure { ref node_id, is_permanent } => {
368                                 if is_permanent {
369                                         log_debug!(self.logger,
370                                                 "Removed node graph entry for {} due to a payment failure.", log_pubkey!(node_id));
371                                         self.node_failed_permanent(node_id);
372                                 };
373                         },
374                 }
375         }
376
377         /// Gets the chain hash for this network graph.
378         pub fn get_chain_hash(&self) -> ChainHash {
379                 self.chain_hash
380         }
381 }
382
383 macro_rules! secp_verify_sig {
384         ( $secp_ctx: expr, $msg: expr, $sig: expr, $pubkey: expr, $msg_type: expr ) => {
385                 match $secp_ctx.verify_ecdsa($msg, $sig, $pubkey) {
386                         Ok(_) => {},
387                         Err(_) => {
388                                 return Err(LightningError {
389                                         err: format!("Invalid signature on {} message", $msg_type),
390                                         action: ErrorAction::SendWarningMessage {
391                                                 msg: msgs::WarningMessage {
392                                                         channel_id: ChannelId::new_zero(),
393                                                         data: format!("Invalid signature on {} message", $msg_type),
394                                                 },
395                                                 log_level: Level::Trace,
396                                         },
397                                 });
398                         },
399                 }
400         };
401 }
402
403 macro_rules! get_pubkey_from_node_id {
404         ( $node_id: expr, $msg_type: expr ) => {
405                 PublicKey::from_slice($node_id.as_slice())
406                         .map_err(|_| LightningError {
407                                 err: format!("Invalid public key on {} message", $msg_type),
408                                 action: ErrorAction::SendWarningMessage {
409                                         msg: msgs::WarningMessage {
410                                                 channel_id: ChannelId::new_zero(),
411                                                 data: format!("Invalid public key on {} message", $msg_type),
412                                         },
413                                         log_level: Level::Trace
414                                 }
415                         })?
416         }
417 }
418
419 fn message_sha256d_hash<M: Writeable>(msg: &M) -> Sha256dHash {
420         let mut engine = Sha256dHash::engine();
421         msg.write(&mut engine).expect("In-memory structs should not fail to serialize");
422         Sha256dHash::from_engine(engine)
423 }
424
425 /// Verifies the signature of a [`NodeAnnouncement`].
426 ///
427 /// Returns an error if it is invalid.
428 pub fn verify_node_announcement<C: Verification>(msg: &NodeAnnouncement, secp_ctx: &Secp256k1<C>) -> Result<(), LightningError> {
429         let msg_hash = hash_to_message!(&message_sha256d_hash(&msg.contents)[..]);
430         secp_verify_sig!(secp_ctx, &msg_hash, &msg.signature, &get_pubkey_from_node_id!(msg.contents.node_id, "node_announcement"), "node_announcement");
431
432         Ok(())
433 }
434
435 /// Verifies all signatures included in a [`ChannelAnnouncement`].
436 ///
437 /// Returns an error if one of the signatures is invalid.
438 pub fn verify_channel_announcement<C: Verification>(msg: &ChannelAnnouncement, secp_ctx: &Secp256k1<C>) -> Result<(), LightningError> {
439         let msg_hash = hash_to_message!(&message_sha256d_hash(&msg.contents)[..]);
440         secp_verify_sig!(secp_ctx, &msg_hash, &msg.node_signature_1, &get_pubkey_from_node_id!(msg.contents.node_id_1, "channel_announcement"), "channel_announcement");
441         secp_verify_sig!(secp_ctx, &msg_hash, &msg.node_signature_2, &get_pubkey_from_node_id!(msg.contents.node_id_2, "channel_announcement"), "channel_announcement");
442         secp_verify_sig!(secp_ctx, &msg_hash, &msg.bitcoin_signature_1, &get_pubkey_from_node_id!(msg.contents.bitcoin_key_1, "channel_announcement"), "channel_announcement");
443         secp_verify_sig!(secp_ctx, &msg_hash, &msg.bitcoin_signature_2, &get_pubkey_from_node_id!(msg.contents.bitcoin_key_2, "channel_announcement"), "channel_announcement");
444
445         Ok(())
446 }
447
448 impl<G: Deref<Target=NetworkGraph<L>>, U: Deref, L: Deref> RoutingMessageHandler for P2PGossipSync<G, U, L>
449 where U::Target: UtxoLookup, L::Target: Logger
450 {
451         fn handle_node_announcement(&self, msg: &msgs::NodeAnnouncement) -> Result<bool, LightningError> {
452                 self.network_graph.update_node_from_announcement(msg)?;
453                 Ok(msg.contents.excess_data.len() <=  MAX_EXCESS_BYTES_FOR_RELAY &&
454                    msg.contents.excess_address_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY &&
455                    msg.contents.excess_data.len() + msg.contents.excess_address_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY)
456         }
457
458         fn handle_channel_announcement(&self, msg: &msgs::ChannelAnnouncement) -> Result<bool, LightningError> {
459                 self.network_graph.update_channel_from_announcement(msg, &*self.utxo_lookup.read().unwrap())?;
460                 Ok(msg.contents.excess_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY)
461         }
462
463         fn handle_channel_update(&self, msg: &msgs::ChannelUpdate) -> Result<bool, LightningError> {
464                 self.network_graph.update_channel(msg)?;
465                 Ok(msg.contents.excess_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY)
466         }
467
468         fn get_next_channel_announcement(&self, starting_point: u64) -> Option<(ChannelAnnouncement, Option<ChannelUpdate>, Option<ChannelUpdate>)> {
469                 let mut channels = self.network_graph.channels.write().unwrap();
470                 for (_, ref chan) in channels.range(starting_point..) {
471                         if chan.announcement_message.is_some() {
472                                 let chan_announcement = chan.announcement_message.clone().unwrap();
473                                 let mut one_to_two_announcement: Option<msgs::ChannelUpdate> = None;
474                                 let mut two_to_one_announcement: Option<msgs::ChannelUpdate> = None;
475                                 if let Some(one_to_two) = chan.one_to_two.as_ref() {
476                                         one_to_two_announcement = one_to_two.last_update_message.clone();
477                                 }
478                                 if let Some(two_to_one) = chan.two_to_one.as_ref() {
479                                         two_to_one_announcement = two_to_one.last_update_message.clone();
480                                 }
481                                 return Some((chan_announcement, one_to_two_announcement, two_to_one_announcement));
482                         } else {
483                                 // TODO: We may end up sending un-announced channel_updates if we are sending
484                                 // initial sync data while receiving announce/updates for this channel.
485                         }
486                 }
487                 None
488         }
489
490         fn get_next_node_announcement(&self, starting_point: Option<&NodeId>) -> Option<NodeAnnouncement> {
491                 let mut nodes = self.network_graph.nodes.write().unwrap();
492                 let iter = if let Some(node_id) = starting_point {
493                                 nodes.range((Bound::Excluded(node_id), Bound::Unbounded))
494                         } else {
495                                 nodes.range(..)
496                         };
497                 for (_, ref node) in iter {
498                         if let Some(node_info) = node.announcement_info.as_ref() {
499                                 if let Some(msg) = node_info.announcement_message.clone() {
500                                         return Some(msg);
501                                 }
502                         }
503                 }
504                 None
505         }
506
507         /// Initiates a stateless sync of routing gossip information with a peer
508         /// using [`gossip_queries`]. The default strategy used by this implementation
509         /// is to sync the full block range with several peers.
510         ///
511         /// We should expect one or more [`reply_channel_range`] messages in response
512         /// to our [`query_channel_range`]. Each reply will enqueue a [`query_scid`] message
513         /// to request gossip messages for each channel. The sync is considered complete
514         /// when the final [`reply_scids_end`] message is received, though we are not
515         /// tracking this directly.
516         ///
517         /// [`gossip_queries`]: https://github.com/lightning/bolts/blob/master/07-routing-gossip.md#query-messages
518         /// [`reply_channel_range`]: msgs::ReplyChannelRange
519         /// [`query_channel_range`]: msgs::QueryChannelRange
520         /// [`query_scid`]: msgs::QueryShortChannelIds
521         /// [`reply_scids_end`]: msgs::ReplyShortChannelIdsEnd
522         fn peer_connected(&self, their_node_id: &PublicKey, init_msg: &Init, _inbound: bool) -> Result<(), ()> {
523                 // We will only perform a sync with peers that support gossip_queries.
524                 if !init_msg.features.supports_gossip_queries() {
525                         // Don't disconnect peers for not supporting gossip queries. We may wish to have
526                         // channels with peers even without being able to exchange gossip.
527                         return Ok(());
528                 }
529
530                 // The lightning network's gossip sync system is completely broken in numerous ways.
531                 //
532                 // Given no broadly-available set-reconciliation protocol, the only reasonable approach is
533                 // to do a full sync from the first few peers we connect to, and then receive gossip
534                 // updates from all our peers normally.
535                 //
536                 // Originally, we could simply tell a peer to dump us the entire gossip table on startup,
537                 // wasting lots of bandwidth but ensuring we have the full network graph. After the initial
538                 // dump peers would always send gossip and we'd stay up-to-date with whatever our peer has
539                 // seen.
540                 //
541                 // In order to reduce the bandwidth waste, "gossip queries" were introduced, allowing you
542                 // to ask for the SCIDs of all channels in your peer's routing graph, and then only request
543                 // channel data which you are missing. Except there was no way at all to identify which
544                 // `channel_update`s you were missing, so you still had to request everything, just in a
545                 // very complicated way with some queries instead of just getting the dump.
546                 //
547                 // Later, an option was added to fetch the latest timestamps of the `channel_update`s to
548                 // make efficient sync possible, however it has yet to be implemented in lnd, which makes
549                 // relying on it useless.
550                 //
551                 // After gossip queries were introduced, support for receiving a full gossip table dump on
552                 // connection was removed from several nodes, making it impossible to get a full sync
553                 // without using the "gossip queries" messages.
554                 //
555                 // Once you opt into "gossip queries" the only way to receive any gossip updates that a
556                 // peer receives after you connect, you must send a `gossip_timestamp_filter` message. This
557                 // message, as the name implies, tells the peer to not forward any gossip messages with a
558                 // timestamp older than a given value (not the time the peer received the filter, but the
559                 // timestamp in the update message, which is often hours behind when the peer received the
560                 // message).
561                 //
562                 // Obnoxiously, `gossip_timestamp_filter` isn't *just* a filter, but its also a request for
563                 // your peer to send you the full routing graph (subject to the filter). Thus, in order to
564                 // tell a peer to send you any updates as it sees them, you have to also ask for the full
565                 // routing graph to be synced. If you set a timestamp filter near the current time, peers
566                 // will simply not forward any new updates they see to you which were generated some time
567                 // ago (which is not uncommon). If you instead set a timestamp filter near 0 (or two weeks
568                 // ago), you will always get the full routing graph from all your peers.
569                 //
570                 // Most lightning nodes today opt to simply turn off receiving gossip data which only
571                 // propagated some time after it was generated, and, worse, often disable gossiping with
572                 // several peers after their first connection. The second behavior can cause gossip to not
573                 // propagate fully if there are cuts in the gossiping subgraph.
574                 //
575                 // In an attempt to cut a middle ground between always fetching the full graph from all of
576                 // our peers and never receiving gossip from peers at all, we send all of our peers a
577                 // `gossip_timestamp_filter`, with the filter time set either two weeks ago or an hour ago.
578                 //
579                 // For no-std builds, we bury our head in the sand and do a full sync on each connection.
580                 #[allow(unused_mut, unused_assignments)]
581                 let mut gossip_start_time = 0;
582                 #[cfg(feature = "std")]
583                 {
584                         gossip_start_time = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
585                         if self.should_request_full_sync(&their_node_id) {
586                                 gossip_start_time -= 60 * 60 * 24 * 7 * 2; // 2 weeks ago
587                         } else {
588                                 gossip_start_time -= 60 * 60; // an hour ago
589                         }
590                 }
591
592                 let mut pending_events = self.pending_events.lock().unwrap();
593                 pending_events.push(MessageSendEvent::SendGossipTimestampFilter {
594                         node_id: their_node_id.clone(),
595                         msg: GossipTimestampFilter {
596                                 chain_hash: self.network_graph.chain_hash,
597                                 first_timestamp: gossip_start_time as u32, // 2106 issue!
598                                 timestamp_range: u32::max_value(),
599                         },
600                 });
601                 Ok(())
602         }
603
604         fn handle_reply_channel_range(&self, _their_node_id: &PublicKey, _msg: ReplyChannelRange) -> Result<(), LightningError> {
605                 // We don't make queries, so should never receive replies. If, in the future, the set
606                 // reconciliation extensions to gossip queries become broadly supported, we should revert
607                 // this code to its state pre-0.0.106.
608                 Ok(())
609         }
610
611         fn handle_reply_short_channel_ids_end(&self, _their_node_id: &PublicKey, _msg: ReplyShortChannelIdsEnd) -> Result<(), LightningError> {
612                 // We don't make queries, so should never receive replies. If, in the future, the set
613                 // reconciliation extensions to gossip queries become broadly supported, we should revert
614                 // this code to its state pre-0.0.106.
615                 Ok(())
616         }
617
618         /// Processes a query from a peer by finding announced/public channels whose funding UTXOs
619         /// are in the specified block range. Due to message size limits, large range
620         /// queries may result in several reply messages. This implementation enqueues
621         /// all reply messages into pending events. Each message will allocate just under 65KiB. A full
622         /// sync of the public routing table with 128k channels will generated 16 messages and allocate ~1MB.
623         /// Logic can be changed to reduce allocation if/when a full sync of the routing table impacts
624         /// memory constrained systems.
625         fn handle_query_channel_range(&self, their_node_id: &PublicKey, msg: QueryChannelRange) -> Result<(), LightningError> {
626                 log_debug!(self.logger, "Handling query_channel_range peer={}, first_blocknum={}, number_of_blocks={}", log_pubkey!(their_node_id), msg.first_blocknum, msg.number_of_blocks);
627
628                 let inclusive_start_scid = scid_from_parts(msg.first_blocknum as u64, 0, 0);
629
630                 // We might receive valid queries with end_blocknum that would overflow SCID conversion.
631                 // If so, we manually cap the ending block to avoid this overflow.
632                 let exclusive_end_scid = scid_from_parts(cmp::min(msg.end_blocknum() as u64, MAX_SCID_BLOCK), 0, 0);
633
634                 // Per spec, we must reply to a query. Send an empty message when things are invalid.
635                 if msg.chain_hash != self.network_graph.chain_hash || inclusive_start_scid.is_err() || exclusive_end_scid.is_err() || msg.number_of_blocks == 0 {
636                         let mut pending_events = self.pending_events.lock().unwrap();
637                         pending_events.push(MessageSendEvent::SendReplyChannelRange {
638                                 node_id: their_node_id.clone(),
639                                 msg: ReplyChannelRange {
640                                         chain_hash: msg.chain_hash.clone(),
641                                         first_blocknum: msg.first_blocknum,
642                                         number_of_blocks: msg.number_of_blocks,
643                                         sync_complete: true,
644                                         short_channel_ids: vec![],
645                                 }
646                         });
647                         return Err(LightningError {
648                                 err: String::from("query_channel_range could not be processed"),
649                                 action: ErrorAction::IgnoreError,
650                         });
651                 }
652
653                 // Creates channel batches. We are not checking if the channel is routable
654                 // (has at least one update). A peer may still want to know the channel
655                 // exists even if its not yet routable.
656                 let mut batches: Vec<Vec<u64>> = vec![Vec::with_capacity(MAX_SCIDS_PER_REPLY)];
657                 let mut channels = self.network_graph.channels.write().unwrap();
658                 for (_, ref chan) in channels.range(inclusive_start_scid.unwrap()..exclusive_end_scid.unwrap()) {
659                         if let Some(chan_announcement) = &chan.announcement_message {
660                                 // Construct a new batch if last one is full
661                                 if batches.last().unwrap().len() == batches.last().unwrap().capacity() {
662                                         batches.push(Vec::with_capacity(MAX_SCIDS_PER_REPLY));
663                                 }
664
665                                 let batch = batches.last_mut().unwrap();
666                                 batch.push(chan_announcement.contents.short_channel_id);
667                         }
668                 }
669                 drop(channels);
670
671                 let mut pending_events = self.pending_events.lock().unwrap();
672                 let batch_count = batches.len();
673                 let mut prev_batch_endblock = msg.first_blocknum;
674                 for (batch_index, batch) in batches.into_iter().enumerate() {
675                         // Per spec, the initial `first_blocknum` needs to be <= the query's `first_blocknum`
676                         // and subsequent `first_blocknum`s must be >= the prior reply's `first_blocknum`.
677                         //
678                         // Additionally, c-lightning versions < 0.10 require that the `first_blocknum` of each
679                         // reply is >= the previous reply's `first_blocknum` and either exactly the previous
680                         // reply's `first_blocknum + number_of_blocks` or exactly one greater. This is a
681                         // significant diversion from the requirements set by the spec, and, in case of blocks
682                         // with no channel opens (e.g. empty blocks), requires that we use the previous value
683                         // and *not* derive the first_blocknum from the actual first block of the reply.
684                         let first_blocknum = prev_batch_endblock;
685
686                         // Each message carries the number of blocks (from the `first_blocknum`) its contents
687                         // fit in. Though there is no requirement that we use exactly the number of blocks its
688                         // contents are from, except for the bogus requirements c-lightning enforces, above.
689                         //
690                         // Per spec, the last end block (ie `first_blocknum + number_of_blocks`) needs to be
691                         // >= the query's end block. Thus, for the last reply, we calculate the difference
692                         // between the query's end block and the start of the reply.
693                         //
694                         // Overflow safe since end_blocknum=msg.first_block_num+msg.number_of_blocks and
695                         // first_blocknum will be either msg.first_blocknum or a higher block height.
696                         let (sync_complete, number_of_blocks) = if batch_index == batch_count-1 {
697                                 (true, msg.end_blocknum() - first_blocknum)
698                         }
699                         // Prior replies should use the number of blocks that fit into the reply. Overflow
700                         // safe since first_blocknum is always <= last SCID's block.
701                         else {
702                                 (false, block_from_scid(batch.last().unwrap()) - first_blocknum)
703                         };
704
705                         prev_batch_endblock = first_blocknum + number_of_blocks;
706
707                         pending_events.push(MessageSendEvent::SendReplyChannelRange {
708                                 node_id: their_node_id.clone(),
709                                 msg: ReplyChannelRange {
710                                         chain_hash: msg.chain_hash.clone(),
711                                         first_blocknum,
712                                         number_of_blocks,
713                                         sync_complete,
714                                         short_channel_ids: batch,
715                                 }
716                         });
717                 }
718
719                 Ok(())
720         }
721
722         fn handle_query_short_channel_ids(&self, _their_node_id: &PublicKey, _msg: QueryShortChannelIds) -> Result<(), LightningError> {
723                 // TODO
724                 Err(LightningError {
725                         err: String::from("Not implemented"),
726                         action: ErrorAction::IgnoreError,
727                 })
728         }
729
730         fn provided_node_features(&self) -> NodeFeatures {
731                 let mut features = NodeFeatures::empty();
732                 features.set_gossip_queries_optional();
733                 features
734         }
735
736         fn provided_init_features(&self, _their_node_id: &PublicKey) -> InitFeatures {
737                 let mut features = InitFeatures::empty();
738                 features.set_gossip_queries_optional();
739                 features
740         }
741
742         fn processing_queue_high(&self) -> bool {
743                 self.network_graph.pending_checks.too_many_checks_pending()
744         }
745 }
746
747 impl<G: Deref<Target=NetworkGraph<L>>, U: Deref, L: Deref> MessageSendEventsProvider for P2PGossipSync<G, U, L>
748 where
749         U::Target: UtxoLookup,
750         L::Target: Logger,
751 {
752         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
753                 let mut ret = Vec::new();
754                 let mut pending_events = self.pending_events.lock().unwrap();
755                 core::mem::swap(&mut ret, &mut pending_events);
756                 ret
757         }
758 }
759
760 #[derive(Clone, Debug, PartialEq, Eq)]
761 /// Details about one direction of a channel as received within a [`ChannelUpdate`].
762 pub struct ChannelUpdateInfo {
763         /// When the last update to the channel direction was issued.
764         /// Value is opaque, as set in the announcement.
765         pub last_update: u32,
766         /// Whether the channel can be currently used for payments (in this one direction).
767         pub enabled: bool,
768         /// The difference in CLTV values that you must have when routing through this channel.
769         pub cltv_expiry_delta: u16,
770         /// The minimum value, which must be relayed to the next hop via the channel
771         pub htlc_minimum_msat: u64,
772         /// The maximum value which may be relayed to the next hop via the channel.
773         pub htlc_maximum_msat: u64,
774         /// Fees charged when the channel is used for routing
775         pub fees: RoutingFees,
776         /// Most recent update for the channel received from the network
777         /// Mostly redundant with the data we store in fields explicitly.
778         /// Everything else is useful only for sending out for initial routing sync.
779         /// Not stored if contains excess data to prevent DoS.
780         pub last_update_message: Option<ChannelUpdate>,
781 }
782
783 impl fmt::Display for ChannelUpdateInfo {
784         fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
785                 write!(f, "last_update {}, enabled {}, cltv_expiry_delta {}, htlc_minimum_msat {}, fees {:?}", self.last_update, self.enabled, self.cltv_expiry_delta, self.htlc_minimum_msat, self.fees)?;
786                 Ok(())
787         }
788 }
789
790 impl Writeable for ChannelUpdateInfo {
791         fn write<W: crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
792                 write_tlv_fields!(writer, {
793                         (0, self.last_update, required),
794                         (2, self.enabled, required),
795                         (4, self.cltv_expiry_delta, required),
796                         (6, self.htlc_minimum_msat, required),
797                         // Writing htlc_maximum_msat as an Option<u64> is required to maintain backwards
798                         // compatibility with LDK versions prior to v0.0.110.
799                         (8, Some(self.htlc_maximum_msat), required),
800                         (10, self.fees, required),
801                         (12, self.last_update_message, required),
802                 });
803                 Ok(())
804         }
805 }
806
807 impl Readable for ChannelUpdateInfo {
808         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
809                 _init_tlv_field_var!(last_update, required);
810                 _init_tlv_field_var!(enabled, required);
811                 _init_tlv_field_var!(cltv_expiry_delta, required);
812                 _init_tlv_field_var!(htlc_minimum_msat, required);
813                 _init_tlv_field_var!(htlc_maximum_msat, option);
814                 _init_tlv_field_var!(fees, required);
815                 _init_tlv_field_var!(last_update_message, required);
816
817                 read_tlv_fields!(reader, {
818                         (0, last_update, required),
819                         (2, enabled, required),
820                         (4, cltv_expiry_delta, required),
821                         (6, htlc_minimum_msat, required),
822                         (8, htlc_maximum_msat, required),
823                         (10, fees, required),
824                         (12, last_update_message, required)
825                 });
826
827                 if let Some(htlc_maximum_msat) = htlc_maximum_msat {
828                         Ok(ChannelUpdateInfo {
829                                 last_update: _init_tlv_based_struct_field!(last_update, required),
830                                 enabled: _init_tlv_based_struct_field!(enabled, required),
831                                 cltv_expiry_delta: _init_tlv_based_struct_field!(cltv_expiry_delta, required),
832                                 htlc_minimum_msat: _init_tlv_based_struct_field!(htlc_minimum_msat, required),
833                                 htlc_maximum_msat,
834                                 fees: _init_tlv_based_struct_field!(fees, required),
835                                 last_update_message: _init_tlv_based_struct_field!(last_update_message, required),
836                         })
837                 } else {
838                         Err(DecodeError::InvalidValue)
839                 }
840         }
841 }
842
843 #[derive(Clone, Debug, PartialEq, Eq)]
844 /// Details about a channel (both directions).
845 /// Received within a channel announcement.
846 pub struct ChannelInfo {
847         /// Protocol features of a channel communicated during its announcement
848         pub features: ChannelFeatures,
849         /// Source node of the first direction of a channel
850         pub node_one: NodeId,
851         /// Details about the first direction of a channel
852         pub one_to_two: Option<ChannelUpdateInfo>,
853         /// Source node of the second direction of a channel
854         pub node_two: NodeId,
855         /// Details about the second direction of a channel
856         pub two_to_one: Option<ChannelUpdateInfo>,
857         /// The channel capacity as seen on-chain, if chain lookup is available.
858         pub capacity_sats: Option<u64>,
859         /// An initial announcement of the channel
860         /// Mostly redundant with the data we store in fields explicitly.
861         /// Everything else is useful only for sending out for initial routing sync.
862         /// Not stored if contains excess data to prevent DoS.
863         pub announcement_message: Option<ChannelAnnouncement>,
864         /// The timestamp when we received the announcement, if we are running with feature = "std"
865         /// (which we can probably assume we are - no-std environments probably won't have a full
866         /// network graph in memory!).
867         announcement_received_time: u64,
868 }
869
870 impl ChannelInfo {
871         /// Returns a [`DirectedChannelInfo`] for the channel directed to the given `target` from a
872         /// returned `source`, or `None` if `target` is not one of the channel's counterparties.
873         pub fn as_directed_to(&self, target: &NodeId) -> Option<(DirectedChannelInfo, &NodeId)> {
874                 let (direction, source, outbound) = {
875                         if target == &self.node_one {
876                                 (self.two_to_one.as_ref(), &self.node_two, false)
877                         } else if target == &self.node_two {
878                                 (self.one_to_two.as_ref(), &self.node_one, true)
879                         } else {
880                                 return None;
881                         }
882                 };
883                 direction.map(|dir| (DirectedChannelInfo::new(self, dir, outbound), source))
884         }
885
886         /// Returns a [`DirectedChannelInfo`] for the channel directed from the given `source` to a
887         /// returned `target`, or `None` if `source` is not one of the channel's counterparties.
888         pub fn as_directed_from(&self, source: &NodeId) -> Option<(DirectedChannelInfo, &NodeId)> {
889                 let (direction, target, outbound) = {
890                         if source == &self.node_one {
891                                 (self.one_to_two.as_ref(), &self.node_two, true)
892                         } else if source == &self.node_two {
893                                 (self.two_to_one.as_ref(), &self.node_one, false)
894                         } else {
895                                 return None;
896                         }
897                 };
898                 direction.map(|dir| (DirectedChannelInfo::new(self, dir, outbound), target))
899         }
900
901         /// Returns a [`ChannelUpdateInfo`] based on the direction implied by the channel_flag.
902         pub fn get_directional_info(&self, channel_flags: u8) -> Option<&ChannelUpdateInfo> {
903                 let direction = channel_flags & 1u8;
904                 if direction == 0 {
905                         self.one_to_two.as_ref()
906                 } else {
907                         self.two_to_one.as_ref()
908                 }
909         }
910 }
911
912 impl fmt::Display for ChannelInfo {
913         fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
914                 write!(f, "features: {}, node_one: {}, one_to_two: {:?}, node_two: {}, two_to_one: {:?}",
915                    log_bytes!(self.features.encode()), &self.node_one, self.one_to_two, &self.node_two, self.two_to_one)?;
916                 Ok(())
917         }
918 }
919
920 impl Writeable for ChannelInfo {
921         fn write<W: crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
922                 write_tlv_fields!(writer, {
923                         (0, self.features, required),
924                         (1, self.announcement_received_time, (default_value, 0)),
925                         (2, self.node_one, required),
926                         (4, self.one_to_two, required),
927                         (6, self.node_two, required),
928                         (8, self.two_to_one, required),
929                         (10, self.capacity_sats, required),
930                         (12, self.announcement_message, required),
931                 });
932                 Ok(())
933         }
934 }
935
936 // A wrapper allowing for the optional deseralization of ChannelUpdateInfo. Utilizing this is
937 // necessary to maintain backwards compatibility with previous serializations of `ChannelUpdateInfo`
938 // that may have no `htlc_maximum_msat` field set. In case the field is absent, we simply ignore
939 // the error and continue reading the `ChannelInfo`. Hopefully, we'll then eventually receive newer
940 // channel updates via the gossip network.
941 struct ChannelUpdateInfoDeserWrapper(Option<ChannelUpdateInfo>);
942
943 impl MaybeReadable for ChannelUpdateInfoDeserWrapper {
944         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, DecodeError> {
945                 match crate::util::ser::Readable::read(reader) {
946                         Ok(channel_update_option) => Ok(Some(Self(channel_update_option))),
947                         Err(DecodeError::ShortRead) => Ok(None),
948                         Err(DecodeError::InvalidValue) => Ok(None),
949                         Err(err) => Err(err),
950                 }
951         }
952 }
953
954 impl Readable for ChannelInfo {
955         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
956                 _init_tlv_field_var!(features, required);
957                 _init_tlv_field_var!(announcement_received_time, (default_value, 0));
958                 _init_tlv_field_var!(node_one, required);
959                 let mut one_to_two_wrap: Option<ChannelUpdateInfoDeserWrapper> = None;
960                 _init_tlv_field_var!(node_two, required);
961                 let mut two_to_one_wrap: Option<ChannelUpdateInfoDeserWrapper> = None;
962                 _init_tlv_field_var!(capacity_sats, required);
963                 _init_tlv_field_var!(announcement_message, required);
964                 read_tlv_fields!(reader, {
965                         (0, features, required),
966                         (1, announcement_received_time, (default_value, 0)),
967                         (2, node_one, required),
968                         (4, one_to_two_wrap, upgradable_option),
969                         (6, node_two, required),
970                         (8, two_to_one_wrap, upgradable_option),
971                         (10, capacity_sats, required),
972                         (12, announcement_message, required),
973                 });
974
975                 Ok(ChannelInfo {
976                         features: _init_tlv_based_struct_field!(features, required),
977                         node_one: _init_tlv_based_struct_field!(node_one, required),
978                         one_to_two: one_to_two_wrap.map(|w| w.0).unwrap_or(None),
979                         node_two: _init_tlv_based_struct_field!(node_two, required),
980                         two_to_one: two_to_one_wrap.map(|w| w.0).unwrap_or(None),
981                         capacity_sats: _init_tlv_based_struct_field!(capacity_sats, required),
982                         announcement_message: _init_tlv_based_struct_field!(announcement_message, required),
983                         announcement_received_time: _init_tlv_based_struct_field!(announcement_received_time, (default_value, 0)),
984                 })
985         }
986 }
987
988 /// A wrapper around [`ChannelInfo`] representing information about the channel as directed from a
989 /// source node to a target node.
990 #[derive(Clone)]
991 pub struct DirectedChannelInfo<'a> {
992         channel: &'a ChannelInfo,
993         direction: &'a ChannelUpdateInfo,
994         /// The direction this channel is in - if set, it indicates that we're traversing the channel
995         /// from [`ChannelInfo::node_one`] to [`ChannelInfo::node_two`].
996         from_node_one: bool,
997 }
998
999 impl<'a> DirectedChannelInfo<'a> {
1000         #[inline]
1001         fn new(channel: &'a ChannelInfo, direction: &'a ChannelUpdateInfo, from_node_one: bool) -> Self {
1002                 Self { channel, direction, from_node_one }
1003         }
1004
1005         /// Returns information for the channel.
1006         #[inline]
1007         pub fn channel(&self) -> &'a ChannelInfo { self.channel }
1008
1009         /// Returns the [`EffectiveCapacity`] of the channel in the direction.
1010         ///
1011         /// This is either the total capacity from the funding transaction, if known, or the
1012         /// `htlc_maximum_msat` for the direction as advertised by the gossip network, if known,
1013         /// otherwise.
1014         #[inline]
1015         pub fn effective_capacity(&self) -> EffectiveCapacity {
1016                 let mut htlc_maximum_msat = self.direction().htlc_maximum_msat;
1017                 let capacity_msat = self.channel.capacity_sats.map(|capacity_sats| capacity_sats * 1000);
1018
1019                 match capacity_msat {
1020                         Some(capacity_msat) => {
1021                                 htlc_maximum_msat = cmp::min(htlc_maximum_msat, capacity_msat);
1022                                 EffectiveCapacity::Total { capacity_msat, htlc_maximum_msat }
1023                         },
1024                         None => EffectiveCapacity::AdvertisedMaxHTLC { amount_msat: htlc_maximum_msat },
1025                 }
1026         }
1027
1028         /// Returns information for the direction.
1029         #[inline]
1030         pub(super) fn direction(&self) -> &'a ChannelUpdateInfo { self.direction }
1031
1032         /// Returns the `node_id` of the source hop.
1033         ///
1034         /// Refers to the `node_id` forwarding the payment to the next hop.
1035         #[inline]
1036         pub(super) fn source(&self) -> &'a NodeId { if self.from_node_one { &self.channel.node_one } else { &self.channel.node_two } }
1037
1038         /// Returns the `node_id` of the target hop.
1039         ///
1040         /// Refers to the `node_id` receiving the payment from the previous hop.
1041         #[inline]
1042         pub(super) fn target(&self) -> &'a NodeId { if self.from_node_one { &self.channel.node_two } else { &self.channel.node_one } }
1043 }
1044
1045 impl<'a> fmt::Debug for DirectedChannelInfo<'a> {
1046         fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
1047                 f.debug_struct("DirectedChannelInfo")
1048                         .field("channel", &self.channel)
1049                         .finish()
1050         }
1051 }
1052
1053 /// The effective capacity of a channel for routing purposes.
1054 ///
1055 /// While this may be smaller than the actual channel capacity, amounts greater than
1056 /// [`Self::as_msat`] should not be routed through the channel.
1057 #[derive(Clone, Copy, Debug, PartialEq)]
1058 pub enum EffectiveCapacity {
1059         /// The available liquidity in the channel known from being a channel counterparty, and thus a
1060         /// direct hop.
1061         ExactLiquidity {
1062                 /// Either the inbound or outbound liquidity depending on the direction, denominated in
1063                 /// millisatoshi.
1064                 liquidity_msat: u64,
1065         },
1066         /// The maximum HTLC amount in one direction as advertised on the gossip network.
1067         AdvertisedMaxHTLC {
1068                 /// The maximum HTLC amount denominated in millisatoshi.
1069                 amount_msat: u64,
1070         },
1071         /// The total capacity of the channel as determined by the funding transaction.
1072         Total {
1073                 /// The funding amount denominated in millisatoshi.
1074                 capacity_msat: u64,
1075                 /// The maximum HTLC amount denominated in millisatoshi.
1076                 htlc_maximum_msat: u64
1077         },
1078         /// A capacity sufficient to route any payment, typically used for private channels provided by
1079         /// an invoice.
1080         Infinite,
1081         /// The maximum HTLC amount as provided by an invoice route hint.
1082         HintMaxHTLC {
1083                 /// The maximum HTLC amount denominated in millisatoshi.
1084                 amount_msat: u64,
1085         },
1086         /// A capacity that is unknown possibly because either the chain state is unavailable to know
1087         /// the total capacity or the `htlc_maximum_msat` was not advertised on the gossip network.
1088         Unknown,
1089 }
1090
1091 /// The presumed channel capacity denominated in millisatoshi for [`EffectiveCapacity::Unknown`] to
1092 /// use when making routing decisions.
1093 pub const UNKNOWN_CHANNEL_CAPACITY_MSAT: u64 = 250_000 * 1000;
1094
1095 impl EffectiveCapacity {
1096         /// Returns the effective capacity denominated in millisatoshi.
1097         pub fn as_msat(&self) -> u64 {
1098                 match self {
1099                         EffectiveCapacity::ExactLiquidity { liquidity_msat } => *liquidity_msat,
1100                         EffectiveCapacity::AdvertisedMaxHTLC { amount_msat } => *amount_msat,
1101                         EffectiveCapacity::Total { capacity_msat, .. } => *capacity_msat,
1102                         EffectiveCapacity::HintMaxHTLC { amount_msat } => *amount_msat,
1103                         EffectiveCapacity::Infinite => u64::max_value(),
1104                         EffectiveCapacity::Unknown => UNKNOWN_CHANNEL_CAPACITY_MSAT,
1105                 }
1106         }
1107 }
1108
1109 /// Fees for routing via a given channel or a node
1110 #[derive(Eq, PartialEq, Copy, Clone, Debug, Hash, Ord, PartialOrd)]
1111 pub struct RoutingFees {
1112         /// Flat routing fee in millisatoshis.
1113         pub base_msat: u32,
1114         /// Liquidity-based routing fee in millionths of a routed amount.
1115         /// In other words, 10000 is 1%.
1116         pub proportional_millionths: u32,
1117 }
1118
1119 impl_writeable_tlv_based!(RoutingFees, {
1120         (0, base_msat, required),
1121         (2, proportional_millionths, required)
1122 });
1123
1124 #[derive(Clone, Debug, PartialEq, Eq)]
1125 /// Information received in the latest node_announcement from this node.
1126 pub struct NodeAnnouncementInfo {
1127         /// Protocol features the node announced support for
1128         pub features: NodeFeatures,
1129         /// When the last known update to the node state was issued.
1130         /// Value is opaque, as set in the announcement.
1131         pub last_update: u32,
1132         /// Color assigned to the node
1133         pub rgb: [u8; 3],
1134         /// Moniker assigned to the node.
1135         /// May be invalid or malicious (eg control chars),
1136         /// should not be exposed to the user.
1137         pub alias: NodeAlias,
1138         /// An initial announcement of the node
1139         /// Mostly redundant with the data we store in fields explicitly.
1140         /// Everything else is useful only for sending out for initial routing sync.
1141         /// Not stored if contains excess data to prevent DoS.
1142         pub announcement_message: Option<NodeAnnouncement>
1143 }
1144
1145 impl NodeAnnouncementInfo {
1146         /// Internet-level addresses via which one can connect to the node
1147         pub fn addresses(&self) -> &[SocketAddress] {
1148                 self.announcement_message.as_ref()
1149                         .map(|msg| msg.contents.addresses.as_slice())
1150                         .unwrap_or_default()
1151         }
1152 }
1153
1154 impl Writeable for NodeAnnouncementInfo {
1155         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
1156                 let empty_addresses = Vec::<SocketAddress>::new();
1157                 write_tlv_fields!(writer, {
1158                         (0, self.features, required),
1159                         (2, self.last_update, required),
1160                         (4, self.rgb, required),
1161                         (6, self.alias, required),
1162                         (8, self.announcement_message, option),
1163                         (10, empty_addresses, required_vec), // Versions prior to 0.0.115 require this field
1164                 });
1165                 Ok(())
1166         }
1167 }
1168
1169 impl Readable for NodeAnnouncementInfo {
1170         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
1171                 _init_and_read_len_prefixed_tlv_fields!(reader, {
1172                         (0, features, required),
1173                         (2, last_update, required),
1174                         (4, rgb, required),
1175                         (6, alias, required),
1176                         (8, announcement_message, option),
1177                         (10, _addresses, optional_vec), // deprecated, not used anymore
1178                 });
1179                 let _: Option<Vec<SocketAddress>> = _addresses;
1180                 Ok(Self { features: features.0.unwrap(), last_update: last_update.0.unwrap(), rgb: rgb.0.unwrap(),
1181                         alias: alias.0.unwrap(), announcement_message })
1182         }
1183 }
1184
1185 /// A user-defined name for a node, which may be used when displaying the node in a graph.
1186 ///
1187 /// Since node aliases are provided by third parties, they are a potential avenue for injection
1188 /// attacks. Care must be taken when processing.
1189 #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
1190 pub struct NodeAlias(pub [u8; 32]);
1191
1192 impl fmt::Display for NodeAlias {
1193         fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
1194                 let first_null = self.0.iter().position(|b| *b == 0).unwrap_or(self.0.len());
1195                 let bytes = self.0.split_at(first_null).0;
1196                 match core::str::from_utf8(bytes) {
1197                         Ok(alias) => PrintableString(alias).fmt(f)?,
1198                         Err(_) => {
1199                                 use core::fmt::Write;
1200                                 for c in bytes.iter().map(|b| *b as char) {
1201                                         // Display printable ASCII characters
1202                                         let control_symbol = core::char::REPLACEMENT_CHARACTER;
1203                                         let c = if c >= '\x20' && c <= '\x7e' { c } else { control_symbol };
1204                                         f.write_char(c)?;
1205                                 }
1206                         },
1207                 };
1208                 Ok(())
1209         }
1210 }
1211
1212 impl Writeable for NodeAlias {
1213         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
1214                 self.0.write(w)
1215         }
1216 }
1217
1218 impl Readable for NodeAlias {
1219         fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
1220                 Ok(NodeAlias(Readable::read(r)?))
1221         }
1222 }
1223
1224 #[derive(Clone, Debug, Eq)]
1225 /// Details about a node in the network, known from the network announcement.
1226 pub struct NodeInfo {
1227         /// All valid channels a node has announced
1228         pub channels: Vec<u64>,
1229         /// More information about a node from node_announcement.
1230         /// Optional because we store a Node entry after learning about it from
1231         /// a channel announcement, but before receiving a node announcement.
1232         pub announcement_info: Option<NodeAnnouncementInfo>,
1233         /// XXX: Docs
1234         pub(crate) node_counter: u32,
1235 }
1236
1237 impl PartialEq for NodeInfo {
1238         fn eq(&self, o: &NodeInfo) -> bool {
1239                 self.channels == o.channels && self.announcement_info == o.announcement_info
1240         }
1241 }
1242
1243 impl fmt::Display for NodeInfo {
1244         fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
1245                 write!(f, " channels: {:?}, announcement_info: {:?}",
1246                         &self.channels[..], self.announcement_info)?;
1247                 Ok(())
1248         }
1249 }
1250
1251 impl Writeable for NodeInfo {
1252         fn write<W: crate::util::ser::Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
1253                 write_tlv_fields!(writer, {
1254                         // Note that older versions of LDK wrote the lowest inbound fees here at type 0
1255                         (2, self.announcement_info, option),
1256                         (4, self.channels, required_vec),
1257                 });
1258                 Ok(())
1259         }
1260 }
1261
1262 // A wrapper allowing for the optional deserialization of `NodeAnnouncementInfo`. Utilizing this is
1263 // necessary to maintain compatibility with previous serializations of `SocketAddress` that have an
1264 // invalid hostname set. We ignore and eat all errors until we are either able to read a
1265 // `NodeAnnouncementInfo` or hit a `ShortRead`, i.e., read the TLV field to the end.
1266 struct NodeAnnouncementInfoDeserWrapper(NodeAnnouncementInfo);
1267
1268 impl MaybeReadable for NodeAnnouncementInfoDeserWrapper {
1269         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, DecodeError> {
1270                 match crate::util::ser::Readable::read(reader) {
1271                         Ok(node_announcement_info) => return Ok(Some(Self(node_announcement_info))),
1272                         Err(_) => {
1273                                 copy(reader, &mut sink()).unwrap();
1274                                 return Ok(None)
1275                         },
1276                 };
1277         }
1278 }
1279
1280 impl Readable for NodeInfo {
1281         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
1282                 // Historically, we tracked the lowest inbound fees for any node in order to use it as an
1283                 // A* heuristic when routing. Sadly, these days many, many nodes have at least one channel
1284                 // with zero inbound fees, causing that heuristic to provide little gain. Worse, because it
1285                 // requires additional complexity and lookups during routing, it ends up being a
1286                 // performance loss. Thus, we simply ignore the old field here and no longer track it.
1287                 _init_and_read_len_prefixed_tlv_fields!(reader, {
1288                         (0, _lowest_inbound_channel_fees, option),
1289                         (2, announcement_info_wrap, upgradable_option),
1290                         (4, channels, required_vec),
1291                 });
1292                 let _: Option<RoutingFees> = _lowest_inbound_channel_fees;
1293                 let announcement_info_wrap: Option<NodeAnnouncementInfoDeserWrapper> = announcement_info_wrap;
1294
1295                 Ok(NodeInfo {
1296                         announcement_info: announcement_info_wrap.map(|w| w.0),
1297                         channels,
1298                         node_counter: u32::max_value(),
1299                 })
1300         }
1301 }
1302
1303 const SERIALIZATION_VERSION: u8 = 1;
1304 const MIN_SERIALIZATION_VERSION: u8 = 1;
1305
1306 impl<L: Deref> Writeable for NetworkGraph<L> where L::Target: Logger {
1307         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
1308                 self.test_node_counter_consistency();
1309
1310                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
1311
1312                 self.chain_hash.write(writer)?;
1313                 let channels = self.channels.read().unwrap();
1314                 (channels.len() as u64).write(writer)?;
1315                 for (ref chan_id, ref chan_info) in channels.unordered_iter() {
1316                         (*chan_id).write(writer)?;
1317                         chan_info.write(writer)?;
1318                 }
1319                 let nodes = self.nodes.read().unwrap();
1320                 (nodes.len() as u64).write(writer)?;
1321                 for (ref node_id, ref node_info) in nodes.unordered_iter() {
1322                         node_id.write(writer)?;
1323                         node_info.write(writer)?;
1324                 }
1325
1326                 let last_rapid_gossip_sync_timestamp = self.get_last_rapid_gossip_sync_timestamp();
1327                 write_tlv_fields!(writer, {
1328                         (1, last_rapid_gossip_sync_timestamp, option),
1329                 });
1330                 Ok(())
1331         }
1332 }
1333
1334 impl<L: Deref> ReadableArgs<L> for NetworkGraph<L> where L::Target: Logger {
1335         fn read<R: io::Read>(reader: &mut R, logger: L) -> Result<NetworkGraph<L>, DecodeError> {
1336                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
1337
1338                 let chain_hash: ChainHash = Readable::read(reader)?;
1339                 let channels_count: u64 = Readable::read(reader)?;
1340                 // In Nov, 2023 there were about 15,000 nodes; we cap allocations to 1.5x that.
1341                 let mut channels = IndexedMap::with_capacity(cmp::min(channels_count as usize, 22500));
1342                 for _ in 0..channels_count {
1343                         let chan_id: u64 = Readable::read(reader)?;
1344                         let chan_info = Readable::read(reader)?;
1345                         channels.insert(chan_id, chan_info);
1346                 }
1347                 let nodes_count: u64 = Readable::read(reader)?;
1348                 if nodes_count > u32::max_value() as u64 / 2 { return Err(DecodeError::InvalidValue); }
1349                 // In Nov, 2023 there were about 69K channels; we cap allocations to 1.5x that.
1350                 let mut nodes = IndexedMap::with_capacity(cmp::min(nodes_count as usize, 103500));
1351                 for i in 0..nodes_count {
1352                         let node_id = Readable::read(reader)?;
1353                         let mut node_info: NodeInfo = Readable::read(reader)?;
1354                         node_info.node_counter = i as u32;
1355                         nodes.insert(node_id, node_info);
1356                 }
1357
1358                 let mut last_rapid_gossip_sync_timestamp: Option<u32> = None;
1359                 read_tlv_fields!(reader, {
1360                         (1, last_rapid_gossip_sync_timestamp, option),
1361                 });
1362
1363                 Ok(NetworkGraph {
1364                         secp_ctx: Secp256k1::verification_only(),
1365                         chain_hash,
1366                         logger,
1367                         channels: RwLock::new(channels),
1368                         nodes: RwLock::new(nodes),
1369                         removed_node_counters: Mutex::new(Vec::new()),
1370                         next_node_counter: AtomicUsize::new(nodes_count as usize),
1371                         last_rapid_gossip_sync_timestamp: Mutex::new(last_rapid_gossip_sync_timestamp),
1372                         removed_nodes: Mutex::new(HashMap::new()),
1373                         removed_channels: Mutex::new(HashMap::new()),
1374                         pending_checks: utxo::PendingChecks::new(),
1375                 })
1376         }
1377 }
1378
1379 impl<L: Deref> fmt::Display for NetworkGraph<L> where L::Target: Logger {
1380         fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
1381                 writeln!(f, "Network map\n[Channels]")?;
1382                 for (key, val) in self.channels.read().unwrap().unordered_iter() {
1383                         writeln!(f, " {}: {}", key, val)?;
1384                 }
1385                 writeln!(f, "[Nodes]")?;
1386                 for (&node_id, val) in self.nodes.read().unwrap().unordered_iter() {
1387                         writeln!(f, " {}: {}", &node_id, val)?;
1388                 }
1389                 Ok(())
1390         }
1391 }
1392
1393 impl<L: Deref> Eq for NetworkGraph<L> where L::Target: Logger {}
1394 impl<L: Deref> PartialEq for NetworkGraph<L> where L::Target: Logger {
1395         fn eq(&self, other: &Self) -> bool {
1396                 // For a total lockorder, sort by position in memory and take the inner locks in that order.
1397                 // (Assumes that we can't move within memory while a lock is held).
1398                 let ord = ((self as *const _) as usize) < ((other as *const _) as usize);
1399                 let a = if ord { (&self.channels, &self.nodes) } else { (&other.channels, &other.nodes) };
1400                 let b = if ord { (&other.channels, &other.nodes) } else { (&self.channels, &self.nodes) };
1401                 let (channels_a, channels_b) = (a.0.unsafe_well_ordered_double_lock_self(), b.0.unsafe_well_ordered_double_lock_self());
1402                 let (nodes_a, nodes_b) = (a.1.unsafe_well_ordered_double_lock_self(), b.1.unsafe_well_ordered_double_lock_self());
1403                 self.chain_hash.eq(&other.chain_hash) && channels_a.eq(&channels_b) && nodes_a.eq(&nodes_b)
1404         }
1405 }
1406
1407 impl<L: Deref> NetworkGraph<L> where L::Target: Logger {
1408         /// Creates a new, empty, network graph.
1409         pub fn new(network: Network, logger: L) -> NetworkGraph<L> {
1410                 Self {
1411                         secp_ctx: Secp256k1::verification_only(),
1412                         chain_hash: ChainHash::using_genesis_block(network),
1413                         logger,
1414                         channels: RwLock::new(IndexedMap::new()),
1415                         nodes: RwLock::new(IndexedMap::new()),
1416                         next_node_counter: AtomicUsize::new(0),
1417                         removed_node_counters: Mutex::new(Vec::new()),
1418                         last_rapid_gossip_sync_timestamp: Mutex::new(None),
1419                         removed_channels: Mutex::new(HashMap::new()),
1420                         removed_nodes: Mutex::new(HashMap::new()),
1421                         pending_checks: utxo::PendingChecks::new(),
1422                 }
1423         }
1424
1425         fn test_node_counter_consistency(&self) {
1426                 #[cfg(debug_assertions)] {
1427                         let nodes = self.nodes.read().unwrap();
1428                         let removed_node_counters = self.removed_node_counters.lock().unwrap();
1429                         let next_counter = self.next_node_counter.load(Ordering::Acquire);
1430                         assert!(next_counter < (u32::max_value() as usize) / 2);
1431                         let mut used_node_counters = vec![0u8; next_counter / 8 + 1];
1432
1433                         for counter in removed_node_counters.iter() {
1434                                 let pos = (*counter as usize) / 8;
1435                                 let bit = 1 << (counter % 8);
1436                                 assert_eq!(used_node_counters[pos] & bit, 0);
1437                                 used_node_counters[pos] |= bit;
1438                         }
1439                         for (_, node) in nodes.unordered_iter() {
1440                                 assert!((node.node_counter as usize) < next_counter);
1441                                 let pos = (node.node_counter as usize) / 8;
1442                                 let bit = 1 << (node.node_counter % 8);
1443                                 assert_eq!(used_node_counters[pos] & bit, 0);
1444                                 used_node_counters[pos] |= bit;
1445                         }
1446                 }
1447         }
1448
1449         /// Returns a read-only view of the network graph.
1450         pub fn read_only(&'_ self) -> ReadOnlyNetworkGraph<'_> {
1451                 self.test_node_counter_consistency();
1452                 let channels = self.channels.read().unwrap();
1453                 let nodes = self.nodes.read().unwrap();
1454                 ReadOnlyNetworkGraph {
1455                         channels,
1456                         nodes,
1457                 }
1458         }
1459
1460         /// The unix timestamp provided by the most recent rapid gossip sync.
1461         /// It will be set by the rapid sync process after every sync completion.
1462         pub fn get_last_rapid_gossip_sync_timestamp(&self) -> Option<u32> {
1463                 self.last_rapid_gossip_sync_timestamp.lock().unwrap().clone()
1464         }
1465
1466         /// Update the unix timestamp provided by the most recent rapid gossip sync.
1467         /// This should be done automatically by the rapid sync process after every sync completion.
1468         pub fn set_last_rapid_gossip_sync_timestamp(&self, last_rapid_gossip_sync_timestamp: u32) {
1469                 self.last_rapid_gossip_sync_timestamp.lock().unwrap().replace(last_rapid_gossip_sync_timestamp);
1470         }
1471
1472         /// Clears the `NodeAnnouncementInfo` field for all nodes in the `NetworkGraph` for testing
1473         /// purposes.
1474         #[cfg(test)]
1475         pub fn clear_nodes_announcement_info(&self) {
1476                 for node in self.nodes.write().unwrap().unordered_iter_mut() {
1477                         node.1.announcement_info = None;
1478                 }
1479         }
1480
1481         /// For an already known node (from channel announcements), update its stored properties from a
1482         /// given node announcement.
1483         ///
1484         /// You probably don't want to call this directly, instead relying on a P2PGossipSync's
1485         /// RoutingMessageHandler implementation to call it indirectly. This may be useful to accept
1486         /// routing messages from a source using a protocol other than the lightning P2P protocol.
1487         pub fn update_node_from_announcement(&self, msg: &msgs::NodeAnnouncement) -> Result<(), LightningError> {
1488                 verify_node_announcement(msg, &self.secp_ctx)?;
1489                 self.update_node_from_announcement_intern(&msg.contents, Some(&msg))
1490         }
1491
1492         /// For an already known node (from channel announcements), update its stored properties from a
1493         /// given node announcement without verifying the associated signatures. Because we aren't
1494         /// given the associated signatures here we cannot relay the node announcement to any of our
1495         /// peers.
1496         pub fn update_node_from_unsigned_announcement(&self, msg: &msgs::UnsignedNodeAnnouncement) -> Result<(), LightningError> {
1497                 self.update_node_from_announcement_intern(msg, None)
1498         }
1499
1500         fn update_node_from_announcement_intern(&self, msg: &msgs::UnsignedNodeAnnouncement, full_msg: Option<&msgs::NodeAnnouncement>) -> Result<(), LightningError> {
1501                 let mut nodes = self.nodes.write().unwrap();
1502                 match nodes.get_mut(&msg.node_id) {
1503                         None => {
1504                                 core::mem::drop(nodes);
1505                                 self.pending_checks.check_hold_pending_node_announcement(msg, full_msg)?;
1506                                 Err(LightningError{err: "No existing channels for node_announcement".to_owned(), action: ErrorAction::IgnoreError})
1507                         },
1508                         Some(node) => {
1509                                 if let Some(node_info) = node.announcement_info.as_ref() {
1510                                         // The timestamp field is somewhat of a misnomer - the BOLTs use it to order
1511                                         // updates to ensure you always have the latest one, only vaguely suggesting
1512                                         // that it be at least the current time.
1513                                         if node_info.last_update  > msg.timestamp {
1514                                                 return Err(LightningError{err: "Update older than last processed update".to_owned(), action: ErrorAction::IgnoreDuplicateGossip});
1515                                         } else if node_info.last_update  == msg.timestamp {
1516                                                 return Err(LightningError{err: "Update had the same timestamp as last processed update".to_owned(), action: ErrorAction::IgnoreDuplicateGossip});
1517                                         }
1518                                 }
1519
1520                                 let should_relay =
1521                                         msg.excess_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY &&
1522                                         msg.excess_address_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY &&
1523                                         msg.excess_data.len() + msg.excess_address_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY;
1524                                 node.announcement_info = Some(NodeAnnouncementInfo {
1525                                         features: msg.features.clone(),
1526                                         last_update: msg.timestamp,
1527                                         rgb: msg.rgb,
1528                                         alias: msg.alias,
1529                                         announcement_message: if should_relay { full_msg.cloned() } else { None },
1530                                 });
1531
1532                                 Ok(())
1533                         }
1534                 }
1535         }
1536
1537         /// Store or update channel info from a channel announcement.
1538         ///
1539         /// You probably don't want to call this directly, instead relying on a [`P2PGossipSync`]'s
1540         /// [`RoutingMessageHandler`] implementation to call it indirectly. This may be useful to accept
1541         /// routing messages from a source using a protocol other than the lightning P2P protocol.
1542         ///
1543         /// If a [`UtxoLookup`] object is provided via `utxo_lookup`, it will be called to verify
1544         /// the corresponding UTXO exists on chain and is correctly-formatted.
1545         pub fn update_channel_from_announcement<U: Deref>(
1546                 &self, msg: &msgs::ChannelAnnouncement, utxo_lookup: &Option<U>,
1547         ) -> Result<(), LightningError>
1548         where
1549                 U::Target: UtxoLookup,
1550         {
1551                 verify_channel_announcement(msg, &self.secp_ctx)?;
1552                 self.update_channel_from_unsigned_announcement_intern(&msg.contents, Some(msg), utxo_lookup)
1553         }
1554
1555         /// Store or update channel info from a channel announcement.
1556         ///
1557         /// You probably don't want to call this directly, instead relying on a [`P2PGossipSync`]'s
1558         /// [`RoutingMessageHandler`] implementation to call it indirectly. This may be useful to accept
1559         /// routing messages from a source using a protocol other than the lightning P2P protocol.
1560         ///
1561         /// This will skip verification of if the channel is actually on-chain.
1562         pub fn update_channel_from_announcement_no_lookup(
1563                 &self, msg: &ChannelAnnouncement
1564         ) -> Result<(), LightningError> {
1565                 self.update_channel_from_announcement::<&UtxoResolver>(msg, &None)
1566         }
1567
1568         /// Store or update channel info from a channel announcement without verifying the associated
1569         /// signatures. Because we aren't given the associated signatures here we cannot relay the
1570         /// channel announcement to any of our peers.
1571         ///
1572         /// If a [`UtxoLookup`] object is provided via `utxo_lookup`, it will be called to verify
1573         /// the corresponding UTXO exists on chain and is correctly-formatted.
1574         pub fn update_channel_from_unsigned_announcement<U: Deref>(
1575                 &self, msg: &msgs::UnsignedChannelAnnouncement, utxo_lookup: &Option<U>
1576         ) -> Result<(), LightningError>
1577         where
1578                 U::Target: UtxoLookup,
1579         {
1580                 self.update_channel_from_unsigned_announcement_intern(msg, None, utxo_lookup)
1581         }
1582
1583         /// Update channel from partial announcement data received via rapid gossip sync
1584         ///
1585         /// `timestamp: u64`: Timestamp emulating the backdated original announcement receipt (by the
1586         /// rapid gossip sync server)
1587         ///
1588         /// All other parameters as used in [`msgs::UnsignedChannelAnnouncement`] fields.
1589         pub fn add_channel_from_partial_announcement(&self, short_channel_id: u64, timestamp: u64, features: ChannelFeatures, node_id_1: PublicKey, node_id_2: PublicKey) -> Result<(), LightningError> {
1590                 if node_id_1 == node_id_2 {
1591                         return Err(LightningError{err: "Channel announcement node had a channel with itself".to_owned(), action: ErrorAction::IgnoreError});
1592                 };
1593
1594                 let node_1 = NodeId::from_pubkey(&node_id_1);
1595                 let node_2 = NodeId::from_pubkey(&node_id_2);
1596                 let channel_info = ChannelInfo {
1597                         features,
1598                         node_one: node_1.clone(),
1599                         one_to_two: None,
1600                         node_two: node_2.clone(),
1601                         two_to_one: None,
1602                         capacity_sats: None,
1603                         announcement_message: None,
1604                         announcement_received_time: timestamp,
1605                 };
1606
1607                 self.add_channel_between_nodes(short_channel_id, channel_info, None)
1608         }
1609
1610         fn add_channel_between_nodes(&self, short_channel_id: u64, channel_info: ChannelInfo, utxo_value: Option<u64>) -> Result<(), LightningError> {
1611                 let mut channels = self.channels.write().unwrap();
1612                 let mut nodes = self.nodes.write().unwrap();
1613
1614                 let node_id_a = channel_info.node_one.clone();
1615                 let node_id_b = channel_info.node_two.clone();
1616
1617                 log_gossip!(self.logger, "Adding channel {} between nodes {} and {}", short_channel_id, node_id_a, node_id_b);
1618
1619                 match channels.entry(short_channel_id) {
1620                         IndexedMapEntry::Occupied(mut entry) => {
1621                                 //TODO: because asking the blockchain if short_channel_id is valid is only optional
1622                                 //in the blockchain API, we need to handle it smartly here, though it's unclear
1623                                 //exactly how...
1624                                 if utxo_value.is_some() {
1625                                         // Either our UTXO provider is busted, there was a reorg, or the UTXO provider
1626                                         // only sometimes returns results. In any case remove the previous entry. Note
1627                                         // that the spec expects us to "blacklist" the node_ids involved, but we can't
1628                                         // do that because
1629                                         // a) we don't *require* a UTXO provider that always returns results.
1630                                         // b) we don't track UTXOs of channels we know about and remove them if they
1631                                         //    get reorg'd out.
1632                                         // c) it's unclear how to do so without exposing ourselves to massive DoS risk.
1633                                         self.remove_channel_in_nodes(&mut nodes, &entry.get(), short_channel_id);
1634                                         *entry.get_mut() = channel_info;
1635                                 } else {
1636                                         return Err(LightningError{err: "Already have knowledge of channel".to_owned(), action: ErrorAction::IgnoreDuplicateGossip});
1637                                 }
1638                         },
1639                         IndexedMapEntry::Vacant(entry) => {
1640                                 entry.insert(channel_info);
1641                         }
1642                 };
1643
1644                 for current_node_id in [node_id_a, node_id_b].iter() {
1645                         match nodes.entry(current_node_id.clone()) {
1646                                 IndexedMapEntry::Occupied(node_entry) => {
1647                                         node_entry.into_mut().channels.push(short_channel_id);
1648                                 },
1649                                 IndexedMapEntry::Vacant(node_entry) => {
1650                                         let mut removed_node_counters = self.removed_node_counters.lock().unwrap();
1651                                         let node_counter = removed_node_counters.pop()
1652                                                 .unwrap_or(self.next_node_counter.fetch_add(1, Ordering::Relaxed) as u32);
1653                                         node_entry.insert(NodeInfo {
1654                                                 channels: vec!(short_channel_id),
1655                                                 announcement_info: None,
1656                                                 node_counter,
1657                                         });
1658                                 }
1659                         };
1660                 };
1661
1662                 Ok(())
1663         }
1664
1665         fn update_channel_from_unsigned_announcement_intern<U: Deref>(
1666                 &self, msg: &msgs::UnsignedChannelAnnouncement, full_msg: Option<&msgs::ChannelAnnouncement>, utxo_lookup: &Option<U>
1667         ) -> Result<(), LightningError>
1668         where
1669                 U::Target: UtxoLookup,
1670         {
1671                 if msg.node_id_1 == msg.node_id_2 || msg.bitcoin_key_1 == msg.bitcoin_key_2 {
1672                         return Err(LightningError{err: "Channel announcement node had a channel with itself".to_owned(), action: ErrorAction::IgnoreError});
1673                 }
1674
1675                 if msg.chain_hash != self.chain_hash {
1676                         return Err(LightningError {
1677                                 err: "Channel announcement chain hash does not match genesis hash".to_owned(),
1678                                 action: ErrorAction::IgnoreAndLog(Level::Debug),
1679                         });
1680                 }
1681
1682                 {
1683                         let channels = self.channels.read().unwrap();
1684
1685                         if let Some(chan) = channels.get(&msg.short_channel_id) {
1686                                 if chan.capacity_sats.is_some() {
1687                                         // If we'd previously looked up the channel on-chain and checked the script
1688                                         // against what appears on-chain, ignore the duplicate announcement.
1689                                         //
1690                                         // Because a reorg could replace one channel with another at the same SCID, if
1691                                         // the channel appears to be different, we re-validate. This doesn't expose us
1692                                         // to any more DoS risk than not, as a peer can always flood us with
1693                                         // randomly-generated SCID values anyway.
1694                                         //
1695                                         // We use the Node IDs rather than the bitcoin_keys to check for "equivalence"
1696                                         // as we didn't (necessarily) store the bitcoin keys, and we only really care
1697                                         // if the peers on the channel changed anyway.
1698                                         if msg.node_id_1 == chan.node_one && msg.node_id_2 == chan.node_two {
1699                                                 return Err(LightningError {
1700                                                         err: "Already have chain-validated channel".to_owned(),
1701                                                         action: ErrorAction::IgnoreDuplicateGossip
1702                                                 });
1703                                         }
1704                                 } else if utxo_lookup.is_none() {
1705                                         // Similarly, if we can't check the chain right now anyway, ignore the
1706                                         // duplicate announcement without bothering to take the channels write lock.
1707                                         return Err(LightningError {
1708                                                 err: "Already have non-chain-validated channel".to_owned(),
1709                                                 action: ErrorAction::IgnoreDuplicateGossip
1710                                         });
1711                                 }
1712                         }
1713                 }
1714
1715                 {
1716                         let removed_channels = self.removed_channels.lock().unwrap();
1717                         let removed_nodes = self.removed_nodes.lock().unwrap();
1718                         if removed_channels.contains_key(&msg.short_channel_id) ||
1719                                 removed_nodes.contains_key(&msg.node_id_1) ||
1720                                 removed_nodes.contains_key(&msg.node_id_2) {
1721                                 return Err(LightningError{
1722                                         err: format!("Channel with SCID {} or one of its nodes was removed from our network graph recently", &msg.short_channel_id),
1723                                         action: ErrorAction::IgnoreAndLog(Level::Gossip)});
1724                         }
1725                 }
1726
1727                 let utxo_value = self.pending_checks.check_channel_announcement(
1728                         utxo_lookup, msg, full_msg)?;
1729
1730                 #[allow(unused_mut, unused_assignments)]
1731                 let mut announcement_received_time = 0;
1732                 #[cfg(feature = "std")]
1733                 {
1734                         announcement_received_time = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
1735                 }
1736
1737                 let chan_info = ChannelInfo {
1738                         features: msg.features.clone(),
1739                         node_one: msg.node_id_1,
1740                         one_to_two: None,
1741                         node_two: msg.node_id_2,
1742                         two_to_one: None,
1743                         capacity_sats: utxo_value,
1744                         announcement_message: if msg.excess_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY
1745                                 { full_msg.cloned() } else { None },
1746                         announcement_received_time,
1747                 };
1748
1749                 self.add_channel_between_nodes(msg.short_channel_id, chan_info, utxo_value)?;
1750
1751                 log_gossip!(self.logger, "Added channel_announcement for {}{}", msg.short_channel_id, if !msg.excess_data.is_empty() { " with excess uninterpreted data!" } else { "" });
1752                 Ok(())
1753         }
1754
1755         /// Marks a channel in the graph as failed permanently.
1756         ///
1757         /// The channel and any node for which this was their last channel are removed from the graph.
1758         pub fn channel_failed_permanent(&self, short_channel_id: u64) {
1759                 #[cfg(feature = "std")]
1760                 let current_time_unix = Some(SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs());
1761                 #[cfg(not(feature = "std"))]
1762                 let current_time_unix = None;
1763
1764                 self.channel_failed_permanent_with_time(short_channel_id, current_time_unix)
1765         }
1766
1767         /// Marks a channel in the graph as failed permanently.
1768         ///
1769         /// The channel and any node for which this was their last channel are removed from the graph.
1770         fn channel_failed_permanent_with_time(&self, short_channel_id: u64, current_time_unix: Option<u64>) {
1771                 let mut channels = self.channels.write().unwrap();
1772                 if let Some(chan) = channels.remove(&short_channel_id) {
1773                         let mut nodes = self.nodes.write().unwrap();
1774                         self.removed_channels.lock().unwrap().insert(short_channel_id, current_time_unix);
1775                         self.remove_channel_in_nodes(&mut nodes, &chan, short_channel_id);
1776                 }
1777         }
1778
1779         /// Marks a node in the graph as permanently failed, effectively removing it and its channels
1780         /// from local storage.
1781         pub fn node_failed_permanent(&self, node_id: &PublicKey) {
1782                 #[cfg(feature = "std")]
1783                 let current_time_unix = Some(SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs());
1784                 #[cfg(not(feature = "std"))]
1785                 let current_time_unix = None;
1786
1787                 let node_id = NodeId::from_pubkey(node_id);
1788                 let mut channels = self.channels.write().unwrap();
1789                 let mut nodes = self.nodes.write().unwrap();
1790                 let mut removed_channels = self.removed_channels.lock().unwrap();
1791                 let mut removed_nodes = self.removed_nodes.lock().unwrap();
1792
1793                 if let Some(node) = nodes.remove(&node_id) {
1794                         let mut removed_node_counters = self.removed_node_counters.lock().unwrap();
1795                         for scid in node.channels.iter() {
1796                                 if let Some(chan_info) = channels.remove(scid) {
1797                                         let other_node_id = if node_id == chan_info.node_one { chan_info.node_two } else { chan_info.node_one };
1798                                         if let IndexedMapEntry::Occupied(mut other_node_entry) = nodes.entry(other_node_id) {
1799                                                 other_node_entry.get_mut().channels.retain(|chan_id| {
1800                                                         *scid != *chan_id
1801                                                 });
1802                                                 if other_node_entry.get().channels.is_empty() {
1803                                                         removed_node_counters.push(other_node_entry.get().node_counter);
1804                                                         other_node_entry.remove_entry();
1805                                                 }
1806                                         }
1807                                         removed_channels.insert(*scid, current_time_unix);
1808                                 }
1809                         }
1810                         removed_node_counters.push(node.node_counter);
1811                         removed_nodes.insert(node_id, current_time_unix);
1812                 }
1813         }
1814
1815         #[cfg(feature = "std")]
1816         /// Removes information about channels that we haven't heard any updates about in some time.
1817         /// This can be used regularly to prune the network graph of channels that likely no longer
1818         /// exist.
1819         ///
1820         /// While there is no formal requirement that nodes regularly re-broadcast their channel
1821         /// updates every two weeks, the non-normative section of BOLT 7 currently suggests that
1822         /// pruning occur for updates which are at least two weeks old, which we implement here.
1823         ///
1824         /// Note that for users of the `lightning-background-processor` crate this method may be
1825         /// automatically called regularly for you.
1826         ///
1827         /// This method will also cause us to stop tracking removed nodes and channels if they have been
1828         /// in the map for a while so that these can be resynced from gossip in the future.
1829         ///
1830         /// This method is only available with the `std` feature. See
1831         /// [`NetworkGraph::remove_stale_channels_and_tracking_with_time`] for `no-std` use.
1832         pub fn remove_stale_channels_and_tracking(&self) {
1833                 let time = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
1834                 self.remove_stale_channels_and_tracking_with_time(time);
1835         }
1836
1837         /// Removes information about channels that we haven't heard any updates about in some time.
1838         /// This can be used regularly to prune the network graph of channels that likely no longer
1839         /// exist.
1840         ///
1841         /// While there is no formal requirement that nodes regularly re-broadcast their channel
1842         /// updates every two weeks, the non-normative section of BOLT 7 currently suggests that
1843         /// pruning occur for updates which are at least two weeks old, which we implement here.
1844         ///
1845         /// This method will also cause us to stop tracking removed nodes and channels if they have been
1846         /// in the map for a while so that these can be resynced from gossip in the future.
1847         ///
1848         /// This function takes the current unix time as an argument. For users with the `std` feature
1849         /// enabled, [`NetworkGraph::remove_stale_channels_and_tracking`] may be preferable.
1850         pub fn remove_stale_channels_and_tracking_with_time(&self, current_time_unix: u64) {
1851                 let mut channels = self.channels.write().unwrap();
1852                 // Time out if we haven't received an update in at least 14 days.
1853                 if current_time_unix > u32::max_value() as u64 { return; } // Remove by 2106
1854                 if current_time_unix < STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS { return; }
1855                 let min_time_unix: u32 = (current_time_unix - STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS) as u32;
1856                 // Sadly BTreeMap::retain was only stabilized in 1.53 so we can't switch to it for some
1857                 // time.
1858                 let mut scids_to_remove = Vec::new();
1859                 for (scid, info) in channels.unordered_iter_mut() {
1860                         if info.one_to_two.is_some() && info.one_to_two.as_ref().unwrap().last_update < min_time_unix {
1861                                 log_gossip!(self.logger, "Removing directional update one_to_two (0) for channel {} due to its timestamp {} being below {}",
1862                                         scid, info.one_to_two.as_ref().unwrap().last_update, min_time_unix);
1863                                 info.one_to_two = None;
1864                         }
1865                         if info.two_to_one.is_some() && info.two_to_one.as_ref().unwrap().last_update < min_time_unix {
1866                                 log_gossip!(self.logger, "Removing directional update two_to_one (1) for channel {} due to its timestamp {} being below {}",
1867                                         scid, info.two_to_one.as_ref().unwrap().last_update, min_time_unix);
1868                                 info.two_to_one = None;
1869                         }
1870                         if info.one_to_two.is_none() || info.two_to_one.is_none() {
1871                                 // We check the announcement_received_time here to ensure we don't drop
1872                                 // announcements that we just received and are just waiting for our peer to send a
1873                                 // channel_update for.
1874                                 let announcement_received_timestamp = info.announcement_received_time;
1875                                 if announcement_received_timestamp < min_time_unix as u64 {
1876                                         log_gossip!(self.logger, "Removing channel {} because both directional updates are missing and its announcement timestamp {} being below {}",
1877                                                 scid, announcement_received_timestamp, min_time_unix);
1878                                         scids_to_remove.push(*scid);
1879                                 }
1880                         }
1881                 }
1882                 if !scids_to_remove.is_empty() {
1883                         let mut nodes = self.nodes.write().unwrap();
1884                         for scid in scids_to_remove {
1885                                 let info = channels.remove(&scid).expect("We just accessed this scid, it should be present");
1886                                 self.remove_channel_in_nodes(&mut nodes, &info, scid);
1887                                 self.removed_channels.lock().unwrap().insert(scid, Some(current_time_unix));
1888                         }
1889                 }
1890
1891                 let should_keep_tracking = |time: &mut Option<u64>| {
1892                         if let Some(time) = time {
1893                                 current_time_unix.saturating_sub(*time) < REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS
1894                         } else {
1895                                 // NOTE: In the case of no-std, we won't have access to the current UNIX time at the time of removal,
1896                                 // so we'll just set the removal time here to the current UNIX time on the very next invocation
1897                                 // of this function.
1898                                 #[cfg(feature = "no-std")]
1899                                 {
1900                                         let mut tracked_time = Some(current_time_unix);
1901                                         core::mem::swap(time, &mut tracked_time);
1902                                         return true;
1903                                 }
1904                                 #[allow(unreachable_code)]
1905                                 false
1906                         }};
1907
1908                 self.removed_channels.lock().unwrap().retain(|_, time| should_keep_tracking(time));
1909                 self.removed_nodes.lock().unwrap().retain(|_, time| should_keep_tracking(time));
1910         }
1911
1912         /// For an already known (from announcement) channel, update info about one of the directions
1913         /// of the channel.
1914         ///
1915         /// You probably don't want to call this directly, instead relying on a [`P2PGossipSync`]'s
1916         /// [`RoutingMessageHandler`] implementation to call it indirectly. This may be useful to accept
1917         /// routing messages from a source using a protocol other than the lightning P2P protocol.
1918         ///
1919         /// If built with `no-std`, any updates with a timestamp more than two weeks in the past or
1920         /// materially in the future will be rejected.
1921         pub fn update_channel(&self, msg: &msgs::ChannelUpdate) -> Result<(), LightningError> {
1922                 self.update_channel_internal(&msg.contents, Some(&msg), Some(&msg.signature), false)
1923         }
1924
1925         /// For an already known (from announcement) channel, update info about one of the directions
1926         /// of the channel without verifying the associated signatures. Because we aren't given the
1927         /// associated signatures here we cannot relay the channel update to any of our peers.
1928         ///
1929         /// If built with `no-std`, any updates with a timestamp more than two weeks in the past or
1930         /// materially in the future will be rejected.
1931         pub fn update_channel_unsigned(&self, msg: &msgs::UnsignedChannelUpdate) -> Result<(), LightningError> {
1932                 self.update_channel_internal(msg, None, None, false)
1933         }
1934
1935         /// For an already known (from announcement) channel, verify the given [`ChannelUpdate`].
1936         ///
1937         /// This checks whether the update currently is applicable by [`Self::update_channel`].
1938         ///
1939         /// If built with `no-std`, any updates with a timestamp more than two weeks in the past or
1940         /// materially in the future will be rejected.
1941         pub fn verify_channel_update(&self, msg: &msgs::ChannelUpdate) -> Result<(), LightningError> {
1942                 self.update_channel_internal(&msg.contents, Some(&msg), Some(&msg.signature), true)
1943         }
1944
1945         fn update_channel_internal(&self, msg: &msgs::UnsignedChannelUpdate,
1946                 full_msg: Option<&msgs::ChannelUpdate>, sig: Option<&secp256k1::ecdsa::Signature>,
1947                 only_verify: bool) -> Result<(), LightningError>
1948         {
1949                 let chan_enabled = msg.flags & (1 << 1) != (1 << 1);
1950
1951                 if msg.chain_hash != self.chain_hash {
1952                         return Err(LightningError {
1953                                 err: "Channel update chain hash does not match genesis hash".to_owned(),
1954                                 action: ErrorAction::IgnoreAndLog(Level::Debug),
1955                         });
1956                 }
1957
1958                 #[cfg(all(feature = "std", not(test), not(feature = "_test_utils")))]
1959                 {
1960                         // Note that many tests rely on being able to set arbitrarily old timestamps, thus we
1961                         // disable this check during tests!
1962                         let time = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
1963                         if (msg.timestamp as u64) < time - STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS {
1964                                 return Err(LightningError{err: "channel_update is older than two weeks old".to_owned(), action: ErrorAction::IgnoreAndLog(Level::Gossip)});
1965                         }
1966                         if msg.timestamp as u64 > time + 60 * 60 * 24 {
1967                                 return Err(LightningError{err: "channel_update has a timestamp more than a day in the future".to_owned(), action: ErrorAction::IgnoreAndLog(Level::Gossip)});
1968                         }
1969                 }
1970
1971                 log_gossip!(self.logger, "Updating channel {} in direction {} with timestamp {}", msg.short_channel_id, msg.flags & 1, msg.timestamp);
1972
1973                 let mut channels = self.channels.write().unwrap();
1974                 match channels.get_mut(&msg.short_channel_id) {
1975                         None => {
1976                                 core::mem::drop(channels);
1977                                 self.pending_checks.check_hold_pending_channel_update(msg, full_msg)?;
1978                                 return Err(LightningError{err: "Couldn't find channel for update".to_owned(), action: ErrorAction::IgnoreError});
1979                         },
1980                         Some(channel) => {
1981                                 if msg.htlc_maximum_msat > MAX_VALUE_MSAT {
1982                                         return Err(LightningError{err:
1983                                                 "htlc_maximum_msat is larger than maximum possible msats".to_owned(),
1984                                                 action: ErrorAction::IgnoreError});
1985                                 }
1986
1987                                 if let Some(capacity_sats) = channel.capacity_sats {
1988                                         // It's possible channel capacity is available now, although it wasn't available at announcement (so the field is None).
1989                                         // Don't query UTXO set here to reduce DoS risks.
1990                                         if capacity_sats > MAX_VALUE_MSAT / 1000 || msg.htlc_maximum_msat > capacity_sats * 1000 {
1991                                                 return Err(LightningError{err:
1992                                                         "htlc_maximum_msat is larger than channel capacity or capacity is bogus".to_owned(),
1993                                                         action: ErrorAction::IgnoreError});
1994                                         }
1995                                 }
1996                                 macro_rules! check_update_latest {
1997                                         ($target: expr) => {
1998                                                 if let Some(existing_chan_info) = $target.as_ref() {
1999                                                         // The timestamp field is somewhat of a misnomer - the BOLTs use it to
2000                                                         // order updates to ensure you always have the latest one, only
2001                                                         // suggesting  that it be at least the current time. For
2002                                                         // channel_updates specifically, the BOLTs discuss the possibility of
2003                                                         // pruning based on the timestamp field being more than two weeks old,
2004                                                         // but only in the non-normative section.
2005                                                         if existing_chan_info.last_update > msg.timestamp {
2006                                                                 return Err(LightningError{err: "Update older than last processed update".to_owned(), action: ErrorAction::IgnoreDuplicateGossip});
2007                                                         } else if existing_chan_info.last_update == msg.timestamp {
2008                                                                 return Err(LightningError{err: "Update had same timestamp as last processed update".to_owned(), action: ErrorAction::IgnoreDuplicateGossip});
2009                                                         }
2010                                                 }
2011                                         }
2012                                 }
2013
2014                                 macro_rules! get_new_channel_info {
2015                                         () => { {
2016                                                 let last_update_message = if msg.excess_data.len() <= MAX_EXCESS_BYTES_FOR_RELAY
2017                                                         { full_msg.cloned() } else { None };
2018
2019                                                 let updated_channel_update_info = ChannelUpdateInfo {
2020                                                         enabled: chan_enabled,
2021                                                         last_update: msg.timestamp,
2022                                                         cltv_expiry_delta: msg.cltv_expiry_delta,
2023                                                         htlc_minimum_msat: msg.htlc_minimum_msat,
2024                                                         htlc_maximum_msat: msg.htlc_maximum_msat,
2025                                                         fees: RoutingFees {
2026                                                                 base_msat: msg.fee_base_msat,
2027                                                                 proportional_millionths: msg.fee_proportional_millionths,
2028                                                         },
2029                                                         last_update_message
2030                                                 };
2031                                                 Some(updated_channel_update_info)
2032                                         } }
2033                                 }
2034
2035                                 let msg_hash = hash_to_message!(&message_sha256d_hash(&msg)[..]);
2036                                 if msg.flags & 1 == 1 {
2037                                         check_update_latest!(channel.two_to_one);
2038                                         if let Some(sig) = sig {
2039                                                 secp_verify_sig!(self.secp_ctx, &msg_hash, &sig, &PublicKey::from_slice(channel.node_two.as_slice()).map_err(|_| LightningError{
2040                                                         err: "Couldn't parse source node pubkey".to_owned(),
2041                                                         action: ErrorAction::IgnoreAndLog(Level::Debug)
2042                                                 })?, "channel_update");
2043                                         }
2044                                         if !only_verify {
2045                                                 channel.two_to_one = get_new_channel_info!();
2046                                         }
2047                                 } else {
2048                                         check_update_latest!(channel.one_to_two);
2049                                         if let Some(sig) = sig {
2050                                                 secp_verify_sig!(self.secp_ctx, &msg_hash, &sig, &PublicKey::from_slice(channel.node_one.as_slice()).map_err(|_| LightningError{
2051                                                         err: "Couldn't parse destination node pubkey".to_owned(),
2052                                                         action: ErrorAction::IgnoreAndLog(Level::Debug)
2053                                                 })?, "channel_update");
2054                                         }
2055                                         if !only_verify {
2056                                                 channel.one_to_two = get_new_channel_info!();
2057                                         }
2058                                 }
2059                         }
2060                 }
2061
2062                 Ok(())
2063         }
2064
2065         fn remove_channel_in_nodes(&self, nodes: &mut IndexedMap<NodeId, NodeInfo>, chan: &ChannelInfo, short_channel_id: u64) {
2066                 macro_rules! remove_from_node {
2067                         ($node_id: expr) => {
2068                                 if let IndexedMapEntry::Occupied(mut entry) = nodes.entry($node_id) {
2069                                         entry.get_mut().channels.retain(|chan_id| {
2070                                                 short_channel_id != *chan_id
2071                                         });
2072                                         if entry.get().channels.is_empty() {
2073                                                 self.removed_node_counters.lock().unwrap().push(entry.get().node_counter);
2074                                                 entry.remove_entry();
2075                                         }
2076                                 } else {
2077                                         panic!("Had channel that pointed to unknown node (ie inconsistent network map)!");
2078                                 }
2079                         }
2080                 }
2081
2082                 remove_from_node!(chan.node_one);
2083                 remove_from_node!(chan.node_two);
2084         }
2085 }
2086
2087 impl ReadOnlyNetworkGraph<'_> {
2088         /// Returns all known valid channels' short ids along with announced channel info.
2089         ///
2090         /// This is not exported to bindings users because we don't want to return lifetime'd references
2091         pub fn channels(&self) -> &IndexedMap<u64, ChannelInfo> {
2092                 &*self.channels
2093         }
2094
2095         /// Returns information on a channel with the given id.
2096         pub fn channel(&self, short_channel_id: u64) -> Option<&ChannelInfo> {
2097                 self.channels.get(&short_channel_id)
2098         }
2099
2100         #[cfg(c_bindings)] // Non-bindings users should use `channels`
2101         /// Returns the list of channels in the graph
2102         pub fn list_channels(&self) -> Vec<u64> {
2103                 self.channels.unordered_keys().map(|c| *c).collect()
2104         }
2105
2106         /// Returns all known nodes' public keys along with announced node info.
2107         ///
2108         /// This is not exported to bindings users because we don't want to return lifetime'd references
2109         pub fn nodes(&self) -> &IndexedMap<NodeId, NodeInfo> {
2110                 &*self.nodes
2111         }
2112
2113         /// Returns information on a node with the given id.
2114         pub fn node(&self, node_id: &NodeId) -> Option<&NodeInfo> {
2115                 self.nodes.get(node_id)
2116         }
2117
2118         #[cfg(c_bindings)] // Non-bindings users should use `nodes`
2119         /// Returns the list of nodes in the graph
2120         pub fn list_nodes(&self) -> Vec<NodeId> {
2121                 self.nodes.unordered_keys().map(|n| *n).collect()
2122         }
2123
2124         /// Get network addresses by node id.
2125         /// Returns None if the requested node is completely unknown,
2126         /// or if node announcement for the node was never received.
2127         pub fn get_addresses(&self, pubkey: &PublicKey) -> Option<Vec<SocketAddress>> {
2128                 self.nodes.get(&NodeId::from_pubkey(&pubkey))
2129                         .and_then(|node| node.announcement_info.as_ref().map(|ann| ann.addresses().to_vec()))
2130         }
2131 }
2132
2133 #[cfg(test)]
2134 pub(crate) mod tests {
2135         use crate::events::{MessageSendEvent, MessageSendEventsProvider};
2136         use crate::ln::channelmanager;
2137         use crate::ln::chan_utils::make_funding_redeemscript;
2138         #[cfg(feature = "std")]
2139         use crate::ln::features::InitFeatures;
2140         use crate::routing::gossip::{P2PGossipSync, NetworkGraph, NetworkUpdate, NodeAlias, MAX_EXCESS_BYTES_FOR_RELAY, NodeId, RoutingFees, ChannelUpdateInfo, ChannelInfo, NodeAnnouncementInfo, NodeInfo};
2141         use crate::routing::utxo::{UtxoLookupError, UtxoResult};
2142         use crate::ln::msgs::{RoutingMessageHandler, UnsignedNodeAnnouncement, NodeAnnouncement,
2143                 UnsignedChannelAnnouncement, ChannelAnnouncement, UnsignedChannelUpdate, ChannelUpdate,
2144                 ReplyChannelRange, QueryChannelRange, QueryShortChannelIds, MAX_VALUE_MSAT};
2145         use crate::util::config::UserConfig;
2146         use crate::util::test_utils;
2147         use crate::util::ser::{ReadableArgs, Readable, Writeable};
2148         use crate::util::scid_utils::scid_from_parts;
2149
2150         use crate::routing::gossip::REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS;
2151         use super::STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS;
2152
2153         use bitcoin::hashes::sha256d::Hash as Sha256dHash;
2154         use bitcoin::hashes::Hash;
2155         use bitcoin::hashes::hex::FromHex;
2156         use bitcoin::network::constants::Network;
2157         use bitcoin::blockdata::constants::ChainHash;
2158         use bitcoin::blockdata::script::ScriptBuf;
2159         use bitcoin::blockdata::transaction::TxOut;
2160         use bitcoin::secp256k1::{PublicKey, SecretKey};
2161         use bitcoin::secp256k1::{All, Secp256k1};
2162
2163         use crate::io;
2164         use bitcoin::secp256k1;
2165         use crate::prelude::*;
2166         use crate::sync::Arc;
2167
2168         fn create_network_graph() -> NetworkGraph<Arc<test_utils::TestLogger>> {
2169                 let logger = Arc::new(test_utils::TestLogger::new());
2170                 NetworkGraph::new(Network::Testnet, logger)
2171         }
2172
2173         fn create_gossip_sync(network_graph: &NetworkGraph<Arc<test_utils::TestLogger>>) -> (
2174                 Secp256k1<All>, P2PGossipSync<&NetworkGraph<Arc<test_utils::TestLogger>>,
2175                 Arc<test_utils::TestChainSource>, Arc<test_utils::TestLogger>>
2176         ) {
2177                 let secp_ctx = Secp256k1::new();
2178                 let logger = Arc::new(test_utils::TestLogger::new());
2179                 let gossip_sync = P2PGossipSync::new(network_graph, None, Arc::clone(&logger));
2180                 (secp_ctx, gossip_sync)
2181         }
2182
2183         #[test]
2184         #[cfg(feature = "std")]
2185         fn request_full_sync_finite_times() {
2186                 let network_graph = create_network_graph();
2187                 let (secp_ctx, gossip_sync) = create_gossip_sync(&network_graph);
2188                 let node_id = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&<Vec<u8>>::from_hex("0202020202020202020202020202020202020202020202020202020202020202").unwrap()[..]).unwrap());
2189
2190                 assert!(gossip_sync.should_request_full_sync(&node_id));
2191                 assert!(gossip_sync.should_request_full_sync(&node_id));
2192                 assert!(gossip_sync.should_request_full_sync(&node_id));
2193                 assert!(gossip_sync.should_request_full_sync(&node_id));
2194                 assert!(gossip_sync.should_request_full_sync(&node_id));
2195                 assert!(!gossip_sync.should_request_full_sync(&node_id));
2196         }
2197
2198         pub(crate) fn get_signed_node_announcement<F: Fn(&mut UnsignedNodeAnnouncement)>(f: F, node_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>) -> NodeAnnouncement {
2199                 let node_id = NodeId::from_pubkey(&PublicKey::from_secret_key(&secp_ctx, node_key));
2200                 let mut unsigned_announcement = UnsignedNodeAnnouncement {
2201                         features: channelmanager::provided_node_features(&UserConfig::default()),
2202                         timestamp: 100,
2203                         node_id,
2204                         rgb: [0; 3],
2205                         alias: NodeAlias([0; 32]),
2206                         addresses: Vec::new(),
2207                         excess_address_data: Vec::new(),
2208                         excess_data: Vec::new(),
2209                 };
2210                 f(&mut unsigned_announcement);
2211                 let msghash = hash_to_message!(&Sha256dHash::hash(&unsigned_announcement.encode()[..])[..]);
2212                 NodeAnnouncement {
2213                         signature: secp_ctx.sign_ecdsa(&msghash, node_key),
2214                         contents: unsigned_announcement
2215                 }
2216         }
2217
2218         pub(crate) fn get_signed_channel_announcement<F: Fn(&mut UnsignedChannelAnnouncement)>(f: F, node_1_key: &SecretKey, node_2_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>) -> ChannelAnnouncement {
2219                 let node_id_1 = PublicKey::from_secret_key(&secp_ctx, node_1_key);
2220                 let node_id_2 = PublicKey::from_secret_key(&secp_ctx, node_2_key);
2221                 let node_1_btckey = &SecretKey::from_slice(&[40; 32]).unwrap();
2222                 let node_2_btckey = &SecretKey::from_slice(&[39; 32]).unwrap();
2223
2224                 let mut unsigned_announcement = UnsignedChannelAnnouncement {
2225                         features: channelmanager::provided_channel_features(&UserConfig::default()),
2226                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
2227                         short_channel_id: 0,
2228                         node_id_1: NodeId::from_pubkey(&node_id_1),
2229                         node_id_2: NodeId::from_pubkey(&node_id_2),
2230                         bitcoin_key_1: NodeId::from_pubkey(&PublicKey::from_secret_key(&secp_ctx, node_1_btckey)),
2231                         bitcoin_key_2: NodeId::from_pubkey(&PublicKey::from_secret_key(&secp_ctx, node_2_btckey)),
2232                         excess_data: Vec::new(),
2233                 };
2234                 f(&mut unsigned_announcement);
2235                 let msghash = hash_to_message!(&Sha256dHash::hash(&unsigned_announcement.encode()[..])[..]);
2236                 ChannelAnnouncement {
2237                         node_signature_1: secp_ctx.sign_ecdsa(&msghash, node_1_key),
2238                         node_signature_2: secp_ctx.sign_ecdsa(&msghash, node_2_key),
2239                         bitcoin_signature_1: secp_ctx.sign_ecdsa(&msghash, node_1_btckey),
2240                         bitcoin_signature_2: secp_ctx.sign_ecdsa(&msghash, node_2_btckey),
2241                         contents: unsigned_announcement,
2242                 }
2243         }
2244
2245         pub(crate) fn get_channel_script(secp_ctx: &Secp256k1<secp256k1::All>) -> ScriptBuf {
2246                 let node_1_btckey = SecretKey::from_slice(&[40; 32]).unwrap();
2247                 let node_2_btckey = SecretKey::from_slice(&[39; 32]).unwrap();
2248                 make_funding_redeemscript(&PublicKey::from_secret_key(secp_ctx, &node_1_btckey),
2249                         &PublicKey::from_secret_key(secp_ctx, &node_2_btckey)).to_v0_p2wsh()
2250         }
2251
2252         pub(crate) fn get_signed_channel_update<F: Fn(&mut UnsignedChannelUpdate)>(f: F, node_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>) -> ChannelUpdate {
2253                 let mut unsigned_channel_update = UnsignedChannelUpdate {
2254                         chain_hash: ChainHash::using_genesis_block(Network::Testnet),
2255                         short_channel_id: 0,
2256                         timestamp: 100,
2257                         flags: 0,
2258                         cltv_expiry_delta: 144,
2259                         htlc_minimum_msat: 1_000_000,
2260                         htlc_maximum_msat: 1_000_000,
2261                         fee_base_msat: 10_000,
2262                         fee_proportional_millionths: 20,
2263                         excess_data: Vec::new()
2264                 };
2265                 f(&mut unsigned_channel_update);
2266                 let msghash = hash_to_message!(&Sha256dHash::hash(&unsigned_channel_update.encode()[..])[..]);
2267                 ChannelUpdate {
2268                         signature: secp_ctx.sign_ecdsa(&msghash, node_key),
2269                         contents: unsigned_channel_update
2270                 }
2271         }
2272
2273         #[test]
2274         fn handling_node_announcements() {
2275                 let network_graph = create_network_graph();
2276                 let (secp_ctx, gossip_sync) = create_gossip_sync(&network_graph);
2277
2278                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
2279                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
2280                 let zero_hash = Sha256dHash::hash(&[0; 32]);
2281
2282                 let valid_announcement = get_signed_node_announcement(|_| {}, node_1_privkey, &secp_ctx);
2283                 match gossip_sync.handle_node_announcement(&valid_announcement) {
2284                         Ok(_) => panic!(),
2285                         Err(e) => assert_eq!("No existing channels for node_announcement", e.err)
2286                 };
2287
2288                 {
2289                         // Announce a channel to add a corresponding node.
2290                         let valid_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2291                         match gossip_sync.handle_channel_announcement(&valid_announcement) {
2292                                 Ok(res) => assert!(res),
2293                                 _ => panic!()
2294                         };
2295                 }
2296
2297                 match gossip_sync.handle_node_announcement(&valid_announcement) {
2298                         Ok(res) => assert!(res),
2299                         Err(_) => panic!()
2300                 };
2301
2302                 let fake_msghash = hash_to_message!(zero_hash.as_byte_array());
2303                 match gossip_sync.handle_node_announcement(
2304                         &NodeAnnouncement {
2305                                 signature: secp_ctx.sign_ecdsa(&fake_msghash, node_1_privkey),
2306                                 contents: valid_announcement.contents.clone()
2307                 }) {
2308                         Ok(_) => panic!(),
2309                         Err(e) => assert_eq!(e.err, "Invalid signature on node_announcement message")
2310                 };
2311
2312                 let announcement_with_data = get_signed_node_announcement(|unsigned_announcement| {
2313                         unsigned_announcement.timestamp += 1000;
2314                         unsigned_announcement.excess_data.resize(MAX_EXCESS_BYTES_FOR_RELAY + 1, 0);
2315                 }, node_1_privkey, &secp_ctx);
2316                 // Return false because contains excess data.
2317                 match gossip_sync.handle_node_announcement(&announcement_with_data) {
2318                         Ok(res) => assert!(!res),
2319                         Err(_) => panic!()
2320                 };
2321
2322                 // Even though previous announcement was not relayed further, we still accepted it,
2323                 // so we now won't accept announcements before the previous one.
2324                 let outdated_announcement = get_signed_node_announcement(|unsigned_announcement| {
2325                         unsigned_announcement.timestamp += 1000 - 10;
2326                 }, node_1_privkey, &secp_ctx);
2327                 match gossip_sync.handle_node_announcement(&outdated_announcement) {
2328                         Ok(_) => panic!(),
2329                         Err(e) => assert_eq!(e.err, "Update older than last processed update")
2330                 };
2331         }
2332
2333         #[test]
2334         fn handling_channel_announcements() {
2335                 let secp_ctx = Secp256k1::new();
2336                 let logger = test_utils::TestLogger::new();
2337
2338                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
2339                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
2340
2341                 let good_script = get_channel_script(&secp_ctx);
2342                 let valid_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2343
2344                 // Test if the UTXO lookups were not supported
2345                 let network_graph = NetworkGraph::new(Network::Testnet, &logger);
2346                 let mut gossip_sync = P2PGossipSync::new(&network_graph, None, &logger);
2347                 match gossip_sync.handle_channel_announcement(&valid_announcement) {
2348                         Ok(res) => assert!(res),
2349                         _ => panic!()
2350                 };
2351
2352                 {
2353                         match network_graph.read_only().channels().get(&valid_announcement.contents.short_channel_id) {
2354                                 None => panic!(),
2355                                 Some(_) => ()
2356                         };
2357                 }
2358
2359                 // If we receive announcement for the same channel (with UTXO lookups disabled),
2360                 // drop new one on the floor, since we can't see any changes.
2361                 match gossip_sync.handle_channel_announcement(&valid_announcement) {
2362                         Ok(_) => panic!(),
2363                         Err(e) => assert_eq!(e.err, "Already have non-chain-validated channel")
2364                 };
2365
2366                 // Test if an associated transaction were not on-chain (or not confirmed).
2367                 let chain_source = test_utils::TestChainSource::new(Network::Testnet);
2368                 *chain_source.utxo_ret.lock().unwrap() = UtxoResult::Sync(Err(UtxoLookupError::UnknownTx));
2369                 let network_graph = NetworkGraph::new(Network::Testnet, &logger);
2370                 gossip_sync = P2PGossipSync::new(&network_graph, Some(&chain_source), &logger);
2371
2372                 let valid_announcement = get_signed_channel_announcement(|unsigned_announcement| {
2373                         unsigned_announcement.short_channel_id += 1;
2374                 }, node_1_privkey, node_2_privkey, &secp_ctx);
2375                 match gossip_sync.handle_channel_announcement(&valid_announcement) {
2376                         Ok(_) => panic!(),
2377                         Err(e) => assert_eq!(e.err, "Channel announced without corresponding UTXO entry")
2378                 };
2379
2380                 // Now test if the transaction is found in the UTXO set and the script is correct.
2381                 *chain_source.utxo_ret.lock().unwrap() =
2382                         UtxoResult::Sync(Ok(TxOut { value: 0, script_pubkey: good_script.clone() }));
2383                 let valid_announcement = get_signed_channel_announcement(|unsigned_announcement| {
2384                         unsigned_announcement.short_channel_id += 2;
2385                 }, node_1_privkey, node_2_privkey, &secp_ctx);
2386                 match gossip_sync.handle_channel_announcement(&valid_announcement) {
2387                         Ok(res) => assert!(res),
2388                         _ => panic!()
2389                 };
2390
2391                 {
2392                         match network_graph.read_only().channels().get(&valid_announcement.contents.short_channel_id) {
2393                                 None => panic!(),
2394                                 Some(_) => ()
2395                         };
2396                 }
2397
2398                 // If we receive announcement for the same channel, once we've validated it against the
2399                 // chain, we simply ignore all new (duplicate) announcements.
2400                 *chain_source.utxo_ret.lock().unwrap() =
2401                         UtxoResult::Sync(Ok(TxOut { value: 0, script_pubkey: good_script }));
2402                 match gossip_sync.handle_channel_announcement(&valid_announcement) {
2403                         Ok(_) => panic!(),
2404                         Err(e) => assert_eq!(e.err, "Already have chain-validated channel")
2405                 };
2406
2407                 #[cfg(feature = "std")]
2408                 {
2409                         use std::time::{SystemTime, UNIX_EPOCH};
2410
2411                         let tracking_time = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
2412                         // Mark a node as permanently failed so it's tracked as removed.
2413                         gossip_sync.network_graph().node_failed_permanent(&PublicKey::from_secret_key(&secp_ctx, node_1_privkey));
2414
2415                         // Return error and ignore valid channel announcement if one of the nodes has been tracked as removed.
2416                         let valid_announcement = get_signed_channel_announcement(|unsigned_announcement| {
2417                                 unsigned_announcement.short_channel_id += 3;
2418                         }, node_1_privkey, node_2_privkey, &secp_ctx);
2419                         match gossip_sync.handle_channel_announcement(&valid_announcement) {
2420                                 Ok(_) => panic!(),
2421                                 Err(e) => assert_eq!(e.err, "Channel with SCID 3 or one of its nodes was removed from our network graph recently")
2422                         }
2423
2424                         gossip_sync.network_graph().remove_stale_channels_and_tracking_with_time(tracking_time + REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS);
2425
2426                         // The above channel announcement should be handled as per normal now.
2427                         match gossip_sync.handle_channel_announcement(&valid_announcement) {
2428                                 Ok(res) => assert!(res),
2429                                 _ => panic!()
2430                         }
2431                 }
2432
2433                 // Don't relay valid channels with excess data
2434                 let valid_announcement = get_signed_channel_announcement(|unsigned_announcement| {
2435                         unsigned_announcement.short_channel_id += 4;
2436                         unsigned_announcement.excess_data.resize(MAX_EXCESS_BYTES_FOR_RELAY + 1, 0);
2437                 }, node_1_privkey, node_2_privkey, &secp_ctx);
2438                 match gossip_sync.handle_channel_announcement(&valid_announcement) {
2439                         Ok(res) => assert!(!res),
2440                         _ => panic!()
2441                 };
2442
2443                 let mut invalid_sig_announcement = valid_announcement.clone();
2444                 invalid_sig_announcement.contents.excess_data = Vec::new();
2445                 match gossip_sync.handle_channel_announcement(&invalid_sig_announcement) {
2446                         Ok(_) => panic!(),
2447                         Err(e) => assert_eq!(e.err, "Invalid signature on channel_announcement message")
2448                 };
2449
2450                 let channel_to_itself_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_1_privkey, &secp_ctx);
2451                 match gossip_sync.handle_channel_announcement(&channel_to_itself_announcement) {
2452                         Ok(_) => panic!(),
2453                         Err(e) => assert_eq!(e.err, "Channel announcement node had a channel with itself")
2454                 };
2455
2456                 // Test that channel announcements with the wrong chain hash are ignored (network graph is testnet,
2457                 // announcement is mainnet).
2458                 let incorrect_chain_announcement = get_signed_channel_announcement(|unsigned_announcement| {
2459                         unsigned_announcement.chain_hash = ChainHash::using_genesis_block(Network::Bitcoin);
2460                 }, node_1_privkey, node_2_privkey, &secp_ctx);
2461                 match gossip_sync.handle_channel_announcement(&incorrect_chain_announcement) {
2462                         Ok(_) => panic!(),
2463                         Err(e) => assert_eq!(e.err, "Channel announcement chain hash does not match genesis hash")
2464                 };
2465         }
2466
2467         #[test]
2468         fn handling_channel_update() {
2469                 let secp_ctx = Secp256k1::new();
2470                 let logger = test_utils::TestLogger::new();
2471                 let chain_source = test_utils::TestChainSource::new(Network::Testnet);
2472                 let network_graph = NetworkGraph::new(Network::Testnet, &logger);
2473                 let gossip_sync = P2PGossipSync::new(&network_graph, Some(&chain_source), &logger);
2474
2475                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
2476                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
2477
2478                 let amount_sats = 1000_000;
2479                 let short_channel_id;
2480
2481                 {
2482                         // Announce a channel we will update
2483                         let good_script = get_channel_script(&secp_ctx);
2484                         *chain_source.utxo_ret.lock().unwrap() =
2485                                 UtxoResult::Sync(Ok(TxOut { value: amount_sats, script_pubkey: good_script.clone() }));
2486
2487                         let valid_channel_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2488                         short_channel_id = valid_channel_announcement.contents.short_channel_id;
2489                         match gossip_sync.handle_channel_announcement(&valid_channel_announcement) {
2490                                 Ok(_) => (),
2491                                 Err(_) => panic!()
2492                         };
2493
2494                 }
2495
2496                 let valid_channel_update = get_signed_channel_update(|_| {}, node_1_privkey, &secp_ctx);
2497                 network_graph.verify_channel_update(&valid_channel_update).unwrap();
2498                 match gossip_sync.handle_channel_update(&valid_channel_update) {
2499                         Ok(res) => assert!(res),
2500                         _ => panic!(),
2501                 };
2502
2503                 {
2504                         match network_graph.read_only().channels().get(&short_channel_id) {
2505                                 None => panic!(),
2506                                 Some(channel_info) => {
2507                                         assert_eq!(channel_info.one_to_two.as_ref().unwrap().cltv_expiry_delta, 144);
2508                                         assert!(channel_info.two_to_one.is_none());
2509                                 }
2510                         };
2511                 }
2512
2513                 let valid_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2514                         unsigned_channel_update.timestamp += 100;
2515                         unsigned_channel_update.excess_data.resize(MAX_EXCESS_BYTES_FOR_RELAY + 1, 0);
2516                 }, node_1_privkey, &secp_ctx);
2517                 // Return false because contains excess data
2518                 match gossip_sync.handle_channel_update(&valid_channel_update) {
2519                         Ok(res) => assert!(!res),
2520                         _ => panic!()
2521                 };
2522
2523                 let valid_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2524                         unsigned_channel_update.timestamp += 110;
2525                         unsigned_channel_update.short_channel_id += 1;
2526                 }, node_1_privkey, &secp_ctx);
2527                 match gossip_sync.handle_channel_update(&valid_channel_update) {
2528                         Ok(_) => panic!(),
2529                         Err(e) => assert_eq!(e.err, "Couldn't find channel for update")
2530                 };
2531
2532                 let valid_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2533                         unsigned_channel_update.htlc_maximum_msat = MAX_VALUE_MSAT + 1;
2534                         unsigned_channel_update.timestamp += 110;
2535                 }, node_1_privkey, &secp_ctx);
2536                 match gossip_sync.handle_channel_update(&valid_channel_update) {
2537                         Ok(_) => panic!(),
2538                         Err(e) => assert_eq!(e.err, "htlc_maximum_msat is larger than maximum possible msats")
2539                 };
2540
2541                 let valid_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2542                         unsigned_channel_update.htlc_maximum_msat = amount_sats * 1000 + 1;
2543                         unsigned_channel_update.timestamp += 110;
2544                 }, node_1_privkey, &secp_ctx);
2545                 match gossip_sync.handle_channel_update(&valid_channel_update) {
2546                         Ok(_) => panic!(),
2547                         Err(e) => assert_eq!(e.err, "htlc_maximum_msat is larger than channel capacity or capacity is bogus")
2548                 };
2549
2550                 // Even though previous update was not relayed further, we still accepted it,
2551                 // so we now won't accept update before the previous one.
2552                 let valid_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2553                         unsigned_channel_update.timestamp += 100;
2554                 }, node_1_privkey, &secp_ctx);
2555                 match gossip_sync.handle_channel_update(&valid_channel_update) {
2556                         Ok(_) => panic!(),
2557                         Err(e) => assert_eq!(e.err, "Update had same timestamp as last processed update")
2558                 };
2559
2560                 let mut invalid_sig_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2561                         unsigned_channel_update.timestamp += 500;
2562                 }, node_1_privkey, &secp_ctx);
2563                 let zero_hash = Sha256dHash::hash(&[0; 32]);
2564                 let fake_msghash = hash_to_message!(zero_hash.as_byte_array());
2565                 invalid_sig_channel_update.signature = secp_ctx.sign_ecdsa(&fake_msghash, node_1_privkey);
2566                 match gossip_sync.handle_channel_update(&invalid_sig_channel_update) {
2567                         Ok(_) => panic!(),
2568                         Err(e) => assert_eq!(e.err, "Invalid signature on channel_update message")
2569                 };
2570
2571                 // Test that channel updates with the wrong chain hash are ignored (network graph is testnet, channel
2572                 // update is mainet).
2573                 let incorrect_chain_update = get_signed_channel_update(|unsigned_channel_update| {
2574                         unsigned_channel_update.chain_hash = ChainHash::using_genesis_block(Network::Bitcoin);
2575                 }, node_1_privkey, &secp_ctx);
2576
2577                 match gossip_sync.handle_channel_update(&incorrect_chain_update) {
2578                         Ok(_) => panic!(),
2579                         Err(e) => assert_eq!(e.err, "Channel update chain hash does not match genesis hash")
2580                 };
2581         }
2582
2583         #[test]
2584         fn handling_network_update() {
2585                 let logger = test_utils::TestLogger::new();
2586                 let network_graph = NetworkGraph::new(Network::Testnet, &logger);
2587                 let secp_ctx = Secp256k1::new();
2588
2589                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
2590                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
2591                 let node_2_id = PublicKey::from_secret_key(&secp_ctx, node_2_privkey);
2592
2593                 {
2594                         // There is no nodes in the table at the beginning.
2595                         assert_eq!(network_graph.read_only().nodes().len(), 0);
2596                 }
2597
2598                 let short_channel_id;
2599                 {
2600                         // Check we won't apply an update via `handle_network_update` for privacy reasons, but
2601                         // can continue fine if we manually apply it.
2602                         let valid_channel_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2603                         short_channel_id = valid_channel_announcement.contents.short_channel_id;
2604                         let chain_source: Option<&test_utils::TestChainSource> = None;
2605                         assert!(network_graph.update_channel_from_announcement(&valid_channel_announcement, &chain_source).is_ok());
2606                         assert!(network_graph.read_only().channels().get(&short_channel_id).is_some());
2607
2608                         let valid_channel_update = get_signed_channel_update(|_| {}, node_1_privkey, &secp_ctx);
2609                         assert!(network_graph.read_only().channels().get(&short_channel_id).unwrap().one_to_two.is_none());
2610
2611                         network_graph.handle_network_update(&NetworkUpdate::ChannelUpdateMessage {
2612                                 msg: valid_channel_update.clone(),
2613                         });
2614
2615                         assert!(network_graph.read_only().channels().get(&short_channel_id).unwrap().one_to_two.is_none());
2616                         network_graph.update_channel(&valid_channel_update).unwrap();
2617                 }
2618
2619                 // Non-permanent failure doesn't touch the channel at all
2620                 {
2621                         match network_graph.read_only().channels().get(&short_channel_id) {
2622                                 None => panic!(),
2623                                 Some(channel_info) => {
2624                                         assert!(channel_info.one_to_two.as_ref().unwrap().enabled);
2625                                 }
2626                         };
2627
2628                         network_graph.handle_network_update(&NetworkUpdate::ChannelFailure {
2629                                 short_channel_id,
2630                                 is_permanent: false,
2631                         });
2632
2633                         match network_graph.read_only().channels().get(&short_channel_id) {
2634                                 None => panic!(),
2635                                 Some(channel_info) => {
2636                                         assert!(channel_info.one_to_two.as_ref().unwrap().enabled);
2637                                 }
2638                         };
2639                 }
2640
2641                 // Permanent closing deletes a channel
2642                 network_graph.handle_network_update(&NetworkUpdate::ChannelFailure {
2643                         short_channel_id,
2644                         is_permanent: true,
2645                 });
2646
2647                 assert_eq!(network_graph.read_only().channels().len(), 0);
2648                 // Nodes are also deleted because there are no associated channels anymore
2649                 assert_eq!(network_graph.read_only().nodes().len(), 0);
2650
2651                 {
2652                         // Get a new network graph since we don't want to track removed nodes in this test with "std"
2653                         let network_graph = NetworkGraph::new(Network::Testnet, &logger);
2654
2655                         // Announce a channel to test permanent node failure
2656                         let valid_channel_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2657                         let short_channel_id = valid_channel_announcement.contents.short_channel_id;
2658                         let chain_source: Option<&test_utils::TestChainSource> = None;
2659                         assert!(network_graph.update_channel_from_announcement(&valid_channel_announcement, &chain_source).is_ok());
2660                         assert!(network_graph.read_only().channels().get(&short_channel_id).is_some());
2661
2662                         // Non-permanent node failure does not delete any nodes or channels
2663                         network_graph.handle_network_update(&NetworkUpdate::NodeFailure {
2664                                 node_id: node_2_id,
2665                                 is_permanent: false,
2666                         });
2667
2668                         assert!(network_graph.read_only().channels().get(&short_channel_id).is_some());
2669                         assert!(network_graph.read_only().nodes().get(&NodeId::from_pubkey(&node_2_id)).is_some());
2670
2671                         // Permanent node failure deletes node and its channels
2672                         network_graph.handle_network_update(&NetworkUpdate::NodeFailure {
2673                                 node_id: node_2_id,
2674                                 is_permanent: true,
2675                         });
2676
2677                         assert_eq!(network_graph.read_only().nodes().len(), 0);
2678                         // Channels are also deleted because the associated node has been deleted
2679                         assert_eq!(network_graph.read_only().channels().len(), 0);
2680                 }
2681         }
2682
2683         #[test]
2684         fn test_channel_timeouts() {
2685                 // Test the removal of channels with `remove_stale_channels_and_tracking`.
2686                 let logger = test_utils::TestLogger::new();
2687                 let chain_source = test_utils::TestChainSource::new(Network::Testnet);
2688                 let network_graph = NetworkGraph::new(Network::Testnet, &logger);
2689                 let gossip_sync = P2PGossipSync::new(&network_graph, Some(&chain_source), &logger);
2690                 let secp_ctx = Secp256k1::new();
2691
2692                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
2693                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
2694
2695                 let valid_channel_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2696                 let short_channel_id = valid_channel_announcement.contents.short_channel_id;
2697                 let chain_source: Option<&test_utils::TestChainSource> = None;
2698                 assert!(network_graph.update_channel_from_announcement(&valid_channel_announcement, &chain_source).is_ok());
2699                 assert!(network_graph.read_only().channels().get(&short_channel_id).is_some());
2700
2701                 // Submit two channel updates for each channel direction (update.flags bit).
2702                 let valid_channel_update = get_signed_channel_update(|_| {}, node_1_privkey, &secp_ctx);
2703                 assert!(gossip_sync.handle_channel_update(&valid_channel_update).is_ok());
2704                 assert!(network_graph.read_only().channels().get(&short_channel_id).unwrap().one_to_two.is_some());
2705
2706                 let valid_channel_update_2 = get_signed_channel_update(|update| {update.flags |=1;}, node_2_privkey, &secp_ctx);
2707                 gossip_sync.handle_channel_update(&valid_channel_update_2).unwrap();
2708                 assert!(network_graph.read_only().channels().get(&short_channel_id).unwrap().two_to_one.is_some());
2709
2710                 network_graph.remove_stale_channels_and_tracking_with_time(100 + STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS);
2711                 assert_eq!(network_graph.read_only().channels().len(), 1);
2712                 assert_eq!(network_graph.read_only().nodes().len(), 2);
2713
2714                 network_graph.remove_stale_channels_and_tracking_with_time(101 + STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS);
2715                 #[cfg(not(feature = "std"))] {
2716                         // Make sure removed channels are tracked.
2717                         assert_eq!(network_graph.removed_channels.lock().unwrap().len(), 1);
2718                 }
2719                 network_graph.remove_stale_channels_and_tracking_with_time(101 + STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS +
2720                         REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS);
2721
2722                 #[cfg(feature = "std")]
2723                 {
2724                         // In std mode, a further check is performed before fully removing the channel -
2725                         // the channel_announcement must have been received at least two weeks ago. We
2726                         // fudge that here by indicating the time has jumped two weeks.
2727                         assert_eq!(network_graph.read_only().channels().len(), 1);
2728                         assert_eq!(network_graph.read_only().nodes().len(), 2);
2729
2730                         // Note that the directional channel information will have been removed already..
2731                         // We want to check that this will work even if *one* of the channel updates is recent,
2732                         // so we should add it with a recent timestamp.
2733                         assert!(network_graph.read_only().channels().get(&short_channel_id).unwrap().one_to_two.is_none());
2734                         use std::time::{SystemTime, UNIX_EPOCH};
2735                         let announcement_time = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
2736                         let valid_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2737                                 unsigned_channel_update.timestamp = (announcement_time + 1 + STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS) as u32;
2738                         }, node_1_privkey, &secp_ctx);
2739                         assert!(gossip_sync.handle_channel_update(&valid_channel_update).is_ok());
2740                         assert!(network_graph.read_only().channels().get(&short_channel_id).unwrap().one_to_two.is_some());
2741                         network_graph.remove_stale_channels_and_tracking_with_time(announcement_time + 1 + STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS);
2742                         // Make sure removed channels are tracked.
2743                         assert_eq!(network_graph.removed_channels.lock().unwrap().len(), 1);
2744                         // Provide a later time so that sufficient time has passed
2745                         network_graph.remove_stale_channels_and_tracking_with_time(announcement_time + 1 + STALE_CHANNEL_UPDATE_AGE_LIMIT_SECS +
2746                                 REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS);
2747                 }
2748
2749                 assert_eq!(network_graph.read_only().channels().len(), 0);
2750                 assert_eq!(network_graph.read_only().nodes().len(), 0);
2751                 assert!(network_graph.removed_channels.lock().unwrap().is_empty());
2752
2753                 #[cfg(feature = "std")]
2754                 {
2755                         use std::time::{SystemTime, UNIX_EPOCH};
2756
2757                         let tracking_time = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
2758
2759                         // Clear tracked nodes and channels for clean slate
2760                         network_graph.removed_channels.lock().unwrap().clear();
2761                         network_graph.removed_nodes.lock().unwrap().clear();
2762
2763                         // Add a channel and nodes from channel announcement. So our network graph will
2764                         // now only consist of two nodes and one channel between them.
2765                         assert!(network_graph.update_channel_from_announcement(
2766                                 &valid_channel_announcement, &chain_source).is_ok());
2767
2768                         // Mark the channel as permanently failed. This will also remove the two nodes
2769                         // and all of the entries will be tracked as removed.
2770                         network_graph.channel_failed_permanent_with_time(short_channel_id, Some(tracking_time));
2771
2772                         // Should not remove from tracking if insufficient time has passed
2773                         network_graph.remove_stale_channels_and_tracking_with_time(
2774                                 tracking_time + REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS - 1);
2775                         assert_eq!(network_graph.removed_channels.lock().unwrap().len(), 1, "Removed channel count â‰  1 with tracking_time {}", tracking_time);
2776
2777                         // Provide a later time so that sufficient time has passed
2778                         network_graph.remove_stale_channels_and_tracking_with_time(
2779                                 tracking_time + REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS);
2780                         assert!(network_graph.removed_channels.lock().unwrap().is_empty(), "Unexpectedly removed channels with tracking_time {}", tracking_time);
2781                         assert!(network_graph.removed_nodes.lock().unwrap().is_empty(), "Unexpectedly removed nodes with tracking_time {}", tracking_time);
2782                 }
2783
2784                 #[cfg(not(feature = "std"))]
2785                 {
2786                         // When we don't have access to the system clock, the time we started tracking removal will only
2787                         // be that provided by the first call to `remove_stale_channels_and_tracking_with_time`. Hence,
2788                         // only if sufficient time has passed after that first call, will the next call remove it from
2789                         // tracking.
2790                         let removal_time = 1664619654;
2791
2792                         // Clear removed nodes and channels for clean slate
2793                         network_graph.removed_channels.lock().unwrap().clear();
2794                         network_graph.removed_nodes.lock().unwrap().clear();
2795
2796                         // Add a channel and nodes from channel announcement. So our network graph will
2797                         // now only consist of two nodes and one channel between them.
2798                         assert!(network_graph.update_channel_from_announcement(
2799                                 &valid_channel_announcement, &chain_source).is_ok());
2800
2801                         // Mark the channel as permanently failed. This will also remove the two nodes
2802                         // and all of the entries will be tracked as removed.
2803                         network_graph.channel_failed_permanent(short_channel_id);
2804
2805                         // The first time we call the following, the channel will have a removal time assigned.
2806                         network_graph.remove_stale_channels_and_tracking_with_time(removal_time);
2807                         assert_eq!(network_graph.removed_channels.lock().unwrap().len(), 1);
2808
2809                         // Provide a later time so that sufficient time has passed
2810                         network_graph.remove_stale_channels_and_tracking_with_time(
2811                                 removal_time + REMOVED_ENTRIES_TRACKING_AGE_LIMIT_SECS);
2812                         assert!(network_graph.removed_channels.lock().unwrap().is_empty());
2813                         assert!(network_graph.removed_nodes.lock().unwrap().is_empty());
2814                 }
2815         }
2816
2817         #[test]
2818         fn getting_next_channel_announcements() {
2819                 let network_graph = create_network_graph();
2820                 let (secp_ctx, gossip_sync) = create_gossip_sync(&network_graph);
2821                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
2822                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
2823
2824                 // Channels were not announced yet.
2825                 let channels_with_announcements = gossip_sync.get_next_channel_announcement(0);
2826                 assert!(channels_with_announcements.is_none());
2827
2828                 let short_channel_id;
2829                 {
2830                         // Announce a channel we will update
2831                         let valid_channel_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2832                         short_channel_id = valid_channel_announcement.contents.short_channel_id;
2833                         match gossip_sync.handle_channel_announcement(&valid_channel_announcement) {
2834                                 Ok(_) => (),
2835                                 Err(_) => panic!()
2836                         };
2837                 }
2838
2839                 // Contains initial channel announcement now.
2840                 let channels_with_announcements = gossip_sync.get_next_channel_announcement(short_channel_id);
2841                 if let Some(channel_announcements) = channels_with_announcements {
2842                         let (_, ref update_1, ref update_2) = channel_announcements;
2843                         assert_eq!(update_1, &None);
2844                         assert_eq!(update_2, &None);
2845                 } else {
2846                         panic!();
2847                 }
2848
2849                 {
2850                         // Valid channel update
2851                         let valid_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2852                                 unsigned_channel_update.timestamp = 101;
2853                         }, node_1_privkey, &secp_ctx);
2854                         match gossip_sync.handle_channel_update(&valid_channel_update) {
2855                                 Ok(_) => (),
2856                                 Err(_) => panic!()
2857                         };
2858                 }
2859
2860                 // Now contains an initial announcement and an update.
2861                 let channels_with_announcements = gossip_sync.get_next_channel_announcement(short_channel_id);
2862                 if let Some(channel_announcements) = channels_with_announcements {
2863                         let (_, ref update_1, ref update_2) = channel_announcements;
2864                         assert_ne!(update_1, &None);
2865                         assert_eq!(update_2, &None);
2866                 } else {
2867                         panic!();
2868                 }
2869
2870                 {
2871                         // Channel update with excess data.
2872                         let valid_channel_update = get_signed_channel_update(|unsigned_channel_update| {
2873                                 unsigned_channel_update.timestamp = 102;
2874                                 unsigned_channel_update.excess_data = [1; MAX_EXCESS_BYTES_FOR_RELAY + 1].to_vec();
2875                         }, node_1_privkey, &secp_ctx);
2876                         match gossip_sync.handle_channel_update(&valid_channel_update) {
2877                                 Ok(_) => (),
2878                                 Err(_) => panic!()
2879                         };
2880                 }
2881
2882                 // Test that announcements with excess data won't be returned
2883                 let channels_with_announcements = gossip_sync.get_next_channel_announcement(short_channel_id);
2884                 if let Some(channel_announcements) = channels_with_announcements {
2885                         let (_, ref update_1, ref update_2) = channel_announcements;
2886                         assert_eq!(update_1, &None);
2887                         assert_eq!(update_2, &None);
2888                 } else {
2889                         panic!();
2890                 }
2891
2892                 // Further starting point have no channels after it
2893                 let channels_with_announcements = gossip_sync.get_next_channel_announcement(short_channel_id + 1000);
2894                 assert!(channels_with_announcements.is_none());
2895         }
2896
2897         #[test]
2898         fn getting_next_node_announcements() {
2899                 let network_graph = create_network_graph();
2900                 let (secp_ctx, gossip_sync) = create_gossip_sync(&network_graph);
2901                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
2902                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
2903                 let node_id_1 = NodeId::from_pubkey(&PublicKey::from_secret_key(&secp_ctx, node_1_privkey));
2904
2905                 // No nodes yet.
2906                 let next_announcements = gossip_sync.get_next_node_announcement(None);
2907                 assert!(next_announcements.is_none());
2908
2909                 {
2910                         // Announce a channel to add 2 nodes
2911                         let valid_channel_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2912                         match gossip_sync.handle_channel_announcement(&valid_channel_announcement) {
2913                                 Ok(_) => (),
2914                                 Err(_) => panic!()
2915                         };
2916                 }
2917
2918                 // Nodes were never announced
2919                 let next_announcements = gossip_sync.get_next_node_announcement(None);
2920                 assert!(next_announcements.is_none());
2921
2922                 {
2923                         let valid_announcement = get_signed_node_announcement(|_| {}, node_1_privkey, &secp_ctx);
2924                         match gossip_sync.handle_node_announcement(&valid_announcement) {
2925                                 Ok(_) => (),
2926                                 Err(_) => panic!()
2927                         };
2928
2929                         let valid_announcement = get_signed_node_announcement(|_| {}, node_2_privkey, &secp_ctx);
2930                         match gossip_sync.handle_node_announcement(&valid_announcement) {
2931                                 Ok(_) => (),
2932                                 Err(_) => panic!()
2933                         };
2934                 }
2935
2936                 let next_announcements = gossip_sync.get_next_node_announcement(None);
2937                 assert!(next_announcements.is_some());
2938
2939                 // Skip the first node.
2940                 let next_announcements = gossip_sync.get_next_node_announcement(Some(&node_id_1));
2941                 assert!(next_announcements.is_some());
2942
2943                 {
2944                         // Later announcement which should not be relayed (excess data) prevent us from sharing a node
2945                         let valid_announcement = get_signed_node_announcement(|unsigned_announcement| {
2946                                 unsigned_announcement.timestamp += 10;
2947                                 unsigned_announcement.excess_data = [1; MAX_EXCESS_BYTES_FOR_RELAY + 1].to_vec();
2948                         }, node_2_privkey, &secp_ctx);
2949                         match gossip_sync.handle_node_announcement(&valid_announcement) {
2950                                 Ok(res) => assert!(!res),
2951                                 Err(_) => panic!()
2952                         };
2953                 }
2954
2955                 let next_announcements = gossip_sync.get_next_node_announcement(Some(&node_id_1));
2956                 assert!(next_announcements.is_none());
2957         }
2958
2959         #[test]
2960         fn network_graph_serialization() {
2961                 let network_graph = create_network_graph();
2962                 let (secp_ctx, gossip_sync) = create_gossip_sync(&network_graph);
2963
2964                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
2965                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
2966
2967                 // Announce a channel to add a corresponding node.
2968                 let valid_announcement = get_signed_channel_announcement(|_| {}, node_1_privkey, node_2_privkey, &secp_ctx);
2969                 match gossip_sync.handle_channel_announcement(&valid_announcement) {
2970                         Ok(res) => assert!(res),
2971                         _ => panic!()
2972                 };
2973
2974                 let valid_announcement = get_signed_node_announcement(|_| {}, node_1_privkey, &secp_ctx);
2975                 match gossip_sync.handle_node_announcement(&valid_announcement) {
2976                         Ok(_) => (),
2977                         Err(_) => panic!()
2978                 };
2979
2980                 let mut w = test_utils::TestVecWriter(Vec::new());
2981                 assert!(!network_graph.read_only().nodes().is_empty());
2982                 assert!(!network_graph.read_only().channels().is_empty());
2983                 network_graph.write(&mut w).unwrap();
2984
2985                 let logger = Arc::new(test_utils::TestLogger::new());
2986                 assert!(<NetworkGraph<_>>::read(&mut io::Cursor::new(&w.0), logger).unwrap() == network_graph);
2987         }
2988
2989         #[test]
2990         fn network_graph_tlv_serialization() {
2991                 let network_graph = create_network_graph();
2992                 network_graph.set_last_rapid_gossip_sync_timestamp(42);
2993
2994                 let mut w = test_utils::TestVecWriter(Vec::new());
2995                 network_graph.write(&mut w).unwrap();
2996
2997                 let logger = Arc::new(test_utils::TestLogger::new());
2998                 let reassembled_network_graph: NetworkGraph<_> = ReadableArgs::read(&mut io::Cursor::new(&w.0), logger).unwrap();
2999                 assert!(reassembled_network_graph == network_graph);
3000                 assert_eq!(reassembled_network_graph.get_last_rapid_gossip_sync_timestamp().unwrap(), 42);
3001         }
3002
3003         #[test]
3004         #[cfg(feature = "std")]
3005         fn calling_sync_routing_table() {
3006                 use std::time::{SystemTime, UNIX_EPOCH};
3007                 use crate::ln::msgs::Init;
3008
3009                 let network_graph = create_network_graph();
3010                 let (secp_ctx, gossip_sync) = create_gossip_sync(&network_graph);
3011                 let node_privkey_1 = &SecretKey::from_slice(&[42; 32]).unwrap();
3012                 let node_id_1 = PublicKey::from_secret_key(&secp_ctx, node_privkey_1);
3013
3014                 let chain_hash = ChainHash::using_genesis_block(Network::Testnet);
3015
3016                 // It should ignore if gossip_queries feature is not enabled
3017                 {
3018                         let init_msg = Init { features: InitFeatures::empty(), networks: None, remote_network_address: None };
3019                         gossip_sync.peer_connected(&node_id_1, &init_msg, true).unwrap();
3020                         let events = gossip_sync.get_and_clear_pending_msg_events();
3021                         assert_eq!(events.len(), 0);
3022                 }
3023
3024                 // It should send a gossip_timestamp_filter with the correct information
3025                 {
3026                         let mut features = InitFeatures::empty();
3027                         features.set_gossip_queries_optional();
3028                         let init_msg = Init { features, networks: None, remote_network_address: None };
3029                         gossip_sync.peer_connected(&node_id_1, &init_msg, true).unwrap();
3030                         let events = gossip_sync.get_and_clear_pending_msg_events();
3031                         assert_eq!(events.len(), 1);
3032                         match &events[0] {
3033                                 MessageSendEvent::SendGossipTimestampFilter{ node_id, msg } => {
3034                                         assert_eq!(node_id, &node_id_1);
3035                                         assert_eq!(msg.chain_hash, chain_hash);
3036                                         let expected_timestamp = SystemTime::now().duration_since(UNIX_EPOCH).expect("Time must be > 1970").as_secs();
3037                                         assert!((msg.first_timestamp as u64) >= expected_timestamp - 60*60*24*7*2);
3038                                         assert!((msg.first_timestamp as u64) < expected_timestamp - 60*60*24*7*2 + 10);
3039                                         assert_eq!(msg.timestamp_range, u32::max_value());
3040                                 },
3041                                 _ => panic!("Expected MessageSendEvent::SendChannelRangeQuery")
3042                         };
3043                 }
3044         }
3045
3046         #[test]
3047         fn handling_query_channel_range() {
3048                 let network_graph = create_network_graph();
3049                 let (secp_ctx, gossip_sync) = create_gossip_sync(&network_graph);
3050
3051                 let chain_hash = ChainHash::using_genesis_block(Network::Testnet);
3052                 let node_1_privkey = &SecretKey::from_slice(&[42; 32]).unwrap();
3053                 let node_2_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
3054                 let node_id_2 = PublicKey::from_secret_key(&secp_ctx, node_2_privkey);
3055
3056                 let mut scids: Vec<u64> = vec![
3057                         scid_from_parts(0xfffffe, 0xffffff, 0xffff).unwrap(), // max
3058                         scid_from_parts(0xffffff, 0xffffff, 0xffff).unwrap(), // never
3059                 ];
3060
3061                 // used for testing multipart reply across blocks
3062                 for block in 100000..=108001 {
3063                         scids.push(scid_from_parts(block, 0, 0).unwrap());
3064                 }
3065
3066                 // used for testing resumption on same block
3067                 scids.push(scid_from_parts(108001, 1, 0).unwrap());
3068
3069                 for scid in scids {
3070                         let valid_announcement = get_signed_channel_announcement(|unsigned_announcement| {
3071                                 unsigned_announcement.short_channel_id = scid;
3072                         }, node_1_privkey, node_2_privkey, &secp_ctx);
3073                         match gossip_sync.handle_channel_announcement(&valid_announcement) {
3074                                 Ok(_) => (),
3075                                 _ => panic!()
3076                         };
3077                 }
3078
3079                 // Error when number_of_blocks=0
3080                 do_handling_query_channel_range(
3081                         &gossip_sync,
3082                         &node_id_2,
3083                         QueryChannelRange {
3084                                 chain_hash: chain_hash.clone(),
3085                                 first_blocknum: 0,
3086                                 number_of_blocks: 0,
3087                         },
3088                         false,
3089                         vec![ReplyChannelRange {
3090                                 chain_hash: chain_hash.clone(),
3091                                 first_blocknum: 0,
3092                                 number_of_blocks: 0,
3093                                 sync_complete: true,
3094                                 short_channel_ids: vec![]
3095                         }]
3096                 );
3097
3098                 // Error when wrong chain
3099                 do_handling_query_channel_range(
3100                         &gossip_sync,
3101                         &node_id_2,
3102                         QueryChannelRange {
3103                                 chain_hash: ChainHash::using_genesis_block(Network::Bitcoin),
3104                                 first_blocknum: 0,
3105                                 number_of_blocks: 0xffff_ffff,
3106                         },
3107                         false,
3108                         vec![ReplyChannelRange {
3109                                 chain_hash: ChainHash::using_genesis_block(Network::Bitcoin),
3110                                 first_blocknum: 0,
3111                                 number_of_blocks: 0xffff_ffff,
3112                                 sync_complete: true,
3113                                 short_channel_ids: vec![],
3114                         }]
3115                 );
3116
3117                 // Error when first_blocknum > 0xffffff
3118                 do_handling_query_channel_range(
3119                         &gossip_sync,
3120                         &node_id_2,
3121                         QueryChannelRange {
3122                                 chain_hash: chain_hash.clone(),
3123                                 first_blocknum: 0x01000000,
3124                                 number_of_blocks: 0xffff_ffff,
3125                         },
3126                         false,
3127                         vec![ReplyChannelRange {
3128                                 chain_hash: chain_hash.clone(),
3129                                 first_blocknum: 0x01000000,
3130                                 number_of_blocks: 0xffff_ffff,
3131                                 sync_complete: true,
3132                                 short_channel_ids: vec![]
3133                         }]
3134                 );
3135
3136                 // Empty reply when max valid SCID block num
3137                 do_handling_query_channel_range(
3138                         &gossip_sync,
3139                         &node_id_2,
3140                         QueryChannelRange {
3141                                 chain_hash: chain_hash.clone(),
3142                                 first_blocknum: 0xffffff,
3143                                 number_of_blocks: 1,
3144                         },
3145                         true,
3146                         vec![
3147                                 ReplyChannelRange {
3148                                         chain_hash: chain_hash.clone(),
3149                                         first_blocknum: 0xffffff,
3150                                         number_of_blocks: 1,
3151                                         sync_complete: true,
3152                                         short_channel_ids: vec![]
3153                                 },
3154                         ]
3155                 );
3156
3157                 // No results in valid query range
3158                 do_handling_query_channel_range(
3159                         &gossip_sync,
3160                         &node_id_2,
3161                         QueryChannelRange {
3162                                 chain_hash: chain_hash.clone(),
3163                                 first_blocknum: 1000,
3164                                 number_of_blocks: 1000,
3165                         },
3166                         true,
3167                         vec![
3168                                 ReplyChannelRange {
3169                                         chain_hash: chain_hash.clone(),
3170                                         first_blocknum: 1000,
3171                                         number_of_blocks: 1000,
3172                                         sync_complete: true,
3173                                         short_channel_ids: vec![],
3174                                 }
3175                         ]
3176                 );
3177
3178                 // Overflow first_blocknum + number_of_blocks
3179                 do_handling_query_channel_range(
3180                         &gossip_sync,
3181                         &node_id_2,
3182                         QueryChannelRange {
3183                                 chain_hash: chain_hash.clone(),
3184                                 first_blocknum: 0xfe0000,
3185                                 number_of_blocks: 0xffffffff,
3186                         },
3187                         true,
3188                         vec![
3189                                 ReplyChannelRange {
3190                                         chain_hash: chain_hash.clone(),
3191                                         first_blocknum: 0xfe0000,
3192                                         number_of_blocks: 0xffffffff - 0xfe0000,
3193                                         sync_complete: true,
3194                                         short_channel_ids: vec![
3195                                                 0xfffffe_ffffff_ffff, // max
3196                                         ]
3197                                 }
3198                         ]
3199                 );
3200
3201                 // Single block exactly full
3202                 do_handling_query_channel_range(
3203                         &gossip_sync,
3204                         &node_id_2,
3205                         QueryChannelRange {
3206                                 chain_hash: chain_hash.clone(),
3207                                 first_blocknum: 100000,
3208                                 number_of_blocks: 8000,
3209                         },
3210                         true,
3211                         vec![
3212                                 ReplyChannelRange {
3213                                         chain_hash: chain_hash.clone(),
3214                                         first_blocknum: 100000,
3215                                         number_of_blocks: 8000,
3216                                         sync_complete: true,
3217                                         short_channel_ids: (100000..=107999)
3218                                                 .map(|block| scid_from_parts(block, 0, 0).unwrap())
3219                                                 .collect(),
3220                                 },
3221                         ]
3222                 );
3223
3224                 // Multiple split on new block
3225                 do_handling_query_channel_range(
3226                         &gossip_sync,
3227                         &node_id_2,
3228                         QueryChannelRange {
3229                                 chain_hash: chain_hash.clone(),
3230                                 first_blocknum: 100000,
3231                                 number_of_blocks: 8001,
3232                         },
3233                         true,
3234                         vec![
3235                                 ReplyChannelRange {
3236                                         chain_hash: chain_hash.clone(),
3237                                         first_blocknum: 100000,
3238                                         number_of_blocks: 7999,
3239                                         sync_complete: false,
3240                                         short_channel_ids: (100000..=107999)
3241                                                 .map(|block| scid_from_parts(block, 0, 0).unwrap())
3242                                                 .collect(),
3243                                 },
3244                                 ReplyChannelRange {
3245                                         chain_hash: chain_hash.clone(),
3246                                         first_blocknum: 107999,
3247                                         number_of_blocks: 2,
3248                                         sync_complete: true,
3249                                         short_channel_ids: vec![
3250                                                 scid_from_parts(108000, 0, 0).unwrap(),
3251                                         ],
3252                                 }
3253                         ]
3254                 );
3255
3256                 // Multiple split on same block
3257                 do_handling_query_channel_range(
3258                         &gossip_sync,
3259                         &node_id_2,
3260                         QueryChannelRange {
3261                                 chain_hash: chain_hash.clone(),
3262                                 first_blocknum: 100002,
3263                                 number_of_blocks: 8000,
3264                         },
3265                         true,
3266                         vec![
3267                                 ReplyChannelRange {
3268                                         chain_hash: chain_hash.clone(),
3269                                         first_blocknum: 100002,
3270                                         number_of_blocks: 7999,
3271                                         sync_complete: false,
3272                                         short_channel_ids: (100002..=108001)
3273                                                 .map(|block| scid_from_parts(block, 0, 0).unwrap())
3274                                                 .collect(),
3275                                 },
3276                                 ReplyChannelRange {
3277                                         chain_hash: chain_hash.clone(),
3278                                         first_blocknum: 108001,
3279                                         number_of_blocks: 1,
3280                                         sync_complete: true,
3281                                         short_channel_ids: vec![
3282                                                 scid_from_parts(108001, 1, 0).unwrap(),
3283                                         ],
3284                                 }
3285                         ]
3286                 );
3287         }
3288
3289         fn do_handling_query_channel_range(
3290                 gossip_sync: &P2PGossipSync<&NetworkGraph<Arc<test_utils::TestLogger>>, Arc<test_utils::TestChainSource>, Arc<test_utils::TestLogger>>,
3291                 test_node_id: &PublicKey,
3292                 msg: QueryChannelRange,
3293                 expected_ok: bool,
3294                 expected_replies: Vec<ReplyChannelRange>
3295         ) {
3296                 let mut max_firstblocknum = msg.first_blocknum.saturating_sub(1);
3297                 let mut c_lightning_0_9_prev_end_blocknum = max_firstblocknum;
3298                 let query_end_blocknum = msg.end_blocknum();
3299                 let result = gossip_sync.handle_query_channel_range(test_node_id, msg);
3300
3301                 if expected_ok {
3302                         assert!(result.is_ok());
3303                 } else {
3304                         assert!(result.is_err());
3305                 }
3306
3307                 let events = gossip_sync.get_and_clear_pending_msg_events();
3308                 assert_eq!(events.len(), expected_replies.len());
3309
3310                 for i in 0..events.len() {
3311                         let expected_reply = &expected_replies[i];
3312                         match &events[i] {
3313                                 MessageSendEvent::SendReplyChannelRange { node_id, msg } => {
3314                                         assert_eq!(node_id, test_node_id);
3315                                         assert_eq!(msg.chain_hash, expected_reply.chain_hash);
3316                                         assert_eq!(msg.first_blocknum, expected_reply.first_blocknum);
3317                                         assert_eq!(msg.number_of_blocks, expected_reply.number_of_blocks);
3318                                         assert_eq!(msg.sync_complete, expected_reply.sync_complete);
3319                                         assert_eq!(msg.short_channel_ids, expected_reply.short_channel_ids);
3320
3321                                         // Enforce exactly the sequencing requirements present on c-lightning v0.9.3
3322                                         assert!(msg.first_blocknum == c_lightning_0_9_prev_end_blocknum || msg.first_blocknum == c_lightning_0_9_prev_end_blocknum.saturating_add(1));
3323                                         assert!(msg.first_blocknum >= max_firstblocknum);
3324                                         max_firstblocknum = msg.first_blocknum;
3325                                         c_lightning_0_9_prev_end_blocknum = msg.first_blocknum.saturating_add(msg.number_of_blocks);
3326
3327                                         // Check that the last block count is >= the query's end_blocknum
3328                                         if i == events.len() - 1 {
3329                                                 assert!(msg.first_blocknum.saturating_add(msg.number_of_blocks) >= query_end_blocknum);
3330                                         }
3331                                 },
3332                                 _ => panic!("expected MessageSendEvent::SendReplyChannelRange"),
3333                         }
3334                 }
3335         }
3336
3337         #[test]
3338         fn handling_query_short_channel_ids() {
3339                 let network_graph = create_network_graph();
3340                 let (secp_ctx, gossip_sync) = create_gossip_sync(&network_graph);
3341                 let node_privkey = &SecretKey::from_slice(&[41; 32]).unwrap();
3342                 let node_id = PublicKey::from_secret_key(&secp_ctx, node_privkey);
3343
3344                 let chain_hash = ChainHash::using_genesis_block(Network::Testnet);
3345
3346                 let result = gossip_sync.handle_query_short_channel_ids(&node_id, QueryShortChannelIds {
3347                         chain_hash,
3348                         short_channel_ids: vec![0x0003e8_000000_0000],
3349                 });
3350                 assert!(result.is_err());
3351         }
3352
3353         #[test]
3354         fn displays_node_alias() {
3355                 let format_str_alias = |alias: &str| {
3356                         let mut bytes = [0u8; 32];
3357                         bytes[..alias.as_bytes().len()].copy_from_slice(alias.as_bytes());
3358                         format!("{}", NodeAlias(bytes))
3359                 };
3360
3361                 assert_eq!(format_str_alias("I\u{1F496}LDK! \u{26A1}"), "I\u{1F496}LDK! \u{26A1}");
3362                 assert_eq!(format_str_alias("I\u{1F496}LDK!\0\u{26A1}"), "I\u{1F496}LDK!");
3363                 assert_eq!(format_str_alias("I\u{1F496}LDK!\t\u{26A1}"), "I\u{1F496}LDK!\u{FFFD}\u{26A1}");
3364
3365                 let format_bytes_alias = |alias: &[u8]| {
3366                         let mut bytes = [0u8; 32];
3367                         bytes[..alias.len()].copy_from_slice(alias);
3368                         format!("{}", NodeAlias(bytes))
3369                 };
3370
3371                 assert_eq!(format_bytes_alias(b"\xFFI <heart> LDK!"), "\u{FFFD}I <heart> LDK!");
3372                 assert_eq!(format_bytes_alias(b"\xFFI <heart>\0LDK!"), "\u{FFFD}I <heart>");
3373                 assert_eq!(format_bytes_alias(b"\xFFI <heart>\tLDK!"), "\u{FFFD}I <heart>\u{FFFD}LDK!");
3374         }
3375
3376         #[test]
3377         fn channel_info_is_readable() {
3378                 let chanmon_cfgs = crate::ln::functional_test_utils::create_chanmon_cfgs(2);
3379                 let node_cfgs = crate::ln::functional_test_utils::create_node_cfgs(2, &chanmon_cfgs);
3380                 let node_chanmgrs = crate::ln::functional_test_utils::create_node_chanmgrs(2, &node_cfgs, &[None, None, None, None]);
3381                 let nodes = crate::ln::functional_test_utils::create_network(2, &node_cfgs, &node_chanmgrs);
3382                 let config = crate::ln::functional_test_utils::test_default_channel_config();
3383
3384                 // 1. Test encoding/decoding of ChannelUpdateInfo
3385                 let chan_update_info = ChannelUpdateInfo {
3386                         last_update: 23,
3387                         enabled: true,
3388                         cltv_expiry_delta: 42,
3389                         htlc_minimum_msat: 1234,
3390                         htlc_maximum_msat: 5678,
3391                         fees: RoutingFees { base_msat: 9, proportional_millionths: 10 },
3392                         last_update_message: None,
3393                 };
3394
3395                 let mut encoded_chan_update_info: Vec<u8> = Vec::new();
3396                 assert!(chan_update_info.write(&mut encoded_chan_update_info).is_ok());
3397
3398                 // First make sure we can read ChannelUpdateInfos we just wrote
3399                 let read_chan_update_info: ChannelUpdateInfo = crate::util::ser::Readable::read(&mut encoded_chan_update_info.as_slice()).unwrap();
3400                 assert_eq!(chan_update_info, read_chan_update_info);
3401
3402                 // Check the serialization hasn't changed.
3403                 let legacy_chan_update_info_with_some: Vec<u8> = <Vec<u8>>::from_hex("340004000000170201010402002a060800000000000004d2080909000000000000162e0a0d0c00040000000902040000000a0c0100").unwrap();
3404                 assert_eq!(encoded_chan_update_info, legacy_chan_update_info_with_some);
3405
3406                 // Check we fail if htlc_maximum_msat is not present in either the ChannelUpdateInfo itself
3407                 // or the ChannelUpdate enclosed with `last_update_message`.
3408                 let legacy_chan_update_info_with_some_and_fail_update: Vec<u8> = <Vec<u8>>::from_hex("b40004000000170201010402002a060800000000000004d2080909000000000000162e0a0d0c00040000000902040000000a0c8181d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f00083a840000034d013413a70000009000000000000f42400000271000000014").unwrap();
3409                 let read_chan_update_info_res: Result<ChannelUpdateInfo, crate::ln::msgs::DecodeError> = crate::util::ser::Readable::read(&mut legacy_chan_update_info_with_some_and_fail_update.as_slice());
3410                 assert!(read_chan_update_info_res.is_err());
3411
3412                 let legacy_chan_update_info_with_none: Vec<u8> = <Vec<u8>>::from_hex("2c0004000000170201010402002a060800000000000004d20801000a0d0c00040000000902040000000a0c0100").unwrap();
3413                 let read_chan_update_info_res: Result<ChannelUpdateInfo, crate::ln::msgs::DecodeError> = crate::util::ser::Readable::read(&mut legacy_chan_update_info_with_none.as_slice());
3414                 assert!(read_chan_update_info_res.is_err());
3415
3416                 // 2. Test encoding/decoding of ChannelInfo
3417                 // Check we can encode/decode ChannelInfo without ChannelUpdateInfo fields present.
3418                 let chan_info_none_updates = ChannelInfo {
3419                         features: channelmanager::provided_channel_features(&config),
3420                         node_one: NodeId::from_pubkey(&nodes[0].node.get_our_node_id()),
3421                         one_to_two: None,
3422                         node_two: NodeId::from_pubkey(&nodes[1].node.get_our_node_id()),
3423                         two_to_one: None,
3424                         capacity_sats: None,
3425                         announcement_message: None,
3426                         announcement_received_time: 87654,
3427                 };
3428
3429                 let mut encoded_chan_info: Vec<u8> = Vec::new();
3430                 assert!(chan_info_none_updates.write(&mut encoded_chan_info).is_ok());
3431
3432                 let read_chan_info: ChannelInfo = crate::util::ser::Readable::read(&mut encoded_chan_info.as_slice()).unwrap();
3433                 assert_eq!(chan_info_none_updates, read_chan_info);
3434
3435                 // Check we can encode/decode ChannelInfo with ChannelUpdateInfo fields present.
3436                 let chan_info_some_updates = ChannelInfo {
3437                         features: channelmanager::provided_channel_features(&config),
3438                         node_one: NodeId::from_pubkey(&nodes[0].node.get_our_node_id()),
3439                         one_to_two: Some(chan_update_info.clone()),
3440                         node_two: NodeId::from_pubkey(&nodes[1].node.get_our_node_id()),
3441                         two_to_one: Some(chan_update_info.clone()),
3442                         capacity_sats: None,
3443                         announcement_message: None,
3444                         announcement_received_time: 87654,
3445                 };
3446
3447                 let mut encoded_chan_info: Vec<u8> = Vec::new();
3448                 assert!(chan_info_some_updates.write(&mut encoded_chan_info).is_ok());
3449
3450                 let read_chan_info: ChannelInfo = crate::util::ser::Readable::read(&mut encoded_chan_info.as_slice()).unwrap();
3451                 assert_eq!(chan_info_some_updates, read_chan_info);
3452
3453                 // Check the serialization hasn't changed.
3454                 let legacy_chan_info_with_some: Vec<u8> = <Vec<u8>>::from_hex("ca00020000010800000000000156660221027f921585f2ac0c7c70e36110adecfd8fd14b8a99bfb3d000a283fcac358fce88043636340004000000170201010402002a060800000000000004d2080909000000000000162e0a0d0c00040000000902040000000a0c010006210355f8d2238a322d16b602bd0ceaad5b01019fb055971eaadcc9b29226a4da6c23083636340004000000170201010402002a060800000000000004d2080909000000000000162e0a0d0c00040000000902040000000a0c01000a01000c0100").unwrap();
3455                 assert_eq!(encoded_chan_info, legacy_chan_info_with_some);
3456
3457                 // Check we can decode legacy ChannelInfo, even if the `two_to_one` / `one_to_two` /
3458                 // `last_update_message` fields fail to decode due to missing htlc_maximum_msat.
3459                 let legacy_chan_info_with_some_and_fail_update = <Vec<u8>>::from_hex("fd01ca00020000010800000000000156660221027f921585f2ac0c7c70e36110adecfd8fd14b8a99bfb3d000a283fcac358fce8804b6b6b40004000000170201010402002a060800000000000004d2080909000000000000162e0a0d0c00040000000902040000000a0c8181d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f00083a840000034d013413a70000009000000000000f4240000027100000001406210355f8d2238a322d16b602bd0ceaad5b01019fb055971eaadcc9b29226a4da6c2308b6b6b40004000000170201010402002a060800000000000004d2080909000000000000162e0a0d0c00040000000902040000000a0c8181d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f00083a840000034d013413a70000009000000000000f424000002710000000140a01000c0100").unwrap();
3460                 let read_chan_info: ChannelInfo = crate::util::ser::Readable::read(&mut legacy_chan_info_with_some_and_fail_update.as_slice()).unwrap();
3461                 assert_eq!(read_chan_info.announcement_received_time, 87654);
3462                 assert_eq!(read_chan_info.one_to_two, None);
3463                 assert_eq!(read_chan_info.two_to_one, None);
3464
3465                 let legacy_chan_info_with_none: Vec<u8> = <Vec<u8>>::from_hex("ba00020000010800000000000156660221027f921585f2ac0c7c70e36110adecfd8fd14b8a99bfb3d000a283fcac358fce88042e2e2c0004000000170201010402002a060800000000000004d20801000a0d0c00040000000902040000000a0c010006210355f8d2238a322d16b602bd0ceaad5b01019fb055971eaadcc9b29226a4da6c23082e2e2c0004000000170201010402002a060800000000000004d20801000a0d0c00040000000902040000000a0c01000a01000c0100").unwrap();
3466                 let read_chan_info: ChannelInfo = crate::util::ser::Readable::read(&mut legacy_chan_info_with_none.as_slice()).unwrap();
3467                 assert_eq!(read_chan_info.announcement_received_time, 87654);
3468                 assert_eq!(read_chan_info.one_to_two, None);
3469                 assert_eq!(read_chan_info.two_to_one, None);
3470         }
3471
3472         #[test]
3473         fn node_info_is_readable() {
3474                 // 1. Check we can read a valid NodeAnnouncementInfo and fail on an invalid one
3475                 let announcement_message = <Vec<u8>>::from_hex("d977cb9b53d93a6ff64bb5f1e158b4094b66e798fb12911168a3ccdf80a83096340a6a95da0ae8d9f776528eecdbb747eb6b545495a4319ed5378e35b21e073a000122013413a7031b84c5567b126440995d3ed5aaba0565d71e1834604819ff9c17f5e9d5dd078f2020201010101010101010101010101010101010101010101010101010101010101010000701fffefdfc2607").unwrap();
3476                 let announcement_message = NodeAnnouncement::read(&mut announcement_message.as_slice()).unwrap();
3477                 let valid_node_ann_info = NodeAnnouncementInfo {
3478                         features: channelmanager::provided_node_features(&UserConfig::default()),
3479                         last_update: 0,
3480                         rgb: [0u8; 3],
3481                         alias: NodeAlias([0u8; 32]),
3482                         announcement_message: Some(announcement_message)
3483                 };
3484
3485                 let mut encoded_valid_node_ann_info = Vec::new();
3486                 assert!(valid_node_ann_info.write(&mut encoded_valid_node_ann_info).is_ok());
3487                 let read_valid_node_ann_info = NodeAnnouncementInfo::read(&mut encoded_valid_node_ann_info.as_slice()).unwrap();
3488                 assert_eq!(read_valid_node_ann_info, valid_node_ann_info);
3489                 assert_eq!(read_valid_node_ann_info.addresses().len(), 1);
3490
3491                 let encoded_invalid_node_ann_info = <Vec<u8>>::from_hex("3f0009000788a000080a51a20204000000000403000000062000000000000000000000000000000000000000000000000000000000000000000a0505014004d2").unwrap();
3492                 let read_invalid_node_ann_info_res = NodeAnnouncementInfo::read(&mut encoded_invalid_node_ann_info.as_slice());
3493                 assert!(read_invalid_node_ann_info_res.is_err());
3494
3495                 // 2. Check we can read a NodeInfo anyways, but set the NodeAnnouncementInfo to None if invalid
3496                 let valid_node_info = NodeInfo {
3497                         channels: Vec::new(),
3498                         announcement_info: Some(valid_node_ann_info),
3499                         node_counter: 0,
3500                 };
3501
3502                 let mut encoded_valid_node_info = Vec::new();
3503                 assert!(valid_node_info.write(&mut encoded_valid_node_info).is_ok());
3504                 let read_valid_node_info = NodeInfo::read(&mut encoded_valid_node_info.as_slice()).unwrap();
3505                 assert_eq!(read_valid_node_info, valid_node_info);
3506
3507                 let encoded_invalid_node_info_hex = <Vec<u8>>::from_hex("4402403f0009000788a000080a51a20204000000000403000000062000000000000000000000000000000000000000000000000000000000000000000a0505014004d20400").unwrap();
3508                 let read_invalid_node_info = NodeInfo::read(&mut encoded_invalid_node_info_hex.as_slice()).unwrap();
3509                 assert_eq!(read_invalid_node_info.announcement_info, None);
3510         }
3511
3512         #[test]
3513         fn test_node_info_keeps_compatibility() {
3514                 let old_ann_info_with_addresses = <Vec<u8>>::from_hex("3f0009000708a000080a51220204000000000403000000062000000000000000000000000000000000000000000000000000000000000000000a0505014104d2").unwrap();
3515                 let ann_info_with_addresses = NodeAnnouncementInfo::read(&mut old_ann_info_with_addresses.as_slice())
3516                                 .expect("to be able to read an old NodeAnnouncementInfo with addresses");
3517                 // This serialized info has an address field but no announcement_message, therefore the addresses returned by our function will still be empty
3518                 assert!(ann_info_with_addresses.addresses().is_empty());
3519         }
3520
3521         #[test]
3522         fn test_node_id_display() {
3523                 let node_id = NodeId([42; 33]);
3524                 assert_eq!(format!("{}", &node_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
3525         }
3526 }
3527
3528 #[cfg(ldk_bench)]
3529 pub mod benches {
3530         use super::*;
3531         use std::io::Read;
3532         use criterion::{black_box, Criterion};
3533
3534         pub fn read_network_graph(bench: &mut Criterion) {
3535                 let logger = crate::util::test_utils::TestLogger::new();
3536                 let mut d = crate::routing::router::bench_utils::get_route_file().unwrap();
3537                 let mut v = Vec::new();
3538                 d.read_to_end(&mut v).unwrap();
3539                 bench.bench_function("read_network_graph", |b| b.iter(||
3540                         NetworkGraph::read(&mut std::io::Cursor::new(black_box(&v)), &logger).unwrap()
3541                 ));
3542         }
3543
3544         pub fn write_network_graph(bench: &mut Criterion) {
3545                 let logger = crate::util::test_utils::TestLogger::new();
3546                 let mut d = crate::routing::router::bench_utils::get_route_file().unwrap();
3547                 let net_graph = NetworkGraph::read(&mut d, &logger).unwrap();
3548                 bench.bench_function("write_network_graph", |b| b.iter(||
3549                         black_box(&net_graph).encode()
3550                 ));
3551         }
3552 }