web3-proxy/web3_proxy/src/bin/web3_proxy_cli.rs

459 lines
17 KiB
Rust
Raw Normal View History

2023-01-18 08:26:10 +03:00
use anyhow::Context;
use argh::FromArgs;
2023-01-20 05:08:53 +03:00
use ethers::types::U256;
use pagerduty_rs::eventsv2async::EventsV2 as PagerdutyAsyncEventsV2;
2023-01-24 11:05:31 +03:00
use pagerduty_rs::eventsv2sync::EventsV2 as PagerdutySyncEventsV2;
use sentry::types::Dsn;
2023-01-18 08:26:10 +03:00
use std::{
2023-06-29 06:38:28 +03:00
borrow::Cow,
2023-01-24 11:05:31 +03:00
fs, panic,
2023-01-18 08:26:10 +03:00
path::Path,
sync::atomic::{self, AtomicUsize},
};
use tokio::runtime;
use tracing::{info, warn};
use tracing_subscriber::{prelude::*, EnvFilter};
use web3_proxy::pagerduty::panic_handler;
use web3_proxy::sub_commands;
2022-11-14 22:35:33 +03:00
use web3_proxy::{
app::APP_USER_AGENT,
2022-11-14 22:35:33 +03:00
config::TopConfig,
relational_db::{get_db, get_migrated_db},
2022-11-14 22:35:33 +03:00
};
#[cfg(feature = "mimalloc")]
use mimalloc::MiMalloc;
#[cfg(feature = "mimalloc")]
#[global_allocator]
static GLOBAL: MiMalloc = MiMalloc;
2023-01-18 08:26:10 +03:00
#[cfg(feature = "deadlock")]
2023-03-03 04:50:20 +03:00
use {parking_lot::deadlock, std::thread, tokio::time::Duration};
2023-01-18 08:26:10 +03:00
#[derive(Debug, FromArgs)]
2022-08-06 08:46:33 +03:00
/// Command line interface for admins to interact with web3_proxy
2023-01-18 08:26:10 +03:00
pub struct Web3ProxyCli {
/// path to the application config (only required for some commands; defaults to dev config).
2022-11-14 22:35:33 +03:00
#[argh(option)]
pub config: Option<String>,
2023-01-18 08:26:10 +03:00
/// number of worker threads. Defaults to the number of logical processors
#[argh(option, default = "0")]
pub workers: usize,
/// if no config, what database the client should connect to (only required for some commands; Defaults to dev db)
#[argh(option)]
pub db_url: Option<String>,
/// if no config, what sentry url should the client should connect to
#[argh(option)]
pub sentry_url: Option<Dsn>,
/// this one cli can do multiple things
#[argh(subcommand)]
sub_command: SubCommand,
}
#[derive(FromArgs, PartialEq, Debug)]
#[argh(subcommand)]
enum SubCommand {
ChangeAdminStatus(sub_commands::ChangeAdminStatusSubCommand),
ChangeUserAddress(sub_commands::ChangeUserAddressSubCommand),
ChangeUserTier(sub_commands::ChangeUserTierSubCommand),
ChangeUserTierByAddress(sub_commands::ChangeUserTierByAddressSubCommand),
ChangeUserTierByKey(sub_commands::ChangeUserTierByKeySubCommand),
CheckConfig(sub_commands::CheckConfigSubCommand),
CountUsers(sub_commands::CountUsersSubCommand),
CreateKey(sub_commands::CreateKeySubCommand),
CreateUser(sub_commands::CreateUserSubCommand),
DropMigrationLock(sub_commands::DropMigrationLockSubCommand),
MigrateStatsToV2(sub_commands::MigrateStatsToV2SubCommand),
Pagerduty(sub_commands::PagerdutySubCommand),
PopularityContest(sub_commands::PopularityContestSubCommand),
Proxyd(sub_commands::ProxydSubCommand),
RpcAccounting(sub_commands::RpcAccountingSubCommand),
SearchKafka(sub_commands::SearchKafkaSubCommand),
Sentryd(sub_commands::SentrydSubCommand),
TransferKey(sub_commands::TransferKeySubCommand),
UserExport(sub_commands::UserExportSubCommand),
UserImport(sub_commands::UserImportSubCommand),
2022-11-22 08:42:02 +03:00
// TODO: sub command to downgrade migrations? sea-orm has this but doing downgrades here would be easier+safer
// TODO: sub command to add new api keys to an existing user?
// TODO: sub command to change a user's tier
}
2023-01-18 08:26:10 +03:00
fn main() -> anyhow::Result<()> {
// this probably won't matter for us in docker, but better safe than sorry
fdlimit::raise_fd_limit();
2023-01-18 08:26:10 +03:00
#[cfg(feature = "deadlock")]
{
// spawn a thread for deadlock detection
thread::spawn(move || loop {
thread::sleep(Duration::from_secs(10));
let deadlocks = deadlock::check_deadlock();
if deadlocks.is_empty() {
continue;
}
println!("{} deadlocks detected", deadlocks.len());
for (i, threads) in deadlocks.iter().enumerate() {
println!("Deadlock #{}", i);
for t in threads {
println!("Thread Id {:#?}", t.thread_id());
println!("{:#?}", t.backtrace());
}
}
});
}
// TODO: can we run tokio_console and have our normal logs?
#[cfg(feature = "tokio_console")]
console_subscriber::init();
// if RUST_LOG isn't set, configure a default
#[cfg(not(feature = "tokio_console"))]
2023-06-27 07:08:48 +03:00
let mut rust_log = match std::env::var("RUST_LOG") {
Ok(x) => x,
2023-01-25 07:44:17 +03:00
Err(_) => match std::env::var("WEB3_PROXY_TRACE").map(|x| x == "true") {
Ok(true) => {
vec![
"info",
"ethers=debug",
2023-04-19 06:50:35 +03:00
"ethers_providers::rpc=off",
2023-04-20 19:17:18 +03:00
"ethers_providers=debug",
"quick_cache_ttl=debug",
2023-01-25 07:44:17 +03:00
"redis_rate_limit=debug",
"web3_proxy::rpcs::blockchain=info",
"web3_proxy::rpcs::request=debug",
2023-04-20 19:17:18 +03:00
// "web3_proxy::stats::influxdb_queries=trace",
"web3_proxy=trace",
"web3_proxy_cli=trace",
2023-01-25 07:44:17 +03:00
]
}
_ => {
vec![
"info",
"ethers=debug",
2023-04-19 07:19:55 +03:00
"ethers_providers::rpc=off",
2023-04-20 19:17:18 +03:00
"ethers_providers=error",
"quick_cache_ttl=info",
2023-01-25 07:44:17 +03:00
"redis_rate_limit=debug",
"web3_proxy::rpcs::consensus=info",
2023-04-20 19:17:18 +03:00
// "web3_proxy::stats::influxdb_queries=trace",
2023-01-25 07:44:17 +03:00
"web3_proxy=debug",
"web3_proxy_cli=debug",
]
}
}
.join(","),
};
2023-06-27 07:08:48 +03:00
if let Ok(extra_rust_log) = std::env::var("EXTRA_RUST_LOG") {
rust_log.push(',');
rust_log.push_str(&extra_rust_log);
}
2023-01-18 08:26:10 +03:00
let mut cli_config: Web3ProxyCli = argh::from_env();
2023-01-23 04:48:33 +03:00
if cli_config.config.is_none() && cli_config.db_url.is_none() && cli_config.sentry_url.is_none()
{
// TODO: default to example.toml if development.toml doesn't exist
2023-01-18 08:26:10 +03:00
info!("defaulting to development config");
cli_config.config = Some("./config/development.toml".to_string());
}
let (top_config, top_config_path) = if let Some(top_config_path) = cli_config.config.clone() {
2023-01-23 04:48:33 +03:00
let top_config_path = Path::new(&top_config_path)
.canonicalize()
.context(format!("checking for config at {}", top_config_path))?;
2023-01-20 05:08:53 +03:00
let top_config: String = fs::read_to_string(top_config_path.clone())?;
2023-01-23 04:48:33 +03:00
let mut top_config: TopConfig = toml::from_str(&top_config)?;
2022-11-14 22:35:33 +03:00
2023-01-23 04:48:33 +03:00
// TODO: this doesn't seem to do anything
proctitle::set_title(format!("web3_proxy-{}", top_config.app.chain_id));
2022-11-14 22:35:33 +03:00
2023-01-23 04:48:33 +03:00
if cli_config.db_url.is_none() {
cli_config.db_url = top_config.app.db_url.clone();
}
2023-01-20 05:08:53 +03:00
2023-01-23 04:48:33 +03:00
if let Some(sentry_url) = top_config.app.sentry_url.clone() {
cli_config.sentry_url = Some(sentry_url);
}
2023-01-23 04:19:31 +03:00
2023-01-23 04:48:33 +03:00
if top_config.app.chain_id == 137 {
// TODO: these numbers are arbitrary. i think the maticnetwork/erigon fork has a bug
2023-01-23 04:48:33 +03:00
if top_config.app.gas_increase_min.is_none() {
top_config.app.gas_increase_min = Some(U256::from(40_000));
2023-01-20 05:08:53 +03:00
}
2023-01-18 08:26:10 +03:00
2023-01-23 04:48:33 +03:00
if top_config.app.gas_increase_percent.is_none() {
top_config.app.gas_increase_percent = Some(U256::from(40));
2023-01-23 04:48:33 +03:00
}
2023-01-23 04:19:31 +03:00
}
2023-01-23 04:48:33 +03:00
(Some(top_config), Some(top_config_path))
2022-11-14 22:35:33 +03:00
} else {
(None, None)
2022-11-14 22:35:33 +03:00
};
2023-06-29 06:38:28 +03:00
let sentry_env = std::env::var("SENTRY_ENV")
.map(Cow::from)
.unwrap_or("production".into());
// set up sentry connection
// this guard does nothing is sentry_url is None
let _sentry_guard = sentry::init(sentry::ClientOptions {
dsn: cli_config.sentry_url.clone(),
release: sentry::release_name!(),
2023-06-29 06:38:28 +03:00
environment: Some(sentry_env),
2023-07-06 08:29:40 +03:00
// TODO: make sample_rate configurable!
sample_rate: 1.0,
// TODO: make traces_sample_rate configurable! (its not yet available for our rust project)
traces_sample_rate: 0.0,
..Default::default()
});
2023-06-29 04:36:17 +03:00
sentry::configure_scope(|scope| {
2023-06-29 06:38:28 +03:00
let chain_id = top_config.as_ref().map(|x| x.app.chain_id).unwrap_or(0);
scope.set_tag("chain_id", chain_id);
if let Ok(llama_env) = std::env::var("LLAMA_ENV") {
scope.set_tag("llama_env", llama_env);
}
2023-06-29 04:36:17 +03:00
});
tracing_subscriber::fmt()
// create a subscriber that uses the RUST_LOG env var for filtering levels
.with_env_filter(EnvFilter::builder().parse(rust_log)?)
// .with_env_filter(EnvFilter::from_default_env())
// print a pretty output to the terminal
// TODO: this might be too verbose. have a config setting for this, too
.pretty()
// the root subscriber is ready
.finish()
// attach tracing layer.
.with(sentry_tracing::layer())
// register as the default global subscriber
.init();
info!(%APP_USER_AGENT);
2023-01-18 07:18:18 +03:00
2023-01-24 11:05:31 +03:00
// optionally connect to pagerduty
// TODO: fix this nested result
// TODO: get this out of the config file instead of the environment
2023-01-24 11:05:31 +03:00
let (pagerduty_async, pagerduty_sync) = if let Ok(pagerduty_key) =
std::env::var("PAGERDUTY_INTEGRATION_KEY")
{
let pagerduty_async =
PagerdutyAsyncEventsV2::new(pagerduty_key.clone(), Some(APP_USER_AGENT.to_string()))?;
let pagerduty_sync =
PagerdutySyncEventsV2::new(pagerduty_key, Some(APP_USER_AGENT.to_string()))?;
(Some(pagerduty_async), Some(pagerduty_sync))
} else {
info!("No PAGERDUTY_INTEGRATION_KEY");
(None, None)
};
// panic handler that sends to pagerduty.
// TODO: use the sentry handler if no pager duty. use default if no sentry
2023-01-24 11:05:31 +03:00
if let Some(pagerduty_sync) = pagerduty_sync {
let top_config = top_config.clone();
2023-01-24 11:05:31 +03:00
panic::set_hook(Box::new(move |x| {
panic_handler(top_config.clone(), &pagerduty_sync, x);
2023-01-24 11:05:31 +03:00
}));
}
2023-01-18 08:26:10 +03:00
// set up tokio's async runtime
let mut rt_builder = runtime::Builder::new_multi_thread();
2022-11-30 00:29:17 +03:00
2023-01-24 08:08:24 +03:00
rt_builder.enable_all();
if cli_config.workers > 0 {
rt_builder.worker_threads(cli_config.workers);
}
if let Some(ref top_config) = top_config {
2023-01-18 08:26:10 +03:00
let chain_id = top_config.app.chain_id;
2022-11-26 07:25:53 +03:00
2023-01-24 08:08:24 +03:00
rt_builder.thread_name_fn(move || {
2023-01-18 08:26:10 +03:00
static ATOMIC_ID: AtomicUsize = AtomicUsize::new(0);
// TODO: what ordering? i think we want seqcst so that these all happen in order, but that might be stricter than we really need
let worker_id = ATOMIC_ID.fetch_add(1, atomic::Ordering::SeqCst);
// TODO: i think these max at 15 characters
format!("web3-{}-{}", chain_id, worker_id)
});
}
2023-01-18 08:26:10 +03:00
// start tokio's async runtime
let rt = rt_builder.build()?;
2022-11-16 10:19:42 +03:00
2023-01-18 08:26:10 +03:00
let num_workers = rt.metrics().num_workers();
info!("num_workers: {}", num_workers);
2023-01-18 08:26:10 +03:00
rt.block_on(async {
match cli_config.sub_command {
2023-03-06 07:39:35 +03:00
SubCommand::ChangeAdminStatus(x) => {
let db_url = cli_config.db_url.expect(
"'--config' (with a db) or '--db-url' is required to run change_admin_status",
);
2023-01-18 08:26:10 +03:00
let db_conn = get_db(db_url, 1, 1).await?;
2023-01-18 08:26:10 +03:00
x.main(&db_conn).await
}
2023-03-06 07:39:35 +03:00
SubCommand::ChangeUserAddress(x) => {
2023-02-19 23:33:33 +03:00
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run change_user_addres");
2023-02-19 23:33:33 +03:00
let db_conn = get_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
2023-01-18 08:26:10 +03:00
SubCommand::ChangeUserTier(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run change_user_tier");
2023-01-18 08:26:10 +03:00
let db_conn = get_db(db_url, 1, 1).await?;
2023-01-12 04:36:23 +03:00
2023-01-18 08:26:10 +03:00
x.main(&db_conn).await
}
SubCommand::ChangeUserTierByAddress(x) => {
2023-03-06 07:39:35 +03:00
let db_url = cli_config.db_url.expect(
"'--config' (with a db) or '--db-url' is required to run change_user_tier_by_address",
);
2023-01-10 04:50:09 +03:00
2023-01-18 08:26:10 +03:00
let db_conn = get_db(db_url, 1, 1).await?;
2023-01-18 08:26:10 +03:00
x.main(&db_conn).await
}
SubCommand::ChangeUserTierByKey(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run change_user_tier_by_key");
2023-01-18 08:26:10 +03:00
let db_conn = get_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
SubCommand::CheckConfig(x) => x.main().await,
2023-01-26 04:58:10 +03:00
SubCommand::CreateKey(x) => {
let db_url = cli_config
.db_url
.expect("'--config' (with a db) or '--db-url' is required to run create a key");
let db_conn = get_migrated_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
2023-01-18 08:26:10 +03:00
SubCommand::CreateUser(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run create_user");
2023-01-18 08:26:10 +03:00
let db_conn = get_migrated_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
SubCommand::CountUsers(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run count_users");
2023-01-18 08:26:10 +03:00
let db_conn = get_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
SubCommand::Proxyd(x) => {
let top_config = top_config.expect("--config is required to run proxyd");
let top_config_path =
top_config_path.expect("path must be set if top_config exists");
2023-01-18 08:26:10 +03:00
x.main(top_config, top_config_path, num_workers).await
2023-01-18 08:26:10 +03:00
}
SubCommand::DropMigrationLock(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run drop_migration_lock");
2023-01-18 08:26:10 +03:00
2023-03-06 07:39:35 +03:00
// very intentionally, do NOT run migrations here. that would wait forever if the migration lock is abandoned
2023-01-18 08:26:10 +03:00
let db_conn = get_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
SubCommand::MigrateStatsToV2(x) => {
let top_config = top_config.expect("--config is required to run the migration from stats-mysql to stats-influx");
// let top_config_path =
// top_config_path.expect("path must be set if top_config exists");
let db_url = cli_config
.db_url
.expect("'--config' (with a db) or '--db-url' is required to run the migration from stats-mysql to stats-influx");
let db_conn = get_db(db_url, 1, 1).await?;
x.main(top_config, &db_conn).await
}
2023-01-24 11:05:31 +03:00
SubCommand::Pagerduty(x) => {
if cli_config.sentry_url.is_none() {
warn!("sentry_url is not set! Logs will only show in this console");
}
x.main(pagerduty_async, top_config).await
}
2023-02-03 00:44:57 +03:00
SubCommand::PopularityContest(x) => x.main().await,
2023-03-06 07:39:35 +03:00
SubCommand::SearchKafka(x) => x.main(top_config.unwrap()).await,
2023-01-18 08:26:10 +03:00
SubCommand::Sentryd(x) => {
if cli_config.sentry_url.is_none() {
warn!("sentry_url is not set! Logs will only show in this console");
}
2023-01-24 15:51:55 +03:00
x.main(pagerduty_async, top_config).await
2023-01-18 08:26:10 +03:00
}
SubCommand::RpcAccounting(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run rpc_accounting");
2023-01-18 08:26:10 +03:00
let db_conn = get_migrated_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
SubCommand::TransferKey(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run transfer_key");
2023-01-18 08:26:10 +03:00
let db_conn = get_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
SubCommand::UserExport(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run user_export");
2023-01-18 08:26:10 +03:00
let db_conn = get_migrated_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
SubCommand::UserImport(x) => {
let db_url = cli_config
.db_url
2023-03-06 07:39:35 +03:00
.expect("'--config' (with a db) or '--db-url' is required to run user_import");
2023-01-18 08:26:10 +03:00
let db_conn = get_migrated_db(db_url, 1, 1).await?;
x.main(&db_conn).await
}
}
2023-01-18 08:26:10 +03:00
})
}