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
//! Command-line option parsing.
//!
//! Most configuration is done via config files (see [`config`](../config/index.html) for details).
pub mod arglang;
use std::{
alloc::System,
fs,
path::{Path, PathBuf},
str::FromStr,
sync::Arc,
};
use anyhow::{self, bail, Context};
use prometheus::Registry;
use regex::Regex;
use stats_alloc::{StatsAlloc, INSTRUMENTED_SYSTEM};
use structopt::StructOpt;
use toml::{value::Table, Value};
use tracing::{error, info};
use casper_types::{Chainspec, ChainspecRawBytes};
use crate::{
components::network::Identity as NetworkIdentity,
logging,
reactor::{main_reactor, Runner},
setup_signal_hooks,
types::ExitCode,
utils::{
chain_specification::validate_chainspec, config_specification::validate_config, Loadable,
WithDir,
},
};
// We override the standard allocator to gather metrics and tune the allocator via the MALLOC_CONF
// env var.
#[global_allocator]
static ALLOC: &StatsAlloc<System> = &INSTRUMENTED_SYSTEM;
// Note: The docstring on `Cli` is the help shown when calling the binary with `--help`.
#[derive(Debug, StructOpt)]
#[structopt(version = crate::VERSION_STRING_COLOR.as_str())]
#[allow(rustdoc::invalid_html_tags)]
/// Casper blockchain node.
pub enum Cli {
/// Run the node in standard mode.
///
/// Loads the configuration values from the given configuration file or uses defaults if not
/// given, then runs the reactor.
#[structopt(alias = "validator")]
Standard {
/// Path to configuration file.
config: PathBuf,
#[structopt(
short = "C",
long,
env = "NODE_CONFIG",
use_delimiter(true),
value_delimiter(";")
)]
/// Overrides and extensions for configuration file entries in the form
/// <SECTION>.<KEY>=<VALUE>. For example, '-C=node.chainspec_config_path=chainspec.toml'
config_ext: Vec<ConfigExt>,
},
/// Migrate modified values from the old config as required after an upgrade.
MigrateConfig {
/// Path to configuration file of previous version of node.
#[structopt(long)]
old_config: PathBuf,
/// Path to configuration file of this version of node.
#[structopt(long)]
new_config: PathBuf,
},
/// Migrate any stored data as required after an upgrade.
MigrateData {
/// Path to configuration file of previous version of node.
#[structopt(long)]
old_config: PathBuf,
/// Path to configuration file of this version of node.
#[structopt(long)]
new_config: PathBuf,
},
/// Verify that a given config file can be parsed.
ValidateConfig {
/// Path to configuration file.
config: PathBuf,
},
}
#[derive(Debug)]
/// Command line extension to be applied to TOML-based config file values.
pub struct ConfigExt {
section: String,
key: String,
value: String,
}
impl ConfigExt {
/// Updates TOML table with updated or extended key value pairs.
///
/// Returns errors if the respective sections to be updated are not TOML tables or if parsing
/// the command line options failed.
fn update_toml_table(&self, toml_value: &mut Value) -> anyhow::Result<()> {
let table = toml_value
.as_table_mut()
.ok_or_else(|| anyhow::anyhow!("configuration table is not a table"))?;
if !table.contains_key(&self.section) {
table.insert(self.section.clone(), Value::Table(Table::new()));
}
let val = arglang::parse(&self.value)?;
table[&self.section]
.as_table_mut()
.ok_or_else(|| {
anyhow::anyhow!("configuration section {} is not a table", self.section)
})?
.insert(self.key.clone(), val);
Ok(())
}
}
impl FromStr for ConfigExt {
type Err = anyhow::Error;
/// Attempts to create a ConfigExt from a str patterned as `section.key=value`
fn from_str(input: &str) -> Result<Self, Self::Err> {
let re = Regex::new(r"^([^.]+)\.([^=]+)=(.+)$").unwrap();
let captures = re
.captures(input)
.context("could not parse config_ext (see README.md)")?;
Ok(ConfigExt {
section: captures
.get(1)
.context("failed to find section")?
.as_str()
.to_owned(),
key: captures
.get(2)
.context("failed to find key")?
.as_str()
.to_owned(),
value: captures
.get(3)
.context("failed to find value")?
.as_str()
.to_owned(),
})
}
}
impl Cli {
/// Executes selected CLI command.
pub async fn run(self) -> anyhow::Result<i32> {
match self {
Cli::Standard { config, config_ext } => {
// Setup UNIX signal hooks.
setup_signal_hooks();
let mut reactor_config = Self::init(&config, config_ext)?;
// We use a `ChaCha20Rng` for the production node. For one, we want to completely
// eliminate any chance of runtime failures, regardless of how small (these
// exist with `OsRng`). Additionally, we want to limit the number of syscalls for
// performance reasons.
let mut rng = crate::new_rng();
let registry = Registry::new();
let (chainspec, chainspec_raw_bytes) =
<(Chainspec, ChainspecRawBytes)>::from_path(reactor_config.dir())?;
info!(
protocol_version = %chainspec.protocol_version(),
build_version = %crate::VERSION_STRING.as_str(),
"node starting up"
);
if !validate_chainspec(&chainspec) {
bail!("invalid chainspec");
}
if !validate_config(reactor_config.value()) {
bail!("invalid config");
}
reactor_config.value_mut().ensure_valid(&chainspec);
let network_identity = NetworkIdentity::from_config(WithDir::new(
reactor_config.dir(),
reactor_config.value().network.clone(),
))
.context("failed to create a network identity")?;
let mut main_runner = Runner::<main_reactor::MainReactor>::with_metrics(
reactor_config,
Arc::new(chainspec),
Arc::new(chainspec_raw_bytes),
network_identity,
&mut rng,
®istry,
)
.await?;
let exit_code = main_runner.run(&mut rng).await;
Ok(exit_code as i32)
}
Cli::MigrateConfig {
old_config,
new_config,
} => {
let new_config = Self::init(&new_config, vec![])?;
let old_root = old_config
.parent()
.map_or_else(|| "/".into(), Path::to_path_buf);
let encoded_old_config = fs::read_to_string(&old_config)
.context("could not read old configuration file")
.with_context(|| old_config.display().to_string())?;
let old_config = toml::from_str(&encoded_old_config)?;
info!(build_version = %crate::VERSION_STRING.as_str(), "migrating config");
crate::config_migration::migrate_config(
WithDir::new(old_root, old_config),
new_config,
)?;
Ok(ExitCode::Success as i32)
}
Cli::MigrateData {
old_config,
new_config,
} => {
let new_config = Self::init(&new_config, vec![])?;
let old_root = old_config
.parent()
.map_or_else(|| "/".into(), Path::to_path_buf);
let encoded_old_config = fs::read_to_string(&old_config)
.context("could not read old configuration file")
.with_context(|| old_config.display().to_string())?;
let old_config = toml::from_str(&encoded_old_config)?;
info!(build_version = %crate::VERSION_STRING.as_str(), "migrating data");
crate::data_migration::migrate_data(
WithDir::new(old_root, old_config),
new_config,
)?;
Ok(ExitCode::Success as i32)
}
Cli::ValidateConfig { config } => {
info!(build_version = %crate::VERSION_STRING.as_str(), config_file = ?config, "validating config file");
match Self::init(&config, vec![]) {
Ok(_config) => {
info!(build_version = %crate::VERSION_STRING.as_str(), config_file = ?config, "config file is valid");
Ok(ExitCode::Success as i32)
}
Err(err) => {
// initialize manually in case of error to avoid double initialization
logging::init_with_config(&Default::default())?;
error!(build_version = %crate::VERSION_STRING.as_str(), config_file = ?config, "config file is not valid");
Err(err)
}
}
}
}
}
/// Parses the config file for the current version of casper-node, and initializes logging.
fn init(
config: &Path,
config_ext: Vec<ConfigExt>,
) -> anyhow::Result<WithDir<main_reactor::Config>> {
// Determine the parent directory of the configuration file, if any.
// Otherwise, we default to `/`.
let root = config
.parent()
.map_or_else(|| "/".into(), Path::to_path_buf);
// The app supports running without a config file, using default values.
let encoded_config = fs::read_to_string(config)
.context("could not read configuration file")
.with_context(|| config.display().to_string())?;
// Get the TOML table version of the config indicated from CLI args, or from a new
// defaulted config instance if one is not provided.
let mut config_table: Value = toml::from_str(&encoded_config)?;
// If any command line overrides to the config values are passed, apply them.
for item in config_ext {
item.update_toml_table(&mut config_table)?;
}
// Create main config, including any overridden values.
let main_config: main_reactor::Config = config_table.try_into()?;
logging::init_with_config(&main_config.logging)?;
Ok(WithDir::new(root, main_config))
}
}