2019-03-12 13:39:51 +00:00
|
|
|
use std::collections::HashMap;
|
2019-08-21 12:09:27 +00:00
|
|
|
use std::io::Read;
|
2018-12-08 12:58:45 +00:00
|
|
|
|
2019-08-21 12:09:27 +00:00
|
|
|
use failure::*;
|
|
|
|
use lazy_static::lazy_static;
|
2018-12-08 12:58:45 +00:00
|
|
|
|
2019-12-18 09:41:58 +00:00
|
|
|
use proxmox::tools::{fs::replace_file, fs::CreateOptions, try_block};
|
2019-11-21 13:53:15 +00:00
|
|
|
use proxmox::api::schema::{Schema, ObjectSchema, StringSchema};
|
2018-12-08 12:58:45 +00:00
|
|
|
|
2019-08-21 12:09:27 +00:00
|
|
|
use crate::section_config::{SectionConfig, SectionConfigData, SectionConfigPlugin};
|
2018-12-08 12:58:45 +00:00
|
|
|
|
2019-08-21 12:11:07 +00:00
|
|
|
lazy_static! {
|
2018-12-08 12:58:45 +00:00
|
|
|
static ref CONFIG: SectionConfig = init();
|
|
|
|
}
|
|
|
|
|
2019-11-21 08:36:41 +00:00
|
|
|
const DIR_NAME_SCHEMA: Schema = StringSchema::new("Directory name").schema();
|
2019-12-19 16:46:39 +00:00
|
|
|
const COMMENT_SCHEMA: Schema = StringSchema::new("Datastore comment").schema();
|
2019-11-21 08:36:41 +00:00
|
|
|
const DATASTORE_ID_SCHEMA: Schema = StringSchema::new("DataStore ID schema.")
|
|
|
|
.min_length(3)
|
|
|
|
.schema();
|
|
|
|
const DATASTORE_PROPERTIES: ObjectSchema = ObjectSchema::new(
|
|
|
|
"DataStore properties",
|
|
|
|
&[
|
2019-12-19 16:46:39 +00:00
|
|
|
("comment", true, &COMMENT_SCHEMA),
|
|
|
|
("path", false, &DIR_NAME_SCHEMA),
|
2019-11-21 08:36:41 +00:00
|
|
|
]
|
|
|
|
);
|
2018-12-08 12:58:45 +00:00
|
|
|
|
2019-11-21 08:36:41 +00:00
|
|
|
fn init() -> SectionConfig {
|
|
|
|
let plugin = SectionConfigPlugin::new("datastore".to_string(), &DATASTORE_PROPERTIES);
|
|
|
|
let mut config = SectionConfig::new(&DATASTORE_ID_SCHEMA);
|
2018-12-08 12:58:45 +00:00
|
|
|
config.register_plugin(plugin);
|
|
|
|
|
|
|
|
config
|
|
|
|
}
|
|
|
|
|
2018-12-08 13:44:55 +00:00
|
|
|
const DATASTORE_CFG_FILENAME: &str = "/etc/proxmox-backup/datastore.cfg";
|
2018-12-08 12:58:45 +00:00
|
|
|
|
2018-12-08 13:51:08 +00:00
|
|
|
pub fn config() -> Result<SectionConfigData, Error> {
|
2018-12-08 12:58:45 +00:00
|
|
|
let mut contents = String::new();
|
2019-02-15 11:13:15 +00:00
|
|
|
|
|
|
|
try_block!({
|
2019-02-16 09:06:08 +00:00
|
|
|
match std::fs::File::open(DATASTORE_CFG_FILENAME) {
|
|
|
|
Ok(mut file) => file.read_to_string(&mut contents),
|
|
|
|
Err(err) => {
|
|
|
|
if err.kind() == std::io::ErrorKind::NotFound {
|
|
|
|
contents = String::from("");
|
|
|
|
Ok(0)
|
|
|
|
} else {
|
|
|
|
Err(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-21 12:11:07 +00:00
|
|
|
})
|
|
|
|
.map_err(|e| format_err!("unable to read '{}' - {}", DATASTORE_CFG_FILENAME, e))?;
|
2018-12-08 12:58:45 +00:00
|
|
|
|
2018-12-08 13:44:55 +00:00
|
|
|
CONFIG.parse(DATASTORE_CFG_FILENAME, &contents)
|
2018-12-08 12:58:45 +00:00
|
|
|
}
|
|
|
|
|
2018-12-09 11:51:31 +00:00
|
|
|
pub fn save_config(config: &SectionConfigData) -> Result<(), Error> {
|
|
|
|
let raw = CONFIG.write(DATASTORE_CFG_FILENAME, &config)?;
|
|
|
|
|
2019-12-19 09:20:13 +00:00
|
|
|
let backup_user = crate::backup::backup_user()?;
|
2019-12-18 09:41:58 +00:00
|
|
|
let mode = nix::sys::stat::Mode::from_bits_truncate(0o0640);
|
|
|
|
// set the correct owner/group/permissions while saving file
|
|
|
|
// owner(rw) = root, group(r)= backup
|
|
|
|
let options = CreateOptions::new()
|
|
|
|
.perm(mode)
|
|
|
|
.owner(nix::unistd::ROOT)
|
2019-12-19 09:20:13 +00:00
|
|
|
.group(backup_user.gid);
|
2019-12-18 09:41:58 +00:00
|
|
|
|
|
|
|
replace_file(DATASTORE_CFG_FILENAME, raw.as_bytes(), options)?;
|
2018-12-09 11:51:31 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2018-12-12 11:18:28 +00:00
|
|
|
|
|
|
|
// shell completion helper
|
2019-03-12 13:39:51 +00:00
|
|
|
pub fn complete_datastore_name(_arg: &str, _param: &HashMap<String, String>) -> Vec<String> {
|
2018-12-12 11:41:59 +00:00
|
|
|
match config() {
|
2019-08-21 12:11:07 +00:00
|
|
|
Ok(data) => data.sections.iter().map(|(id, _)| id.to_string()).collect(),
|
2018-12-12 11:18:28 +00:00
|
|
|
Err(_) => return vec![],
|
|
|
|
}
|
|
|
|
}
|