2019-04-15 13:36:14 -07:00
|
|
|
//! A command-line executable for monitoring a cluster's gossip plane.
|
2019-04-01 17:12:30 -06:00
|
|
|
|
2019-11-16 14:16:28 -07:00
|
|
|
use clap::{
|
2019-11-20 15:21:34 -07:00
|
|
|
crate_description, crate_name, value_t, value_t_or_exit, App, AppSettings, Arg, ArgMatches,
|
|
|
|
SubCommand,
|
2019-11-16 14:16:28 -07:00
|
|
|
};
|
2019-11-20 15:21:34 -07:00
|
|
|
use solana_clap_utils::input_validators::{is_port, is_pubkey};
|
2019-04-22 14:51:20 -07:00
|
|
|
use solana_client::rpc_client::RpcClient;
|
2019-11-20 15:21:34 -07:00
|
|
|
use solana_core::{contact_info::ContactInfo, gossip_service::discover};
|
2019-04-01 17:12:30 -06:00
|
|
|
use solana_sdk::pubkey::Pubkey;
|
|
|
|
use std::error;
|
2020-01-01 22:59:36 -07:00
|
|
|
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
|
2019-04-01 17:12:30 -06:00
|
|
|
use std::process::exit;
|
|
|
|
|
|
|
|
fn main() -> Result<(), Box<dyn error::Error>> {
|
2020-01-08 09:19:12 -08:00
|
|
|
solana_logger::setup_with_default("solana=info");
|
2019-04-13 18:43:59 -07:00
|
|
|
|
2019-04-01 17:12:30 -06:00
|
|
|
let matches = App::new(crate_name!())
|
|
|
|
.about(crate_description!())
|
2020-05-11 15:02:01 -07:00
|
|
|
.version(solana_version::version!())
|
2019-04-22 14:51:20 -07:00
|
|
|
.setting(AppSettings::SubcommandRequiredElseHelp)
|
2019-08-13 10:49:48 -07:00
|
|
|
.subcommand(
|
2020-01-20 23:06:47 -07:00
|
|
|
SubCommand::with_name("rpc-url")
|
2019-08-13 10:49:48 -07:00
|
|
|
.about("Get an RPC URL for the cluster")
|
2019-11-16 14:16:28 -07:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("entrypoint")
|
|
|
|
.short("n")
|
|
|
|
.long("entrypoint")
|
|
|
|
.value_name("HOST:PORT")
|
|
|
|
.takes_value(true)
|
|
|
|
.required(true)
|
|
|
|
.validator(solana_net_utils::is_host_port)
|
|
|
|
.help("Rendezvous with the cluster at this entry point"),
|
|
|
|
)
|
2019-10-24 10:44:05 -07:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("all")
|
|
|
|
.long("all")
|
|
|
|
.takes_value(false)
|
|
|
|
.help("Return all RPC URLs"),
|
|
|
|
)
|
2020-01-02 09:50:48 -07:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("any")
|
|
|
|
.long("any")
|
|
|
|
.takes_value(false)
|
|
|
|
.conflicts_with("all")
|
|
|
|
.help("Return any RPC URL"),
|
|
|
|
)
|
2019-08-13 10:49:48 -07:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("timeout")
|
|
|
|
.long("timeout")
|
|
|
|
.value_name("SECONDS")
|
|
|
|
.takes_value(true)
|
|
|
|
.default_value("5")
|
|
|
|
.help("Timeout in seconds"),
|
|
|
|
)
|
|
|
|
.setting(AppSettings::DisableVersion),
|
|
|
|
)
|
2019-04-22 14:51:20 -07:00
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("spy")
|
2019-05-03 15:00:19 -07:00
|
|
|
.about("Monitor the gossip entrypoint")
|
2019-04-22 14:51:20 -07:00
|
|
|
.setting(AppSettings::DisableVersion)
|
2019-11-16 14:16:28 -07:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("entrypoint")
|
|
|
|
.short("n")
|
|
|
|
.long("entrypoint")
|
|
|
|
.value_name("HOST:PORT")
|
|
|
|
.takes_value(true)
|
|
|
|
.validator(solana_net_utils::is_host_port)
|
2019-11-20 15:21:34 -07:00
|
|
|
.help("Rendezvous with the cluster at this entrypoint"),
|
2019-11-16 14:16:28 -07:00
|
|
|
)
|
2019-10-24 15:35:33 -07:00
|
|
|
.arg(
|
|
|
|
clap::Arg::with_name("gossip_port")
|
|
|
|
.long("gossip-port")
|
2019-11-20 15:21:34 -07:00
|
|
|
.value_name("PORT")
|
2019-10-24 15:35:33 -07:00
|
|
|
.takes_value(true)
|
2019-11-20 15:21:34 -07:00
|
|
|
.validator(is_port)
|
2019-10-24 15:35:33 -07:00
|
|
|
.help("Gossip port number for the node"),
|
|
|
|
)
|
2019-11-20 15:21:34 -07:00
|
|
|
.arg(
|
|
|
|
clap::Arg::with_name("gossip_host")
|
|
|
|
.long("gossip-host")
|
|
|
|
.value_name("HOST")
|
|
|
|
.takes_value(true)
|
|
|
|
.validator(solana_net_utils::is_host)
|
2020-01-01 22:59:36 -07:00
|
|
|
.help("Gossip DNS name or IP address for the node [default: ask --entrypoint, or 127.0.0.1 when --entrypoint is not provided]"),
|
2019-11-20 15:21:34 -07:00
|
|
|
)
|
2019-04-22 14:51:20 -07:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("num_nodes")
|
|
|
|
.short("N")
|
|
|
|
.long("num-nodes")
|
|
|
|
.value_name("NUM")
|
|
|
|
.takes_value(true)
|
|
|
|
.conflicts_with("num_nodes_exactly")
|
2019-08-13 10:49:48 -07:00
|
|
|
.help("Wait for at least NUM nodes to be visible"),
|
2019-04-22 14:51:20 -07:00
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("num_nodes_exactly")
|
|
|
|
.short("E")
|
|
|
|
.long("num-nodes-exactly")
|
|
|
|
.value_name("NUM")
|
|
|
|
.takes_value(true)
|
2019-08-13 10:49:48 -07:00
|
|
|
.help("Wait for exactly NUM nodes to be visible"),
|
2019-04-22 14:51:20 -07:00
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("node_pubkey")
|
|
|
|
.short("p")
|
|
|
|
.long("pubkey")
|
|
|
|
.value_name("PUBKEY")
|
|
|
|
.takes_value(true)
|
2019-08-30 09:27:35 -07:00
|
|
|
.validator(is_pubkey)
|
2019-04-22 14:51:20 -07:00
|
|
|
.help("Public key of a specific node to wait for"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("timeout")
|
|
|
|
.long("timeout")
|
2019-08-13 10:49:48 -07:00
|
|
|
.value_name("SECONDS")
|
2019-04-22 14:51:20 -07:00
|
|
|
.takes_value(true)
|
2019-08-13 10:49:48 -07:00
|
|
|
.help("Maximum time to wait in seconds [default: wait forever]"),
|
2019-04-22 14:51:20 -07:00
|
|
|
),
|
2019-04-01 17:12:30 -06:00
|
|
|
)
|
2019-04-22 14:51:20 -07:00
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("stop")
|
|
|
|
.about("Send stop request to a node")
|
|
|
|
.setting(AppSettings::DisableVersion)
|
2019-11-16 14:16:28 -07:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("entrypoint")
|
|
|
|
.short("n")
|
|
|
|
.long("entrypoint")
|
|
|
|
.value_name("HOST:PORT")
|
|
|
|
.takes_value(true)
|
|
|
|
.required(true)
|
|
|
|
.validator(solana_net_utils::is_host_port)
|
|
|
|
.help("Rendezvous with the cluster at this entry point"),
|
|
|
|
)
|
2019-04-22 14:51:20 -07:00
|
|
|
.arg(
|
|
|
|
Arg::with_name("node_pubkey")
|
|
|
|
.index(1)
|
|
|
|
.required(true)
|
|
|
|
.value_name("PUBKEY")
|
2019-08-30 09:27:35 -07:00
|
|
|
.validator(is_pubkey)
|
2019-04-22 14:51:20 -07:00
|
|
|
.help("Public key of a specific node to stop"),
|
|
|
|
),
|
2019-04-01 17:12:30 -06:00
|
|
|
)
|
|
|
|
.get_matches();
|
|
|
|
|
2019-11-16 14:16:28 -07:00
|
|
|
fn parse_entrypoint(matches: &ArgMatches) -> Option<SocketAddr> {
|
|
|
|
matches.value_of("entrypoint").map(|entrypoint| {
|
|
|
|
solana_net_utils::parse_host_port(entrypoint).unwrap_or_else(|e| {
|
|
|
|
eprintln!("failed to parse entrypoint address: {}", e);
|
|
|
|
exit(1);
|
|
|
|
})
|
|
|
|
})
|
2019-04-01 17:12:30 -06:00
|
|
|
}
|
2019-08-13 10:49:48 -07:00
|
|
|
|
2019-04-22 14:51:20 -07:00
|
|
|
match matches.subcommand() {
|
|
|
|
("spy", Some(matches)) => {
|
|
|
|
let num_nodes_exactly = matches
|
|
|
|
.value_of("num_nodes_exactly")
|
|
|
|
.map(|num| num.to_string().parse().unwrap());
|
|
|
|
let num_nodes = matches
|
|
|
|
.value_of("num_nodes")
|
|
|
|
.map(|num| num.to_string().parse().unwrap())
|
|
|
|
.or(num_nodes_exactly);
|
|
|
|
let timeout = matches
|
|
|
|
.value_of("timeout")
|
|
|
|
.map(|secs| secs.to_string().parse().unwrap());
|
|
|
|
let pubkey = matches
|
|
|
|
.value_of("node_pubkey")
|
|
|
|
.map(|pubkey_str| pubkey_str.parse::<Pubkey>().unwrap());
|
2019-04-01 17:12:30 -06:00
|
|
|
|
2019-11-20 15:21:34 -07:00
|
|
|
let entrypoint_addr = parse_entrypoint(&matches);
|
|
|
|
|
2020-01-01 22:59:36 -07:00
|
|
|
let gossip_host = matches
|
|
|
|
.value_of("gossip_host")
|
|
|
|
.map(|gossip_host| {
|
|
|
|
solana_net_utils::parse_host(gossip_host).unwrap_or_else(|e| {
|
|
|
|
eprintln!("failed to parse gossip-host: {}", e);
|
2019-11-20 15:21:34 -07:00
|
|
|
exit(1);
|
|
|
|
})
|
2020-01-01 22:59:36 -07:00
|
|
|
})
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
if let Some(entrypoint_addr) = entrypoint_addr {
|
|
|
|
solana_net_utils::get_public_ip_addr(&entrypoint_addr).unwrap_or_else(
|
|
|
|
|err| {
|
|
|
|
eprintln!(
|
|
|
|
"Failed to contact cluster entrypoint {}: {}",
|
|
|
|
entrypoint_addr, err
|
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1))
|
|
|
|
}
|
|
|
|
});
|
2019-11-20 15:21:34 -07:00
|
|
|
|
|
|
|
let gossip_addr = SocketAddr::new(
|
|
|
|
gossip_host,
|
|
|
|
value_t!(matches, "gossip_port", u16).unwrap_or_else(|_| {
|
2020-03-04 22:46:43 -07:00
|
|
|
solana_net_utils::find_available_port_in_range(
|
|
|
|
IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)),
|
|
|
|
(0, 1),
|
|
|
|
)
|
|
|
|
.expect("unable to find an available gossip port")
|
2019-11-20 15:21:34 -07:00
|
|
|
}),
|
2019-10-24 15:35:33 -07:00
|
|
|
);
|
|
|
|
|
2020-04-23 11:46:12 -07:00
|
|
|
let (_all_peers, validators, _archivers) = discover(
|
2019-11-16 14:16:28 -07:00
|
|
|
entrypoint_addr.as_ref(),
|
2019-04-30 16:42:56 -07:00
|
|
|
num_nodes,
|
|
|
|
timeout,
|
|
|
|
pubkey,
|
2019-08-30 16:12:58 -07:00
|
|
|
None,
|
2019-10-24 15:35:33 -07:00
|
|
|
Some(&gossip_addr),
|
2019-04-30 16:42:56 -07:00
|
|
|
)?;
|
2019-04-01 17:12:30 -06:00
|
|
|
|
2019-04-22 14:51:20 -07:00
|
|
|
if timeout.is_some() {
|
|
|
|
if let Some(num) = num_nodes {
|
2020-04-23 11:46:12 -07:00
|
|
|
if validators.len() < num {
|
2019-04-22 14:51:20 -07:00
|
|
|
let add = if num_nodes_exactly.is_some() {
|
|
|
|
""
|
|
|
|
} else {
|
|
|
|
" or more"
|
|
|
|
};
|
|
|
|
eprintln!(
|
2020-04-23 11:46:12 -07:00
|
|
|
"Error: Insufficient validators discovered. Expecting {}{}",
|
2019-04-22 14:51:20 -07:00
|
|
|
num, add,
|
|
|
|
);
|
2019-10-01 12:30:11 -07:00
|
|
|
exit(1);
|
2019-04-22 14:51:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(node) = pubkey {
|
2020-04-23 11:46:12 -07:00
|
|
|
if validators.iter().find(|x| x.id == node).is_none() {
|
2019-04-22 14:51:20 -07:00
|
|
|
eprintln!("Error: Could not find node {:?}", node);
|
2019-10-01 12:30:11 -07:00
|
|
|
exit(1);
|
2019-04-22 14:51:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-02 18:33:01 -07:00
|
|
|
if let Some(num_nodes_exactly) = num_nodes_exactly {
|
2020-04-23 11:46:12 -07:00
|
|
|
if validators.len() > num_nodes_exactly {
|
2019-10-02 18:33:01 -07:00
|
|
|
eprintln!(
|
|
|
|
"Error: Extra nodes discovered. Expecting exactly {}",
|
|
|
|
num_nodes_exactly
|
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
2019-04-01 17:12:30 -06:00
|
|
|
}
|
|
|
|
}
|
2020-01-20 23:06:47 -07:00
|
|
|
("rpc-url", Some(matches)) => {
|
2020-01-02 09:50:48 -07:00
|
|
|
let any = matches.is_present("any");
|
|
|
|
let all = matches.is_present("all");
|
2019-11-16 14:16:28 -07:00
|
|
|
let entrypoint_addr = parse_entrypoint(&matches);
|
2019-08-13 10:49:48 -07:00
|
|
|
let timeout = value_t_or_exit!(matches, "timeout", u64);
|
2020-04-23 11:46:12 -07:00
|
|
|
let (_all_peers, validators, _archivers) = discover(
|
2019-11-16 14:16:28 -07:00
|
|
|
entrypoint_addr.as_ref(),
|
2019-08-13 10:49:48 -07:00
|
|
|
Some(1),
|
|
|
|
Some(timeout),
|
|
|
|
None,
|
2019-11-16 14:16:28 -07:00
|
|
|
entrypoint_addr.as_ref(),
|
2019-10-24 15:35:33 -07:00
|
|
|
None,
|
2019-08-13 10:49:48 -07:00
|
|
|
)?;
|
|
|
|
|
2020-04-23 11:46:12 -07:00
|
|
|
let rpc_addrs: Vec<_> = validators
|
2019-08-13 10:49:48 -07:00
|
|
|
.iter()
|
2019-11-09 00:56:31 -07:00
|
|
|
.filter_map(|contact_info| {
|
2020-01-02 09:50:48 -07:00
|
|
|
if (any || all || Some(contact_info.gossip) == entrypoint_addr)
|
2019-11-09 00:56:31 -07:00
|
|
|
&& ContactInfo::is_valid_address(&contact_info.rpc)
|
|
|
|
{
|
|
|
|
return Some(contact_info.rpc);
|
|
|
|
}
|
|
|
|
None
|
2019-10-24 10:44:05 -07:00
|
|
|
})
|
|
|
|
.collect();
|
2019-08-13 10:49:48 -07:00
|
|
|
|
2019-10-24 10:44:05 -07:00
|
|
|
if rpc_addrs.is_empty() {
|
2019-08-13 10:49:48 -07:00
|
|
|
eprintln!("No RPC URL found");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2019-10-24 10:44:05 -07:00
|
|
|
for rpc_addr in rpc_addrs {
|
|
|
|
println!("http://{}", rpc_addr);
|
2020-01-02 09:50:48 -07:00
|
|
|
if any {
|
|
|
|
break;
|
|
|
|
}
|
2019-10-24 10:44:05 -07:00
|
|
|
}
|
2019-08-13 10:49:48 -07:00
|
|
|
}
|
2019-04-22 14:51:20 -07:00
|
|
|
("stop", Some(matches)) => {
|
2019-11-16 14:16:28 -07:00
|
|
|
let entrypoint_addr = parse_entrypoint(&matches);
|
2019-04-22 14:51:20 -07:00
|
|
|
let pubkey = matches
|
|
|
|
.value_of("node_pubkey")
|
|
|
|
.unwrap()
|
|
|
|
.parse::<Pubkey>()
|
|
|
|
.unwrap();
|
2020-04-23 11:46:12 -07:00
|
|
|
let (_all_peers, validators, _archivers) = discover(
|
2019-11-16 14:16:28 -07:00
|
|
|
entrypoint_addr.as_ref(),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
Some(pubkey),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
)?;
|
2020-04-23 11:46:12 -07:00
|
|
|
let validator = validators.iter().find(|x| x.id == pubkey).unwrap();
|
2019-04-22 14:51:20 -07:00
|
|
|
|
2020-04-23 11:46:12 -07:00
|
|
|
if !ContactInfo::is_valid_address(&validator.rpc) {
|
|
|
|
eprintln!(
|
|
|
|
"Error: RPC service is not enabled on validator {:?}",
|
|
|
|
pubkey
|
|
|
|
);
|
2019-10-01 12:30:11 -07:00
|
|
|
exit(1);
|
2019-04-22 14:51:20 -07:00
|
|
|
}
|
2020-04-23 11:46:12 -07:00
|
|
|
println!("\nSending stop request to validator {:?}", pubkey);
|
2019-04-22 14:51:20 -07:00
|
|
|
|
2020-04-23 11:46:12 -07:00
|
|
|
let result = RpcClient::new_socket(validator.rpc).validator_exit()?;
|
2019-04-22 14:51:20 -07:00
|
|
|
if result {
|
|
|
|
println!("Stop signal accepted");
|
|
|
|
} else {
|
|
|
|
eprintln!("Error: Stop signal ignored");
|
2019-04-01 17:12:30 -06:00
|
|
|
}
|
|
|
|
}
|
2019-04-22 14:51:20 -07:00
|
|
|
_ => unreachable!(),
|
2019-04-01 17:12:30 -06:00
|
|
|
}
|
2019-04-22 14:51:20 -07:00
|
|
|
|
2019-04-01 17:12:30 -06:00
|
|
|
Ok(())
|
|
|
|
}
|