mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-13 21:27:25 +08:00
372 lines
11 KiB
Rust
372 lines
11 KiB
Rust
#![allow(dead_code)]
|
|
|
|
use std::{net::SocketAddr, vec};
|
|
|
|
use clap::{command, Args, Parser, Subcommand};
|
|
use rpc::vpn_portal_rpc_client::VpnPortalRpcClient;
|
|
use utils::{list_peer_route_pair, PeerRoutePair};
|
|
|
|
mod arch;
|
|
mod common;
|
|
mod rpc;
|
|
mod tunnel;
|
|
mod utils;
|
|
|
|
use crate::{
|
|
common::stun::{StunInfoCollector, UdpNatTypeDetector},
|
|
rpc::{
|
|
connector_manage_rpc_client::ConnectorManageRpcClient,
|
|
peer_center_rpc_client::PeerCenterRpcClient, peer_manage_rpc_client::PeerManageRpcClient,
|
|
*,
|
|
},
|
|
utils::{cost_to_str, float_to_str},
|
|
};
|
|
use humansize::format_size;
|
|
use tabled::settings::Style;
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[command(name = "easytier-cli", author, version, about, long_about = None)]
|
|
struct Cli {
|
|
/// the instance name
|
|
#[arg(short = 'p', long, default_value = "127.0.0.1:15888")]
|
|
rpc_portal: SocketAddr,
|
|
|
|
#[command(subcommand)]
|
|
sub_command: SubCommand,
|
|
}
|
|
|
|
#[derive(Subcommand, Debug)]
|
|
enum SubCommand {
|
|
Peer(PeerArgs),
|
|
Connector(ConnectorArgs),
|
|
Stun,
|
|
Route,
|
|
PeerCenter,
|
|
VpnPortal,
|
|
}
|
|
|
|
#[derive(Args, Debug)]
|
|
struct PeerArgs {
|
|
#[arg(short, long)]
|
|
ipv4: Option<String>,
|
|
|
|
#[arg(short, long)]
|
|
peers: Vec<String>,
|
|
|
|
#[command(subcommand)]
|
|
sub_command: Option<PeerSubCommand>,
|
|
}
|
|
|
|
#[derive(Args, Debug)]
|
|
struct PeerListArgs {
|
|
#[arg(short, long)]
|
|
verbose: bool,
|
|
}
|
|
|
|
#[derive(Subcommand, Debug)]
|
|
enum PeerSubCommand {
|
|
Add,
|
|
Remove,
|
|
List(PeerListArgs),
|
|
}
|
|
|
|
#[derive(Args, Debug)]
|
|
struct ConnectorArgs {
|
|
#[arg(short, long)]
|
|
ipv4: Option<String>,
|
|
|
|
#[arg(short, long)]
|
|
peers: Vec<String>,
|
|
|
|
#[command(subcommand)]
|
|
sub_command: Option<ConnectorSubCommand>,
|
|
}
|
|
|
|
#[derive(Subcommand, Debug)]
|
|
enum ConnectorSubCommand {
|
|
Add,
|
|
Remove,
|
|
List,
|
|
}
|
|
|
|
#[derive(thiserror::Error, Debug)]
|
|
enum Error {
|
|
#[error("tonic transport error")]
|
|
TonicTransportError(#[from] tonic::transport::Error),
|
|
#[error("tonic rpc error")]
|
|
TonicRpcError(#[from] tonic::Status),
|
|
}
|
|
|
|
struct CommandHandler {
|
|
addr: String,
|
|
}
|
|
|
|
impl CommandHandler {
|
|
async fn get_peer_manager_client(
|
|
&self,
|
|
) -> Result<PeerManageRpcClient<tonic::transport::Channel>, Error> {
|
|
Ok(PeerManageRpcClient::connect(self.addr.clone()).await?)
|
|
}
|
|
|
|
async fn get_connector_manager_client(
|
|
&self,
|
|
) -> Result<ConnectorManageRpcClient<tonic::transport::Channel>, Error> {
|
|
Ok(ConnectorManageRpcClient::connect(self.addr.clone()).await?)
|
|
}
|
|
|
|
async fn get_peer_center_client(
|
|
&self,
|
|
) -> Result<PeerCenterRpcClient<tonic::transport::Channel>, Error> {
|
|
Ok(PeerCenterRpcClient::connect(self.addr.clone()).await?)
|
|
}
|
|
|
|
async fn get_vpn_portal_client(
|
|
&self,
|
|
) -> Result<VpnPortalRpcClient<tonic::transport::Channel>, Error> {
|
|
Ok(VpnPortalRpcClient::connect(self.addr.clone()).await?)
|
|
}
|
|
|
|
async fn list_peers(&self) -> Result<ListPeerResponse, Error> {
|
|
let mut client = self.get_peer_manager_client().await?;
|
|
let request = tonic::Request::new(ListPeerRequest::default());
|
|
let response = client.list_peer(request).await?;
|
|
Ok(response.into_inner())
|
|
}
|
|
|
|
async fn list_routes(&self) -> Result<ListRouteResponse, Error> {
|
|
let mut client = self.get_peer_manager_client().await?;
|
|
let request = tonic::Request::new(ListRouteRequest::default());
|
|
let response = client.list_route(request).await?;
|
|
Ok(response.into_inner())
|
|
}
|
|
|
|
async fn list_peer_route_pair(&self) -> Result<Vec<PeerRoutePair>, Error> {
|
|
let peers = self.list_peers().await?.peer_infos;
|
|
let routes = self.list_routes().await?.routes;
|
|
Ok(list_peer_route_pair(peers, routes))
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
fn handle_peer_add(&self, _args: PeerArgs) {
|
|
println!("add peer");
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
fn handle_peer_remove(&self, _args: PeerArgs) {
|
|
println!("remove peer");
|
|
}
|
|
|
|
async fn handle_peer_list(&self, _args: &PeerArgs) -> Result<(), Error> {
|
|
#[derive(tabled::Tabled)]
|
|
struct PeerTableItem {
|
|
ipv4: String,
|
|
hostname: String,
|
|
cost: String,
|
|
lat_ms: String,
|
|
loss_rate: String,
|
|
rx_bytes: String,
|
|
tx_bytes: String,
|
|
tunnel_proto: String,
|
|
nat_type: String,
|
|
id: String,
|
|
}
|
|
|
|
impl From<PeerRoutePair> for PeerTableItem {
|
|
fn from(p: PeerRoutePair) -> Self {
|
|
PeerTableItem {
|
|
ipv4: p.route.ipv4_addr.clone(),
|
|
hostname: p.route.hostname.clone(),
|
|
cost: cost_to_str(p.route.cost),
|
|
lat_ms: float_to_str(p.get_latency_ms().unwrap_or(0.0), 3),
|
|
loss_rate: float_to_str(p.get_loss_rate().unwrap_or(0.0), 3),
|
|
rx_bytes: format_size(p.get_rx_bytes().unwrap_or(0), humansize::DECIMAL),
|
|
tx_bytes: format_size(p.get_tx_bytes().unwrap_or(0), humansize::DECIMAL),
|
|
tunnel_proto: p.get_conn_protos().unwrap_or(vec![]).join(",").to_string(),
|
|
nat_type: p.get_udp_nat_type(),
|
|
id: p.route.peer_id.to_string(),
|
|
}
|
|
}
|
|
}
|
|
|
|
let mut items: Vec<PeerTableItem> = vec![];
|
|
let peer_routes = self.list_peer_route_pair().await?;
|
|
for p in peer_routes {
|
|
items.push(p.into());
|
|
}
|
|
|
|
println!(
|
|
"{}",
|
|
tabled::Table::new(items).with(Style::modern()).to_string()
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn handle_route_list(&self) -> Result<(), Error> {
|
|
#[derive(tabled::Tabled)]
|
|
struct RouteTableItem {
|
|
ipv4: String,
|
|
hostname: String,
|
|
proxy_cidrs: String,
|
|
next_hop_ipv4: String,
|
|
next_hop_hostname: String,
|
|
next_hop_lat: f64,
|
|
cost: i32,
|
|
}
|
|
|
|
let mut items: Vec<RouteTableItem> = vec![];
|
|
let peer_routes = self.list_peer_route_pair().await?;
|
|
for p in peer_routes.iter() {
|
|
let Some(next_hop_pair) = peer_routes
|
|
.iter()
|
|
.find(|pair| pair.route.peer_id == p.route.next_hop_peer_id)
|
|
else {
|
|
continue;
|
|
};
|
|
|
|
if p.route.cost == 1 {
|
|
items.push(RouteTableItem {
|
|
ipv4: p.route.ipv4_addr.clone(),
|
|
hostname: p.route.hostname.clone(),
|
|
proxy_cidrs: p.route.proxy_cidrs.clone().join(",").to_string(),
|
|
next_hop_ipv4: "DIRECT".to_string(),
|
|
next_hop_hostname: "".to_string(),
|
|
next_hop_lat: next_hop_pair.get_latency_ms().unwrap_or(0.0),
|
|
cost: p.route.cost,
|
|
});
|
|
} else {
|
|
items.push(RouteTableItem {
|
|
ipv4: p.route.ipv4_addr.clone(),
|
|
hostname: p.route.hostname.clone(),
|
|
proxy_cidrs: p.route.proxy_cidrs.clone().join(",").to_string(),
|
|
next_hop_ipv4: next_hop_pair.route.ipv4_addr.clone(),
|
|
next_hop_hostname: next_hop_pair.route.hostname.clone(),
|
|
next_hop_lat: next_hop_pair.get_latency_ms().unwrap_or(0.0),
|
|
cost: p.route.cost,
|
|
});
|
|
}
|
|
}
|
|
|
|
println!(
|
|
"{}",
|
|
tabled::Table::new(items).with(Style::modern()).to_string()
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
async fn handle_connector_list(&self) -> Result<(), Error> {
|
|
let mut client = self.get_connector_manager_client().await?;
|
|
let request = tonic::Request::new(ListConnectorRequest::default());
|
|
let response = client.list_connector(request).await?;
|
|
println!("response: {:#?}", response.into_inner());
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[tokio::main]
|
|
#[tracing::instrument]
|
|
async fn main() -> Result<(), Error> {
|
|
let cli = Cli::parse();
|
|
let handler = CommandHandler {
|
|
addr: format!("http://{}:{}", cli.rpc_portal.ip(), cli.rpc_portal.port()),
|
|
};
|
|
|
|
match cli.sub_command {
|
|
SubCommand::Peer(peer_args) => match &peer_args.sub_command {
|
|
Some(PeerSubCommand::Add) => {
|
|
println!("add peer");
|
|
}
|
|
Some(PeerSubCommand::Remove) => {
|
|
println!("remove peer");
|
|
}
|
|
Some(PeerSubCommand::List(arg)) => {
|
|
if arg.verbose {
|
|
println!("{:#?}", handler.list_peer_route_pair().await?);
|
|
} else {
|
|
handler.handle_peer_list(&peer_args).await?;
|
|
}
|
|
}
|
|
None => {
|
|
handler.handle_peer_list(&peer_args).await?;
|
|
}
|
|
},
|
|
SubCommand::Connector(conn_args) => match conn_args.sub_command {
|
|
Some(ConnectorSubCommand::Add) => {
|
|
println!("add connector");
|
|
}
|
|
Some(ConnectorSubCommand::Remove) => {
|
|
println!("remove connector");
|
|
}
|
|
Some(ConnectorSubCommand::List) => {
|
|
handler.handle_connector_list().await?;
|
|
}
|
|
None => {
|
|
handler.handle_connector_list().await?;
|
|
}
|
|
},
|
|
SubCommand::Route => {
|
|
handler.handle_route_list().await?;
|
|
}
|
|
SubCommand::Stun => {
|
|
let stun = UdpNatTypeDetector::new(StunInfoCollector::get_default_servers());
|
|
println!("udp type: {:?}", stun.get_udp_nat_type(0).await);
|
|
}
|
|
SubCommand::PeerCenter => {
|
|
let mut peer_center_client = handler.get_peer_center_client().await?;
|
|
let resp = peer_center_client
|
|
.get_global_peer_map(GetGlobalPeerMapRequest::default())
|
|
.await?
|
|
.into_inner();
|
|
|
|
#[derive(tabled::Tabled)]
|
|
struct PeerCenterTableItem {
|
|
node_id: String,
|
|
direct_peers: String,
|
|
}
|
|
|
|
let mut table_rows = vec![];
|
|
for (k, v) in resp.global_peer_map.iter() {
|
|
let node_id = k;
|
|
let direct_peers = v
|
|
.direct_peers
|
|
.iter()
|
|
.map(|(k, v)| format!("{}: {:?}ms", k, v.latency_ms,))
|
|
.collect::<Vec<_>>();
|
|
table_rows.push(PeerCenterTableItem {
|
|
node_id: node_id.to_string(),
|
|
direct_peers: direct_peers.join("\n"),
|
|
});
|
|
}
|
|
|
|
println!(
|
|
"{}",
|
|
tabled::Table::new(table_rows)
|
|
.with(Style::modern())
|
|
.to_string()
|
|
);
|
|
}
|
|
SubCommand::VpnPortal => {
|
|
let mut vpn_portal_client = handler.get_vpn_portal_client().await?;
|
|
let resp = vpn_portal_client
|
|
.get_vpn_portal_info(GetVpnPortalInfoRequest::default())
|
|
.await?
|
|
.into_inner()
|
|
.vpn_portal_info
|
|
.unwrap_or_default();
|
|
println!("portal_name: {}", resp.vpn_type);
|
|
println!(
|
|
r#"
|
|
############### client_config_start ###############
|
|
{}
|
|
############### client_config_end ###############
|
|
"#,
|
|
resp.client_config
|
|
);
|
|
println!("connected_clients:\n{:#?}", resp.connected_clients);
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|