Skip to main content

iota_config/
node.rs

1// Copyright (c) Mysten Labs, Inc.
2// Modifications Copyright (c) 2024 IOTA Stiftung
3// SPDX-License-Identifier: Apache-2.0
4
5use 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
43/// Default gas price of 1000 Nanos
44pub const DEFAULT_VALIDATOR_GAS_PRICE: u64 = iota_types::transaction::DEFAULT_VALIDATOR_GAS_PRICE;
45
46/// Default commission rate of 2%
47pub const DEFAULT_COMMISSION_RATE: u64 = 200;
48
49/// Default budget in MiB for the in-memory full-checkpoint-contents cache.
50pub 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    /// The public key bytes corresponding to the private key that the validator
56    /// holds to sign transactions.
57    #[serde(default = "default_authority_key_pair")]
58    pub authority_key_pair: AuthorityKeyPairWithPath,
59    /// The public key bytes corresponding to the private key that the validator
60    /// holds to sign consensus blocks.
61    #[serde(default = "default_key_pair")]
62    pub protocol_key_pair: KeyPairWithPath,
63    #[serde(default = "default_key_pair")]
64    pub account_key_pair: KeyPairWithPath,
65    /// The public key bytes corresponding to the private key that the validator
66    /// uses to establish TLS connections.
67    #[serde(default = "default_key_pair")]
68    pub network_key_pair: KeyPairWithPath,
69    pub db_path: PathBuf,
70
71    /// The network address for gRPC communication.
72    ///
73    /// Can be overwritten with args `listen-address` parameters.
74    #[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    /// The address for Prometheus metrics.
80    #[serde(default = "default_metrics_address")]
81    pub metrics_address: SocketAddr,
82
83    /// The address for the admin interface that is
84    /// run in the metrics separate runtime and provides access to
85    /// admin node commands such as logging and tracing options.
86    #[serde(default = "default_admin_interface_address")]
87    pub admin_interface_address: SocketAddr,
88
89    /// Configuration struct for the consensus.
90    #[serde(skip_serializing_if = "Option::is_none")]
91    pub consensus_config: Option<ConsensusConfig>,
92
93    /// Flag to enable index processing for a full node.
94    ///
95    /// If set to true, node creates `IndexStore` for transaction
96    /// data including ownership and balance information.
97    #[serde(default = "default_enable_index_processing")]
98    pub enable_index_processing: bool,
99
100    // only allow websocket connections for jsonrpc traffic
101    #[serde(default)]
102    /// Determines the jsonrpc server type as either:
103    /// - 'websocket' for a websocket based service (deprecated)
104    /// - 'http' for an http based service
105    /// - 'both' for both a websocket and http based service (deprecated)
106    pub jsonrpc_server_type: Option<ServerType>,
107
108    /// Flag to enable gRPC load shedding: requests over a service's
109    /// concurrency limit are rejected immediately with `RESOURCE_EXHAUSTED`
110    /// instead of waiting for a slot.
111    #[serde(default)]
112    pub grpc_load_shed: Option<bool>,
113
114    /// Maximum number of concurrent in-flight requests per CPU core, applied
115    /// to each service of the validator gRPC server separately (`Validator`,
116    /// `ValidatorV2`, `ValidatorPeer`), so a flood of client transaction
117    /// submissions cannot crowd validator-peer RPCs out of admission slots.
118    /// The effective per-service limit is this value multiplied by the CPU
119    /// cores of the machine at server startup, so the same config file scales
120    /// with the hardware.
121    ///
122    /// Most request time is spent awaiting locks, I/O or consensus rather
123    /// than on-CPU, so the default ceiling is generous: it bounds total
124    /// in-flight work so a request flood cannot grow queues and memory
125    /// without limit, it does not throttle normal load. Operators wanting
126    /// hard load-shedding can lower it and set `grpc_load_shed`.
127    ///
128    /// A value of zero is rejected at config load: it would not disable the
129    /// limit, it would block every request.
130    #[serde(default = "default_grpc_concurrency_limit_per_core")]
131    pub grpc_concurrency_limit_per_core: NonZeroUsize,
132
133    /// Configuration struct for P2P.
134    #[serde(default)]
135    pub p2p_config: P2pConfig,
136
137    /// Contains genesis location that might be `InPlace`
138    /// for reading all genesis data to memory or `InFile`,
139    /// and `OnceCell` pointer to a genesis struct.
140    pub genesis: Genesis,
141
142    /// Contains the path where to find the migration blob.
143    pub migration_tx_data_path: Option<PathBuf>,
144
145    /// Configuration for pruning of the authority store, to define when
146    /// an old data is removed from the storage space.
147    #[serde(default = "default_authority_store_pruning_config")]
148    pub authority_store_pruning_config: AuthorityStorePruningConfig,
149
150    /// Size of the broadcast channel used for notifying other systems of end of
151    /// epoch.
152    ///
153    /// If unspecified, this will default to `128`.
154    #[serde(default = "default_end_of_epoch_broadcast_channel_capacity")]
155    pub end_of_epoch_broadcast_channel_capacity: usize,
156
157    /// Configuration for the checkpoint executor for limiting
158    /// the number of checkpoints to execute concurrently,
159    /// and to allow for checkpoint post-processing.
160    #[serde(default)]
161    pub checkpoint_executor_config: CheckpointExecutorConfig,
162
163    #[serde(skip_serializing_if = "Option::is_none")]
164    pub metrics: Option<MetricsConfig>,
165
166    /// In a `iota-node` binary, this is set to
167    /// SupportedProtocolVersions::SYSTEM_DEFAULT in iota-node/src/main.rs.
168    /// It is present in the config so that it can be changed by tests in
169    /// order to test protocol upgrades.
170    #[serde(skip)]
171    pub supported_protocol_versions: Option<SupportedProtocolVersions>,
172
173    /// Configuration for enabling/disabling expensive safety checks.
174    #[serde(default)]
175    pub expensive_safety_check_config: ExpensiveSafetyCheckConfig,
176
177    /// Configuration to specify rules for denying transactions
178    /// based on `objectsIDs`, `addresses`, or enable/disable many
179    /// features such as publishing new packages or using shared objects.
180    #[serde(default)]
181    pub transaction_deny_config: TransactionDenyConfig,
182
183    /// Config used to deny execution for certificate digests
184    /// know for crashing or hanging validator nodes.
185    ///
186    /// Should be used for a fast temporary fixes and
187    /// removed once the issue is fixed.
188    #[serde(default)]
189    pub certificate_deny_config: CertificateDenyConfig,
190
191    /// Used to determine how state debug information is dumped
192    /// when a node forks.
193    #[serde(default)]
194    pub state_debug_dump_config: StateDebugDumpConfig,
195
196    #[serde(default)]
197    pub checkpoint_archive_config: Option<CheckpointArchiveConfig>,
198
199    /// Determines if snapshot should be uploaded to the remote storage.
200    #[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    // TODO: write config seem to be unused.
210    #[serde(skip_serializing_if = "Option::is_none")]
211    pub transaction_kv_store_write_config: Option<TransactionKeyValueStoreWriteConfig>,
212
213    /// Configuration for defining thresholds and settings
214    /// for managing system overload conditions in a node.
215    #[serde(default = "default_authority_overload_config")]
216    pub authority_overload_config: AuthorityOverloadConfig,
217
218    /// Specifies the ending epoch for a node for debugging purposes.
219    ///
220    ///  Ignored if set by config, can be configured only by cli arguments.
221    #[serde(skip_serializing_if = "Option::is_none")]
222    pub run_with_range: Option<RunWithRange>,
223
224    /// Traffic control policy. For killswitch use None.
225    ///
226    /// With the key absent the default denial-of-service protection policy
227    /// applies, an explicit `null` turns traffic control off, and a value
228    /// configures it. A node that turns it off must also drop
229    /// `firewall_config`. `validate` rejects a firewall without a policy.
230    #[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    /// Memory budget in MiB for the in-memory cache of full checkpoint
243    /// contents, which serves the checkpoint executor's bulk transaction
244    /// loads and checkpoint-contents requests from state-sync peers. When
245    /// the budget is exceeded, the oldest checkpoints are evicted first.
246    /// Set to 0 to disable the cache; consumers then fall back to
247    /// reconstructing contents from the transaction and effects stores.
248    ///
249    /// The budget is accounted in serialized (BCS) bytes; the resident
250    /// memory of a full cache is somewhat higher than the configured value
251    /// due to in-memory representation overhead.
252    #[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    /// Enables the pre-consensus soft-locking mechanism used by the
259    /// certificate-less (pcool) transaction flow (default: enabled).
260    ///
261    /// When disabled, post-consensus validation alone resolves owned-object
262    /// conflicts. Has no effect unless the pcool flow is enabled.
263    #[serde(default = "bool_true")]
264    pub enable_soft_locking: bool,
265
266    #[serde(default)]
267    pub verifier_signing_config: VerifierSigningConfig,
268
269    /// If a value is set, it determines if writes to DB can stall, which can
270    /// halt the whole process. By default, write stall is enabled on
271    /// validators but not on fullnodes.
272    #[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    /// Flag to enable the gRPC API.
279    #[serde(default)]
280    pub enable_grpc_api: bool,
281    /// Configuration of the gRPC API, read when `enable_grpc_api` is set.
282    ///
283    /// With the key absent the default configuration applies, an explicit
284    /// `null` leaves the API unconfigured — a node with `enable-grpc-api` set
285    /// then fails to start — and a value configures it.
286    #[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    /// Allow overriding the chain for testing purposes. For instance, it allows
293    /// you to create a test network that believes it is mainnet or testnet.
294    /// Attempting to override this value on production networks will result
295    /// in an error.
296    #[serde(skip_serializing_if = "Option::is_none")]
297    pub chain_override_for_testing: Option<Chain>,
298
299    /// Configuration for the validator client monitor that tracks
300    /// client-observed performance metrics for validators.
301    #[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    /// File path to a PEM formatted TLS certificate chain
310    cert: String,
311    /// File path to a PEM formatted TLS private key
312    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/// Configuration for the gRPC API service
326#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
327#[serde(rename_all = "kebab-case")]
328pub struct GrpcApiConfig {
329    /// The address to bind the gRPC server to
330    #[serde(default = "default_grpc_api_address")]
331    pub address: SocketAddr,
332
333    /// TLS configuration for the gRPC server.
334    ///
335    /// If not provided, the gRPC server will use plain TCP without TLS.
336    #[serde(skip_serializing_if = "Option::is_none")]
337    pub tls: Option<TlsConfig>,
338
339    /// Maximum message size for gRPC responses (in bytes)
340    #[serde(default = "default_grpc_api_max_message_size_bytes")]
341    pub max_message_size_bytes: u32,
342
343    /// Buffer size for broadcast channels used for streaming
344    #[serde(default = "default_grpc_api_broadcast_buffer_size")]
345    pub broadcast_buffer_size: u32,
346
347    /// Maximum number of concurrent subscribers to checkpoint streaming RPCs.
348    /// Once the cap is reached, additional subscribe requests are rejected
349    /// with `Unavailable` to protect the server from being overwhelmed by
350    /// unbounded streaming clients. Values below 1 are clamped to 1 at
351    /// server startup.
352    #[serde(default = "default_grpc_api_max_concurrent_stream_subscribers")]
353    pub max_concurrent_stream_subscribers: u32,
354
355    /// Maximum size for Move values when rendering to JSON
356    /// in bytes.
357    #[serde(default = "default_grpc_api_max_json_move_value_size")]
358    pub max_json_move_value_size: usize,
359
360    /// Maximum number of transactions allowed in a single ExecuteTransactions
361    /// batch request.
362    #[serde(default = "default_grpc_api_max_execute_transaction_batch_size")]
363    pub max_execute_transaction_batch_size: u32,
364
365    /// Maximum number of transactions allowed in a single SimulateTransactions
366    /// batch request.
367    #[serde(default = "default_grpc_api_max_simulate_transaction_batch_size")]
368    pub max_simulate_transaction_batch_size: u32,
369
370    /// Maximum number of objects allowed in a single GetObjects batch request.
371    #[serde(default = "default_grpc_api_max_get_objects_batch_size")]
372    pub max_get_objects_batch_size: u32,
373
374    /// Maximum number of transactions allowed in a single GetTransactions batch
375    /// request.
376    #[serde(default = "default_grpc_api_max_get_transactions_batch_size")]
377    pub max_get_transactions_batch_size: u32,
378
379    /// Maximum number of view function calls allowed in a single
380    /// ViewFunctionCalls batch request.
381    #[serde(default = "default_grpc_api_max_view_function_call_batch_size")]
382    pub max_view_function_call_batch_size: u32,
383
384    /// Maximum allowed timeout in milliseconds for waiting for checkpoint
385    /// inclusion in ExecuteTransactions requests. Client-specified timeouts
386    /// are clamped to this value.
387    #[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 // 128MB
405}
406
407fn default_grpc_api_max_json_move_value_size() -> usize {
408    1024 * 1024 // 1 MB
409}
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 // 60 seconds
433}
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    // The default maximum uncompressed size in bytes for a message, based on
459    // tonic's default.
460    const GRPC_TONIC_DEFAULT_MAX_RECV_MESSAGE_SIZE: u32 = 4 * 1024 * 1024; // 4MB
461    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        // Ensure max message size is at least the minimum allowed
470        self.max_message_size_bytes
471            .max(Self::GRPC_MIN_CLIENT_MAX_MESSAGE_SIZE_BYTES)
472    }
473
474    /// Calculate the maximum size for a message that can be
475    /// sent to a client, taking into account the client's max message size
476    /// preference.
477    pub fn max_message_size_client_bytes(&self, client_max_message_size_bytes: Option<u32>) -> u32 {
478        client_max_message_size_bytes
479            // if the client did not specify a max message size, use the tonic default receive
480            // message size
481            .unwrap_or(Self::GRPC_TONIC_DEFAULT_MAX_RECV_MESSAGE_SIZE)
482            // clamp the value between the tonic default and the service max message size
483            .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    /// Maximum number of entries in each cache. (There are several
501    /// different caches).
502    #[serde(default, skip_serializing_if = "Option::is_none")]
503    pub max_cache_size: Option<u64>, // defaults to 100000
504
505    #[serde(default, skip_serializing_if = "Option::is_none")]
506    pub package_cache_size: Option<u64>, // defaults to 1000
507
508    #[serde(default, skip_serializing_if = "Option::is_none")]
509    pub object_cache_size: Option<u64>, // defaults to max_cache_size
510    #[serde(default, skip_serializing_if = "Option::is_none")]
511    pub marker_cache_size: Option<u64>, // defaults to object_cache_size
512    #[serde(default, skip_serializing_if = "Option::is_none")]
513    pub object_by_id_cache_size: Option<u64>, // defaults to object_cache_size
514
515    #[serde(default, skip_serializing_if = "Option::is_none")]
516    pub transaction_cache_size: Option<u64>, // defaults to max_cache_size
517    #[serde(default, skip_serializing_if = "Option::is_none")]
518    pub executed_effect_cache_size: Option<u64>, // defaults to transaction_cache_size
519    #[serde(default, skip_serializing_if = "Option::is_none")]
520    pub effect_cache_size: Option<u64>, // defaults to executed_effect_cache_size
521
522    #[serde(default, skip_serializing_if = "Option::is_none")]
523    pub events_cache_size: Option<u64>, // defaults to transaction_cache_size
524
525    #[serde(default, skip_serializing_if = "Option::is_none")]
526    pub transaction_objects_cache_size: Option<u64>, // defaults to 1000
527
528    /// Number of uncommitted transactions at which to pause consensus
529    /// handler.
530    #[serde(default, skip_serializing_if = "Option::is_none")]
531    pub backpressure_threshold: Option<u64>, // defaults to 100_000
532
533    /// Number of uncommitted transactions at which to refuse new
534    /// transaction submissions. Defaults to backpressure_threshold
535    /// if unset.
536    #[serde(default, skip_serializing_if = "Option::is_none")]
537    pub backpressure_threshold_for_rpc: Option<u64>, // defaults to backpressure_threshold
538
539    /// Percentage of `backpressure_threshold` at which graduated load shedding
540    /// based on writeback-cache pending transaction count begins. The
541    /// locally-calculated shedding percentage increases linearly from 0% at
542    /// `backpressure_threshold * backpressure_soft_limit_pct / 100` up to
543    /// 100% at the `backpressure_threshold` if the cache size continues to
544    /// increase. The calculated shedding percentage is broadcast to other
545    /// validators for a coordinated response. Defaults to 50.
546    #[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
735/// Returns whether `value` and `default` serialize to the same YAML.
736///
737/// Meant for `skip_serializing_if` predicates, which cannot report an error: a
738/// value that fails to serialize is reported as unlike the default, so the
739/// field is kept and the failure surfaces when serializing the field itself.
740fn 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        // Load from file
812        let migration_tx_data = MigrationTxData::load(location)?;
813
814        // Validate migration content in order to avoid corrupted or malicious data
815        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    /// A config selects the validator role exactly when it has a consensus
835    /// config.
836    pub fn is_validator(&self) -> bool {
837        self.consensus_config.is_some()
838    }
839
840    /// Validate the node config. The checks reject a config a node could
841    /// not start with. They also reject the known cases where a node would
842    /// start and ignore part of the config.
843    pub fn validate(&self) -> Result<()> {
844        // The settings a validator must not carry: it never starts the gRPC
845        // server, and snapshot publication is a fullnode role.
846        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        // In a file, an absent key deserializes to the default config, and a
866        // config built in code carries it too. `None` here therefore means an
867        // explicit `null`.
868        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        // The uploader builds the store at startup, which needs a backend.
875        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        // The firewall is driven by the traffic controller, which only runs
887        // when a policy is set. In a file, an absent `policy-config`
888        // deserializes to the default policy. `None` here therefore means an
889        // explicit `null`, or a config built in code.
890        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    /// Base consensus DB path for all epochs.
905    pub db_path: PathBuf,
906
907    /// The number of epochs for which to retain the consensus DBs.
908    /// Setting it to 0 will make a consensus DB getting dropped
909    /// as soon as system is switched to a new epoch.
910    pub db_retention_epochs: Option<u64>,
911
912    /// Pruner will run on every epoch change but it will also check
913    /// periodically on every `db_pruner_period_secs` seconds to see
914    /// if there are any epoch DBs to remove.
915    pub db_pruner_period_secs: Option<u64>,
916
917    /// Hard limit on the number of pending transactions to submit to
918    /// consensus, including those in submission wait. Used as the upper
919    /// bound for graduated pre-consensus load shedding
920    /// (`graduated_load_shedding_soft_limit_pct`) in the certificate-less
921    /// (P-COOL) mode, and as the threshold for the binary
922    /// cutoff in `ConsensusAdapter::check_consensus_overload()` in both
923    /// certificate-less and certificate-based flows.
924    ///
925    /// Default to 20_000 inflight limit, assuming 20_000 txn tps * 1 sec
926    /// consensus latency.
927    pub max_pending_transactions: Option<usize>,
928
929    /// When defined caps the calculated submission position to the
930    /// max_submit_position.
931    ///
932    /// Even if the is elected to submit from a higher
933    /// position than this, it will "reset" to the max_submit_position.
934    pub max_submit_position: Option<usize>,
935
936    /// The submit delay step to consensus defined in milliseconds.
937    ///
938    /// When provided it will override the current back off logic otherwise the
939    /// default backoff logic will be applied based on consensus latency
940    /// estimates.
941    pub submit_delay_step_override_millis: Option<u64>,
942
943    /// Parameters for Starfish consensus
944    #[serde(skip_serializing_if = "Option::is_none", alias = "starfish_parameters")]
945    pub parameters: Option<StarfishParameters>,
946
947    /// Percentage of `max_pending_transactions` (hard limit) defining the soft
948    /// limit at which graduated pre-consensus load shedding begins. When
949    /// in-flight transactions are at or below the soft limit, no shedding
950    /// occurs; above it, the shedding rate scales linearly from 0% to 100% at
951    /// `max_pending_transactions`. Used in the certificate-less (P-COOL) mode.
952    #[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    /// Returns the hard limit on the number of pending transactions to submit
962    /// to consensus, including those in submission wait. Defaults to 20_000
963    /// inflight limit, assuming 20_000 txn tps * 1 sec consensus latency.
964    pub fn max_pending_transactions(&self) -> usize {
965        self.max_pending_transactions.unwrap_or(20_000)
966    }
967
968    /// Returns the percentage of `max_pending_transactions` (hard limit)
969    /// defining the soft limit at which graduated pre-consensus load
970    /// shedding begins. Defaults to 50%. Used in the certificate-less
971    /// (P-COOL) mode.
972    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        // Default to 1 hour
989        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    /// Upper bound on the number of checkpoints that can be concurrently
999    /// executed.
1000    ///
1001    /// If unspecified, this will default to `200`
1002    #[serde(default = "default_checkpoint_execution_max_concurrency")]
1003    pub checkpoint_execution_max_concurrency: usize,
1004
1005    /// Number of seconds to wait for effects of a batch of transactions
1006    /// before logging a warning. Note that we will continue to retry
1007    /// indefinitely.
1008    ///
1009    /// If unspecified, this will default to `10`.
1010    #[serde(default = "default_local_execution_timeout_sec")]
1011    pub local_execution_timeout_sec: u64,
1012
1013    /// Optional directory used for data ingestion pipeline.
1014    ///
1015    /// When specified, each executed checkpoint will be saved in a local
1016    /// directory for post-processing
1017    #[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    /// If enabled, at epoch boundary, we will check that the storage
1025    /// fund balance is always identical to the sum of the storage
1026    /// rebate of all live objects, and that the total IOTA in the network
1027    /// remains the same.
1028    #[serde(default)]
1029    enable_epoch_iota_conservation_check: bool,
1030
1031    /// If enabled, we will check that the total IOTA in all input objects of a
1032    /// tx (both the Move part and the storage rebate) matches the total IOTA
1033    /// in all output objects of the tx + gas fees.
1034    #[serde(default)]
1035    enable_deep_per_tx_iota_conservation_check: bool,
1036
1037    /// Disable epoch IOTA conservation check even when we are running in debug
1038    /// mode.
1039    #[serde(default)]
1040    force_disable_epoch_iota_conservation_check: bool,
1041
1042    /// If enabled, at epoch boundary, we will check that the accumulated
1043    /// live object state matches the end of epoch root state digest.
1044    #[serde(default)]
1045    enable_state_consistency_check: bool,
1046
1047    /// Disable state consistency check even when we are running in debug mode.
1048    #[serde(default)]
1049    force_disable_state_consistency_check: bool,
1050
1051    #[serde(default)]
1052    enable_secondary_index_checks: bool,
1053    // TODO: Add more expensive checks here
1054}
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, // Disable by default for now
1065        }
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    /// number of the latest epoch dbs to retain
1128    #[serde(default = "default_num_latest_epoch_dbs_to_retain")]
1129    pub num_latest_epoch_dbs_to_retain: usize,
1130    /// number of epochs to keep the latest version of objects for.
1131    /// Note that a zero value corresponds to an aggressive pruner.
1132    /// This mode is experimental and needs to be used with caution.
1133    /// Use `u64::MAX` to disable the pruner for the objects.
1134    #[serde(default)]
1135    pub num_epochs_to_retain: u64,
1136    /// enables periodic background compaction for old SST files whose last
1137    /// modified time is older than `periodic_compaction_threshold_days`
1138    /// days. That ensures that all sst files eventually go through the
1139    /// compaction process
1140    ///
1141    /// With the key absent files older than a day are compacted, an explicit
1142    /// `null` turns periodic compaction off, and a value sets the threshold in
1143    /// days.
1144    #[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    /// number of epochs to keep the latest version of transactions and effects
1150    /// for
1151    #[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            // if n less than 2, coerce to 2 and log
1193            .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/// Configuration for backfilling checkpoint contents from the
1224/// checkpoint archive when peers no longer serve the required range.
1225#[derive(Debug, Clone, Deserialize, Serialize)]
1226#[serde(rename_all = "kebab-case")]
1227pub struct CheckpointArchiveConfig {
1228    /// URL of the checkpoint archive to backfill from.
1229    pub url: String,
1230    /// Non-zero number of checkpoints to download in parallel.
1231    #[serde(default = "default_checkpoint_archive_download_concurrency")]
1232    pub download_concurrency: NonZeroUsize,
1233    /// Non-zero number of downloaded checkpoints to verify in parallel.
1234    /// Defaults to the number of CPU cores.
1235    #[serde(default = "default_checkpoint_archive_verify_concurrency")]
1236    pub verify_concurrency: NonZeroUsize,
1237}
1238
1239/// Configuration for the per-epoch state-snapshot publisher.
1240///
1241/// **Operator note (V2 snapshot publishing).** A node configured to publish
1242/// V2 snapshots must have a perpetual store containing no pre-V2
1243/// (`StoreObjectV1`) rows. This means a snapshot-publishing node must have
1244/// either synced from genesis under V2 or been restored from a V2 snapshot.
1245/// There is no on-disk backfill: a fresh sync is the only supported path.
1246#[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/// Configuration for the threshold(s) at which we consider the system
1266/// to be overloaded. When one of the threshold is passed, the node may
1267/// stop processing new transactions and/or certificates until the congestion
1268/// resolves.
1269#[derive(Clone, Debug, Deserialize, Serialize)]
1270#[serde(rename_all = "kebab-case")]
1271pub struct AuthorityOverloadConfig {
1272    /// Maximum time a transaction can wait in the transaction manager execution
1273    /// queue before it triggers an overload detection on the object it depends
1274    /// on.
1275    #[serde(default = "default_max_txn_age_in_queue")]
1276    pub max_txn_age_in_queue: Duration,
1277
1278    /// The interval of checking overload signal.
1279    #[serde(default = "default_overload_monitor_interval")]
1280    pub overload_monitor_interval: Duration,
1281
1282    /// The execution queueing latency when entering load shedding mode.
1283    #[serde(default = "default_execution_queue_latency_soft_limit")]
1284    pub execution_queue_latency_soft_limit: Duration,
1285
1286    /// The execution queueing latency when entering aggressive load shedding
1287    /// mode.
1288    #[serde(default = "default_execution_queue_latency_hard_limit")]
1289    pub execution_queue_latency_hard_limit: Duration,
1290
1291    /// The maximum percentage of transactions to shed in load shedding mode.
1292    #[serde(default = "default_max_load_shedding_percentage")]
1293    pub max_load_shedding_percentage: u32,
1294
1295    /// When in aggressive load shedding mode, the minimum percentage of
1296    /// transactions to shed.
1297    #[serde(default = "default_min_load_shedding_percentage_above_hard_limit")]
1298    pub min_load_shedding_percentage_above_hard_limit: u32,
1299
1300    /// If transaction ready rate is below this rate, we consider the validator
1301    /// is well under used, and will not enter load shedding mode.
1302    #[serde(default = "default_safe_transaction_ready_rate")]
1303    pub safe_transaction_ready_rate: u32,
1304
1305    /// When set to true, transaction signing may be rejected when the validator
1306    /// is overloaded.
1307    #[serde(default = "default_check_system_overload_at_signing")]
1308    pub check_system_overload_at_signing: bool,
1309
1310    /// When set to true, transaction execution may be rejected when the
1311    /// validator is overloaded.
1312    #[serde(default, skip_serializing_if = "std::ops::Not::not")]
1313    pub check_system_overload_at_execution: bool,
1314
1315    /// Reject a transaction if transaction manager queue length is above this
1316    /// threshold. 100_000 = 10k TPS * 5s resident time in transaction
1317    /// manager (pending + executing) * 2.
1318    #[serde(default = "default_max_transaction_manager_queue_length")]
1319    pub max_transaction_manager_queue_length: usize,
1320
1321    /// Reject a transaction if the number of pending transactions depending on
1322    /// the object is above the threshold.
1323    #[serde(default = "default_max_transaction_manager_per_object_queue_length")]
1324    pub max_transaction_manager_per_object_queue_length: usize,
1325
1326    /// Percentage of `max_transaction_manager_queue_length` at which graduated
1327    /// load shedding begins in the certificate-less (P-COOL) mode. Read
1328    /// via the same-named accessor, which clamps the value to <=100.
1329    #[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    /// Returns the soft-limit percentage, clamped to <=100 to guard against
1335    /// out-of-range operator-supplied values.
1336    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/// Wrapper struct for SimpleKeypair that can be deserialized from a file path.
1481/// Used by network, worker, and account keypair.
1482#[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    // The consensus/network stacks borrow their key as `&Ed25519KeyPair`
1491    // (fastcrypto), while the key itself is stored as an SDK `SimpleKeypair`
1492    // above. Converting on each access would return an owned value, which
1493    // can't back the `&`-returning accessors, so the converted key is cached
1494    // here. Never populated for account keys.
1495    #[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        // OK to unwrap panic because authority should not start without all keypairs
1538        // loaded.
1539        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        // OK to unwrap panic because authority should not start without all keypairs
1550        // loaded.
1551        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                    // OK to unwrap panic because authority should not start without all keypairs
1568                    // loaded.
1569                    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    /// The keypair as a fastcrypto ed25519 keypair, for the network stacks
1580    /// that consume that type directly. Panics if the stored keypair is not
1581    /// ed25519.
1582    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/// Wrapper struct for AuthorityKeyPair that can be deserialized from a file
1595/// path.
1596#[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        // OK to unwrap panic because authority should not start without all keypairs
1617        // loaded.
1618        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        // OK to unwrap panic because authority should not start without all keypairs
1629        // loaded.
1630        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                    // OK to unwrap panic because authority should not start without all keypairs
1647                    // loaded.
1648                    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/// Configurations which determine how we dump state debug info.
1659/// Debug info is dumped when a node forks.
1660#[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    /// Reads `path` out of a serialized value, returning `None` when the last
1723    /// key is absent.
1724    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        // An absent key gives the default config, so only an explicit `null`
1761        // reaches this rule.
1762        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        // Validators do not expose the gRPC API, so the config check does
1774        // not apply to them and the API itself is rejected instead.
1775        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        // The same config is valid for a fullnode.
1792        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        // The template leaves `policy-config` unmentioned, so the default
1829        // policy applies and drives the firewall.
1830        config.validate().unwrap();
1831
1832        // `policy-config: null` turns traffic control off, which leaves
1833        // nothing to drive the firewall.
1834        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        // The template omits `enable-soft-locking`, so this exercises the serde
1842        // default and pins the documented "default: enabled" contract.
1843        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// RunWithRange is used to specify the ending epoch/checkpoint to process.
1991// this is intended for use with disaster recovery debugging and verification
1992// workflows, never in normal operations
1993#[derive(Clone, Copy, PartialEq, Debug, Serialize, Deserialize)]
1994pub enum RunWithRange {
1995    Epoch(EpochId),
1996    Checkpoint(CheckpointSequenceNumber),
1997}
1998
1999impl RunWithRange {
2000    // is epoch_id > RunWithRange::Epoch
2001    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
2017/// A serde helper module used with #[serde(with = "...")] to change the
2018/// de/serialization format of an `SimpleKeypair` to Bech32 when written to or
2019/// read from a node config.
2020mod 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        // Serialize the keypair to a Bech32 string
2035        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        // Try to deserialize the keypair from a Bech32 formatted string
2050        SimpleKeypair::from_bech32(&s)
2051            .map_err(Error::custom)
2052            .or_else(|_: D::Error| {
2053                // For backwards compatibility try Base64 if Bech32 failed
2054                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}