make execution-endpoint required (#5165)

* make `execution-endpoint` mandatory

* use parse_required instead

* make test pass

* Merge branch 'unstable' into make_ee_required

* fix test

* Merge branch 'unstable' into make_ee_required

* Fix cli help text

* Fix tests

* Merge branch 'unstable' into make_ee_required

* Add comment

* Clarification

* Merge remote-tracking branch 'origin/unstable' into make_ee_required
This commit is contained in:
zhiqiangxu
2024-11-01 14:06:53 +08:00
committed by GitHub
parent 11260585d7
commit 16693b0bd7
4 changed files with 111 additions and 94 deletions

View File

@@ -793,6 +793,7 @@ pub fn cli_app() -> Command {
.help("Server endpoint for an execution layer JWT-authenticated HTTP \ .help("Server endpoint for an execution layer JWT-authenticated HTTP \
JSON-RPC connection. Uses the same endpoint to populate the \ JSON-RPC connection. Uses the same endpoint to populate the \
deposit cache.") deposit cache.")
.required(true)
.action(ArgAction::Set) .action(ArgAction::Set)
.display_order(0) .display_order(0)
) )

View File

@@ -284,7 +284,8 @@ pub fn get_config<E: EthSpec>(
client_config.eth1.cache_follow_distance = Some(follow_distance); client_config.eth1.cache_follow_distance = Some(follow_distance);
} }
if let Some(endpoints) = cli_args.get_one::<String>("execution-endpoint") { // `--execution-endpoint` is required now.
let endpoints: String = clap_utils::parse_required(cli_args, "execution-endpoint")?;
let mut el_config = execution_layer::Config::default(); let mut el_config = execution_layer::Config::default();
// Always follow the deposit contract when there is an execution endpoint. // Always follow the deposit contract when there is an execution endpoint.
@@ -299,8 +300,12 @@ pub fn get_config<E: EthSpec>(
client_config.sync_eth1_chain = true; client_config.sync_eth1_chain = true;
// Parse a single execution endpoint, logging warnings if multiple endpoints are supplied. // Parse a single execution endpoint, logging warnings if multiple endpoints are supplied.
let execution_endpoint = let execution_endpoint = parse_only_one_value(
parse_only_one_value(endpoints, SensitiveUrl::parse, "--execution-endpoint", log)?; endpoints.as_str(),
SensitiveUrl::parse,
"--execution-endpoint",
log,
)?;
// JWTs are required if `--execution-endpoint` is supplied. They can be either passed via // JWTs are required if `--execution-endpoint` is supplied. They can be either passed via
// file_path or directly as string. // file_path or directly as string.
@@ -313,8 +318,7 @@ pub fn get_config<E: EthSpec>(
// Check if the JWT secret key is passed directly via cli flag and persist it to the default // Check if the JWT secret key is passed directly via cli flag and persist it to the default
// file location. // file location.
} else if let Some(jwt_secret_key) = cli_args.get_one::<String>("execution-jwt-secret-key") } else if let Some(jwt_secret_key) = cli_args.get_one::<String>("execution-jwt-secret-key") {
{
use std::fs::File; use std::fs::File;
use std::io::Write; use std::io::Write;
secret_file = client_config.data_dir().join(DEFAULT_JWT_FILE); secret_file = client_config.data_dir().join(DEFAULT_JWT_FILE);
@@ -338,8 +342,7 @@ pub fn get_config<E: EthSpec>(
parse_only_one_value(endpoint, SensitiveUrl::parse, "--builder", log)?; parse_only_one_value(endpoint, SensitiveUrl::parse, "--builder", log)?;
el_config.builder_url = Some(payload_builder); el_config.builder_url = Some(payload_builder);
el_config.builder_user_agent = el_config.builder_user_agent = clap_utils::parse_optional(cli_args, "builder-user-agent")?;
clap_utils::parse_optional(cli_args, "builder-user-agent")?;
el_config.builder_header_timeout = el_config.builder_header_timeout =
clap_utils::parse_optional(cli_args, "builder-header-timeout")? clap_utils::parse_optional(cli_args, "builder-header-timeout")?
@@ -369,7 +372,6 @@ pub fn get_config<E: EthSpec>(
// Store the EL config in the client config. // Store the EL config in the client config.
client_config.execution_layer = Some(el_config); client_config.execution_layer = Some(el_config);
}
// 4844 params // 4844 params
if let Some(trusted_setup) = context if let Some(trusted_setup) = context

View File

@@ -5,7 +5,7 @@ The primary component which connects to the Ethereum 2.0 P2P network and
downloads, verifies and stores blocks. Provides a HTTP API for querying the downloads, verifies and stores blocks. Provides a HTTP API for querying the
beacon chain and publishing messages to the network. beacon chain and publishing messages to the network.
Usage: lighthouse beacon_node [OPTIONS] Usage: lighthouse beacon_node [OPTIONS] --execution-endpoint <EXECUTION-ENDPOINT>
Options: Options:
--auto-compact-db <auto-compact-db> --auto-compact-db <auto-compact-db>

View File

@@ -24,7 +24,9 @@ use types::non_zero_usize::new_non_zero_usize;
use types::{Address, Checkpoint, Epoch, Hash256, MainnetEthSpec}; use types::{Address, Checkpoint, Epoch, Hash256, MainnetEthSpec};
use unused_port::{unused_tcp4_port, unused_tcp6_port, unused_udp4_port, unused_udp6_port}; use unused_port::{unused_tcp4_port, unused_tcp6_port, unused_udp4_port, unused_udp6_port};
const DEFAULT_ETH1_ENDPOINT: &str = "http://localhost:8545/"; const DEFAULT_EXECUTION_ENDPOINT: &str = "http://localhost:8551/";
const DEFAULT_EXECUTION_JWT_SECRET_KEY: &str =
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
// These dummy ports should ONLY be used for `enr-xxx-port` flags that do not bind. // These dummy ports should ONLY be used for `enr-xxx-port` flags that do not bind.
const DUMMY_ENR_TCP_PORT: u16 = 7777; const DUMMY_ENR_TCP_PORT: u16 = 7777;
@@ -52,6 +54,18 @@ struct CommandLineTest {
} }
impl CommandLineTest { impl CommandLineTest {
fn new() -> CommandLineTest { fn new() -> CommandLineTest {
let mut base_cmd = base_cmd();
base_cmd
.arg("--execution-endpoint")
.arg(DEFAULT_EXECUTION_ENDPOINT)
.arg("--execution-jwt-secret-key")
.arg(DEFAULT_EXECUTION_JWT_SECRET_KEY);
CommandLineTest { cmd: base_cmd }
}
// Required for testing different JWT authentication methods.
fn new_with_no_execution_endpoint() -> CommandLineTest {
let base_cmd = base_cmd(); let base_cmd = base_cmd();
CommandLineTest { cmd: base_cmd } CommandLineTest { cmd: base_cmd }
} }
@@ -104,7 +118,7 @@ fn staking_flag() {
assert!(config.sync_eth1_chain); assert!(config.sync_eth1_chain);
assert_eq!( assert_eq!(
config.eth1.endpoint.get_endpoint().to_string(), config.eth1.endpoint.get_endpoint().to_string(),
DEFAULT_ETH1_ENDPOINT DEFAULT_EXECUTION_ENDPOINT
); );
}); });
} }
@@ -253,7 +267,7 @@ fn always_prepare_payload_default() {
#[test] #[test]
fn always_prepare_payload_override() { fn always_prepare_payload_override() {
let dir = TempDir::new().expect("Unable to create temporary directory"); let dir = TempDir::new().expect("Unable to create temporary directory");
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag("always-prepare-payload", None) .flag("always-prepare-payload", None)
.flag( .flag(
"suggested-fee-recipient", "suggested-fee-recipient",
@@ -459,7 +473,7 @@ fn run_bellatrix_execution_endpoints_flag_test(flag: &str) {
// this is way better but intersperse is still a nightly feature :/ // this is way better but intersperse is still a nightly feature :/
// let endpoint_arg: String = urls.into_iter().intersperse(",").collect(); // let endpoint_arg: String = urls.into_iter().intersperse(",").collect();
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag(flag, Some(&endpoint_arg)) .flag(flag, Some(&endpoint_arg))
.flag("execution-jwt", Some(&jwts_arg)) .flag("execution-jwt", Some(&jwts_arg))
.run_with_zero_port() .run_with_zero_port()
@@ -480,7 +494,7 @@ fn run_bellatrix_execution_endpoints_flag_test(flag: &str) {
#[test] #[test]
fn run_execution_jwt_secret_key_is_persisted() { fn run_execution_jwt_secret_key_is_persisted() {
let jwt_secret_key = "0x3cbc11b0d8fa16f3344eacfd6ff6430b9d30734450e8adcf5400f88d327dcb33"; let jwt_secret_key = "0x3cbc11b0d8fa16f3344eacfd6ff6430b9d30734450e8adcf5400f88d327dcb33";
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag("execution-endpoint", Some("http://localhost:8551/")) .flag("execution-endpoint", Some("http://localhost:8551/"))
.flag("execution-jwt-secret-key", Some(jwt_secret_key)) .flag("execution-jwt-secret-key", Some(jwt_secret_key))
.run_with_zero_port() .run_with_zero_port()
@@ -501,7 +515,7 @@ fn run_execution_jwt_secret_key_is_persisted() {
#[test] #[test]
fn execution_timeout_multiplier_flag() { fn execution_timeout_multiplier_flag() {
let dir = TempDir::new().expect("Unable to create temporary directory"); let dir = TempDir::new().expect("Unable to create temporary directory");
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag("execution-endpoint", Some("http://meow.cats")) .flag("execution-endpoint", Some("http://meow.cats"))
.flag( .flag(
"execution-jwt", "execution-jwt",
@@ -528,7 +542,7 @@ fn bellatrix_jwt_secrets_flag() {
let mut file = File::create(dir.path().join("jwtsecrets")).expect("Unable to create file"); let mut file = File::create(dir.path().join("jwtsecrets")).expect("Unable to create file");
file.write_all(b"0x3cbc11b0d8fa16f3344eacfd6ff6430b9d30734450e8adcf5400f88d327dcb33") file.write_all(b"0x3cbc11b0d8fa16f3344eacfd6ff6430b9d30734450e8adcf5400f88d327dcb33")
.expect("Unable to write to file"); .expect("Unable to write to file");
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag("execution-endpoints", Some("http://localhost:8551/")) .flag("execution-endpoints", Some("http://localhost:8551/"))
.flag( .flag(
"jwt-secrets", "jwt-secrets",
@@ -550,7 +564,7 @@ fn bellatrix_jwt_secrets_flag() {
#[test] #[test]
fn bellatrix_fee_recipient_flag() { fn bellatrix_fee_recipient_flag() {
let dir = TempDir::new().expect("Unable to create temporary directory"); let dir = TempDir::new().expect("Unable to create temporary directory");
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag("execution-endpoint", Some("http://meow.cats")) .flag("execution-endpoint", Some("http://meow.cats"))
.flag( .flag(
"execution-jwt", "execution-jwt",
@@ -591,7 +605,7 @@ fn run_payload_builder_flag_test_with_config<F: Fn(&Config)>(
f: F, f: F,
) { ) {
let dir = TempDir::new().expect("Unable to create temporary directory"); let dir = TempDir::new().expect("Unable to create temporary directory");
let mut test = CommandLineTest::new(); let mut test = CommandLineTest::new_with_no_execution_endpoint();
test.flag("execution-endpoint", Some("http://meow.cats")) test.flag("execution-endpoint", Some("http://meow.cats"))
.flag( .flag(
"execution-jwt", "execution-jwt",
@@ -713,7 +727,7 @@ fn run_jwt_optional_flags_test(jwt_flag: &str, jwt_id_flag: &str, jwt_version_fl
let jwt_file = "jwt-file"; let jwt_file = "jwt-file";
let id = "bn-1"; let id = "bn-1";
let version = "Lighthouse-v2.1.3"; let version = "Lighthouse-v2.1.3";
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag("execution-endpoint", Some(execution_endpoint)) .flag("execution-endpoint", Some(execution_endpoint))
.flag(jwt_flag, dir.path().join(jwt_file).as_os_str().to_str()) .flag(jwt_flag, dir.path().join(jwt_file).as_os_str().to_str())
.flag(jwt_id_flag, Some(id)) .flag(jwt_id_flag, Some(id))
@@ -2430,13 +2444,13 @@ fn logfile_format_flag() {
fn sync_eth1_chain_default() { fn sync_eth1_chain_default() {
CommandLineTest::new() CommandLineTest::new()
.run_with_zero_port() .run_with_zero_port()
.with_config(|config| assert_eq!(config.sync_eth1_chain, false)); .with_config(|config| assert_eq!(config.sync_eth1_chain, true));
} }
#[test] #[test]
fn sync_eth1_chain_execution_endpoints_flag() { fn sync_eth1_chain_execution_endpoints_flag() {
let dir = TempDir::new().expect("Unable to create temporary directory"); let dir = TempDir::new().expect("Unable to create temporary directory");
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag("execution-endpoints", Some("http://localhost:8551/")) .flag("execution-endpoints", Some("http://localhost:8551/"))
.flag( .flag(
"execution-jwt", "execution-jwt",
@@ -2449,7 +2463,7 @@ fn sync_eth1_chain_execution_endpoints_flag() {
#[test] #[test]
fn sync_eth1_chain_disable_deposit_contract_sync_flag() { fn sync_eth1_chain_disable_deposit_contract_sync_flag() {
let dir = TempDir::new().expect("Unable to create temporary directory"); let dir = TempDir::new().expect("Unable to create temporary directory");
CommandLineTest::new() CommandLineTest::new_with_no_execution_endpoint()
.flag("disable-deposit-contract-sync", None) .flag("disable-deposit-contract-sync", None)
.flag("execution-endpoints", Some("http://localhost:8551/")) .flag("execution-endpoints", Some("http://localhost:8551/"))
.flag( .flag(