Send reminders for stale-ish channels.
[rapid-gossip-sync-server] / src / lookup.rs
1 use std::collections::{BTreeMap, HashSet};
2 use std::io::Cursor;
3 use std::ops::Add;
4 use std::sync::Arc;
5 use std::time::{Duration, Instant, SystemTime};
6
7 use lightning::ln::msgs::{ChannelAnnouncement, ChannelUpdate, UnsignedChannelAnnouncement, UnsignedChannelUpdate};
8 use lightning::routing::gossip::NetworkGraph;
9 use lightning::util::ser::Readable;
10 use tokio_postgres::{Client, Connection, NoTls, Socket};
11 use tokio_postgres::tls::NoTlsStream;
12
13 use crate::{config, TestLogger};
14 use crate::serialization::MutatedProperties;
15
16 /// The delta set needs to be a BTreeMap so the keys are sorted.
17 /// That way, the scids in the response automatically grow monotonically
18 pub(super) type DeltaSet = BTreeMap<u64, ChannelDelta>;
19
20 pub(super) struct AnnouncementDelta {
21         pub(super) seen: u32,
22         pub(super) announcement: UnsignedChannelAnnouncement,
23 }
24
25 pub(super) struct UpdateDelta {
26         pub(super) seen: u32,
27         pub(super) update: UnsignedChannelUpdate,
28 }
29
30 pub(super) struct DirectedUpdateDelta {
31         pub(super) last_update_before_seen: Option<UnsignedChannelUpdate>,
32         pub(super) mutated_properties: MutatedProperties,
33         pub(super) latest_update_after_seen: Option<UpdateDelta>,
34         pub(super) serialization_update_flags: Option<u8>,
35 }
36
37 pub(super) struct ChannelDelta {
38         pub(super) announcement: Option<AnnouncementDelta>,
39         pub(super) updates: (Option<DirectedUpdateDelta>, Option<DirectedUpdateDelta>),
40         pub(super) first_bidirectional_updates_seen: Option<u32>,
41         /// The seen timestamp of the older of the two latest directional updates
42         pub(super) requires_reminder: bool,
43 }
44
45 impl Default for ChannelDelta {
46         fn default() -> Self {
47                 Self {
48                         announcement: None,
49                         updates: (None, None),
50                         first_bidirectional_updates_seen: None,
51                         requires_reminder: false,
52                 }
53         }
54 }
55
56 impl Default for DirectedUpdateDelta {
57         fn default() -> Self {
58                 Self {
59                         last_update_before_seen: None,
60                         mutated_properties: MutatedProperties::default(),
61                         latest_update_after_seen: None,
62                         serialization_update_flags: None
63                 }
64         }
65 }
66
67 pub(super) async fn connect_to_db() -> (Client, Connection<Socket, NoTlsStream>) {
68         let connection_config = config::db_connection_config();
69         connection_config.connect(NoTls).await.unwrap()
70 }
71
72 /// Fetch all the channel announcements that are presently in the network graph, regardless of
73 /// whether they had been seen before.
74 /// Also include all announcements for which the first update was announced
75 /// after `last_sync_timestamp`
76 pub(super) async fn fetch_channel_announcements(delta_set: &mut DeltaSet, network_graph: Arc<NetworkGraph<TestLogger>>, client: &Client, last_sync_timestamp: u32) {
77         println!("Obtaining channel ids from network graph");
78         let channel_ids = {
79                 let read_only_graph = network_graph.read_only();
80                 println!("Retrieved read-only network graph copy");
81                 let channel_iterator = read_only_graph.channels().unordered_iter();
82                 channel_iterator
83                         .filter(|c| c.1.announcement_message.is_some())
84                         .map(|c| c.1.announcement_message.as_ref().unwrap().contents.short_channel_id as i64)
85                         .collect::<Vec<_>>()
86         };
87
88         println!("Obtaining corresponding database entries");
89         // get all the channel announcements that are currently in the network graph
90         let announcement_rows = client.query("SELECT announcement_signed, seen FROM channel_announcements WHERE short_channel_id = any($1) ORDER BY short_channel_id ASC", &[&channel_ids]).await.unwrap();
91
92         for current_announcement_row in announcement_rows {
93                 let blob: Vec<u8> = current_announcement_row.get("announcement_signed");
94                 let mut readable = Cursor::new(blob);
95                 let unsigned_announcement = ChannelAnnouncement::read(&mut readable).unwrap().contents;
96
97                 let scid = unsigned_announcement.short_channel_id;
98                 let current_seen_timestamp_object: SystemTime = current_announcement_row.get("seen");
99                 let current_seen_timestamp: u32 = current_seen_timestamp_object.duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs() as u32;
100
101                 let current_channel_delta = delta_set.entry(scid).or_insert(ChannelDelta::default());
102                 (*current_channel_delta).announcement = Some(AnnouncementDelta {
103                         announcement: unsigned_announcement,
104                         seen: current_seen_timestamp,
105                 });
106         }
107
108         println!("Annotating channel announcements whose oldest channel update in a given direction occurred after the last sync");
109         /// Steps:
110         /// — Obtain all updates, distinct by (scid, direction), ordered by seen DESC // to find the oldest update in a given direction
111         /// — From those updates, select distinct by (scid), ordered by seen DESC (to obtain the newer one per direction)
112         /// This will allow us to mark the first time updates in both directions were seen
113
114         // here is where the channels whose first update in either direction occurred after
115         // `last_seen_timestamp` are added to the selection
116         let newer_oldest_directional_updates = client.query("
117                 SELECT DISTINCT ON (short_channel_id) *
118                 FROM (
119                         SELECT DISTINCT ON (short_channel_id, direction) blob_signed
120                         FROM channel_updates
121                         WHERE short_channel_id = any($1)
122                         ORDER BY seen ASC, short_channel_id ASC, direction ASC
123                 ) AS directional_last_seens
124                 ORDER BY short_channel_id ASC, seen DESC
125         ", &[&channel_ids]).await.unwrap();
126
127         for current_row in newer_oldest_directional_updates {
128                 let blob: Vec<u8> = current_row.get("blob_signed");
129                 let mut readable = Cursor::new(blob);
130                 let unsigned_update = ChannelUpdate::read(&mut readable).unwrap().contents;
131                 let scid = unsigned_update.short_channel_id;
132                 let current_seen_timestamp_object: SystemTime = current_row.get("seen");
133                 let current_seen_timestamp: u32 = current_seen_timestamp_object.duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs() as u32;
134
135                 if current_seen_timestamp > last_sync_timestamp {
136                         // the newer of the two oldest seen directional updates came after last sync timestamp
137                         let current_channel_delta = delta_set.entry(scid).or_insert(ChannelDelta::default());
138                         // first time a channel was seen in both directions
139                         (*current_channel_delta).first_bidirectional_updates_seen = Some(current_seen_timestamp);
140                 }
141         }
142
143         println!("Annotating channel announcements whose latest channel update in a given direction occurred more than six days ago");
144         /// Steps:
145         /// — Obtain all updates, distinct by (scid, direction), ordered by seen DESC
146         /// — From those updates, select distinct by (scid), ordered by seen ASC (to obtain the older one per direction)
147         let current_timestamp = SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs() as u32;
148         let reminder_threshold_timestamp = current_timestamp.saturating_sub(config::CHANNEL_REMINDER_AGE);
149         let mut channels_requiring_reminders: Vec<i64> = vec![];
150
151         let older_latest_directional_updates = client.query("
152                 SELECT DISTINCT ON (short_channel_id) *
153                 FROM (
154                         SELECT DISTINCT ON (short_channel_id, direction) *
155                         FROM channel_updates
156                         WHERE short_channel_id = any($1)
157                         ORDER BY short_channel_id ASC, direction ASC, seen DESC
158                 ) AS directional_last_seens
159                 ORDER BY short_channel_id ASC, seen ASC
160         ", &[&channel_ids]).await.unwrap();
161
162         for current_row in older_latest_directional_updates {
163                 let blob: Vec<u8> = current_row.get("blob_signed");
164                 let mut readable = Cursor::new(blob);
165                 let unsigned_update = ChannelUpdate::read(&mut readable).unwrap().contents;
166                 let scid = unsigned_update.short_channel_id;
167                 let current_seen_timestamp_object: SystemTime = current_row.get("seen");
168                 let current_seen_timestamp: u32 = current_seen_timestamp_object.duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs() as u32;
169
170                 if current_seen_timestamp <= reminder_threshold_timestamp {
171                         // annotate this channel as requiring that reminders be sent to the client
172                         let current_channel_delta = delta_set.entry(scid).or_insert(ChannelDelta::default());
173
174                         // way might be able to get away with not using this
175                         (*current_channel_delta).requires_reminder = true;
176
177                         // get the latest seen update in both directions for this channel
178                         channels_requiring_reminders.push(scid as i64);
179                 }
180         }
181
182         println!("Fetching latest update data for channels requiring reminders");
183         let latest_reminder_updates = client.query("
184                 SELECT DISTINCT ON (short_channel_id, direction) *
185                 FROM channel_updates
186                 WHERE short_channel_id = any($1)
187                 ORDER BY short_channel_id ASC, direction ASC, seen DESC
188         ", &[&channels_requiring_reminders]).await.unwrap();
189
190         for current_update in latest_reminder_updates {
191                 let blob: Vec<u8> = current_update.get("blob_signed");
192                 let mut readable = Cursor::new(blob);
193                 let unsigned_update = ChannelUpdate::read(&mut readable).unwrap().contents;
194                 let scid = unsigned_update.short_channel_id;
195                 let direction: bool = current_update.get("direction");
196
197                 let current_channel_delta = delta_set.entry(scid).or_insert(ChannelDelta::default());
198                 let update_delta = if !direction {
199                         (*current_channel_delta).updates.0.get_or_insert(DirectedUpdateDelta::default())
200                 } else {
201                         (*current_channel_delta).updates.1.get_or_insert(DirectedUpdateDelta::default())
202                 };
203                 update_delta.serialization_update_flags = Some(unsigned_update.flags);
204         }
205 }
206
207 pub(super) async fn fetch_channel_updates(delta_set: &mut DeltaSet, client: &Client, last_sync_timestamp: u32, consider_intermediate_updates: bool) {
208         let start = Instant::now();
209         let last_sync_timestamp_object = SystemTime::UNIX_EPOCH.add(Duration::from_secs(last_sync_timestamp as u64));
210
211         // get the latest channel update in each direction prior to last_sync_timestamp, provided
212         // there was an update in either direction that happened after the last sync (to avoid
213         // collecting too many reference updates)
214         let reference_rows = client.query("SELECT DISTINCT ON (short_channel_id, direction) id, direction, blob_signed FROM channel_updates WHERE seen < $1 AND short_channel_id IN (SELECT short_channel_id FROM channel_updates WHERE seen >= $1 GROUP BY short_channel_id) ORDER BY short_channel_id ASC, direction ASC, seen DESC", &[&last_sync_timestamp_object]).await.unwrap();
215
216         println!("Fetched reference rows ({}): {:?}", reference_rows.len(), start.elapsed());
217
218         let mut last_seen_update_ids: Vec<i32> = Vec::with_capacity(reference_rows.len());
219         let mut non_intermediate_ids: HashSet<i32> = HashSet::new();
220
221         for current_reference in reference_rows {
222                 let update_id: i32 = current_reference.get("id");
223                 last_seen_update_ids.push(update_id);
224                 non_intermediate_ids.insert(update_id);
225
226                 let direction: bool = current_reference.get("direction");
227                 let blob: Vec<u8> = current_reference.get("blob_signed");
228                 let mut readable = Cursor::new(blob);
229                 let unsigned_channel_update = ChannelUpdate::read(&mut readable).unwrap().contents;
230                 let scid = unsigned_channel_update.short_channel_id;
231
232                 let current_channel_delta = delta_set.entry(scid).or_insert(ChannelDelta::default());
233                 let update_delta = if !direction {
234                         (*current_channel_delta).updates.0.get_or_insert(DirectedUpdateDelta::default())
235                 } else {
236                         (*current_channel_delta).updates.1.get_or_insert(DirectedUpdateDelta::default())
237                 };
238                 update_delta.last_update_before_seen = Some(unsigned_channel_update);
239         }
240
241         println!("Processed reference rows (delta size: {}): {:?}", delta_set.len(), start.elapsed());
242
243         // get all the intermediate channel updates
244         // (to calculate the set of mutated fields for snapshotting, where intermediate updates may
245         // have been omitted)
246
247         let mut intermediate_update_prefix = "";
248         if !consider_intermediate_updates {
249                 intermediate_update_prefix = "DISTINCT ON (short_channel_id, direction)";
250         }
251
252         let query_string = format!("SELECT {} id, direction, blob_signed, seen FROM channel_updates WHERE seen >= $1 ORDER BY short_channel_id ASC, direction ASC, seen DESC", intermediate_update_prefix);
253         let intermediate_updates = client.query(&query_string, &[&last_sync_timestamp_object]).await.unwrap();
254         println!("Fetched intermediate rows ({}): {:?}", intermediate_updates.len(), start.elapsed());
255
256         let mut previous_scid = u64::MAX;
257         let mut previously_seen_directions = (false, false);
258
259         // let mut previously_seen_directions = (false, false);
260         let mut intermediate_update_count = 0;
261         for intermediate_update in intermediate_updates {
262                 let update_id: i32 = intermediate_update.get("id");
263                 if non_intermediate_ids.contains(&update_id) {
264                         continue;
265                 }
266                 intermediate_update_count += 1;
267
268                 let direction: bool = intermediate_update.get("direction");
269                 let current_seen_timestamp_object: SystemTime = intermediate_update.get("seen");
270                 let current_seen_timestamp: u32 = current_seen_timestamp_object.duration_since(SystemTime::UNIX_EPOCH).unwrap().as_secs() as u32;
271                 let blob: Vec<u8> = intermediate_update.get("blob_signed");
272                 let mut readable = Cursor::new(blob);
273                 let unsigned_channel_update = ChannelUpdate::read(&mut readable).unwrap().contents;
274
275                 let scid = unsigned_channel_update.short_channel_id;
276                 if scid != previous_scid {
277                         previous_scid = scid;
278                         previously_seen_directions = (false, false);
279                 }
280
281                 // get the write configuration for this particular channel's directional details
282                 let current_channel_delta = delta_set.entry(scid).or_insert(ChannelDelta::default());
283                 let update_delta = if !direction {
284                         (*current_channel_delta).updates.0.get_or_insert(DirectedUpdateDelta::default())
285                 } else {
286                         (*current_channel_delta).updates.1.get_or_insert(DirectedUpdateDelta::default())
287                 };
288
289                 {
290                         // handle the latest deltas
291                         if !direction && !previously_seen_directions.0 {
292                                 previously_seen_directions.0 = true;
293                                 update_delta.latest_update_after_seen = Some(UpdateDelta {
294                                         seen: current_seen_timestamp,
295                                         update: unsigned_channel_update.clone(),
296                                 });
297                         } else if direction && !previously_seen_directions.1 {
298                                 previously_seen_directions.1 = true;
299                                 update_delta.latest_update_after_seen = Some(UpdateDelta {
300                                         seen: current_seen_timestamp,
301                                         update: unsigned_channel_update.clone(),
302                                 });
303                         }
304                 }
305
306                 // determine mutations
307                 if let Some(last_seen_update) = update_delta.last_update_before_seen.as_ref() {
308                         if unsigned_channel_update.flags != last_seen_update.flags {
309                                 update_delta.mutated_properties.flags = true;
310                         }
311                         if unsigned_channel_update.cltv_expiry_delta != last_seen_update.cltv_expiry_delta {
312                                 update_delta.mutated_properties.cltv_expiry_delta = true;
313                         }
314                         if unsigned_channel_update.htlc_minimum_msat != last_seen_update.htlc_minimum_msat {
315                                 update_delta.mutated_properties.htlc_minimum_msat = true;
316                         }
317                         if unsigned_channel_update.fee_base_msat != last_seen_update.fee_base_msat {
318                                 update_delta.mutated_properties.fee_base_msat = true;
319                         }
320                         if unsigned_channel_update.fee_proportional_millionths != last_seen_update.fee_proportional_millionths {
321                                 update_delta.mutated_properties.fee_proportional_millionths = true;
322                         }
323                         if unsigned_channel_update.htlc_maximum_msat != last_seen_update.htlc_maximum_msat {
324                                 update_delta.mutated_properties.htlc_maximum_msat = true;
325                         }
326                 }
327         }
328         println!("Processed intermediate rows ({}) (delta size: {}): {:?}", intermediate_update_count, delta_set.len(), start.elapsed());
329 }
330
331 pub(super) fn filter_delta_set(delta_set: &mut DeltaSet) {
332         let original_length = delta_set.len();
333         let keys: Vec<u64> = delta_set.keys().cloned().collect();
334         for k in keys {
335                 let v = delta_set.get(&k).unwrap();
336                 if v.announcement.is_none() {
337                         // this channel is not currently in the network graph
338                         delta_set.remove(&k);
339                         continue;
340                 }
341
342                 let update_meets_criteria = |update: &Option<DirectedUpdateDelta>| {
343                         if update.is_none() {
344                                 return false;
345                         };
346                         let update_reference = update.as_ref().unwrap();
347                         // update_reference.latest_update_after_seen.is_some() && !update_reference.intermediate_updates.is_empty()
348                         // if there has been an update after the channel was first seen
349
350                         v.requires_reminder || update_reference.latest_update_after_seen.is_some()
351                 };
352
353                 let direction_a_meets_criteria = update_meets_criteria(&v.updates.0);
354                 let direction_b_meets_criteria = update_meets_criteria(&v.updates.1);
355
356                 if !v.requires_reminder && !direction_a_meets_criteria && !direction_b_meets_criteria {
357                         delta_set.remove(&k);
358                 }
359         }
360
361         let new_length = delta_set.len();
362         if original_length != new_length {
363                 println!("length modified!");
364         }
365 }