1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
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
use crate::{ChainInfo, FullNode, NodeExt, Result, Validator, Version};
use anyhow::{anyhow, bail};
use aptos_config::config::NodeConfig;
use aptos_rest_client::Client as RestClient;
use aptos_sdk::types::PeerId;
use futures::future::try_join_all;
use std::time::{Duration, Instant};
use tokio::runtime::Runtime;
#[async_trait::async_trait]
pub trait Swarm: Sync {
async fn health_check(&mut self) -> Result<()>;
fn validators<'a>(&'a self) -> Box<dyn Iterator<Item = &'a dyn Validator> + 'a>;
fn validators_mut<'a>(&'a mut self) -> Box<dyn Iterator<Item = &'a mut dyn Validator> + 'a>;
fn validator(&self, id: PeerId) -> Option<&dyn Validator>;
fn validator_mut(&mut self, id: PeerId) -> Option<&mut dyn Validator>;
fn upgrade_validator(&mut self, id: PeerId, version: &Version) -> Result<()>;
fn full_nodes<'a>(&'a self) -> Box<dyn Iterator<Item = &'a dyn FullNode> + 'a>;
fn full_nodes_mut<'a>(&'a mut self) -> Box<dyn Iterator<Item = &'a mut dyn FullNode> + 'a>;
fn full_node(&self, id: PeerId) -> Option<&dyn FullNode>;
fn full_node_mut(&mut self, id: PeerId) -> Option<&mut dyn FullNode>;
fn add_validator(&mut self, version: &Version, template: NodeConfig) -> Result<PeerId>;
fn remove_validator(&mut self, id: PeerId) -> Result<()>;
fn add_full_node(&mut self, version: &Version, template: NodeConfig) -> Result<PeerId>;
fn remove_full_node(&mut self, id: PeerId) -> Result<()>;
fn versions<'a>(&'a self) -> Box<dyn Iterator<Item = Version> + 'a>;
fn chain_info(&mut self) -> ChainInfo<'_>;
fn logs_location(&mut self) -> String;
}
impl<T: ?Sized> SwarmExt for T where T: Swarm {}
#[async_trait::async_trait]
pub trait SwarmExt: Swarm {
async fn liveness_check(&self, deadline: Instant) -> Result<()> {
let liveness_check_seconds = 10;
let validators = self.validators().collect::<Vec<_>>();
let full_nodes = self.full_nodes().collect::<Vec<_>>();
while try_join_all(
validators
.iter()
.map(|node| node.liveness_check(liveness_check_seconds))
.chain(
full_nodes
.iter()
.map(|node| node.liveness_check(liveness_check_seconds)),
),
)
.await
.is_err()
{
if Instant::now() > deadline {
return Err(anyhow!("Swarm liveness check timed out"));
}
tokio::time::sleep(Duration::from_millis(500)).await;
}
Ok(())
}
async fn wait_for_connectivity(&self, deadline: Instant) -> Result<()> {
let validators = self.validators().collect::<Vec<_>>();
let full_nodes = self.full_nodes().collect::<Vec<_>>();
while !try_join_all(
validators
.iter()
.map(|node| node.check_connectivity(validators.len() - 1))
.chain(full_nodes.iter().map(|node| node.check_connectivity())),
)
.await
.map(|v| v.iter().all(|r| *r))
.unwrap_or(false)
{
if Instant::now() > deadline {
return Err(anyhow!("waiting for swarm connectivity timed out"));
}
tokio::time::sleep(Duration::from_millis(500)).await;
}
Ok(())
}
fn fork_check(&self) -> Result<()> {
async fn are_root_hashes_equal_at_version(
clients: &[RestClient],
version: u64,
) -> Result<bool> {
let root_hashes = try_join_all(
clients
.iter()
.map(|node| node.get_transaction_by_version(version))
.collect::<Vec<_>>(),
)
.await?
.into_iter()
.map(|r| {
r.into_inner()
.transaction_info()
.unwrap()
.accumulator_root_hash
})
.collect::<Vec<_>>();
Ok(root_hashes.windows(2).all(|w| w[0] == w[1]))
}
let runtime = Runtime::new().unwrap();
let clients = self
.validators()
.map(|node| node.rest_client())
.chain(self.full_nodes().map(|node| node.rest_client()))
.collect::<Vec<_>>();
let versions = runtime
.block_on(try_join_all(
clients
.iter()
.map(|node| node.get_ledger_information())
.collect::<Vec<_>>(),
))?
.into_iter()
.map(|resp| resp.into_inner().version)
.collect::<Vec<u64>>();
let min_version = versions
.iter()
.min()
.copied()
.ok_or_else(|| anyhow!("Unable to query nodes for their latest version"))?;
let max_version = versions
.iter()
.max()
.copied()
.ok_or_else(|| anyhow!("Unable to query nodes for their latest version"))?;
if !runtime.block_on(are_root_hashes_equal_at_version(&clients, min_version))? {
return Err(anyhow!("Fork check failed"));
}
runtime.block_on(self.wait_for_all_nodes_to_catchup_to_version(
max_version,
Instant::now() + Duration::from_secs(10),
))?;
if !runtime.block_on(are_root_hashes_equal_at_version(&clients, max_version))? {
return Err(anyhow!("Fork check failed"));
}
Ok(())
}
async fn wait_for_all_nodes_to_catchup_to_version(
&self,
version: u64,
deadline: Instant,
) -> Result<()> {
let clients = self
.validators()
.map(|node| node.rest_client())
.chain(self.full_nodes().map(|node| node.rest_client()))
.collect::<Vec<_>>();
loop {
let results =
try_join_all(clients.iter().map(|node| node.get_ledger_information())).await;
let all_catchup = results
.map(|resps| {
resps
.into_iter()
.map(|r| r.into_inner().version)
.all(|v| v >= version)
})
.unwrap_or(false);
if all_catchup {
break;
}
if Instant::now() > deadline {
return Err(anyhow!(
"waiting for nodes to catch up to version {} timed out",
version
));
}
tokio::time::sleep(Duration::from_millis(500)).await;
}
Ok(())
}
async fn wait_for_all_nodes_to_catchup(&self, deadline: Instant) -> Result<()> {
let clients = self
.validators()
.map(|node| node.rest_client())
.chain(self.full_nodes().map(|node| node.rest_client()))
.collect::<Vec<_>>();
if clients.is_empty() {
bail!("no nodes available")
}
let mut latest_version = 0u64;
for c in clients {
latest_version = latest_version.max(
c.get_ledger_information()
.await
.map(|r| r.into_inner().version)
.unwrap_or(0),
);
}
self.wait_for_all_nodes_to_catchup_to_version(latest_version, deadline)
.await
}
}