2020-04-19 15:15:48 +00:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
|
|
|
use crate::data::*;
|
|
|
|
use crate::error::Error;
|
|
|
|
use crate::server::Garage;
|
2020-04-23 17:05:46 +00:00
|
|
|
|
2020-04-19 15:15:48 +00:00
|
|
|
use crate::table::*;
|
|
|
|
|
2020-04-23 17:05:46 +00:00
|
|
|
use crate::rpc::rpc_client::*;
|
|
|
|
use crate::rpc::rpc_server::*;
|
|
|
|
|
|
|
|
use crate::store::bucket_table::*;
|
2020-04-23 18:36:12 +00:00
|
|
|
use crate::store::repair::Repair;
|
2020-04-23 17:05:46 +00:00
|
|
|
|
|
|
|
use crate::*;
|
2020-04-19 15:15:48 +00:00
|
|
|
|
2020-04-19 20:36:36 +00:00
|
|
|
pub const ADMIN_RPC_TIMEOUT: Duration = Duration::from_secs(30);
|
2020-04-19 15:15:48 +00:00
|
|
|
pub const ADMIN_RPC_PATH: &str = "_admin";
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub enum AdminRPC {
|
|
|
|
BucketOperation(BucketOperation),
|
2020-04-23 18:36:12 +00:00
|
|
|
KeyOperation(KeyOperation),
|
2020-04-21 16:40:17 +00:00
|
|
|
LaunchRepair(RepairOpt),
|
2020-04-19 15:15:48 +00:00
|
|
|
|
|
|
|
// Replies
|
2020-04-19 17:59:59 +00:00
|
|
|
Ok(String),
|
2020-04-19 15:15:48 +00:00
|
|
|
BucketList(Vec<String>),
|
|
|
|
BucketInfo(Bucket),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RpcMessage for AdminRPC {}
|
|
|
|
|
|
|
|
pub struct AdminRpcHandler {
|
|
|
|
garage: Arc<Garage>,
|
2020-04-19 20:36:36 +00:00
|
|
|
rpc_client: Arc<RpcClient<AdminRPC>>,
|
2020-04-19 15:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AdminRpcHandler {
|
|
|
|
pub fn new(garage: Arc<Garage>) -> Arc<Self> {
|
2020-04-19 20:36:36 +00:00
|
|
|
let rpc_client = garage.system.clone().rpc_client::<AdminRPC>(ADMIN_RPC_PATH);
|
|
|
|
Arc::new(Self { garage, rpc_client })
|
2020-04-19 15:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn register_handler(self: Arc<Self>, rpc_server: &mut RpcServer) {
|
|
|
|
rpc_server.add_handler::<AdminRPC, _, _>(ADMIN_RPC_PATH.to_string(), move |msg, _addr| {
|
|
|
|
let self2 = self.clone();
|
|
|
|
async move {
|
|
|
|
match msg {
|
|
|
|
AdminRPC::BucketOperation(bo) => self2.handle_bucket_cmd(bo).await,
|
2020-04-23 18:36:12 +00:00
|
|
|
AdminRPC::KeyOperation(ko) => self2.handle_key_cmd(ko).await,
|
2020-04-21 16:40:17 +00:00
|
|
|
AdminRPC::LaunchRepair(opt) => self2.handle_launch_repair(opt).await,
|
2020-04-21 16:45:32 +00:00
|
|
|
_ => Err(Error::BadRequest(format!("Invalid RPC"))),
|
2020-04-19 15:15:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn handle_bucket_cmd(&self, cmd: BucketOperation) -> Result<AdminRPC, Error> {
|
|
|
|
match cmd {
|
|
|
|
BucketOperation::List => {
|
|
|
|
let bucket_names = self
|
|
|
|
.garage
|
|
|
|
.bucket_table
|
|
|
|
.get_range(&EmptyKey, None, Some(()), 10000)
|
|
|
|
.await?
|
|
|
|
.iter()
|
|
|
|
.map(|b| b.name.to_string())
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
Ok(AdminRPC::BucketList(bucket_names))
|
|
|
|
}
|
|
|
|
BucketOperation::Info(query) => {
|
|
|
|
let bucket = self
|
|
|
|
.garage
|
|
|
|
.bucket_table
|
|
|
|
.get(&EmptyKey, &query.name)
|
|
|
|
.await?
|
|
|
|
.filter(|b| !b.deleted);
|
|
|
|
match bucket {
|
|
|
|
Some(b) => Ok(AdminRPC::BucketInfo(b)),
|
2020-04-21 16:45:32 +00:00
|
|
|
None => Err(Error::BadRequest(format!(
|
|
|
|
"Bucket {} not found",
|
|
|
|
query.name
|
|
|
|
))),
|
2020-04-19 15:15:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
BucketOperation::Create(query) => {
|
|
|
|
let bucket = self.garage.bucket_table.get(&EmptyKey, &query.name).await?;
|
|
|
|
if bucket.as_ref().filter(|b| !b.deleted).is_some() {
|
2020-04-21 16:45:32 +00:00
|
|
|
return Err(Error::BadRequest(format!(
|
2020-04-19 15:15:48 +00:00
|
|
|
"Bucket {} already exists",
|
|
|
|
query.name
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
let new_time = match bucket {
|
|
|
|
Some(b) => std::cmp::max(b.timestamp + 1, now_msec()),
|
|
|
|
None => now_msec(),
|
|
|
|
};
|
|
|
|
self.garage
|
|
|
|
.bucket_table
|
2020-04-23 18:16:33 +00:00
|
|
|
.insert(&Bucket::new(query.name.clone(), new_time, false, vec![]))
|
2020-04-19 15:15:48 +00:00
|
|
|
.await?;
|
2020-04-19 17:59:59 +00:00
|
|
|
Ok(AdminRPC::Ok(format!("Bucket {} was created.", query.name)))
|
2020-04-19 15:15:48 +00:00
|
|
|
}
|
|
|
|
BucketOperation::Delete(query) => {
|
|
|
|
let bucket = match self
|
|
|
|
.garage
|
|
|
|
.bucket_table
|
|
|
|
.get(&EmptyKey, &query.name)
|
|
|
|
.await?
|
|
|
|
.filter(|b| !b.deleted)
|
|
|
|
{
|
|
|
|
None => {
|
2020-04-21 16:45:32 +00:00
|
|
|
return Err(Error::BadRequest(format!(
|
2020-04-19 15:15:48 +00:00
|
|
|
"Bucket {} does not exist",
|
|
|
|
query.name
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
Some(b) => b,
|
|
|
|
};
|
|
|
|
let objects = self
|
|
|
|
.garage
|
|
|
|
.object_table
|
|
|
|
.get_range(&query.name, None, Some(()), 10)
|
|
|
|
.await?;
|
|
|
|
if !objects.is_empty() {
|
2020-04-21 16:45:32 +00:00
|
|
|
return Err(Error::BadRequest(format!(
|
2020-04-19 15:15:48 +00:00
|
|
|
"Bucket {} is not empty",
|
|
|
|
query.name
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
if !query.yes {
|
2020-04-21 16:45:32 +00:00
|
|
|
return Err(Error::BadRequest(format!(
|
2020-04-19 15:15:48 +00:00
|
|
|
"Add --yes flag to really perform this operation"
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
self.garage
|
|
|
|
.bucket_table
|
2020-04-23 18:16:33 +00:00
|
|
|
.insert(&Bucket::new(
|
|
|
|
query.name.clone(),
|
|
|
|
std::cmp::max(bucket.timestamp + 1, now_msec()),
|
|
|
|
true,
|
|
|
|
vec![],
|
|
|
|
))
|
2020-04-19 15:15:48 +00:00
|
|
|
.await?;
|
2020-04-19 17:59:59 +00:00
|
|
|
Ok(AdminRPC::Ok(format!("Bucket {} was deleted.", query.name)))
|
2020-04-19 15:15:48 +00:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
// TODO
|
|
|
|
Err(Error::Message(format!("Not implemented")))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-19 20:36:36 +00:00
|
|
|
|
2020-04-23 18:36:12 +00:00
|
|
|
async fn handle_key_cmd(&self, cmd: KeyOperation) -> Result<AdminRPC, Error> {
|
|
|
|
Err(Error::Message(format!("Not implemented")))
|
|
|
|
}
|
|
|
|
|
2020-04-21 16:40:17 +00:00
|
|
|
async fn handle_launch_repair(self: &Arc<Self>, opt: RepairOpt) -> Result<AdminRPC, Error> {
|
|
|
|
if !opt.yes {
|
2020-04-21 16:45:32 +00:00
|
|
|
return Err(Error::BadRequest(format!(
|
2020-04-21 16:40:17 +00:00
|
|
|
"Please provide the --yes flag to initiate repair operations."
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
if opt.all_nodes {
|
|
|
|
let mut opt_to_send = opt.clone();
|
|
|
|
opt_to_send.all_nodes = false;
|
|
|
|
|
2020-04-19 20:36:36 +00:00
|
|
|
let mut failures = vec![];
|
|
|
|
let ring = self.garage.system.ring.borrow().clone();
|
|
|
|
for node in ring.config.members.keys() {
|
|
|
|
if self
|
|
|
|
.rpc_client
|
2020-04-21 16:40:17 +00:00
|
|
|
.call(
|
2020-04-23 14:40:59 +00:00
|
|
|
*node,
|
2020-04-21 16:40:17 +00:00
|
|
|
AdminRPC::LaunchRepair(opt_to_send.clone()),
|
|
|
|
ADMIN_RPC_TIMEOUT,
|
|
|
|
)
|
2020-04-19 20:36:36 +00:00
|
|
|
.await
|
|
|
|
.is_err()
|
|
|
|
{
|
|
|
|
failures.push(node.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if failures.is_empty() {
|
|
|
|
Ok(AdminRPC::Ok(format!("Repair launched on all nodes")))
|
|
|
|
} else {
|
|
|
|
Err(Error::Message(format!(
|
|
|
|
"Could not launch repair on nodes: {:?} (launched successfully on other nodes)",
|
|
|
|
failures
|
|
|
|
)))
|
|
|
|
}
|
|
|
|
} else {
|
2020-04-23 18:36:12 +00:00
|
|
|
let repair = Repair {
|
|
|
|
garage: self.garage.clone(),
|
|
|
|
};
|
2020-04-19 21:27:08 +00:00
|
|
|
self.garage
|
|
|
|
.system
|
|
|
|
.background
|
2020-04-19 21:33:38 +00:00
|
|
|
.spawn_worker("Repair worker".into(), move |must_exit| async move {
|
2020-04-23 18:36:12 +00:00
|
|
|
repair.repair_worker(opt, must_exit).await
|
2020-04-19 21:33:38 +00:00
|
|
|
})
|
2020-04-19 21:27:08 +00:00
|
|
|
.await;
|
2020-04-19 20:36:36 +00:00
|
|
|
Ok(AdminRPC::Ok(format!(
|
|
|
|
"Repair launched on {:?}",
|
|
|
|
self.garage.system.id
|
|
|
|
)))
|
|
|
|
}
|
|
|
|
}
|
2020-04-19 15:15:48 +00:00
|
|
|
}
|