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