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