1use std::{
6 net::{IpAddr, Ipv4Addr, SocketAddr},
7 num::NonZeroUsize,
8 path::{Path, PathBuf},
9 sync::Arc,
10 time::Duration,
11};
12
13use anyhow::Result;
14use fastcrypto::ed25519::Ed25519KeyPair;
15use iota_keys::keypair_file::{read_authority_keypair_from_file, read_keypair_from_file};
16use iota_metrics::MetricGroups;
17use iota_multiaddr::Multiaddr;
18use iota_names::config::IotaNamesConfig;
19use iota_sdk_crypto::simple::SimpleKeypair;
20use iota_sdk_types::Address;
21use iota_types::{
22 committee::EpochId,
23 crypto::{
24 AccountPrivateKey, AuthorityKeyPair, AuthorityPublicKeyBytes, KeypairTraits,
25 NetworkKeyPair, get_key_pair_from_rng, simple_to_network_keypair,
26 },
27 messages_checkpoint::CheckpointSequenceNumber,
28 supported_protocol_versions::{Chain, SupportedProtocolVersions},
29 traffic_control::{PolicyConfig, RemoteFirewallConfig},
30};
31use once_cell::sync::OnceCell;
32use rand::rngs::OsRng;
33use serde::{Deserialize, Serialize};
34use starfish_config::Parameters as StarfishParameters;
35use tracing::info;
36
37use crate::{
38 Config, certificate_deny_config::CertificateDenyConfig, genesis,
39 migration_tx_data::MigrationTxData, object_storage_config::ObjectStoreConfig, p2p::P2pConfig,
40 transaction_deny_config::TransactionDenyConfig, verifier_signing_config::VerifierSigningConfig,
41};
42
43pub const DEFAULT_VALIDATOR_GAS_PRICE: u64 = iota_types::transaction::DEFAULT_VALIDATOR_GAS_PRICE;
45
46pub const DEFAULT_COMMISSION_RATE: u64 = 200;
48
49pub const DEFAULT_FULL_CHECKPOINT_CONTENTS_CACHE_SIZE_MB: usize = 1024;
51
52#[derive(Clone, Debug, Deserialize, Serialize)]
53#[serde(rename_all = "kebab-case")]
54pub struct NodeConfig {
55 #[serde(default = "default_authority_key_pair")]
58 pub authority_key_pair: AuthorityKeyPairWithPath,
59 #[serde(default = "default_key_pair")]
62 pub protocol_key_pair: KeyPairWithPath,
63 #[serde(default = "default_key_pair")]
64 pub account_key_pair: KeyPairWithPath,
65 #[serde(default = "default_key_pair")]
68 pub network_key_pair: KeyPairWithPath,
69 pub db_path: PathBuf,
70
71 #[serde(default = "default_grpc_address")]
75 pub network_address: Multiaddr,
76 #[serde(default = "default_json_rpc_address")]
77 pub json_rpc_address: SocketAddr,
78
79 #[serde(default = "default_metrics_address")]
81 pub metrics_address: SocketAddr,
82
83 #[serde(default = "default_admin_interface_address")]
87 pub admin_interface_address: SocketAddr,
88
89 #[serde(skip_serializing_if = "Option::is_none")]
91 pub consensus_config: Option<ConsensusConfig>,
92
93 #[serde(default = "default_enable_index_processing")]
98 pub enable_index_processing: bool,
99
100 #[serde(default)]
102 pub jsonrpc_server_type: Option<ServerType>,
107
108 #[serde(default)]
112 pub grpc_load_shed: Option<bool>,
113
114 #[serde(default = "default_grpc_concurrency_limit_per_core")]
131 pub grpc_concurrency_limit_per_core: NonZeroUsize,
132
133 #[serde(default)]
135 pub p2p_config: P2pConfig,
136
137 pub genesis: Genesis,
141
142 pub migration_tx_data_path: Option<PathBuf>,
144
145 #[serde(default = "default_authority_store_pruning_config")]
148 pub authority_store_pruning_config: AuthorityStorePruningConfig,
149
150 #[serde(default = "default_end_of_epoch_broadcast_channel_capacity")]
155 pub end_of_epoch_broadcast_channel_capacity: usize,
156
157 #[serde(default)]
161 pub checkpoint_executor_config: CheckpointExecutorConfig,
162
163 #[serde(skip_serializing_if = "Option::is_none")]
164 pub metrics: Option<MetricsConfig>,
165
166 #[serde(skip)]
171 pub supported_protocol_versions: Option<SupportedProtocolVersions>,
172
173 #[serde(default)]
175 pub expensive_safety_check_config: ExpensiveSafetyCheckConfig,
176
177 #[serde(default)]
181 pub transaction_deny_config: TransactionDenyConfig,
182
183 #[serde(default)]
189 pub certificate_deny_config: CertificateDenyConfig,
190
191 #[serde(default)]
194 pub state_debug_dump_config: StateDebugDumpConfig,
195
196 #[serde(default)]
197 pub checkpoint_archive_config: Option<CheckpointArchiveConfig>,
198
199 #[serde(default)]
201 pub state_snapshot_write_config: StateSnapshotConfig,
202
203 #[serde(default)]
204 pub indexer_max_subscriptions: Option<usize>,
205
206 #[serde(default = "default_transaction_kv_store_config")]
207 pub transaction_kv_store_read_config: TransactionKeyValueStoreReadConfig,
208
209 #[serde(skip_serializing_if = "Option::is_none")]
211 pub transaction_kv_store_write_config: Option<TransactionKeyValueStoreWriteConfig>,
212
213 #[serde(default = "default_authority_overload_config")]
216 pub authority_overload_config: AuthorityOverloadConfig,
217
218 #[serde(skip_serializing_if = "Option::is_none")]
222 pub run_with_range: Option<RunWithRange>,
223
224 #[serde(
231 skip_serializing_if = "is_default_traffic_controller_policy_config",
232 default = "default_traffic_controller_policy_config"
233 )]
234 pub policy_config: Option<PolicyConfig>,
235
236 #[serde(skip_serializing_if = "Option::is_none")]
237 pub firewall_config: Option<RemoteFirewallConfig>,
238
239 #[serde(default)]
240 pub execution_cache_config: ExecutionCacheConfig,
241
242 #[serde(default = "default_full_checkpoint_contents_cache_size_mb")]
253 pub full_checkpoint_contents_cache_size_mb: usize,
254
255 #[serde(default = "bool_true")]
256 pub enable_validator_tx_finalizer: bool,
257
258 #[serde(default = "bool_true")]
264 pub enable_soft_locking: bool,
265
266 #[serde(default)]
267 pub verifier_signing_config: VerifierSigningConfig,
268
269 #[serde(skip_serializing_if = "Option::is_none")]
273 pub enable_db_write_stall: Option<bool>,
274
275 #[serde(default, skip_serializing_if = "Option::is_none")]
276 pub iota_names_config: Option<IotaNamesConfig>,
277
278 #[serde(default)]
280 pub enable_grpc_api: bool,
281 #[serde(
287 default = "default_grpc_api_config",
288 skip_serializing_if = "is_default_grpc_api_config"
289 )]
290 pub grpc_api_config: Option<GrpcApiConfig>,
291
292 #[serde(skip_serializing_if = "Option::is_none")]
297 pub chain_override_for_testing: Option<Chain>,
298
299 #[serde(default, skip_serializing_if = "Option::is_none")]
302 pub validator_client_monitor_config:
303 Option<crate::validator_client_monitor_config::ValidatorClientMonitorConfig>,
304}
305
306#[derive(Clone, Debug, Default, serde::Deserialize, serde::Serialize)]
307#[serde(rename_all = "kebab-case")]
308pub struct TlsConfig {
309 cert: String,
311 key: String,
313}
314
315impl TlsConfig {
316 pub fn cert(&self) -> &str {
317 &self.cert
318 }
319
320 pub fn key(&self) -> &str {
321 &self.key
322 }
323}
324
325#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
327#[serde(rename_all = "kebab-case")]
328pub struct GrpcApiConfig {
329 #[serde(default = "default_grpc_api_address")]
331 pub address: SocketAddr,
332
333 #[serde(skip_serializing_if = "Option::is_none")]
337 pub tls: Option<TlsConfig>,
338
339 #[serde(default = "default_grpc_api_max_message_size_bytes")]
341 pub max_message_size_bytes: u32,
342
343 #[serde(default = "default_grpc_api_broadcast_buffer_size")]
345 pub broadcast_buffer_size: u32,
346
347 #[serde(default = "default_grpc_api_max_concurrent_stream_subscribers")]
353 pub max_concurrent_stream_subscribers: u32,
354
355 #[serde(default = "default_grpc_api_max_json_move_value_size")]
358 pub max_json_move_value_size: usize,
359
360 #[serde(default = "default_grpc_api_max_execute_transaction_batch_size")]
363 pub max_execute_transaction_batch_size: u32,
364
365 #[serde(default = "default_grpc_api_max_simulate_transaction_batch_size")]
368 pub max_simulate_transaction_batch_size: u32,
369
370 #[serde(default = "default_grpc_api_max_get_objects_batch_size")]
372 pub max_get_objects_batch_size: u32,
373
374 #[serde(default = "default_grpc_api_max_get_transactions_batch_size")]
377 pub max_get_transactions_batch_size: u32,
378
379 #[serde(default = "default_grpc_api_max_view_function_call_batch_size")]
382 pub max_view_function_call_batch_size: u32,
383
384 #[serde(default = "default_grpc_api_max_checkpoint_inclusion_timeout_ms")]
388 pub max_checkpoint_inclusion_timeout_ms: u64,
389}
390
391fn default_grpc_api_address() -> SocketAddr {
392 SocketAddr::new(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)), 50051)
393}
394
395fn default_grpc_api_broadcast_buffer_size() -> u32 {
396 100
397}
398
399fn default_grpc_api_max_concurrent_stream_subscribers() -> u32 {
400 1024
401}
402
403fn default_grpc_api_max_message_size_bytes() -> u32 {
404 128 * 1024 * 1024 }
406
407fn default_grpc_api_max_json_move_value_size() -> usize {
408 1024 * 1024 }
410
411fn default_grpc_api_max_execute_transaction_batch_size() -> u32 {
412 20
413}
414
415fn default_grpc_api_max_simulate_transaction_batch_size() -> u32 {
416 20
417}
418
419fn default_grpc_api_max_get_objects_batch_size() -> u32 {
420 1000
421}
422
423fn default_grpc_api_max_get_transactions_batch_size() -> u32 {
424 1000
425}
426
427fn default_grpc_api_max_view_function_call_batch_size() -> u32 {
428 20
429}
430
431fn default_grpc_api_max_checkpoint_inclusion_timeout_ms() -> u64 {
432 60_000 }
434
435impl Default for GrpcApiConfig {
436 fn default() -> Self {
437 Self {
438 address: default_grpc_api_address(),
439 tls: None,
440 max_message_size_bytes: default_grpc_api_max_message_size_bytes(),
441 broadcast_buffer_size: default_grpc_api_broadcast_buffer_size(),
442 max_concurrent_stream_subscribers: default_grpc_api_max_concurrent_stream_subscribers(),
443 max_json_move_value_size: default_grpc_api_max_json_move_value_size(),
444 max_execute_transaction_batch_size: default_grpc_api_max_execute_transaction_batch_size(
445 ),
446 max_simulate_transaction_batch_size:
447 default_grpc_api_max_simulate_transaction_batch_size(),
448 max_get_objects_batch_size: default_grpc_api_max_get_objects_batch_size(),
449 max_get_transactions_batch_size: default_grpc_api_max_get_transactions_batch_size(),
450 max_view_function_call_batch_size: default_grpc_api_max_view_function_call_batch_size(),
451 max_checkpoint_inclusion_timeout_ms:
452 default_grpc_api_max_checkpoint_inclusion_timeout_ms(),
453 }
454 }
455}
456
457impl GrpcApiConfig {
458 const GRPC_TONIC_DEFAULT_MAX_RECV_MESSAGE_SIZE: u32 = 4 * 1024 * 1024; const GRPC_MIN_CLIENT_MAX_MESSAGE_SIZE_BYTES: u32 =
462 Self::GRPC_TONIC_DEFAULT_MAX_RECV_MESSAGE_SIZE;
463
464 pub fn tls_config(&self) -> Option<&TlsConfig> {
465 self.tls.as_ref()
466 }
467
468 pub fn max_message_size_bytes(&self) -> u32 {
469 self.max_message_size_bytes
471 .max(Self::GRPC_MIN_CLIENT_MAX_MESSAGE_SIZE_BYTES)
472 }
473
474 pub fn max_message_size_client_bytes(&self, client_max_message_size_bytes: Option<u32>) -> u32 {
478 client_max_message_size_bytes
479 .unwrap_or(Self::GRPC_TONIC_DEFAULT_MAX_RECV_MESSAGE_SIZE)
482 .clamp(
484 Self::GRPC_MIN_CLIENT_MAX_MESSAGE_SIZE_BYTES,
485 self.max_message_size_bytes(),
486 )
487 }
488}
489
490#[derive(Clone, Debug, Default, Deserialize, Serialize)]
491#[serde(rename_all = "kebab-case")]
492pub struct ExecutionCacheConfig {
493 #[serde(default)]
494 pub writeback_cache: WritebackCacheConfig,
495}
496
497#[derive(Clone, Debug, Default, Deserialize, Serialize)]
498#[serde(rename_all = "kebab-case")]
499pub struct WritebackCacheConfig {
500 #[serde(default, skip_serializing_if = "Option::is_none")]
503 pub max_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
506 pub package_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
509 pub object_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
511 pub marker_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
513 pub object_by_id_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
516 pub transaction_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
518 pub executed_effect_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
520 pub effect_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
523 pub events_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
526 pub transaction_objects_cache_size: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
531 pub backpressure_threshold: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
537 pub backpressure_threshold_for_rpc: Option<u64>, #[serde(default, skip_serializing_if = "Option::is_none")]
547 pub backpressure_soft_limit_pct: Option<u32>,
548}
549
550impl WritebackCacheConfig {
551 pub fn max_cache_size(&self) -> u64 {
552 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_MAX")
553 .ok()
554 .and_then(|s| s.parse().ok())
555 .or(self.max_cache_size)
556 .unwrap_or(100000)
557 }
558
559 pub fn package_cache_size(&self) -> u64 {
560 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_PACKAGE")
561 .ok()
562 .and_then(|s| s.parse().ok())
563 .or(self.package_cache_size)
564 .unwrap_or(1000)
565 }
566
567 pub fn object_cache_size(&self) -> u64 {
568 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_OBJECT")
569 .ok()
570 .and_then(|s| s.parse().ok())
571 .or(self.object_cache_size)
572 .unwrap_or_else(|| self.max_cache_size())
573 }
574
575 pub fn marker_cache_size(&self) -> u64 {
576 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_MARKER")
577 .ok()
578 .and_then(|s| s.parse().ok())
579 .or(self.marker_cache_size)
580 .unwrap_or_else(|| self.object_cache_size())
581 }
582
583 pub fn object_by_id_cache_size(&self) -> u64 {
584 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_OBJECT_BY_ID")
585 .ok()
586 .and_then(|s| s.parse().ok())
587 .or(self.object_by_id_cache_size)
588 .unwrap_or_else(|| self.object_cache_size())
589 }
590
591 pub fn transaction_cache_size(&self) -> u64 {
592 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_TRANSACTION")
593 .ok()
594 .and_then(|s| s.parse().ok())
595 .or(self.transaction_cache_size)
596 .unwrap_or_else(|| self.max_cache_size())
597 }
598
599 pub fn executed_effect_cache_size(&self) -> u64 {
600 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_EXECUTED_EFFECT")
601 .ok()
602 .and_then(|s| s.parse().ok())
603 .or(self.executed_effect_cache_size)
604 .unwrap_or_else(|| self.transaction_cache_size())
605 }
606
607 pub fn effect_cache_size(&self) -> u64 {
608 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_EFFECT")
609 .ok()
610 .and_then(|s| s.parse().ok())
611 .or(self.effect_cache_size)
612 .unwrap_or_else(|| self.executed_effect_cache_size())
613 }
614
615 pub fn events_cache_size(&self) -> u64 {
616 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_EVENTS")
617 .ok()
618 .and_then(|s| s.parse().ok())
619 .or(self.events_cache_size)
620 .unwrap_or_else(|| self.transaction_cache_size())
621 }
622
623 pub fn transaction_objects_cache_size(&self) -> u64 {
624 std::env::var("IOTA_CACHE_WRITEBACK_SIZE_TRANSACTION_OBJECTS")
625 .ok()
626 .and_then(|s| s.parse().ok())
627 .or(self.transaction_objects_cache_size)
628 .unwrap_or(1000)
629 }
630
631 pub fn backpressure_threshold(&self) -> u64 {
632 std::env::var("IOTA_CACHE_WRITEBACK_BACKPRESSURE_THRESHOLD")
633 .ok()
634 .and_then(|s| s.parse().ok())
635 .or(self.backpressure_threshold)
636 .unwrap_or(100_000)
637 }
638
639 pub fn backpressure_threshold_for_rpc(&self) -> u64 {
640 std::env::var("IOTA_CACHE_WRITEBACK_BACKPRESSURE_THRESHOLD_FOR_RPC")
641 .ok()
642 .and_then(|s| s.parse().ok())
643 .or(self.backpressure_threshold_for_rpc)
644 .unwrap_or(self.backpressure_threshold())
645 }
646
647 pub fn backpressure_soft_limit_pct(&self) -> u32 {
648 std::env::var("IOTA_CACHE_WRITEBACK_BACKPRESSURE_SOFT_LIMIT_PCT")
649 .ok()
650 .and_then(|s| s.parse().ok())
651 .or(self.backpressure_soft_limit_pct)
652 .unwrap_or(50)
653 .min(100)
654 }
655}
656
657#[derive(Clone, Copy, Debug, Deserialize, Serialize)]
658#[serde(rename_all = "lowercase")]
659pub enum ServerType {
660 WebSocket,
661 Http,
662 Both,
663}
664
665#[derive(Clone, Debug, Deserialize, Serialize)]
666#[serde(rename_all = "kebab-case")]
667pub struct TransactionKeyValueStoreReadConfig {
668 #[serde(default = "default_base_url")]
669 pub base_url: String,
670
671 #[serde(default = "default_cache_size")]
672 pub cache_size: u64,
673}
674
675impl Default for TransactionKeyValueStoreReadConfig {
676 fn default() -> Self {
677 Self {
678 base_url: default_base_url(),
679 cache_size: default_cache_size(),
680 }
681 }
682}
683
684fn default_base_url() -> String {
685 "".to_string()
686}
687
688fn default_cache_size() -> u64 {
689 100_000
690}
691
692fn default_transaction_kv_store_config() -> TransactionKeyValueStoreReadConfig {
693 TransactionKeyValueStoreReadConfig::default()
694}
695
696fn default_authority_store_pruning_config() -> AuthorityStorePruningConfig {
697 AuthorityStorePruningConfig::default()
698}
699
700pub fn default_enable_index_processing() -> bool {
701 true
702}
703
704fn default_grpc_address() -> Multiaddr {
705 "/ip4/0.0.0.0/tcp/8080".parse().unwrap()
706}
707fn default_authority_key_pair() -> AuthorityKeyPairWithPath {
708 AuthorityKeyPairWithPath::new(get_key_pair_from_rng::<AuthorityKeyPair, _>(&mut OsRng).1)
709}
710
711fn default_key_pair() -> KeyPairWithPath {
712 KeyPairWithPath::new(AccountPrivateKey::random().into())
713}
714
715fn default_metrics_address() -> SocketAddr {
716 SocketAddr::new(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)), 9184)
717}
718
719pub fn default_admin_interface_address() -> SocketAddr {
720 SocketAddr::new(IpAddr::V4(Ipv4Addr::LOCALHOST), 1337)
721}
722
723pub fn default_json_rpc_address() -> SocketAddr {
724 SocketAddr::new(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)), 9000)
725}
726
727pub fn default_grpc_api_config() -> Option<GrpcApiConfig> {
728 Some(GrpcApiConfig::default())
729}
730
731fn is_default_grpc_api_config(grpc_api_config: &Option<GrpcApiConfig>) -> bool {
732 serializes_like(grpc_api_config, &default_grpc_api_config())
733}
734
735fn serializes_like<T: Serialize>(value: &T, default: &T) -> bool {
741 match (serde_yaml::to_string(value), serde_yaml::to_string(default)) {
742 (Ok(value), Ok(default)) => value == default,
743 _ => false,
744 }
745}
746
747pub fn default_grpc_concurrency_limit_per_core() -> NonZeroUsize {
748 NonZeroUsize::new(1000).unwrap()
749}
750
751pub fn default_end_of_epoch_broadcast_channel_capacity() -> usize {
752 128
753}
754
755pub fn default_full_checkpoint_contents_cache_size_mb() -> usize {
756 DEFAULT_FULL_CHECKPOINT_CONTENTS_CACHE_SIZE_MB
757}
758
759pub fn bool_true() -> bool {
760 true
761}
762
763impl Config for NodeConfig {}
764
765impl NodeConfig {
766 pub fn authority_key_pair(&self) -> &AuthorityKeyPair {
767 self.authority_key_pair.authority_keypair()
768 }
769
770 pub fn protocol_key_pair(&self) -> &NetworkKeyPair {
771 self.protocol_key_pair.ed25519_keypair()
772 }
773
774 pub fn network_key_pair(&self) -> &NetworkKeyPair {
775 self.network_key_pair.ed25519_keypair()
776 }
777
778 pub fn authority_public_key(&self) -> AuthorityPublicKeyBytes {
779 self.authority_key_pair().public().into()
780 }
781
782 pub fn db_path(&self) -> PathBuf {
783 self.db_path.join("live")
784 }
785
786 pub fn db_checkpoint_path(&self) -> PathBuf {
787 self.db_path.join("db_checkpoints")
788 }
789
790 pub fn snapshot_path(&self) -> PathBuf {
791 self.db_path.join("snapshot")
792 }
793
794 pub fn network_address(&self) -> &Multiaddr {
795 &self.network_address
796 }
797
798 pub fn consensus_config(&self) -> Option<&ConsensusConfig> {
799 self.consensus_config.as_ref()
800 }
801
802 pub fn genesis(&self) -> Result<&genesis::Genesis> {
803 self.genesis.genesis()
804 }
805
806 pub fn load_migration_tx_data(&self) -> Result<MigrationTxData> {
807 let Some(location) = &self.migration_tx_data_path else {
808 anyhow::bail!("no file location set");
809 };
810
811 let migration_tx_data = MigrationTxData::load(location)?;
813
814 migration_tx_data.validate_from_genesis(self.genesis.genesis()?)?;
816 Ok(migration_tx_data)
817 }
818
819 pub fn iota_address(&self) -> Address {
820 self.account_key_pair
821 .keypair()
822 .public_key()
823 .derive_address()
824 }
825
826 pub fn checkpoint_archive_config(&self) -> Option<&CheckpointArchiveConfig> {
827 self.checkpoint_archive_config.as_ref()
828 }
829
830 pub fn jsonrpc_server_type(&self) -> ServerType {
831 self.jsonrpc_server_type.unwrap_or(ServerType::Http)
832 }
833
834 pub fn is_validator(&self) -> bool {
837 self.consensus_config.is_some()
838 }
839
840 pub fn validate(&self) -> Result<()> {
844 if self.is_validator() {
847 if self.enable_grpc_api {
848 anyhow::bail!(
849 "`enable-grpc-api` is set, but validators do not expose the gRPC API; turn \
850 it off, or move the API to a fullnode"
851 );
852 }
853 if self
854 .state_snapshot_write_config
855 .object_store_config
856 .is_some()
857 {
858 anyhow::bail!(
859 "`state-snapshot-write-config.object-store-config` is set, but snapshot \
860 upload is only supported on fullnodes; remove the setting or move the \
861 upload to a fullnode"
862 );
863 }
864 }
865 if self.enable_grpc_api && self.grpc_api_config.is_none() {
869 anyhow::bail!(
870 "`enable-grpc-api` is set but `grpc-api-config` is `null`; give it a value, \
871 remove the key to take the default config, or turn off `enable-grpc-api`"
872 );
873 }
874 if self
876 .state_snapshot_write_config
877 .object_store_config
878 .as_ref()
879 .is_some_and(|store| store.object_store.is_none())
880 {
881 anyhow::bail!(
882 "`state-snapshot-write-config.object-store-config` has no `object-store`; \
883 snapshot upload needs a storage backend"
884 );
885 }
886 if self.firewall_config.is_some() && self.policy_config.is_none() {
891 anyhow::bail!(
892 "`firewall-config` is set but `policy-config` is `null`; the firewall is driven \
893 by the traffic controller, which does not run without a policy; remove \
894 `firewall-config` or set a `policy-config`"
895 );
896 }
897 Ok(())
898 }
899}
900
901#[derive(Debug, Clone, Deserialize, Serialize)]
902#[serde(rename_all = "kebab-case")]
903pub struct ConsensusConfig {
904 pub db_path: PathBuf,
906
907 pub db_retention_epochs: Option<u64>,
911
912 pub db_pruner_period_secs: Option<u64>,
916
917 pub max_pending_transactions: Option<usize>,
928
929 pub max_submit_position: Option<usize>,
935
936 pub submit_delay_step_override_millis: Option<u64>,
942
943 #[serde(skip_serializing_if = "Option::is_none", alias = "starfish_parameters")]
945 pub parameters: Option<StarfishParameters>,
946
947 #[serde(skip_serializing_if = "Option::is_none")]
953 pub graduated_load_shedding_soft_limit_pct: Option<u32>,
954}
955
956impl ConsensusConfig {
957 pub fn db_path(&self) -> &Path {
958 &self.db_path
959 }
960
961 pub fn max_pending_transactions(&self) -> usize {
965 self.max_pending_transactions.unwrap_or(20_000)
966 }
967
968 pub fn graduated_load_shedding_soft_limit_pct(&self) -> u32 {
973 self.graduated_load_shedding_soft_limit_pct
974 .unwrap_or(50)
975 .min(100)
976 }
977
978 pub fn submit_delay_step_override(&self) -> Option<Duration> {
979 self.submit_delay_step_override_millis
980 .map(Duration::from_millis)
981 }
982
983 pub fn db_retention_epochs(&self) -> u64 {
984 self.db_retention_epochs.unwrap_or(0)
985 }
986
987 pub fn db_pruner_period(&self) -> Duration {
988 self.db_pruner_period_secs
990 .map(Duration::from_secs)
991 .unwrap_or(Duration::from_secs(3_600))
992 }
993}
994
995#[derive(Clone, Debug, Deserialize, Serialize)]
996#[serde(rename_all = "kebab-case")]
997pub struct CheckpointExecutorConfig {
998 #[serde(default = "default_checkpoint_execution_max_concurrency")]
1003 pub checkpoint_execution_max_concurrency: usize,
1004
1005 #[serde(default = "default_local_execution_timeout_sec")]
1011 pub local_execution_timeout_sec: u64,
1012
1013 #[serde(default, skip_serializing_if = "Option::is_none")]
1018 pub data_ingestion_dir: Option<PathBuf>,
1019}
1020
1021#[derive(Clone, Debug, Default, Deserialize, Serialize)]
1022#[serde(rename_all = "kebab-case")]
1023pub struct ExpensiveSafetyCheckConfig {
1024 #[serde(default)]
1029 enable_epoch_iota_conservation_check: bool,
1030
1031 #[serde(default)]
1035 enable_deep_per_tx_iota_conservation_check: bool,
1036
1037 #[serde(default)]
1040 force_disable_epoch_iota_conservation_check: bool,
1041
1042 #[serde(default)]
1045 enable_state_consistency_check: bool,
1046
1047 #[serde(default)]
1049 force_disable_state_consistency_check: bool,
1050
1051 #[serde(default)]
1052 enable_secondary_index_checks: bool,
1053 }
1055
1056impl ExpensiveSafetyCheckConfig {
1057 pub fn new_enable_all() -> Self {
1058 Self {
1059 enable_epoch_iota_conservation_check: true,
1060 enable_deep_per_tx_iota_conservation_check: true,
1061 force_disable_epoch_iota_conservation_check: false,
1062 enable_state_consistency_check: true,
1063 force_disable_state_consistency_check: false,
1064 enable_secondary_index_checks: false, }
1066 }
1067
1068 pub fn new_disable_all() -> Self {
1069 Self {
1070 enable_epoch_iota_conservation_check: false,
1071 enable_deep_per_tx_iota_conservation_check: false,
1072 force_disable_epoch_iota_conservation_check: true,
1073 enable_state_consistency_check: false,
1074 force_disable_state_consistency_check: true,
1075 enable_secondary_index_checks: false,
1076 }
1077 }
1078
1079 pub fn force_disable_epoch_iota_conservation_check(&mut self) {
1080 self.force_disable_epoch_iota_conservation_check = true;
1081 }
1082
1083 pub fn enable_epoch_iota_conservation_check(&self) -> bool {
1084 (self.enable_epoch_iota_conservation_check || cfg!(debug_assertions))
1085 && !self.force_disable_epoch_iota_conservation_check
1086 }
1087
1088 pub fn force_disable_state_consistency_check(&mut self) {
1089 self.force_disable_state_consistency_check = true;
1090 }
1091
1092 pub fn enable_state_consistency_check(&self) -> bool {
1093 (self.enable_state_consistency_check || cfg!(debug_assertions))
1094 && !self.force_disable_state_consistency_check
1095 }
1096
1097 pub fn enable_deep_per_tx_iota_conservation_check(&self) -> bool {
1098 self.enable_deep_per_tx_iota_conservation_check || cfg!(debug_assertions)
1099 }
1100
1101 pub fn enable_secondary_index_checks(&self) -> bool {
1102 self.enable_secondary_index_checks
1103 }
1104}
1105
1106fn default_checkpoint_execution_max_concurrency() -> usize {
1107 4
1108}
1109
1110fn default_local_execution_timeout_sec() -> u64 {
1111 30
1112}
1113
1114impl Default for CheckpointExecutorConfig {
1115 fn default() -> Self {
1116 Self {
1117 checkpoint_execution_max_concurrency: default_checkpoint_execution_max_concurrency(),
1118 local_execution_timeout_sec: default_local_execution_timeout_sec(),
1119 data_ingestion_dir: None,
1120 }
1121 }
1122}
1123
1124#[derive(Debug, Clone, Deserialize, Serialize)]
1125#[serde(rename_all = "kebab-case")]
1126pub struct AuthorityStorePruningConfig {
1127 #[serde(default = "default_num_latest_epoch_dbs_to_retain")]
1129 pub num_latest_epoch_dbs_to_retain: usize,
1130 #[serde(default)]
1135 pub num_epochs_to_retain: u64,
1136 #[serde(
1145 default = "default_periodic_compaction_threshold_days",
1146 skip_serializing_if = "is_default_periodic_compaction_threshold_days"
1147 )]
1148 pub periodic_compaction_threshold_days: Option<usize>,
1149 #[serde(skip_serializing_if = "Option::is_none")]
1152 pub num_epochs_to_retain_for_checkpoints: Option<u64>,
1153 #[serde(skip_serializing_if = "Option::is_none")]
1154 pub num_epochs_to_retain_for_indexes: Option<u64>,
1155}
1156
1157fn default_num_latest_epoch_dbs_to_retain() -> usize {
1158 3
1159}
1160
1161fn default_periodic_compaction_threshold_days() -> Option<usize> {
1162 Some(1)
1163}
1164
1165fn is_default_periodic_compaction_threshold_days(days: &Option<usize>) -> bool {
1166 *days == default_periodic_compaction_threshold_days()
1167}
1168
1169impl Default for AuthorityStorePruningConfig {
1170 fn default() -> Self {
1171 Self {
1172 num_latest_epoch_dbs_to_retain: default_num_latest_epoch_dbs_to_retain(),
1173 num_epochs_to_retain: 0,
1174 periodic_compaction_threshold_days: default_periodic_compaction_threshold_days(),
1175 num_epochs_to_retain_for_checkpoints: if cfg!(msim) { Some(2) } else { None },
1176 num_epochs_to_retain_for_indexes: None,
1177 }
1178 }
1179}
1180
1181impl AuthorityStorePruningConfig {
1182 pub fn set_num_epochs_to_retain(&mut self, num_epochs_to_retain: u64) {
1183 self.num_epochs_to_retain = num_epochs_to_retain;
1184 }
1185
1186 pub fn set_num_epochs_to_retain_for_checkpoints(&mut self, num_epochs_to_retain: Option<u64>) {
1187 self.num_epochs_to_retain_for_checkpoints = num_epochs_to_retain;
1188 }
1189
1190 pub fn num_epochs_to_retain_for_checkpoints(&self) -> Option<u64> {
1191 self.num_epochs_to_retain_for_checkpoints
1192 .map(|n| {
1194 if n < 2 {
1195 info!("num_epochs_to_retain_for_checkpoints must be at least 2, rounding up from {}", n);
1196 2
1197 } else {
1198 n
1199 }
1200 })
1201 }
1202}
1203
1204#[derive(Debug, Clone, Deserialize, Serialize)]
1205#[serde(rename_all = "kebab-case")]
1206pub struct MetricsConfig {
1207 #[serde(skip_serializing_if = "Option::is_none")]
1208 pub push_interval_seconds: Option<u64>,
1209 #[serde(skip_serializing_if = "Option::is_none")]
1210 pub push_url: Option<String>,
1211 #[serde(skip_serializing_if = "Option::is_none")]
1212 pub groups: Option<MetricGroups>,
1213}
1214
1215fn default_checkpoint_archive_download_concurrency() -> NonZeroUsize {
1216 NonZeroUsize::new(10).unwrap()
1217}
1218
1219fn default_checkpoint_archive_verify_concurrency() -> NonZeroUsize {
1220 std::thread::available_parallelism().unwrap_or(NonZeroUsize::new(4).unwrap())
1221}
1222
1223#[derive(Debug, Clone, Deserialize, Serialize)]
1226#[serde(rename_all = "kebab-case")]
1227pub struct CheckpointArchiveConfig {
1228 pub url: String,
1230 #[serde(default = "default_checkpoint_archive_download_concurrency")]
1232 pub download_concurrency: NonZeroUsize,
1233 #[serde(default = "default_checkpoint_archive_verify_concurrency")]
1236 pub verify_concurrency: NonZeroUsize,
1237}
1238
1239#[derive(Default, Debug, Clone, Deserialize, Serialize)]
1247#[serde(rename_all = "kebab-case")]
1248pub struct StateSnapshotConfig {
1249 #[serde(skip_serializing_if = "Option::is_none")]
1250 pub object_store_config: Option<ObjectStoreConfig>,
1251 pub concurrency: usize,
1252}
1253
1254#[derive(Default, Debug, Clone, Deserialize, Serialize)]
1255#[serde(rename_all = "kebab-case")]
1256pub struct TransactionKeyValueStoreWriteConfig {
1257 pub aws_access_key_id: String,
1258 pub aws_secret_access_key: String,
1259 pub aws_region: String,
1260 pub table_name: String,
1261 pub bucket_name: String,
1262 pub concurrency: usize,
1263}
1264
1265#[derive(Clone, Debug, Deserialize, Serialize)]
1270#[serde(rename_all = "kebab-case")]
1271pub struct AuthorityOverloadConfig {
1272 #[serde(default = "default_max_txn_age_in_queue")]
1276 pub max_txn_age_in_queue: Duration,
1277
1278 #[serde(default = "default_overload_monitor_interval")]
1280 pub overload_monitor_interval: Duration,
1281
1282 #[serde(default = "default_execution_queue_latency_soft_limit")]
1284 pub execution_queue_latency_soft_limit: Duration,
1285
1286 #[serde(default = "default_execution_queue_latency_hard_limit")]
1289 pub execution_queue_latency_hard_limit: Duration,
1290
1291 #[serde(default = "default_max_load_shedding_percentage")]
1293 pub max_load_shedding_percentage: u32,
1294
1295 #[serde(default = "default_min_load_shedding_percentage_above_hard_limit")]
1298 pub min_load_shedding_percentage_above_hard_limit: u32,
1299
1300 #[serde(default = "default_safe_transaction_ready_rate")]
1303 pub safe_transaction_ready_rate: u32,
1304
1305 #[serde(default = "default_check_system_overload_at_signing")]
1308 pub check_system_overload_at_signing: bool,
1309
1310 #[serde(default, skip_serializing_if = "std::ops::Not::not")]
1313 pub check_system_overload_at_execution: bool,
1314
1315 #[serde(default = "default_max_transaction_manager_queue_length")]
1319 pub max_transaction_manager_queue_length: usize,
1320
1321 #[serde(default = "default_max_transaction_manager_per_object_queue_length")]
1324 pub max_transaction_manager_per_object_queue_length: usize,
1325
1326 #[serde(default = "default_max_transaction_manager_queue_length_soft_limit_pct")]
1330 pub max_transaction_manager_queue_length_soft_limit_pct: u32,
1331}
1332
1333impl AuthorityOverloadConfig {
1334 pub fn max_transaction_manager_queue_length_soft_limit_pct(&self) -> u32 {
1337 self.max_transaction_manager_queue_length_soft_limit_pct
1338 .min(100)
1339 }
1340}
1341
1342fn default_max_txn_age_in_queue() -> Duration {
1343 Duration::from_millis(500)
1344}
1345
1346fn default_overload_monitor_interval() -> Duration {
1347 Duration::from_secs(10)
1348}
1349
1350fn default_execution_queue_latency_soft_limit() -> Duration {
1351 Duration::from_secs(1)
1352}
1353
1354fn default_execution_queue_latency_hard_limit() -> Duration {
1355 Duration::from_secs(10)
1356}
1357
1358fn default_max_load_shedding_percentage() -> u32 {
1359 95
1360}
1361
1362fn default_min_load_shedding_percentage_above_hard_limit() -> u32 {
1363 50
1364}
1365
1366fn default_safe_transaction_ready_rate() -> u32 {
1367 100
1368}
1369
1370fn default_check_system_overload_at_signing() -> bool {
1371 true
1372}
1373
1374fn default_max_transaction_manager_queue_length() -> usize {
1375 100_000
1376}
1377
1378fn default_max_transaction_manager_queue_length_soft_limit_pct() -> u32 {
1379 50
1380}
1381
1382fn default_max_transaction_manager_per_object_queue_length() -> usize {
1383 20
1384}
1385
1386impl Default for AuthorityOverloadConfig {
1387 fn default() -> Self {
1388 Self {
1389 max_txn_age_in_queue: default_max_txn_age_in_queue(),
1390 overload_monitor_interval: default_overload_monitor_interval(),
1391 execution_queue_latency_soft_limit: default_execution_queue_latency_soft_limit(),
1392 execution_queue_latency_hard_limit: default_execution_queue_latency_hard_limit(),
1393 max_load_shedding_percentage: default_max_load_shedding_percentage(),
1394 min_load_shedding_percentage_above_hard_limit:
1395 default_min_load_shedding_percentage_above_hard_limit(),
1396 safe_transaction_ready_rate: default_safe_transaction_ready_rate(),
1397 check_system_overload_at_signing: true,
1398 check_system_overload_at_execution: false,
1399 max_transaction_manager_queue_length: default_max_transaction_manager_queue_length(),
1400 max_transaction_manager_queue_length_soft_limit_pct:
1401 default_max_transaction_manager_queue_length_soft_limit_pct(),
1402 max_transaction_manager_per_object_queue_length:
1403 default_max_transaction_manager_per_object_queue_length(),
1404 }
1405 }
1406}
1407
1408fn default_authority_overload_config() -> AuthorityOverloadConfig {
1409 AuthorityOverloadConfig::default()
1410}
1411
1412fn default_traffic_controller_policy_config() -> Option<PolicyConfig> {
1413 Some(PolicyConfig::default_dos_protection_policy())
1414}
1415
1416fn is_default_traffic_controller_policy_config(policy_config: &Option<PolicyConfig>) -> bool {
1417 serializes_like(policy_config, &default_traffic_controller_policy_config())
1418}
1419
1420#[derive(Debug, Clone, PartialEq, Deserialize, Serialize, Eq)]
1421pub struct Genesis {
1422 #[serde(flatten)]
1423 location: Option<GenesisLocation>,
1424
1425 #[serde(skip)]
1426 genesis: once_cell::sync::OnceCell<genesis::Genesis>,
1427}
1428
1429impl Genesis {
1430 pub fn new(genesis: genesis::Genesis) -> Self {
1431 Self {
1432 location: Some(GenesisLocation::InPlace {
1433 genesis: Box::new(genesis),
1434 }),
1435 genesis: Default::default(),
1436 }
1437 }
1438
1439 pub fn new_from_file<P: Into<PathBuf>>(path: P) -> Self {
1440 Self {
1441 location: Some(GenesisLocation::File {
1442 genesis_file_location: path.into(),
1443 }),
1444 genesis: Default::default(),
1445 }
1446 }
1447
1448 pub fn new_empty() -> Self {
1449 Self {
1450 location: None,
1451 genesis: Default::default(),
1452 }
1453 }
1454
1455 pub fn genesis(&self) -> Result<&genesis::Genesis> {
1456 match &self.location {
1457 Some(GenesisLocation::InPlace { genesis }) => Ok(genesis),
1458 Some(GenesisLocation::File {
1459 genesis_file_location,
1460 }) => self
1461 .genesis
1462 .get_or_try_init(|| genesis::Genesis::load(genesis_file_location)),
1463 None => anyhow::bail!("no genesis location set"),
1464 }
1465 }
1466}
1467
1468#[derive(Debug, Clone, PartialEq, Deserialize, Serialize, Eq)]
1469#[serde(untagged)]
1470enum GenesisLocation {
1471 InPlace {
1472 genesis: Box<genesis::Genesis>,
1473 },
1474 File {
1475 #[serde(rename = "genesis-file-location")]
1476 genesis_file_location: PathBuf,
1477 },
1478}
1479
1480#[derive(Clone, Debug, Deserialize, Serialize)]
1483pub struct KeyPairWithPath {
1484 #[serde(flatten)]
1485 location: KeyPairLocation,
1486
1487 #[serde(skip)]
1488 keypair: OnceCell<Arc<SimpleKeypair>>,
1489
1490 #[serde(skip)]
1496 ed25519_keypair: OnceCell<Arc<Ed25519KeyPair>>,
1497}
1498
1499impl PartialEq for KeyPairWithPath {
1500 fn eq(&self, other: &Self) -> bool {
1501 self.location == other.location
1502 }
1503}
1504
1505impl Eq for KeyPairWithPath {}
1506
1507#[derive(Debug, Clone, Deserialize, Serialize)]
1508#[serde(untagged)]
1509enum KeyPairLocation {
1510 InPlace {
1511 #[serde(with = "bech32_formatted_keypair")]
1512 value: Arc<SimpleKeypair>,
1513 },
1514 File {
1515 path: PathBuf,
1516 },
1517}
1518
1519impl PartialEq for KeyPairLocation {
1520 fn eq(&self, other: &Self) -> bool {
1521 match (self, other) {
1522 (Self::InPlace { value: a }, Self::InPlace { value: b }) => {
1523 a.to_bytes() == b.to_bytes()
1524 }
1525 (Self::File { path: a }, Self::File { path: b }) => a == b,
1526 _ => false,
1527 }
1528 }
1529}
1530
1531impl Eq for KeyPairLocation {}
1532
1533impl KeyPairWithPath {
1534 pub fn new(kp: SimpleKeypair) -> Self {
1535 let cell: OnceCell<Arc<SimpleKeypair>> = OnceCell::new();
1536 let arc_kp = Arc::new(kp);
1537 cell.set(arc_kp.clone()).expect("failed to set keypair");
1540 Self {
1541 location: KeyPairLocation::InPlace { value: arc_kp },
1542 keypair: cell,
1543 ed25519_keypair: OnceCell::new(),
1544 }
1545 }
1546
1547 pub fn new_from_path(path: PathBuf) -> Self {
1548 let cell: OnceCell<Arc<SimpleKeypair>> = OnceCell::new();
1549 cell.set(Arc::new(read_keypair_from_file(&path).unwrap_or_else(
1552 |e| panic!("invalid keypair file at path {path:?}: {e}"),
1553 )))
1554 .expect("failed to set keypair");
1555 Self {
1556 location: KeyPairLocation::File { path },
1557 keypair: cell,
1558 ed25519_keypair: OnceCell::new(),
1559 }
1560 }
1561
1562 pub fn keypair(&self) -> &SimpleKeypair {
1563 self.keypair
1564 .get_or_init(|| match &self.location {
1565 KeyPairLocation::InPlace { value } => value.clone(),
1566 KeyPairLocation::File { path } => {
1567 Arc::new(
1570 read_keypair_from_file(path).unwrap_or_else(|e| {
1571 panic!("invalid keypair file at path {path:?}: {e}")
1572 }),
1573 )
1574 }
1575 })
1576 .as_ref()
1577 }
1578
1579 pub fn ed25519_keypair(&self) -> &Ed25519KeyPair {
1583 self.ed25519_keypair
1584 .get_or_init(|| {
1585 Arc::new(
1586 simple_to_network_keypair(self.keypair())
1587 .expect("only Ed25519 network keys are allowed"),
1588 )
1589 })
1590 .as_ref()
1591 }
1592}
1593
1594#[derive(Clone, Debug, PartialEq, Eq, Deserialize, Serialize)]
1597pub struct AuthorityKeyPairWithPath {
1598 #[serde(flatten)]
1599 location: AuthorityKeyPairLocation,
1600
1601 #[serde(skip)]
1602 keypair: OnceCell<Arc<AuthorityKeyPair>>,
1603}
1604
1605#[derive(Debug, Clone, PartialEq, Deserialize, Serialize, Eq)]
1606#[serde(untagged)]
1607enum AuthorityKeyPairLocation {
1608 InPlace { value: Arc<AuthorityKeyPair> },
1609 File { path: PathBuf },
1610}
1611
1612impl AuthorityKeyPairWithPath {
1613 pub fn new(kp: AuthorityKeyPair) -> Self {
1614 let cell: OnceCell<Arc<AuthorityKeyPair>> = OnceCell::new();
1615 let arc_kp = Arc::new(kp);
1616 cell.set(arc_kp.clone())
1619 .expect("failed to set authority keypair");
1620 Self {
1621 location: AuthorityKeyPairLocation::InPlace { value: arc_kp },
1622 keypair: cell,
1623 }
1624 }
1625
1626 pub fn new_from_path(path: PathBuf) -> Self {
1627 let cell: OnceCell<Arc<AuthorityKeyPair>> = OnceCell::new();
1628 cell.set(Arc::new(
1631 read_authority_keypair_from_file(&path)
1632 .unwrap_or_else(|_| panic!("invalid authority keypair file at path {path:?}")),
1633 ))
1634 .expect("failed to set authority keypair");
1635 Self {
1636 location: AuthorityKeyPairLocation::File { path },
1637 keypair: cell,
1638 }
1639 }
1640
1641 pub fn authority_keypair(&self) -> &AuthorityKeyPair {
1642 self.keypair
1643 .get_or_init(|| match &self.location {
1644 AuthorityKeyPairLocation::InPlace { value } => value.clone(),
1645 AuthorityKeyPairLocation::File { path } => {
1646 Arc::new(
1649 read_authority_keypair_from_file(path)
1650 .unwrap_or_else(|_| panic!("invalid authority keypair file {path:?}")),
1651 )
1652 }
1653 })
1654 .as_ref()
1655 }
1656}
1657
1658#[derive(Clone, Debug, Deserialize, Serialize, Default)]
1661#[serde(rename_all = "kebab-case")]
1662pub struct StateDebugDumpConfig {
1663 #[serde(skip_serializing_if = "Option::is_none")]
1664 pub dump_file_directory: Option<PathBuf>,
1665}
1666
1667#[cfg(test)]
1668mod tests {
1669 use std::path::PathBuf;
1670
1671 use fastcrypto::traits::KeyPair;
1672 use iota_keys::keypair_file::{write_authority_keypair_to_file, write_keypair_to_file};
1673 use iota_types::{
1674 crypto::{
1675 AuthorityKeyPair, NetworkKeyPair, get_key_pair_from_rng, network_to_simple_keypair,
1676 },
1677 traffic_control::{PolicyConfig, RemoteFirewallConfig},
1678 };
1679 use rand::{SeedableRng, rngs::StdRng};
1680 use serde::Serialize;
1681 use serde_yaml::Value;
1682
1683 use super::{
1684 Genesis, GrpcApiConfig, ObjectStoreConfig, default_grpc_api_config,
1685 default_periodic_compaction_threshold_days, default_traffic_controller_policy_config,
1686 };
1687 use crate::{NodeConfig, object_storage_config::ObjectStoreType};
1688
1689 const TEMPLATE: &str = include_str!("../data/fullnode-template.yaml");
1690
1691 const POLICY_CONFIG: &[&str] = &["policy-config"];
1692 const GRPC_API_CONFIG: &[&str] = &["grpc-api-config"];
1693 const COMPACTION_THRESHOLD: &[&str] = &[
1694 "authority-store-pruning-config",
1695 "periodic-compaction-threshold-days",
1696 ];
1697
1698 fn template_config() -> NodeConfig {
1699 serde_yaml::from_str(TEMPLATE).unwrap()
1700 }
1701
1702 fn consensus_config() -> super::ConsensusConfig {
1703 serde_yaml::from_str("db-path: /opt/iota/consensus-db").unwrap()
1704 }
1705
1706 fn object_store_config() -> ObjectStoreConfig {
1707 ObjectStoreConfig {
1708 object_store: Some(ObjectStoreType::File),
1709 directory: Some(PathBuf::from("/opt/iota/snapshots")),
1710 ..Default::default()
1711 }
1712 }
1713
1714 fn round_trip(config: &NodeConfig) -> NodeConfig {
1715 serde_yaml::from_str(&serde_yaml::to_string(config).unwrap()).unwrap()
1716 }
1717
1718 fn as_yaml<T: Serialize>(value: &T) -> String {
1719 serde_yaml::to_string(value).unwrap()
1720 }
1721
1722 fn written_at(value: &Value, path: &[&str]) -> Option<Value> {
1725 let (last, parents) = path.split_last().unwrap();
1726 let mut current = value;
1727 for name in parents {
1728 current = current
1729 .as_mapping()
1730 .unwrap()
1731 .get(&Value::String((*name).to_owned()))
1732 .unwrap();
1733 }
1734 current
1735 .as_mapping()
1736 .unwrap()
1737 .get(&Value::String((*last).to_owned()))
1738 .cloned()
1739 }
1740
1741 #[test]
1742 fn serialize_genesis_from_file() {
1743 let g = Genesis::new_from_file("path/to/file");
1744
1745 let s = serde_yaml::to_string(&g).unwrap();
1746 assert_eq!("---\ngenesis-file-location: path/to/file\n", s);
1747 let loaded_genesis: Genesis = serde_yaml::from_str(&s).unwrap();
1748 assert_eq!(g, loaded_genesis);
1749 }
1750
1751 #[test]
1752 fn fullnode_template() {
1753 const TEMPLATE: &str = include_str!("../data/fullnode-template.yaml");
1754
1755 let _template: NodeConfig = serde_yaml::from_str(TEMPLATE).unwrap();
1756 }
1757
1758 #[test]
1759 fn validate_requires_a_grpc_config_when_the_api_is_enabled() {
1760 let mut config = template_config();
1763 config.grpc_api_config = None;
1764 config.validate().unwrap();
1765
1766 config.enable_grpc_api = true;
1767 let err = config.validate().unwrap_err().to_string();
1768 assert!(err.contains("`grpc-api-config` is `null`"), "{err}");
1769
1770 config.grpc_api_config = Some(GrpcApiConfig::default());
1771 config.validate().unwrap();
1772
1773 config.grpc_api_config = None;
1776 config.consensus_config = Some(consensus_config());
1777 let err = config.validate().unwrap_err().to_string();
1778 assert!(err.contains("validators do not expose"), "{err}");
1779 }
1780
1781 #[test]
1782 fn validate_rejects_the_grpc_api_on_a_validator() {
1783 let mut config = template_config();
1784 config.consensus_config = Some(consensus_config());
1785 config.validate().unwrap();
1786
1787 config.enable_grpc_api = true;
1788 let err = config.validate().unwrap_err().to_string();
1789 assert!(err.contains("validators do not expose"), "{err}");
1790
1791 config.consensus_config = None;
1793 config.validate().unwrap();
1794 }
1795
1796 #[test]
1797 fn validate_rejects_snapshot_upload_on_a_validator() {
1798 let mut config = template_config();
1799 config.state_snapshot_write_config.object_store_config = Some(object_store_config());
1800 config.validate().unwrap();
1801
1802 config.consensus_config = Some(consensus_config());
1803 let err = config.validate().unwrap_err().to_string();
1804 assert!(err.contains("snapshot upload"), "{err}");
1805 }
1806
1807 #[test]
1808 fn validate_rejects_a_snapshot_store_without_a_backend() {
1809 let mut config = template_config();
1810 config.state_snapshot_write_config.object_store_config = Some(ObjectStoreConfig::default());
1811
1812 let err = config.validate().unwrap_err().to_string();
1813 assert!(err.contains("storage backend"), "{err}");
1814 }
1815
1816 #[test]
1817 fn validate_rejects_a_firewall_without_a_policy() {
1818 let mut config = template_config();
1819 config.firewall_config = Some(RemoteFirewallConfig {
1820 remote_fw_url: "http://localhost:65000".to_owned(),
1821 destination_port: 8080,
1822 delegate_spam_blocking: false,
1823 delegate_error_blocking: false,
1824 drain_path: PathBuf::from("/tmp/drain"),
1825 drain_timeout_secs: 300,
1826 });
1827
1828 config.validate().unwrap();
1831
1832 config.policy_config = None;
1835 let err = config.validate().unwrap_err().to_string();
1836 assert!(err.contains("`firewall-config` is set"), "{err}");
1837 }
1838
1839 #[test]
1840 fn enable_soft_locking_defaults_to_enabled() {
1841 const TEMPLATE: &str = include_str!("../data/fullnode-template.yaml");
1844
1845 let config: NodeConfig = serde_yaml::from_str(TEMPLATE).unwrap();
1846 assert!(config.enable_soft_locking);
1847 }
1848
1849 #[test]
1850 fn load_key_pairs_to_node_config() {
1851 let authority_key_pair: AuthorityKeyPair =
1852 get_key_pair_from_rng(&mut StdRng::from_seed([0; 32])).1;
1853 let protocol_key_pair: NetworkKeyPair =
1854 get_key_pair_from_rng(&mut StdRng::from_seed([0; 32])).1;
1855 let network_key_pair: NetworkKeyPair =
1856 get_key_pair_from_rng(&mut StdRng::from_seed([0; 32])).1;
1857
1858 write_authority_keypair_to_file(&authority_key_pair, PathBuf::from("authority.key"))
1859 .unwrap();
1860 write_keypair_to_file(
1861 &network_to_simple_keypair(&protocol_key_pair),
1862 PathBuf::from("protocol.key"),
1863 )
1864 .unwrap();
1865 write_keypair_to_file(
1866 &network_to_simple_keypair(&network_key_pair),
1867 PathBuf::from("network.key"),
1868 )
1869 .unwrap();
1870
1871 const TEMPLATE: &str = include_str!("../data/fullnode-template-with-path.yaml");
1872 let template: NodeConfig = serde_yaml::from_str(TEMPLATE).unwrap();
1873 assert_eq!(
1874 template.authority_key_pair().public(),
1875 authority_key_pair.public()
1876 );
1877 assert_eq!(
1878 template.network_key_pair().public(),
1879 network_key_pair.public()
1880 );
1881 assert_eq!(
1882 template.protocol_key_pair().public(),
1883 protocol_key_pair.public()
1884 );
1885 }
1886
1887 #[test]
1888 fn a_policy_config_survives_a_round_trip_in_all_three_states() {
1889 let mut config = template_config();
1890
1891 config.policy_config = None;
1892 assert!(round_trip(&config).policy_config.is_none());
1893
1894 config.policy_config = default_traffic_controller_policy_config();
1895 assert_eq!(
1896 as_yaml(&round_trip(&config).policy_config),
1897 as_yaml(&default_traffic_controller_policy_config())
1898 );
1899
1900 let configured = PolicyConfig {
1901 dry_run: !PolicyConfig::default_dos_protection_policy().dry_run,
1902 ..PolicyConfig::default_dos_protection_policy()
1903 };
1904 config.policy_config = Some(configured.clone());
1905 assert_eq!(
1906 as_yaml(&round_trip(&config).policy_config),
1907 as_yaml(&Some(configured))
1908 );
1909 }
1910
1911 #[test]
1912 fn a_grpc_api_config_survives_a_round_trip_in_all_three_states() {
1913 let mut config = template_config();
1914
1915 config.grpc_api_config = None;
1916 assert!(round_trip(&config).grpc_api_config.is_none());
1917
1918 config.grpc_api_config = default_grpc_api_config();
1919 assert_eq!(
1920 as_yaml(&round_trip(&config).grpc_api_config),
1921 as_yaml(&default_grpc_api_config())
1922 );
1923
1924 let configured = GrpcApiConfig {
1925 max_message_size_bytes: 1234,
1926 ..GrpcApiConfig::default()
1927 };
1928 config.grpc_api_config = Some(configured.clone());
1929 assert_eq!(
1930 as_yaml(&round_trip(&config).grpc_api_config),
1931 as_yaml(&Some(configured))
1932 );
1933 }
1934
1935 #[test]
1936 fn the_default_pruning_config_agrees_with_the_serde_default() {
1937 assert_eq!(
1938 super::AuthorityStorePruningConfig::default().periodic_compaction_threshold_days,
1939 default_periodic_compaction_threshold_days()
1940 );
1941 }
1942
1943 #[test]
1944 fn a_compaction_threshold_survives_a_round_trip_in_all_three_states() {
1945 let mut config = template_config();
1946
1947 for state in [None, default_periodic_compaction_threshold_days(), Some(7)] {
1948 config
1949 .authority_store_pruning_config
1950 .periodic_compaction_threshold_days = state;
1951 assert_eq!(
1952 round_trip(&config)
1953 .authority_store_pruning_config
1954 .periodic_compaction_threshold_days,
1955 state
1956 );
1957 }
1958 }
1959
1960 #[test]
1961 fn a_default_value_is_omitted_and_a_disabled_one_is_written_as_null() {
1962 let mut config = template_config();
1963 config.policy_config = default_traffic_controller_policy_config();
1964 config.grpc_api_config = default_grpc_api_config();
1965 config
1966 .authority_store_pruning_config
1967 .periodic_compaction_threshold_days = default_periodic_compaction_threshold_days();
1968
1969 let written = serde_yaml::to_value(&config).unwrap();
1970 assert_eq!(written_at(&written, POLICY_CONFIG), None);
1971 assert_eq!(written_at(&written, GRPC_API_CONFIG), None);
1972 assert_eq!(written_at(&written, COMPACTION_THRESHOLD), None);
1973
1974 config.policy_config = None;
1975 config.grpc_api_config = None;
1976 config
1977 .authority_store_pruning_config
1978 .periodic_compaction_threshold_days = None;
1979
1980 let written = serde_yaml::to_value(&config).unwrap();
1981 assert_eq!(written_at(&written, POLICY_CONFIG), Some(Value::Null));
1982 assert_eq!(written_at(&written, GRPC_API_CONFIG), Some(Value::Null));
1983 assert_eq!(
1984 written_at(&written, COMPACTION_THRESHOLD),
1985 Some(Value::Null)
1986 );
1987 }
1988}
1989
1990#[derive(Clone, Copy, PartialEq, Debug, Serialize, Deserialize)]
1994pub enum RunWithRange {
1995 Epoch(EpochId),
1996 Checkpoint(CheckpointSequenceNumber),
1997}
1998
1999impl RunWithRange {
2000 pub fn is_epoch_gt(&self, epoch_id: EpochId) -> bool {
2002 matches!(self, RunWithRange::Epoch(e) if epoch_id > *e)
2003 }
2004
2005 pub fn matches_checkpoint(&self, seq_num: CheckpointSequenceNumber) -> bool {
2006 matches!(self, RunWithRange::Checkpoint(seq) if *seq == seq_num)
2007 }
2008
2009 pub fn into_checkpoint_bound(self) -> Option<CheckpointSequenceNumber> {
2010 match self {
2011 RunWithRange::Epoch(_) => None,
2012 RunWithRange::Checkpoint(seq) => Some(seq),
2013 }
2014 }
2015}
2016
2017mod bech32_formatted_keypair {
2021 use std::ops::Deref;
2022
2023 use fastcrypto::encoding::{Base64, Encoding};
2024 use iota_sdk_crypto::{ToFromBech32, simple::SimpleKeypair};
2025 use serde::{Deserialize, Deserializer, Serializer};
2026
2027 pub fn serialize<S, T>(kp: &T, serializer: S) -> Result<S::Ok, S::Error>
2028 where
2029 S: Serializer,
2030 T: Deref<Target = SimpleKeypair>,
2031 {
2032 use serde::ser::Error;
2033
2034 let s = kp.to_bech32().map_err(Error::custom)?;
2036
2037 serializer.serialize_str(&s)
2038 }
2039
2040 pub fn deserialize<'de, D, T>(deserializer: D) -> Result<T, D::Error>
2041 where
2042 D: Deserializer<'de>,
2043 T: From<SimpleKeypair>,
2044 {
2045 use serde::de::Error;
2046
2047 let s = String::deserialize(deserializer)?;
2048
2049 SimpleKeypair::from_bech32(&s)
2051 .map_err(Error::custom)
2052 .or_else(|_: D::Error| {
2053 let bytes = Base64::decode(&s).map_err(Error::custom)?;
2055 SimpleKeypair::from_bytes(&bytes).map_err(Error::custom)
2056 })
2057 .map(Into::into)
2058 }
2059}