mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-07 08:52:54 +00:00
Add test flag to override SYNC_TOLERANCE_EPOCHS for range sync testing (#7030)
Related to #6880, an issue that's usually observed on local devnets with small number of nodes. When testing range sync, I usually shutdown a node for some period of time and restart it again. However, if it's within `SYNC_TOLERANCE_EPOCHS` (8), Lighthouse would consider the node as synced, and if it may attempt to produce a block if requested by a validator - on a local devnet, nodes frequently produce blocks - when this happens, the node ends up producing a block that would revert finality and would get disconnected from peers immediately. ### Usage Run Lighthouse BN with this flag to override: ``` --sync-tolerance--epoch 0 ```
This commit is contained in:
@@ -112,7 +112,7 @@ const API_PREFIX: &str = "eth";
|
|||||||
///
|
///
|
||||||
/// This helps prevent attacks where nodes can convince us that we're syncing some non-existent
|
/// This helps prevent attacks where nodes can convince us that we're syncing some non-existent
|
||||||
/// finalized head.
|
/// finalized head.
|
||||||
const SYNC_TOLERANCE_EPOCHS: u64 = 8;
|
const DEFAULT_SYNC_TOLERANCE_EPOCHS: u64 = 8;
|
||||||
|
|
||||||
/// A custom type which allows for both unsecured and TLS-enabled HTTP servers.
|
/// A custom type which allows for both unsecured and TLS-enabled HTTP servers.
|
||||||
type HttpServer = (SocketAddr, Pin<Box<dyn Future<Output = ()> + Send>>);
|
type HttpServer = (SocketAddr, Pin<Box<dyn Future<Output = ()> + Send>>);
|
||||||
@@ -156,6 +156,7 @@ pub struct Config {
|
|||||||
#[serde(with = "eth2::types::serde_status_code")]
|
#[serde(with = "eth2::types::serde_status_code")]
|
||||||
pub duplicate_block_status_code: StatusCode,
|
pub duplicate_block_status_code: StatusCode,
|
||||||
pub target_peers: usize,
|
pub target_peers: usize,
|
||||||
|
pub sync_tolerance_epochs: Option<u64>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for Config {
|
impl Default for Config {
|
||||||
@@ -171,6 +172,7 @@ impl Default for Config {
|
|||||||
enable_beacon_processor: true,
|
enable_beacon_processor: true,
|
||||||
duplicate_block_status_code: StatusCode::ACCEPTED,
|
duplicate_block_status_code: StatusCode::ACCEPTED,
|
||||||
target_peers: 100,
|
target_peers: 100,
|
||||||
|
sync_tolerance_epochs: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -459,7 +461,10 @@ pub fn serve<T: BeaconChainTypes>(
|
|||||||
)
|
)
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
let tolerance = SYNC_TOLERANCE_EPOCHS * T::EthSpec::slots_per_epoch();
|
let sync_tolerance_epochs = config
|
||||||
|
.sync_tolerance_epochs
|
||||||
|
.unwrap_or(DEFAULT_SYNC_TOLERANCE_EPOCHS);
|
||||||
|
let tolerance = sync_tolerance_epochs * T::EthSpec::slots_per_epoch();
|
||||||
|
|
||||||
if head_slot + tolerance >= current_slot {
|
if head_slot + tolerance >= current_slot {
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|||||||
@@ -1509,6 +1509,19 @@ pub fn cli_app() -> Command {
|
|||||||
.help_heading(FLAG_HEADER)
|
.help_heading(FLAG_HEADER)
|
||||||
.display_order(0)
|
.display_order(0)
|
||||||
)
|
)
|
||||||
|
.arg(
|
||||||
|
Arg::new("sync-tolerance-epochs")
|
||||||
|
.long("sync-tolerance-epochs")
|
||||||
|
.help("Overrides the default SYNC_TOLERANCE_EPOCHS. This flag is not intended \
|
||||||
|
for production and MUST only be used in TESTING only. This is primarily used \
|
||||||
|
for testing range sync, to prevent the node from producing a block before the \
|
||||||
|
node is synced with the network which may result in the node getting \
|
||||||
|
disconnected from peers immediately.")
|
||||||
|
.hide(true)
|
||||||
|
.requires("enable_http")
|
||||||
|
.action(ArgAction::Set)
|
||||||
|
.display_order(0)
|
||||||
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("gui")
|
Arg::new("gui")
|
||||||
.long("gui")
|
.long("gui")
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ use beacon_chain::graffiti_calculator::GraffitiOrigin;
|
|||||||
use beacon_chain::TrustedSetup;
|
use beacon_chain::TrustedSetup;
|
||||||
use clap::{parser::ValueSource, ArgMatches, Id};
|
use clap::{parser::ValueSource, ArgMatches, Id};
|
||||||
use clap_utils::flags::DISABLE_MALLOC_TUNING_FLAG;
|
use clap_utils::flags::DISABLE_MALLOC_TUNING_FLAG;
|
||||||
use clap_utils::{parse_flag, parse_required};
|
use clap_utils::{parse_flag, parse_optional, parse_required};
|
||||||
use client::{ClientConfig, ClientGenesis};
|
use client::{ClientConfig, ClientGenesis};
|
||||||
use directory::{DEFAULT_BEACON_NODE_DIR, DEFAULT_NETWORK_DIR, DEFAULT_ROOT_DIR};
|
use directory::{DEFAULT_BEACON_NODE_DIR, DEFAULT_NETWORK_DIR, DEFAULT_ROOT_DIR};
|
||||||
use environment::RuntimeContext;
|
use environment::RuntimeContext;
|
||||||
@@ -174,6 +174,9 @@ pub fn get_config<E: EthSpec>(
|
|||||||
|
|
||||||
client_config.http_api.duplicate_block_status_code =
|
client_config.http_api.duplicate_block_status_code =
|
||||||
parse_required(cli_args, "http-duplicate-block-status")?;
|
parse_required(cli_args, "http-duplicate-block-status")?;
|
||||||
|
|
||||||
|
client_config.http_api.sync_tolerance_epochs =
|
||||||
|
parse_optional(cli_args, "sync-tolerance-epochs")?;
|
||||||
}
|
}
|
||||||
|
|
||||||
if cli_args.get_flag("light-client-server") {
|
if cli_args.get_flag("light-client-server") {
|
||||||
|
|||||||
@@ -2543,6 +2543,17 @@ fn light_client_http_server_disabled() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn sync_tolerance_epochs() {
|
||||||
|
CommandLineTest::new()
|
||||||
|
.flag("http", None)
|
||||||
|
.flag("sync-tolerance-epochs", Some("0"))
|
||||||
|
.run_with_zero_port()
|
||||||
|
.with_config(|config| {
|
||||||
|
assert_eq!(config.http_api.sync_tolerance_epochs, Some(0));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn gui_flag() {
|
fn gui_flag() {
|
||||||
CommandLineTest::new()
|
CommandLineTest::new()
|
||||||
|
|||||||
@@ -4,11 +4,15 @@ participants:
|
|||||||
cl_extra_params:
|
cl_extra_params:
|
||||||
- --subscribe-all-data-column-subnets
|
- --subscribe-all-data-column-subnets
|
||||||
- --subscribe-all-subnets
|
- --subscribe-all-subnets
|
||||||
|
# Note: useful for testing range sync (only produce block if node is in sync to prevent forking)
|
||||||
|
- --sync-tolerance-epochs=0
|
||||||
- --target-peers=3
|
- --target-peers=3
|
||||||
count: 2
|
count: 2
|
||||||
- cl_type: lighthouse
|
- cl_type: lighthouse
|
||||||
cl_image: lighthouse:local
|
cl_image: lighthouse:local
|
||||||
cl_extra_params:
|
cl_extra_params:
|
||||||
|
# Note: useful for testing range sync (only produce block if node is in sync to prevent forking)
|
||||||
|
- --sync-tolerance-epochs=0
|
||||||
- --target-peers=3
|
- --target-peers=3
|
||||||
count: 2
|
count: 2
|
||||||
network_params:
|
network_params:
|
||||||
|
|||||||
Reference in New Issue
Block a user