2020-04-11 16:51:11 +00:00
|
|
|
use futures_util::future::FutureExt;
|
2020-04-10 20:01:48 +00:00
|
|
|
use serde::Deserialize;
|
2020-04-08 20:00:41 +00:00
|
|
|
use std::collections::HashMap;
|
2020-04-07 14:26:22 +00:00
|
|
|
use std::io::{Read, Write};
|
|
|
|
use std::net::SocketAddr;
|
|
|
|
use std::path::PathBuf;
|
2020-04-10 20:01:48 +00:00
|
|
|
use std::sync::Arc;
|
2020-04-11 16:51:11 +00:00
|
|
|
use tokio::sync::watch;
|
2020-04-09 21:45:07 +00:00
|
|
|
use tokio::sync::{Mutex, RwLock};
|
2020-04-07 14:26:22 +00:00
|
|
|
|
2020-04-10 20:01:48 +00:00
|
|
|
use crate::api_server;
|
2020-04-11 16:51:11 +00:00
|
|
|
use crate::background::*;
|
2020-04-07 22:39:07 +00:00
|
|
|
use crate::data::*;
|
2020-04-07 14:26:22 +00:00
|
|
|
use crate::error::Error;
|
|
|
|
use crate::membership::System;
|
2020-04-10 20:01:48 +00:00
|
|
|
use crate::proto::*;
|
2020-04-07 14:26:22 +00:00
|
|
|
use crate::rpc_server;
|
2020-04-08 20:00:41 +00:00
|
|
|
use crate::table::*;
|
|
|
|
|
2020-04-11 16:51:11 +00:00
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
pub struct Config {
|
|
|
|
pub metadata_dir: PathBuf,
|
|
|
|
pub data_dir: PathBuf,
|
|
|
|
|
|
|
|
pub api_port: u16,
|
|
|
|
pub rpc_port: u16,
|
|
|
|
|
|
|
|
pub bootstrap_peers: Vec<SocketAddr>,
|
|
|
|
|
|
|
|
#[serde(default = "default_block_size")]
|
|
|
|
pub block_size: usize,
|
|
|
|
|
2020-04-11 17:43:29 +00:00
|
|
|
#[serde(default = "default_replication_factor")]
|
2020-04-11 16:51:11 +00:00
|
|
|
pub meta_replication_factor: usize,
|
|
|
|
|
2020-04-11 17:43:29 +00:00
|
|
|
#[serde(default = "default_replication_factor")]
|
2020-04-11 16:51:11 +00:00
|
|
|
pub data_replication_factor: usize,
|
|
|
|
}
|
|
|
|
|
2020-04-08 20:00:41 +00:00
|
|
|
pub struct Garage {
|
|
|
|
pub db: sled::Db,
|
|
|
|
pub system: Arc<System>,
|
2020-04-09 21:45:07 +00:00
|
|
|
pub fs_lock: Mutex<()>,
|
2020-04-11 16:51:11 +00:00
|
|
|
pub background: Arc<BackgroundRunner>,
|
2020-04-08 20:00:41 +00:00
|
|
|
|
|
|
|
pub table_rpc_handlers: HashMap<String, Box<dyn TableRpcHandler + Sync + Send>>,
|
|
|
|
|
2020-04-09 15:32:28 +00:00
|
|
|
pub object_table: Arc<Table<ObjectTable>>,
|
2020-04-09 21:45:07 +00:00
|
|
|
pub version_table: Arc<Table<VersionTable>>,
|
2020-04-10 21:11:52 +00:00
|
|
|
pub block_ref_table: Arc<Table<BlockRefTable>>,
|
2020-04-08 20:00:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Garage {
|
2020-04-11 16:51:11 +00:00
|
|
|
pub async fn new(
|
|
|
|
config: Config,
|
|
|
|
id: UUID,
|
|
|
|
db: sled::Db,
|
|
|
|
background: Arc<BackgroundRunner>,
|
|
|
|
) -> Arc<Self> {
|
|
|
|
let system = Arc::new(System::new(config, id, background.clone()));
|
2020-04-08 20:00:41 +00:00
|
|
|
|
2020-04-10 20:01:48 +00:00
|
|
|
let meta_rep_param = TableReplicationParams {
|
2020-04-08 20:00:41 +00:00
|
|
|
replication_factor: system.config.meta_replication_factor,
|
2020-04-10 20:01:48 +00:00
|
|
|
write_quorum: (system.config.meta_replication_factor + 1) / 2,
|
|
|
|
read_quorum: (system.config.meta_replication_factor + 1) / 2,
|
2020-04-08 20:00:41 +00:00
|
|
|
timeout: DEFAULT_TIMEOUT,
|
|
|
|
};
|
|
|
|
|
2020-04-09 15:32:28 +00:00
|
|
|
let object_table = Arc::new(Table::new(
|
2020-04-10 20:01:48 +00:00
|
|
|
ObjectTable {
|
|
|
|
garage: RwLock::new(None),
|
|
|
|
},
|
2020-04-08 20:00:41 +00:00
|
|
|
system.clone(),
|
|
|
|
&db,
|
2020-04-09 15:32:28 +00:00
|
|
|
"object".to_string(),
|
2020-04-10 20:01:48 +00:00
|
|
|
meta_rep_param.clone(),
|
|
|
|
));
|
2020-04-09 21:45:07 +00:00
|
|
|
let version_table = Arc::new(Table::new(
|
2020-04-10 20:01:48 +00:00
|
|
|
VersionTable {
|
|
|
|
garage: RwLock::new(None),
|
|
|
|
},
|
2020-04-09 21:45:07 +00:00
|
|
|
system.clone(),
|
|
|
|
&db,
|
|
|
|
"version".to_string(),
|
2020-04-10 20:01:48 +00:00
|
|
|
meta_rep_param.clone(),
|
|
|
|
));
|
2020-04-11 16:51:11 +00:00
|
|
|
|
|
|
|
let data_rep_param = TableReplicationParams {
|
|
|
|
replication_factor: system.config.data_replication_factor,
|
|
|
|
write_quorum: (system.config.data_replication_factor + 1) / 2,
|
|
|
|
read_quorum: 1,
|
|
|
|
timeout: DEFAULT_TIMEOUT,
|
|
|
|
};
|
|
|
|
|
2020-04-10 21:11:52 +00:00
|
|
|
let block_ref_table = Arc::new(Table::new(
|
|
|
|
BlockRefTable {
|
|
|
|
garage: RwLock::new(None),
|
|
|
|
},
|
|
|
|
system.clone(),
|
|
|
|
&db,
|
|
|
|
"block_ref".to_string(),
|
2020-04-11 16:51:11 +00:00
|
|
|
data_rep_param.clone(),
|
2020-04-10 21:11:52 +00:00
|
|
|
));
|
2020-04-08 20:00:41 +00:00
|
|
|
|
2020-04-10 20:01:48 +00:00
|
|
|
let mut garage = Self {
|
2020-04-08 20:00:41 +00:00
|
|
|
db,
|
|
|
|
system: system.clone(),
|
2020-04-09 21:45:07 +00:00
|
|
|
fs_lock: Mutex::new(()),
|
2020-04-11 16:51:11 +00:00
|
|
|
background,
|
2020-04-08 20:00:41 +00:00
|
|
|
table_rpc_handlers: HashMap::new(),
|
2020-04-09 15:32:28 +00:00
|
|
|
object_table,
|
2020-04-09 21:45:07 +00:00
|
|
|
version_table,
|
2020-04-10 21:11:52 +00:00
|
|
|
block_ref_table,
|
2020-04-08 20:00:41 +00:00
|
|
|
};
|
2020-04-09 21:45:07 +00:00
|
|
|
|
2020-04-08 20:00:41 +00:00
|
|
|
garage.table_rpc_handlers.insert(
|
2020-04-09 15:32:28 +00:00
|
|
|
garage.object_table.name.clone(),
|
2020-04-10 20:01:48 +00:00
|
|
|
garage.object_table.clone().rpc_handler(),
|
|
|
|
);
|
2020-04-09 21:45:07 +00:00
|
|
|
garage.table_rpc_handlers.insert(
|
|
|
|
garage.version_table.name.clone(),
|
2020-04-10 20:01:48 +00:00
|
|
|
garage.version_table.clone().rpc_handler(),
|
|
|
|
);
|
2020-04-10 21:11:52 +00:00
|
|
|
garage.table_rpc_handlers.insert(
|
|
|
|
garage.block_ref_table.name.clone(),
|
|
|
|
garage.block_ref_table.clone().rpc_handler(),
|
|
|
|
);
|
2020-04-08 21:01:49 +00:00
|
|
|
|
|
|
|
let garage = Arc::new(garage);
|
2020-04-09 21:45:07 +00:00
|
|
|
|
2020-04-09 15:32:28 +00:00
|
|
|
*garage.object_table.instance.garage.write().await = Some(garage.clone());
|
2020-04-09 21:45:07 +00:00
|
|
|
*garage.version_table.instance.garage.write().await = Some(garage.clone());
|
2020-04-10 21:11:52 +00:00
|
|
|
*garage.block_ref_table.instance.garage.write().await = Some(garage.clone());
|
2020-04-09 21:45:07 +00:00
|
|
|
|
2020-04-08 20:00:41 +00:00
|
|
|
garage
|
|
|
|
}
|
|
|
|
}
|
2020-04-07 14:26:22 +00:00
|
|
|
|
2020-04-07 22:39:07 +00:00
|
|
|
fn default_block_size() -> usize {
|
|
|
|
1048576
|
|
|
|
}
|
2020-04-11 17:43:29 +00:00
|
|
|
fn default_replication_factor() -> usize {
|
2020-04-11 16:51:11 +00:00
|
|
|
3
|
2020-04-07 14:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn read_config(config_file: PathBuf) -> Result<Config, Error> {
|
|
|
|
let mut file = std::fs::OpenOptions::new()
|
|
|
|
.read(true)
|
|
|
|
.open(config_file.as_path())?;
|
2020-04-10 20:01:48 +00:00
|
|
|
|
2020-04-07 14:26:22 +00:00
|
|
|
let mut config = String::new();
|
|
|
|
file.read_to_string(&mut config)?;
|
|
|
|
|
|
|
|
Ok(toml::from_str(&config)?)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn gen_node_id(metadata_dir: &PathBuf) -> Result<UUID, Error> {
|
|
|
|
let mut id_file = metadata_dir.clone();
|
|
|
|
id_file.push("node_id");
|
|
|
|
if id_file.as_path().exists() {
|
|
|
|
let mut f = std::fs::File::open(id_file.as_path())?;
|
|
|
|
let mut d = vec![];
|
|
|
|
f.read_to_end(&mut d)?;
|
|
|
|
if d.len() != 32 {
|
2020-04-10 20:01:48 +00:00
|
|
|
return Err(Error::Message(format!("Corrupt node_id file")));
|
2020-04-07 14:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut id = [0u8; 32];
|
|
|
|
id.copy_from_slice(&d[..]);
|
2020-04-07 16:10:20 +00:00
|
|
|
Ok(id.into())
|
2020-04-07 14:26:22 +00:00
|
|
|
} else {
|
2020-04-07 22:39:07 +00:00
|
|
|
let id = gen_uuid();
|
2020-04-07 14:26:22 +00:00
|
|
|
|
|
|
|
let mut f = std::fs::File::create(id_file.as_path())?;
|
2020-04-07 22:39:07 +00:00
|
|
|
f.write_all(id.as_slice())?;
|
|
|
|
Ok(id)
|
2020-04-07 14:26:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-11 16:51:11 +00:00
|
|
|
async fn shutdown_signal(send_cancel: watch::Sender<bool>) -> Result<(), Error> {
|
2020-04-10 20:01:48 +00:00
|
|
|
// Wait for the CTRL+C signal
|
|
|
|
tokio::signal::ctrl_c()
|
|
|
|
.await
|
|
|
|
.expect("failed to install CTRL+C signal handler");
|
2020-04-07 14:26:22 +00:00
|
|
|
println!("Received CTRL+C, shutting down.");
|
2020-04-11 16:51:11 +00:00
|
|
|
send_cancel.broadcast(true)?;
|
|
|
|
Ok(())
|
2020-04-07 14:26:22 +00:00
|
|
|
}
|
|
|
|
|
2020-04-11 16:51:11 +00:00
|
|
|
async fn wait_from(mut chan: watch::Receiver<bool>) -> () {
|
|
|
|
while let Some(exit_now) = chan.recv().await {
|
|
|
|
if exit_now {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-04-07 14:26:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn run_server(config_file: PathBuf) -> Result<(), Error> {
|
2020-04-10 20:01:48 +00:00
|
|
|
let config = read_config(config_file).expect("Unable to read config file");
|
2020-04-07 14:26:22 +00:00
|
|
|
|
2020-04-08 20:00:41 +00:00
|
|
|
let mut db_path = config.metadata_dir.clone();
|
2020-04-09 16:43:53 +00:00
|
|
|
db_path.push("db");
|
2020-04-10 20:01:48 +00:00
|
|
|
let db = sled::open(db_path).expect("Unable to open DB");
|
2020-04-08 20:00:41 +00:00
|
|
|
|
2020-04-10 20:01:48 +00:00
|
|
|
let id = gen_node_id(&config.metadata_dir).expect("Unable to read or generate node ID");
|
2020-04-07 16:10:20 +00:00
|
|
|
println!("Node ID: {}", hex::encode(&id));
|
2020-04-07 14:26:22 +00:00
|
|
|
|
2020-04-11 16:51:11 +00:00
|
|
|
let (send_cancel, watch_cancel) = watch::channel(false);
|
2020-04-07 14:26:22 +00:00
|
|
|
|
2020-04-11 16:51:11 +00:00
|
|
|
let background = BackgroundRunner::new(8, watch_cancel.clone());
|
|
|
|
let garage = Garage::new(config, id, db, background.clone()).await;
|
2020-04-07 14:26:22 +00:00
|
|
|
|
2020-04-11 16:51:11 +00:00
|
|
|
let rpc_server = rpc_server::run_rpc_server(garage.clone(), wait_from(watch_cancel.clone()));
|
|
|
|
let api_server = api_server::run_api_server(garage.clone(), wait_from(watch_cancel.clone()));
|
2020-04-07 14:26:22 +00:00
|
|
|
|
2020-04-11 16:51:11 +00:00
|
|
|
futures::try_join!(
|
|
|
|
garage.system.clone().bootstrap().map(Ok),
|
|
|
|
rpc_server,
|
|
|
|
api_server,
|
|
|
|
background.run().map(Ok),
|
|
|
|
shutdown_signal(send_cancel),
|
|
|
|
)?;
|
2020-04-07 14:26:22 +00:00
|
|
|
Ok(())
|
|
|
|
}
|