Newer
Older
// Copyright 2019-2023 Parity Technologies (UK) Ltd.
// This file is part of Parity Bridges Common.
// Parity Bridges Common is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity Bridges Common is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>.
use crate::{
Serban Iorga
committed
handle_client_error, reporter::EquivocationsReporter, EquivocationDetectionPipeline,
SourceClient, TargetClient,
};
Serban Iorga
committed
use crate::block_checker::BlockChecker;
use finality_relay::{FinalityProofsBuf, FinalityProofsStream};
use futures::{select_biased, FutureExt};
use num_traits::Saturating;
Serban Iorga
committed
use relay_utils::{metrics::MetricsParams, FailedClient};
use std::{future::Future, time::Duration};
/// Equivocations detection loop state.
struct EquivocationDetectionLoop<
P: EquivocationDetectionPipeline,
SC: SourceClient<P>,
TC: TargetClient<P>,
> {
source_client: SC,
target_client: TC,
from_block_num: Option<P::TargetNumber>,
until_block_num: Option<P::TargetNumber>,
reporter: EquivocationsReporter<'static, P, SC>,
finality_proofs_stream: FinalityProofsStream<P, SC>,
finality_proofs_buf: FinalityProofsBuf<P>,
}
impl<P: EquivocationDetectionPipeline, SC: SourceClient<P>, TC: TargetClient<P>>
EquivocationDetectionLoop<P, SC, TC>
{
async fn ensure_finality_proofs_stream(&mut self) {
match self.finality_proofs_stream.ensure_stream(&self.source_client).await {
Ok(_) => {},
Err(e) => {
log::error!(
target: "bridge",
"Could not connect to the {} `FinalityProofsStream`: {e:?}",
P::SOURCE_NAME,
);
// Reconnect to the source client if needed
Serban Iorga
committed
handle_client_error(&mut self.source_client, e).await;
},
}
}
async fn best_finalized_target_block_number(&mut self) -> Option<P::TargetNumber> {
match self.target_client.best_finalized_header_number().await {
Ok(block_num) => Some(block_num),
Err(e) => {
log::error!(
target: "bridge",
"Could not read best finalized header number from {}: {e:?}",
P::TARGET_NAME,
);
// Reconnect target client and move on
Serban Iorga
committed
handle_client_error(&mut self.target_client, e).await;
None
},
}
}
async fn do_run(&mut self, tick: Duration, exit_signal: impl Future<Output = ()>) {
let exit_signal = exit_signal.fuse();
futures::pin_mut!(exit_signal);
loop {
// Make sure that we are connected to the source finality proofs stream.
self.ensure_finality_proofs_stream().await;
// Check the status of the pending equivocation reports
self.reporter.process_pending_reports().await;
// Update blocks range.
if let Some(block_number) = self.best_finalized_target_block_number().await {
self.from_block_num.get_or_insert(block_number);
self.until_block_num = Some(block_number);
}
let (from, until) = match (self.from_block_num, self.until_block_num) {
(Some(from), Some(until)) => (from, until),
_ => continue,
};
// Check the available blocks
let mut current_block_number = from;
while current_block_number <= until {
Serban Iorga
committed
self.finality_proofs_buf.fill(&mut self.finality_proofs_stream);
let block_checker = BlockChecker::new(current_block_number);
let _ = block_checker
.run(
&mut self.source_client,
&mut self.target_client,
&mut self.finality_proofs_buf,
&mut self.reporter,
)
.await;
current_block_number = current_block_number.saturating_add(1.into());
}
self.from_block_num = Some(current_block_number);
select_biased! {
_ = exit_signal => return,
_ = async_std::task::sleep(tick).fuse() => {},
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
}
}
}
pub async fn run(
source_client: SC,
target_client: TC,
tick: Duration,
exit_signal: impl Future<Output = ()>,
) -> Result<(), FailedClient> {
let mut equivocation_detection_loop = Self {
source_client,
target_client,
from_block_num: None,
until_block_num: None,
reporter: EquivocationsReporter::<P, SC>::new(),
finality_proofs_stream: FinalityProofsStream::new(),
finality_proofs_buf: FinalityProofsBuf::new(vec![]),
};
equivocation_detection_loop.do_run(tick, exit_signal).await;
Ok(())
}
}
/// Spawn the equivocations detection loop.
pub async fn run<P: EquivocationDetectionPipeline>(
source_client: impl SourceClient<P>,
target_client: impl TargetClient<P>,
tick: Duration,
Serban Iorga
committed
metrics_params: MetricsParams,
exit_signal: impl Future<Output = ()> + 'static + Send,
) -> Result<(), relay_utils::Error> {
let exit_signal = exit_signal.shared();
relay_utils::relay_loop(source_client, target_client)
Serban Iorga
committed
.with_metrics(metrics_params)
.expose()
.await?
.run(
format!("{}_to_{}_EquivocationDetection", P::SOURCE_NAME, P::TARGET_NAME),
move |source_client, target_client, _metrics| {
EquivocationDetectionLoop::run(
source_client,
target_client,
tick,
exit_signal.clone(),
)
},
)
.await
}
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#[cfg(test)]
mod tests {
use super::*;
use crate::mock::*;
use futures::{channel::mpsc::UnboundedSender, StreamExt};
use std::{
collections::{HashMap, VecDeque},
sync::{Arc, Mutex},
};
fn best_finalized_header_number(
best_finalized_headers: &Mutex<VecDeque<Result<TestTargetNumber, TestClientError>>>,
exit_sender: &UnboundedSender<()>,
) -> Result<TestTargetNumber, TestClientError> {
let mut best_finalized_headers = best_finalized_headers.lock().unwrap();
let result = best_finalized_headers.pop_front().unwrap();
if best_finalized_headers.is_empty() {
exit_sender.unbounded_send(()).unwrap();
}
result
}
#[async_std::test]
async fn multiple_blocks_are_checked_correctly() {
let best_finalized_headers = Arc::new(Mutex::new(VecDeque::from([Ok(10), Ok(12), Ok(13)])));
let (exit_sender, exit_receiver) = futures::channel::mpsc::unbounded();
let source_client = TestSourceClient {
finality_proofs: Arc::new(Mutex::new(vec![
TestFinalityProof(2, vec!["2-1"]),
TestFinalityProof(3, vec!["3-1", "3-2"]),
TestFinalityProof(4, vec!["4-1"]),
TestFinalityProof(5, vec!["5-1"]),
TestFinalityProof(6, vec!["6-1", "6-2"]),
TestFinalityProof(7, vec!["7-1", "7-2"]),
])),
..Default::default()
};
let reported_equivocations = source_client.reported_equivocations.clone();
let target_client = TestTargetClient {
best_finalized_header_number: Arc::new(move || {
best_finalized_header_number(&best_finalized_headers, &exit_sender)
}),
best_synced_header_hash: HashMap::from([
(9, Ok(Some(1))),
(10, Ok(Some(3))),
(11, Ok(Some(5))),
(12, Ok(Some(6))),
]),
finality_verification_context: HashMap::from([
(9, Ok(TestFinalityVerificationContext { check_equivocations: true })),
(10, Ok(TestFinalityVerificationContext { check_equivocations: true })),
(11, Ok(TestFinalityVerificationContext { check_equivocations: false })),
(12, Ok(TestFinalityVerificationContext { check_equivocations: true })),
]),
synced_headers_finality_info: HashMap::from([
(
10,
Ok(vec![new_header_finality_info(2, None), new_header_finality_info(3, None)]),
),
(
11,
Ok(vec![
new_header_finality_info(4, None),
new_header_finality_info(5, Some(false)),
]),
),
(12, Ok(vec![new_header_finality_info(6, None)])),
(13, Ok(vec![new_header_finality_info(7, None)])),
]),
..Default::default()
};
assert!(run::<TestEquivocationDetectionPipeline>(
source_client,
target_client,
Duration::from_secs(0),
MetricsParams { address: None, registry: Default::default() },
exit_receiver.into_future().map(|(_, _)| ()),
)
.await
.is_ok());
assert_eq!(
*reported_equivocations.lock().unwrap(),
HashMap::from([
(1, vec!["2-1", "3-1", "3-2"]),
(3, vec!["4-1", "5-1"]),
(6, vec!["7-1", "7-2"])
])
);
}
#[async_std::test]
async fn blocks_following_error_are_checked_correctly() {
let best_finalized_headers = Mutex::new(VecDeque::from([Ok(10), Ok(11)]));
let (exit_sender, exit_receiver) = futures::channel::mpsc::unbounded();
let source_client = TestSourceClient {
finality_proofs: Arc::new(Mutex::new(vec![
TestFinalityProof(2, vec!["2-1"]),
TestFinalityProof(3, vec!["3-1"]),
])),
..Default::default()
};
let reported_equivocations = source_client.reported_equivocations.clone();
let target_client = TestTargetClient {
best_finalized_header_number: Arc::new(move || {
best_finalized_header_number(&best_finalized_headers, &exit_sender)
}),
best_synced_header_hash: HashMap::from([(9, Ok(Some(1))), (10, Ok(Some(2)))]),
finality_verification_context: HashMap::from([
(9, Ok(TestFinalityVerificationContext { check_equivocations: true })),
(10, Ok(TestFinalityVerificationContext { check_equivocations: true })),
]),
synced_headers_finality_info: HashMap::from([
(10, Err(TestClientError::NonConnection)),
(11, Ok(vec![new_header_finality_info(3, None)])),
]),
..Default::default()
};
assert!(run::<TestEquivocationDetectionPipeline>(
source_client,
target_client,
Duration::from_secs(0),
MetricsParams { address: None, registry: Default::default() },
exit_receiver.into_future().map(|(_, _)| ()),
)
.await
.is_ok());
assert_eq!(*reported_equivocations.lock().unwrap(), HashMap::from([(2, vec!["3-1"]),]));
}
}