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
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
use async_trait::async_trait;
use cubist_config::{
network::{AvalancheConfig, CommonConfig, CredConfig, PrivateKeyConfig, SubnetInfo},
secret::SecretUrl,
};
use cubist_proxy::transformer::eth_creds::EthProxyConfig;
use cubist_util::{net::next_available_port, tasks::retry};
use hyper::Uri;
use reqwest::Client;
use serde::Serialize;
use serde_json::{json, Value};
use std::ffi::OsStr;
use std::iter::repeat;
use std::net::SocketAddr;
use std::time::Duration;
use std::{path::PathBuf, process::Stdio};
use tempdir::TempDir;
use tokio::process::{Child, Command};
use tracing::trace;
use crate::error::ProviderError;
use crate::to_uri;
use crate::{
config::Config,
error::{Error, Result},
proxy::Proxy,
resource::{resource_for_current_machine, Downloadable},
start_error, UrlExt,
};
use super::{eth_available, Provider, Server, WhileRunning};
use crate::tracing::{child_stdio, trace_stdout};
const DEFAULT_AVALANCHE_PORT: u16 = 8545;
const DEFAULT_AVALANCHE_ACCOUNT: &str = "8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC";
const DEFAULT_AVALANCHE_KEY: &str =
"56289e99c94b6912bfc12adc093c9b51124f0dc54ac7a766b2bc5ccf558d8027";
impl Config for AvalancheConfig {
fn name(&self) -> &str {
if self.subnets.is_empty() {
"avalanche"
} else {
"ava_subnet"
}
}
fn common(&self) -> CommonConfig {
self.common.clone()
}
fn local_provider(&self) -> Result<Box<dyn Provider>> {
assert!(
self.common.url.is_loopback()?,
"Cannot start node on remote machine."
);
let exe = resource_for_current_machine("avalanchego")?;
let prov = AvalancheProvider::new(exe, self.clone());
Ok(Box::new(prov))
}
}
struct AvalancheProvider {
exe: Downloadable,
config: AvalancheConfig,
avalanchego_path: PathBuf,
avalanchego_plugins_dir: PathBuf,
subnet_evm_path: PathBuf,
}
impl AvalancheProvider {
fn new(exe: Downloadable, config: AvalancheConfig) -> Self {
let avalanchego_path = Self::find_binary(&exe, "avalanchego");
let avalanchego_plugins_dir = avalanchego_path.with_file_name("plugins");
let subnet_evm_path = Self::find_binary(&exe, "subnet-evm");
AvalancheProvider {
exe,
config,
avalanchego_path,
avalanchego_plugins_dir,
subnet_evm_path,
}
}
fn find_binary(exe: &Downloadable, name: &str) -> PathBuf {
let os_name = OsStr::new(name);
let rel_path = &exe
.binaries
.iter()
.find(|(path, _)| path.file_name() == Some(os_name))
.unwrap_or_else(|| panic!("binary {name} not found"))
.0;
exe.destination_dir.join(rel_path)
}
pub(crate) fn create_proxy_config(chain_id: u32, onchain_uri: Option<Uri>) -> EthProxyConfig {
EthProxyConfig {
onchain_uri,
chain_id,
creds: creds(),
}
}
fn gen_custom_node_configs(start_port: u16, num_nodes: Option<u16>) -> Result<Value> {
let num_nodes = num_nodes.unwrap_or(5);
if num_nodes < 4 {
let msg = format!("A healthy Avalanche network requires at least 4 nodes, {num_nodes} specified instead");
return Err(Error::ProviderError(ProviderError::SetupError(msg)));
}
let (custom_node_configs, _) =
(1..=num_nodes).fold((json!({}), start_port), |mut acc, i| {
let port = acc.1;
let next_port = next_available_port(acc.1);
let node_config = json!({
"http-port": port,
"staking-port": next_port,
});
acc.0[format!("node{i}")] = node_config.to_string().into();
(acc.0, next_available_port(next_port))
});
Ok(custom_node_configs)
}
fn prepare_blockchain_spec(
&self,
temp_dir: &TempDir,
sub: &SubnetInfo,
) -> Result<BlockchainSpec> {
let genesis = temp_dir
.path()
.join(format!("genesis-{}.json", sub.vm_name));
std::fs::write(
&genesis,
Self::subnet_evm_genesis(sub.chain_id, DEFAULT_AVALANCHE_ACCOUNT).to_string(),
)
.map_err(|e| Error::FsError("Failed to create genesis file", genesis.clone(), e))?;
let plugin_path = self
.avalanchego_path
.with_file_name("plugins")
.join(&sub.vm_id);
std::fs::copy(&self.subnet_evm_path, &plugin_path)
.map_err(|e| Error::FsError("Failed to copy evm plugin", plugin_path, e))?;
Ok(BlockchainSpec {
vm_name: sub.vm_name.clone(),
genesis,
})
}
fn subnet_evm_genesis(chain_id: u32, acc: &str) -> Value {
json!({
"config": {
"chainId": chain_id,
"feeConfig": {
"gasLimit": 8000000,
"targetBlockRate": 2,
"minBaseFee": 25000000000u64,
"targetGas": 15000000,
"baseFeeChangeDenominator": 36,
"minBlockGasCost": 0,
"maxBlockGasCost": 1000000,
"blockGasCostStep": 200000
},
"homesteadBlock": 0,
"eip150Block": 0,
"eip150Hash": "0x2086799aeebeae135c246c65021c82b4e15a2c451340993aacfd2751886514f0",
"eip155Block": 0,
"eip158Block": 0,
"byzantiumBlock": 0,
"constantinopleBlock": 0,
"petersburgBlock": 0,
"istanbulBlock": 0,
"muirGlacierBlock": 0,
"subnetEVMTimestamp": 0
},
"nonce": "0x0",
"timestamp": "0x0",
"extraData": "0x",
"gasLimit": "0x7a1200",
"difficulty": "0x0",
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"coinbase": "0x0000000000000000000000000000000000000000",
"alloc": {
acc: {
"balance": "0xd3c21bcecceda1000000"
}
},
"airdropHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"airdropAmount": null,
"number": "0x0",
"gasUsed": "0x0",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"baseFeePerGas": null
})
}
}
#[derive(Debug, Serialize)]
struct BlockchainSpec {
vm_name: String,
genesis: PathBuf,
}
fn creds() -> Vec<CredConfig> {
vec![CredConfig::PrivateKey(PrivateKeyConfig {
hex: DEFAULT_AVALANCHE_KEY.to_string().into(),
})]
}
#[async_trait]
impl Provider for AvalancheProvider {
fn name(&self) -> &str {
self.config.name()
}
fn bootstrap_eta(&self) -> Duration {
if self.config.subnets.is_empty() {
Duration::from_secs(15)
} else {
Duration::from_secs(75)
}
}
fn url(&self) -> SecretUrl {
self.config.common.url.clone()
}
fn preflight(&self) -> Result<Vec<&Downloadable>> {
if let Ok(read_dir) = std::fs::read_dir(&self.avalanchego_plugins_dir) {
for de in read_dir.filter_map(|e| e.ok()) {
if de.path().is_file() && de.path().file_name() != Some(OsStr::new("evm")) {
let result = std::fs::remove_file(de.path());
trace!(
"Deleting stale plugin '{}' returned {result:?}",
de.path().display()
);
}
}
}
Ok(vec![&self.exe])
}
fn credentials(&self) -> Vec<CredConfig> {
creds()
}
async fn start(&self) -> Result<Box<dyn super::Server>> {
let proxy_port = self
.config
.common
.url
.port()
.unwrap_or(DEFAULT_AVALANCHE_PORT);
let temp_dir = TempDir::new("ava-data")
.map_err(|e| Error::FsError("Failed to create temp dir", "ava-data".into(), e))?;
let blockchain_specs = self
.config
.subnets
.iter()
.map(|sub| self.prepare_blockchain_spec(&temp_dir, sub))
.collect::<Result<Vec<BlockchainSpec>>>()?;
let server_port = next_available_port(proxy_port);
let grpc_port = next_available_port(server_port);
let ava_port = next_available_port(grpc_port);
let mut child = Command::new(&self.exe.destination())
.args([
"server",
&format!("--port=:{}", server_port),
&format!("--grpc-gateway-port=:{}", grpc_port),
])
.stdout(child_stdio())
.stderr(child_stdio())
.kill_on_drop(true)
.spawn()
.map_err(|e| {
start_error!(
"Unable to start avalanche server (at '{}') : {}",
&self.exe.destination().display(),
e
)
})?;
trace_stdout(self.config.name(), &mut child).await;
let custom_node_configs =
Self::gen_custom_node_configs(ava_port, Some(self.config.num_nodes))?;
let mut start_cmd = Command::new(&self.exe.destination())
.args([
"control",
"start",
format!("--endpoint=:{}", server_port).as_str(),
])
.arg("--root-data-dir")
.arg(temp_dir.path())
.arg("--avalanchego-path")
.arg(&self.avalanchego_path)
.arg("--custom-node-configs")
.arg(custom_node_configs.to_string())
.arg("--blockchain-specs")
.arg(serde_json::to_string(&blockchain_specs).unwrap())
.stdout(child_stdio())
.stderr(child_stdio())
.kill_on_drop(true)
.spawn()
.map_err(|e| {
start_error!(
"Unable to start avalanche server (at '{}') : {}",
&self.exe.destination().display(),
e
)
})?;
trace_stdout(&format!("{}/start", self.config.name()), &mut start_cmd).await;
let exit_status = start_cmd
.wait()
.await
.map_err(|e| start_error!("Unable to start avalanche network: {}", e))?;
if !exit_status.success() {
let e = ProviderError::StartError(format!(
"Failed to start avalanche network. Exit code: {:?}",
exit_status
));
return Err(Error::ProviderError(e));
}
let (endpoint, chain_id) = self.config.eth_endpoint_and_chain_id();
let ava_url_exposed = self.config.common.url.expose_url_and_update(
None,
Some(ava_port),
Some(endpoint.as_str()),
)?;
Ok(Box::new(AvalancheNetworkRunnerServer {
process: child,
data_dir: Some(temp_dir),
proxy: Some(Proxy::new(
SocketAddr::from(([127, 0, 0, 1], proxy_port)),
&ava_url_exposed,
Self::create_proxy_config(chain_id, Some(to_uri(&ava_url_exposed))),
)?),
config: AvalancheNetworkRunnerConfig {
exe: self.exe.destination(),
rpc_endpoint: ava_url_exposed.into(),
anr_server_http_port: server_port,
anr_server_grpc_port: grpc_port,
config: self.config.clone(),
},
}))
}
}
struct AvalancheNetworkRunnerConfig {
exe: PathBuf,
rpc_endpoint: SecretUrl,
anr_server_http_port: u16,
anr_server_grpc_port: u16,
config: AvalancheConfig,
}
struct AvalancheNetworkRunnerServer {
proxy: Option<Proxy>,
data_dir: Option<TempDir>,
process: Child,
config: AvalancheNetworkRunnerConfig,
}
impl AvalancheNetworkRunnerConfig {
async fn is_healthy(&self, client: Client) -> Result<()> {
let mut url = self.rpc_endpoint.expose_url()?;
url.set_path("v1/control/status");
url.set_port(Some(self.anr_server_grpc_port))
.expect("Could not set port");
async move {
let response = client
.post(url)
.header("Content-Type", "application/json")
.body("")
.send()
.await?;
if let Err(e) = response.error_for_status_ref() {
return Err(eyre::eyre!(
"Error: {}\n{e}\n{:?}",
response.status(),
response.text().await
));
};
let payload = response.json::<Value>().await?;
let get_bool = |prop_name| {
payload
.get("clusterInfo")
.and_then(|v| v.get(prop_name))
.and_then(|v| v.as_bool())
.unwrap_or(false)
};
if get_bool("healthy")
&& (self.config.subnets.is_empty() || get_bool("customChainsHealthy"))
{
Ok(())
} else {
Err(eyre::eyre!("Not healthy yet: {payload}"))
}
}
.await
.map_err(|e| Error::ServerTimeout(self.config.name().to_string(), format!("{e}")))
}
async fn until_healthy(&self) -> Result<()> {
let delays = repeat(Duration::from_millis(1000)).take(5 * 480);
let client = Client::new();
retry(delays, || self.is_healthy(client.clone())).await
}
}
impl AvalancheNetworkRunnerServer {
fn is_running(&mut self) -> bool {
matches!(self.process.try_wait(), Ok(None))
}
fn try_stop_network(&mut self) {
if !self.is_running() {
return;
}
trace!("Stopping avalanche network");
let ret = std::process::Command::new(&self.config.exe)
.args([
"control",
"stop",
"--dial-timeout=100ms",
format!("--endpoint=:{}", self.config.anr_server_http_port).as_str(),
])
.stdout(Stdio::null())
.stderr(Stdio::null())
.spawn()
.map(|mut ch| ch.wait());
trace!("Calling 'stop' returned: {ret:?}");
}
}
#[async_trait]
impl Server for AvalancheNetworkRunnerServer {
fn pid(&self) -> Option<u32> {
self.process.id()
}
async fn kill(&mut self) -> Result<()> {
self.try_stop_network();
let pid = self.process.id().unwrap_or_default();
let ret = self.process.kill().await;
trace!("Calling 'kill({pid})' returned {ret:?}");
self.proxy.take();
self.data_dir.take();
Ok(())
}
async fn available(&mut self) -> Result<()> {
let name = "avalanche".to_string();
self.process
.while_running(self.config.until_healthy(), name.clone())
.await??;
self.process
.while_running(
eth_available(self.config.rpc_endpoint.clone(), name.clone()),
name,
)
.await??;
Ok(())
}
async fn initialize(&mut self) -> Result<()> {
Ok(())
}
}
impl Drop for AvalancheNetworkRunnerServer {
fn drop(&mut self) {
self.try_stop_network();
}
}
#[cfg(test)]
mod tests {
use super::*;
use cubist_proxy::transformer::eth_creds::build_wallets;
use ethers::{
signers::{LocalWallet, Signer},
types::H160,
};
#[test]
pub fn test_proxy_creds() {
let chain_id = 123;
let cfg = AvalancheProvider::create_proxy_config(chain_id, None);
assert_eq!(1, cfg.creds.len());
let wallets = build_wallets(cfg.creds.iter()).unwrap();
assert_eq!(1, wallets.len());
let wallet: &LocalWallet = &wallets[0];
assert_eq!(
DEFAULT_AVALANCHE_ACCOUNT.parse::<H160>().unwrap(),
wallet.address()
);
}
#[test]
pub fn test_gen_custom_node_configs() {
let start_port = 1233;
let num_nodes = 4;
let cfg = AvalancheProvider::gen_custom_node_configs(start_port, Some(num_nodes)).unwrap();
let get_prop_value = |node_name: &str, prop_name: &str| {
let node_str = cfg
.get(node_name)
.unwrap_or_else(|| panic!("'{node_name}' not found"))
.as_str()
.unwrap_or_else(|| panic!("'{node_name}' is not string"));
let node_val: Value = serde_json::from_str(node_str).unwrap_or_else(|e| {
panic!("'{node_name}' is not a valid json; node value: {node_str}; err: {e}")
});
node_val
.get(prop_name)
.unwrap_or_else(|| {
panic!("Property '{prop_name}' not found in '{node_str}' for '{node_name}'")
})
.clone()
};
assert_eq!(
Some(start_port as u64),
get_prop_value("node1", "http-port").as_u64()
);
let mut last_port = start_port as u64 - 1;
for i in 1..=num_nodes {
let node_name = format!("node{i}");
let port_val = get_prop_value(&node_name, "http-port");
let port = port_val
.as_u64()
.unwrap_or_else(|| panic!("http-port is not a number: {port_val:?}"));
assert!(port > last_port);
let staking_port_val = get_prop_value(&node_name, "staking-port");
let staking_port = staking_port_val
.as_u64()
.unwrap_or_else(|| panic!("staking-port is not a number: {staking_port_val:?}"));
assert!(
staking_port > port,
"staking-port: {staking_port}; http-port: {port}"
);
last_port = staking_port;
}
}
}