2019-11-21 13:53:15 +00:00
|
|
|
use std::collections::{HashSet, HashMap};
|
|
|
|
|
2019-12-04 14:49:11 +00:00
|
|
|
use chrono::{TimeZone, Local};
|
2018-12-21 12:38:41 +00:00
|
|
|
use failure::*;
|
2019-06-25 08:16:59 +00:00
|
|
|
use futures::*;
|
2019-11-21 13:53:15 +00:00
|
|
|
use hyper::http::request::Parts;
|
|
|
|
use hyper::{header, Body, Response, StatusCode};
|
2018-12-21 12:38:41 +00:00
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
2019-11-21 12:10:49 +00:00
|
|
|
use proxmox::{sortable, identity};
|
2019-11-21 13:53:15 +00:00
|
|
|
use proxmox::api::{http_err, list_subdirs_api_method};
|
|
|
|
use proxmox::api::{ApiFuture, ApiHandler, ApiMethod, Router, RpcEnvironment, RpcEnvironmentType};
|
|
|
|
use proxmox::api::router::SubdirMap;
|
|
|
|
use proxmox::api::schema::*;
|
2019-08-05 11:22:19 +00:00
|
|
|
use proxmox::tools::{try_block, fs::file_get_contents, fs::file_set_contents};
|
2019-08-03 11:05:38 +00:00
|
|
|
|
2019-11-21 13:53:15 +00:00
|
|
|
use crate::api2::types::*;
|
2019-02-12 13:13:31 +00:00
|
|
|
use crate::backup::*;
|
2019-11-21 13:53:15 +00:00
|
|
|
use crate::config::datastore;
|
2019-04-06 09:27:23 +00:00
|
|
|
use crate::server::WorkerTask;
|
2019-11-21 13:53:15 +00:00
|
|
|
use crate::tools;
|
2019-01-15 10:38:26 +00:00
|
|
|
|
2019-08-05 11:22:19 +00:00
|
|
|
fn read_backup_index(store: &DataStore, backup_dir: &BackupDir) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let mut path = store.base_path();
|
|
|
|
path.push(backup_dir.relative_path());
|
|
|
|
path.push("index.json.blob");
|
|
|
|
|
|
|
|
let raw_data = file_get_contents(&path)?;
|
|
|
|
let data = DataBlob::from_raw(raw_data)?.decode(None)?;
|
2019-12-04 09:03:52 +00:00
|
|
|
let index_size = data.len();
|
2019-08-05 11:22:19 +00:00
|
|
|
let mut result: Value = serde_json::from_reader(&mut &data[..])?;
|
|
|
|
|
2019-12-04 09:03:52 +00:00
|
|
|
let mut result = result["files"].take();
|
2019-08-05 11:22:19 +00:00
|
|
|
|
|
|
|
if result == Value::Null {
|
|
|
|
bail!("missing 'files' property in backup index {:?}", path);
|
|
|
|
}
|
|
|
|
|
2019-12-04 09:03:52 +00:00
|
|
|
result.as_array_mut().unwrap().push(json!({
|
|
|
|
"filename": "index.json.blob",
|
|
|
|
"size": index_size,
|
|
|
|
}));
|
|
|
|
|
2019-08-05 11:22:19 +00:00
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
2019-02-28 11:51:27 +00:00
|
|
|
fn group_backups(backup_list: Vec<BackupInfo>) -> HashMap<String, Vec<BackupInfo>> {
|
|
|
|
|
|
|
|
let mut group_hash = HashMap::new();
|
|
|
|
|
|
|
|
for info in backup_list {
|
2019-03-04 12:51:36 +00:00
|
|
|
let group_id = info.backup_dir.group().group_path().to_str().unwrap().to_owned();
|
2019-02-28 11:51:27 +00:00
|
|
|
let time_list = group_hash.entry(group_id).or_insert(vec![]);
|
|
|
|
time_list.push(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
group_hash
|
|
|
|
}
|
|
|
|
|
2019-03-02 15:28:36 +00:00
|
|
|
fn list_groups(
|
2019-03-02 10:29:05 +00:00
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-03-02 10:29:05 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = param["store"].as_str().unwrap();
|
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
2019-05-11 08:19:34 +00:00
|
|
|
let backup_list = BackupInfo::list_backups(&datastore.base_path())?;
|
2019-03-02 10:29:05 +00:00
|
|
|
|
|
|
|
let group_hash = group_backups(backup_list);
|
|
|
|
|
|
|
|
let mut groups = vec![];
|
|
|
|
|
|
|
|
for (_group_id, mut list) in group_hash {
|
|
|
|
|
2019-03-04 17:20:57 +00:00
|
|
|
BackupInfo::sort_list(&mut list, false);
|
2019-03-02 10:29:05 +00:00
|
|
|
|
|
|
|
let info = &list[0];
|
2019-03-04 12:51:36 +00:00
|
|
|
let group = info.backup_dir.group();
|
2019-03-02 10:29:05 +00:00
|
|
|
|
|
|
|
groups.push(json!({
|
2019-03-04 12:38:23 +00:00
|
|
|
"backup-type": group.backup_type(),
|
|
|
|
"backup-id": group.backup_id(),
|
2019-03-04 12:51:36 +00:00
|
|
|
"last-backup": info.backup_dir.backup_time().timestamp(),
|
2019-03-02 15:28:36 +00:00
|
|
|
"backup-count": list.len() as u64,
|
|
|
|
"files": info.files,
|
2019-03-02 10:29:05 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(json!(groups))
|
|
|
|
}
|
2019-02-28 11:51:27 +00:00
|
|
|
|
2019-03-06 09:49:59 +00:00
|
|
|
fn list_snapshot_files (
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-03-06 09:49:59 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
let backup_type = tools::required_string_param(¶m, "backup-type")?;
|
|
|
|
let backup_id = tools::required_string_param(¶m, "backup-id")?;
|
|
|
|
let backup_time = tools::required_integer_param(¶m, "backup-time")?;
|
|
|
|
|
2019-08-07 07:16:14 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
2019-03-06 09:49:59 +00:00
|
|
|
let snapshot = BackupDir::new(backup_type, backup_id, backup_time);
|
|
|
|
|
2019-08-07 07:16:14 +00:00
|
|
|
let mut files = read_backup_index(&datastore, &snapshot)?;
|
|
|
|
|
|
|
|
let info = BackupInfo::new(&datastore.base_path(), snapshot)?;
|
2019-03-06 09:49:59 +00:00
|
|
|
|
2019-08-07 07:16:14 +00:00
|
|
|
let file_set = files.as_array().unwrap().iter().fold(HashSet::new(), |mut acc, item| {
|
|
|
|
acc.insert(item["filename"].as_str().unwrap().to_owned());
|
|
|
|
acc
|
|
|
|
});
|
|
|
|
|
|
|
|
for file in info.files {
|
|
|
|
if file_set.contains(&file) { continue; }
|
|
|
|
files.as_array_mut().unwrap().push(json!({ "filename": file }));
|
|
|
|
}
|
2019-03-06 09:49:59 +00:00
|
|
|
|
2019-08-05 11:22:19 +00:00
|
|
|
Ok(files)
|
2019-03-06 09:49:59 +00:00
|
|
|
}
|
|
|
|
|
2019-03-03 10:29:00 +00:00
|
|
|
fn delete_snapshots (
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-03-03 10:29:00 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
let backup_type = tools::required_string_param(¶m, "backup-type")?;
|
|
|
|
let backup_id = tools::required_string_param(¶m, "backup-id")?;
|
|
|
|
let backup_time = tools::required_integer_param(¶m, "backup-time")?;
|
|
|
|
|
2019-03-05 08:16:54 +00:00
|
|
|
let snapshot = BackupDir::new(backup_type, backup_id, backup_time);
|
2019-03-03 10:29:00 +00:00
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
|
|
|
datastore.remove_backup_dir(&snapshot)?;
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
2019-03-02 15:20:50 +00:00
|
|
|
fn list_snapshots (
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-03-02 15:20:50 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
2019-07-18 07:11:43 +00:00
|
|
|
let backup_type = param["backup-type"].as_str();
|
|
|
|
let backup_id = param["backup-id"].as_str();
|
2019-03-02 15:20:50 +00:00
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
2019-05-11 08:19:34 +00:00
|
|
|
let base_path = datastore.base_path();
|
2019-03-02 15:20:50 +00:00
|
|
|
|
2019-07-18 07:11:43 +00:00
|
|
|
let backup_list = BackupInfo::list_backups(&base_path)?;
|
2019-03-02 15:20:50 +00:00
|
|
|
|
|
|
|
let mut snapshots = vec![];
|
|
|
|
|
2019-05-11 08:19:34 +00:00
|
|
|
for info in backup_list {
|
2019-07-18 07:11:43 +00:00
|
|
|
let group = info.backup_dir.group();
|
|
|
|
if let Some(backup_type) = backup_type {
|
|
|
|
if backup_type != group.backup_type() { continue; }
|
|
|
|
}
|
2019-08-06 08:56:21 +00:00
|
|
|
if let Some(backup_id) = backup_id {
|
2019-07-18 07:11:43 +00:00
|
|
|
if backup_id != group.backup_id() { continue; }
|
|
|
|
}
|
2019-08-06 08:56:21 +00:00
|
|
|
|
|
|
|
let mut result_item = json!({
|
2019-03-04 12:38:23 +00:00
|
|
|
"backup-type": group.backup_type(),
|
|
|
|
"backup-id": group.backup_id(),
|
2019-03-04 12:51:36 +00:00
|
|
|
"backup-time": info.backup_dir.backup_time().timestamp(),
|
2019-03-02 15:20:50 +00:00
|
|
|
"files": info.files,
|
2019-08-06 08:56:21 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if let Ok(index) = read_backup_index(&datastore, &info.backup_dir) {
|
|
|
|
let mut backup_size = 0;
|
|
|
|
for item in index.as_array().unwrap().iter() {
|
|
|
|
if let Some(item_size) = item["size"].as_u64() {
|
|
|
|
backup_size += item_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result_item["size"] = backup_size.into();
|
|
|
|
}
|
|
|
|
|
|
|
|
snapshots.push(result_item);
|
2019-03-02 15:20:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(json!(snapshots))
|
|
|
|
}
|
|
|
|
|
2019-12-06 11:36:41 +00:00
|
|
|
#[sortable]
|
|
|
|
const API_METHOD_STATUS: ApiMethod = ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&status),
|
|
|
|
&ObjectSchema::new(
|
|
|
|
"Get datastore status.",
|
|
|
|
&sorted!([
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-12-06 11:36:41 +00:00
|
|
|
]),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2019-07-16 11:34:38 +00:00
|
|
|
fn status(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = param["store"].as_str().unwrap();
|
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
|
|
|
let base_path = datastore.base_path();
|
|
|
|
|
|
|
|
let mut stat: libc::statfs64 = unsafe { std::mem::zeroed() };
|
|
|
|
|
|
|
|
use nix::NixPath;
|
|
|
|
|
|
|
|
let res = base_path.with_nix_path(|cstr| unsafe { libc::statfs64(cstr.as_ptr(), &mut stat) })?;
|
|
|
|
nix::errno::Errno::result(res)?;
|
|
|
|
|
|
|
|
let bsize = stat.f_bsize as u64;
|
|
|
|
Ok(json!({
|
|
|
|
"total": stat.f_blocks*bsize,
|
|
|
|
"used": (stat.f_blocks-stat.f_bfree)*bsize,
|
|
|
|
"avail": stat.f_bavail*bsize,
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2019-11-21 08:36:41 +00:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! add_common_prune_prameters {
|
2019-11-21 12:10:49 +00:00
|
|
|
( [ $( $list1:tt )* ] ) => {
|
|
|
|
add_common_prune_prameters!([$( $list1 )* ] , [])
|
|
|
|
};
|
|
|
|
( [ $( $list1:tt )* ] , [ $( $list2:tt )* ] ) => {
|
2019-11-21 08:36:41 +00:00
|
|
|
[
|
2019-11-21 12:10:49 +00:00
|
|
|
$( $list1 )*
|
2019-11-21 08:36:41 +00:00
|
|
|
(
|
2019-11-21 12:10:49 +00:00
|
|
|
"keep-daily",
|
2019-11-21 08:36:41 +00:00
|
|
|
true,
|
2019-11-21 12:10:49 +00:00
|
|
|
&IntegerSchema::new("Number of daily backups to keep.")
|
2019-11-21 08:36:41 +00:00
|
|
|
.minimum(1)
|
|
|
|
.schema()
|
|
|
|
),
|
2019-12-07 10:23:33 +00:00
|
|
|
(
|
|
|
|
"keep-hourly",
|
|
|
|
true,
|
|
|
|
&IntegerSchema::new("Number of hourly backups to keep.")
|
|
|
|
.minimum(1)
|
|
|
|
.schema()
|
|
|
|
),
|
2019-11-21 08:36:41 +00:00
|
|
|
(
|
2019-11-21 12:10:49 +00:00
|
|
|
"keep-last",
|
2019-11-21 08:36:41 +00:00
|
|
|
true,
|
2019-11-21 12:10:49 +00:00
|
|
|
&IntegerSchema::new("Number of backups to keep.")
|
2019-11-21 08:36:41 +00:00
|
|
|
.minimum(1)
|
|
|
|
.schema()
|
|
|
|
),
|
|
|
|
(
|
2019-11-21 12:10:49 +00:00
|
|
|
"keep-monthly",
|
2019-11-21 08:36:41 +00:00
|
|
|
true,
|
2019-11-21 12:10:49 +00:00
|
|
|
&IntegerSchema::new("Number of monthly backups to keep.")
|
2019-11-21 08:36:41 +00:00
|
|
|
.minimum(1)
|
|
|
|
.schema()
|
|
|
|
),
|
|
|
|
(
|
2019-11-21 12:10:49 +00:00
|
|
|
"keep-weekly",
|
2019-11-21 08:36:41 +00:00
|
|
|
true,
|
2019-11-21 12:10:49 +00:00
|
|
|
&IntegerSchema::new("Number of weekly backups to keep.")
|
2019-11-21 08:36:41 +00:00
|
|
|
.minimum(1)
|
|
|
|
.schema()
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"keep-yearly",
|
|
|
|
true,
|
|
|
|
&IntegerSchema::new("Number of yearly backups to keep.")
|
|
|
|
.minimum(1)
|
|
|
|
.schema()
|
|
|
|
),
|
2019-11-21 12:10:49 +00:00
|
|
|
$( $list2 )*
|
2019-11-21 08:36:41 +00:00
|
|
|
]
|
|
|
|
}
|
2019-07-16 11:34:38 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 11:36:41 +00:00
|
|
|
const API_METHOD_PRUNE: ApiMethod = ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&prune),
|
2019-11-21 08:36:41 +00:00
|
|
|
&ObjectSchema::new(
|
2019-12-06 11:36:41 +00:00
|
|
|
"Prune the datastore.",
|
|
|
|
&add_common_prune_prameters!([
|
|
|
|
("backup-id", false, &BACKUP_ID_SCHEMA),
|
|
|
|
("backup-type", false, &BACKUP_TYPE_SCHEMA),
|
2019-12-08 09:59:47 +00:00
|
|
|
("dry-run", true, &BooleanSchema::new(
|
|
|
|
"Just show what prune would do, but do not delete anything.")
|
|
|
|
.schema()
|
|
|
|
),
|
2019-12-06 11:36:41 +00:00
|
|
|
],[
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-12-06 11:36:41 +00:00
|
|
|
])
|
2019-11-21 08:36:41 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2019-02-27 15:53:17 +00:00
|
|
|
fn prune(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-02-27 15:53:17 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = param["store"].as_str().unwrap();
|
|
|
|
|
2019-07-27 06:49:14 +00:00
|
|
|
let backup_type = tools::required_string_param(¶m, "backup-type")?;
|
|
|
|
let backup_id = tools::required_string_param(¶m, "backup-id")?;
|
|
|
|
|
2019-12-08 09:59:47 +00:00
|
|
|
let dry_run = param["dry-run"].as_bool().unwrap_or(false);
|
|
|
|
|
2019-07-27 06:49:14 +00:00
|
|
|
let group = BackupGroup::new(backup_type, backup_id);
|
|
|
|
|
2019-02-27 15:53:17 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
2019-12-06 11:28:31 +00:00
|
|
|
let prune_options = PruneOptions {
|
|
|
|
keep_last: param["keep-last"].as_u64(),
|
2019-12-07 10:23:33 +00:00
|
|
|
keep_hourly: param["keep-hourly"].as_u64(),
|
2019-12-06 11:28:31 +00:00
|
|
|
keep_daily: param["keep-daily"].as_u64(),
|
|
|
|
keep_weekly: param["keep-weekly"].as_u64(),
|
|
|
|
keep_monthly: param["keep-monthly"].as_u64(),
|
|
|
|
keep_yearly: param["keep-yearly"].as_u64(),
|
|
|
|
};
|
2019-02-28 11:51:27 +00:00
|
|
|
|
2019-12-07 15:11:26 +00:00
|
|
|
// We use a WorkerTask just to have a task log, but run synchrounously
|
2019-06-25 06:12:25 +00:00
|
|
|
let worker = WorkerTask::new("prune", Some(store.to_owned()), "root@pam", true)?;
|
|
|
|
let result = try_block! {
|
2019-12-06 11:28:31 +00:00
|
|
|
if !prune_options.keeps_something() {
|
2019-07-27 06:49:14 +00:00
|
|
|
worker.log("No prune selection - keeping all files.");
|
2019-06-25 06:12:25 +00:00
|
|
|
return Ok(());
|
|
|
|
} else {
|
2019-12-08 09:59:47 +00:00
|
|
|
if dry_run {
|
|
|
|
worker.log(format!("Testing prune on store {}", store));
|
|
|
|
} else {
|
|
|
|
worker.log(format!("Starting prune on store {}", store));
|
|
|
|
}
|
2019-06-25 06:12:25 +00:00
|
|
|
}
|
2019-02-28 11:51:27 +00:00
|
|
|
|
2019-12-04 14:49:11 +00:00
|
|
|
let list = group.list_backups(&datastore.base_path())?;
|
2019-02-28 11:51:27 +00:00
|
|
|
|
2019-12-06 07:56:27 +00:00
|
|
|
let mut prune_info = compute_prune_info(list, &prune_options)?;
|
2019-06-25 06:12:25 +00:00
|
|
|
|
2019-12-05 12:13:30 +00:00
|
|
|
prune_info.reverse(); // delete older snapshots first
|
|
|
|
|
|
|
|
for (info, keep) in prune_info {
|
2019-12-08 09:59:47 +00:00
|
|
|
let backup_time = info.backup_dir.backup_time();
|
|
|
|
let timestamp = BackupDir::backup_time_to_string(backup_time);
|
|
|
|
let group = info.backup_dir.group();
|
|
|
|
|
|
|
|
let msg = format!(
|
|
|
|
"{}/{}/{} {}",
|
|
|
|
group.backup_type(),
|
|
|
|
group.backup_id(),
|
|
|
|
timestamp,
|
|
|
|
if keep { "keep" } else { "remove" },
|
|
|
|
);
|
|
|
|
|
|
|
|
worker.log(msg);
|
|
|
|
|
|
|
|
if !(dry_run || keep) {
|
2019-12-05 12:13:30 +00:00
|
|
|
datastore.remove_backup_dir(&info.backup_dir)?;
|
|
|
|
}
|
2019-02-28 11:51:27 +00:00
|
|
|
}
|
2019-06-25 06:12:25 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
};
|
|
|
|
|
|
|
|
worker.log_result(&result);
|
|
|
|
|
|
|
|
if let Err(err) = result {
|
|
|
|
bail!("prune failed - {}", err);
|
2019-02-28 11:51:27 +00:00
|
|
|
}
|
2019-02-27 15:53:17 +00:00
|
|
|
|
2019-12-07 15:11:26 +00:00
|
|
|
Ok(json!(worker.to_string())) // return the UPID
|
2019-02-27 15:53:17 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 11:36:41 +00:00
|
|
|
#[sortable]
|
|
|
|
pub const API_METHOD_START_GARBAGE_COLLECTION: ApiMethod = ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&start_garbage_collection),
|
2019-11-21 08:36:41 +00:00
|
|
|
&ObjectSchema::new(
|
2019-12-06 11:36:41 +00:00
|
|
|
"Start garbage collection.",
|
|
|
|
&sorted!([
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-11-21 12:10:49 +00:00
|
|
|
])
|
2019-02-27 15:53:17 +00:00
|
|
|
)
|
2019-11-21 08:36:41 +00:00
|
|
|
);
|
2019-02-27 15:53:17 +00:00
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
fn start_garbage_collection(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
rpcenv: &mut dyn RpcEnvironment,
|
2019-01-26 13:50:37 +00:00
|
|
|
) -> Result<Value, Error> {
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-04-01 10:02:46 +00:00
|
|
|
let store = param["store"].as_str().unwrap().to_string();
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-04-01 10:02:46 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(&store)?;
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-01-18 07:33:11 +00:00
|
|
|
println!("Starting garbage collection on store {}", store);
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-04-06 09:27:23 +00:00
|
|
|
let to_stdout = if rpcenv.env_type() == RpcEnvironmentType::CLI { true } else { false };
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-04-06 09:27:23 +00:00
|
|
|
let upid_str = WorkerTask::new_thread(
|
|
|
|
"garbage_collection", Some(store.clone()), "root@pam", to_stdout, move |worker|
|
|
|
|
{
|
|
|
|
worker.log(format!("starting garbage collection on store {}", store));
|
2019-04-06 15:57:38 +00:00
|
|
|
datastore.garbage_collection(worker)
|
2019-04-06 09:27:23 +00:00
|
|
|
})?;
|
|
|
|
|
|
|
|
Ok(json!(upid_str))
|
2018-12-21 12:38:41 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 12:10:49 +00:00
|
|
|
#[sortable]
|
2019-12-06 11:36:41 +00:00
|
|
|
pub const API_METHOD_GARBAGE_COLLECTION_STATUS: ApiMethod = ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&garbage_collection_status),
|
2019-11-21 08:36:41 +00:00
|
|
|
&ObjectSchema::new(
|
2019-12-06 11:36:41 +00:00
|
|
|
"Garbage collection status.",
|
2019-11-21 12:10:49 +00:00
|
|
|
&sorted!([
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-11-21 12:10:49 +00:00
|
|
|
])
|
2019-01-04 10:33:58 +00:00
|
|
|
)
|
2019-11-21 08:36:41 +00:00
|
|
|
);
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
fn garbage_collection_status(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-01-26 13:50:37 +00:00
|
|
|
) -> Result<Value, Error> {
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-01-18 07:33:11 +00:00
|
|
|
let store = param["store"].as_str().unwrap();
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-04-11 10:04:25 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(&store)?;
|
|
|
|
|
2019-01-18 07:33:11 +00:00
|
|
|
println!("Garbage collection status on store {}", store);
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-04-11 10:04:25 +00:00
|
|
|
let status = datastore.last_gc_status();
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-04-11 10:04:25 +00:00
|
|
|
Ok(serde_json::to_value(&status)?)
|
2019-01-04 10:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
fn get_datastore_list(
|
|
|
|
_param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-06-07 11:10:56 +00:00
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
2019-01-26 13:50:37 +00:00
|
|
|
) -> Result<Value, Error> {
|
2018-12-21 12:38:41 +00:00
|
|
|
|
|
|
|
let config = datastore::config()?;
|
|
|
|
|
2019-01-18 07:33:11 +00:00
|
|
|
Ok(config.convert_to_array("store"))
|
2018-12-21 12:38:41 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 11:36:41 +00:00
|
|
|
#[sortable]
|
|
|
|
pub const API_METHOD_DOWNLOAD_FILE: ApiMethod = ApiMethod::new(
|
|
|
|
&ApiHandler::AsyncHttp(&download_file),
|
|
|
|
&ObjectSchema::new(
|
|
|
|
"Download single raw file from backup snapshot.",
|
|
|
|
&sorted!([
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-12-06 11:36:41 +00:00
|
|
|
("backup-type", false, &BACKUP_TYPE_SCHEMA),
|
|
|
|
("backup-id", false, &BACKUP_ID_SCHEMA),
|
|
|
|
("backup-time", false, &BACKUP_TIME_SCHEMA),
|
|
|
|
("file-name", false, &StringSchema::new("Raw file name.")
|
|
|
|
.format(&FILENAME_FORMAT)
|
|
|
|
.schema()
|
|
|
|
),
|
|
|
|
]),
|
|
|
|
)
|
|
|
|
);
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-06-25 08:16:59 +00:00
|
|
|
fn download_file(
|
|
|
|
_parts: Parts,
|
|
|
|
_req_body: Body,
|
|
|
|
param: Value,
|
2019-11-21 08:36:41 +00:00
|
|
|
_info: &ApiMethod,
|
2019-06-25 08:16:59 +00:00
|
|
|
_rpcenv: Box<dyn RpcEnvironment>,
|
2019-11-22 12:02:05 +00:00
|
|
|
) -> ApiFuture {
|
2019-06-25 08:16:59 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
async move {
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
2019-06-25 10:59:36 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
2019-06-25 10:59:36 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let file_name = tools::required_string_param(¶m, "file-name")?.to_owned();
|
2019-06-25 08:16:59 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let backup_type = tools::required_string_param(¶m, "backup-type")?;
|
|
|
|
let backup_id = tools::required_string_param(¶m, "backup-id")?;
|
|
|
|
let backup_time = tools::required_integer_param(¶m, "backup-time")?;
|
2019-06-25 08:16:59 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
println!("Download {} from {} ({}/{}/{}/{})", file_name, store,
|
|
|
|
backup_type, backup_id, Local.timestamp(backup_time, 0), file_name);
|
2019-06-25 08:16:59 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let backup_dir = BackupDir::new(backup_type, backup_id, backup_time);
|
2019-06-25 08:16:59 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let mut path = datastore.base_path();
|
|
|
|
path.push(backup_dir.relative_path());
|
|
|
|
path.push(&file_name);
|
|
|
|
|
|
|
|
let file = tokio::fs::File::open(path)
|
|
|
|
.map_err(|err| http_err!(BAD_REQUEST, format!("File open failed: {}", err)))
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
let payload = tokio::codec::FramedRead::new(file, tokio::codec::BytesCodec::new())
|
|
|
|
.map_ok(|bytes| hyper::Chunk::from(bytes.freeze()));
|
|
|
|
let body = Body::wrap_stream(payload);
|
2019-06-25 08:16:59 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
// fixme: set other headers ?
|
|
|
|
Ok(Response::builder()
|
|
|
|
.status(StatusCode::OK)
|
|
|
|
.header(header::CONTENT_TYPE, "application/octet-stream")
|
|
|
|
.body(body)
|
|
|
|
.unwrap())
|
|
|
|
}.boxed()
|
2019-06-25 08:16:59 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 12:10:49 +00:00
|
|
|
#[sortable]
|
2019-12-06 11:36:41 +00:00
|
|
|
pub const API_METHOD_UPLOAD_BACKUP_LOG: ApiMethod = ApiMethod::new(
|
|
|
|
&ApiHandler::AsyncHttp(&upload_backup_log),
|
2019-11-21 08:36:41 +00:00
|
|
|
&ObjectSchema::new(
|
|
|
|
"Download single raw file from backup snapshot.",
|
2019-11-21 12:10:49 +00:00
|
|
|
&sorted!([
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-11-21 08:36:41 +00:00
|
|
|
("backup-type", false, &BACKUP_TYPE_SCHEMA),
|
2019-12-06 11:36:41 +00:00
|
|
|
("backup-id", false, &BACKUP_ID_SCHEMA),
|
2019-11-21 08:36:41 +00:00
|
|
|
("backup-time", false, &BACKUP_TIME_SCHEMA),
|
2019-11-21 12:10:49 +00:00
|
|
|
]),
|
2019-06-25 08:16:59 +00:00
|
|
|
)
|
2019-11-21 08:36:41 +00:00
|
|
|
);
|
2019-06-25 08:16:59 +00:00
|
|
|
|
2019-07-25 08:12:45 +00:00
|
|
|
fn upload_backup_log(
|
|
|
|
_parts: Parts,
|
|
|
|
req_body: Body,
|
|
|
|
param: Value,
|
2019-11-21 08:36:41 +00:00
|
|
|
_info: &ApiMethod,
|
2019-07-25 08:12:45 +00:00
|
|
|
_rpcenv: Box<dyn RpcEnvironment>,
|
2019-11-22 12:02:05 +00:00
|
|
|
) -> ApiFuture {
|
2019-07-25 08:12:45 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
async move {
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
2019-07-25 08:12:45 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
2019-07-25 08:12:45 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let file_name = "client.log.blob";
|
2019-07-25 08:12:45 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let backup_type = tools::required_string_param(¶m, "backup-type")?;
|
|
|
|
let backup_id = tools::required_string_param(¶m, "backup-id")?;
|
|
|
|
let backup_time = tools::required_integer_param(¶m, "backup-time")?;
|
2019-07-25 08:12:45 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let backup_dir = BackupDir::new(backup_type, backup_id, backup_time);
|
2019-07-25 08:12:45 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
let mut path = datastore.base_path();
|
|
|
|
path.push(backup_dir.relative_path());
|
|
|
|
path.push(&file_name);
|
2019-07-25 08:12:45 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
if path.exists() {
|
|
|
|
bail!("backup already contains a log.");
|
|
|
|
}
|
2019-07-25 10:23:33 +00:00
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
println!("Upload backup log to {}/{}/{}/{}/{}", store,
|
|
|
|
backup_type, backup_id, BackupDir::backup_time_to_string(backup_dir.backup_time()), file_name);
|
|
|
|
|
|
|
|
let data = req_body
|
|
|
|
.map_err(Error::from)
|
|
|
|
.try_fold(Vec::new(), |mut acc, chunk| {
|
|
|
|
acc.extend_from_slice(&*chunk);
|
|
|
|
future::ok::<_, Error>(acc)
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
let blob = DataBlob::from_raw(data)?;
|
|
|
|
// always verify CRC at server side
|
|
|
|
blob.verify_crc()?;
|
|
|
|
let raw_data = blob.raw_data();
|
|
|
|
file_set_contents(&path, raw_data, None)?;
|
|
|
|
|
|
|
|
// fixme: use correct formatter
|
|
|
|
Ok(crate::server::formatter::json_response(Ok(Value::Null)))
|
|
|
|
}.boxed()
|
2019-07-25 08:12:45 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 12:10:49 +00:00
|
|
|
#[sortable]
|
2019-11-21 08:36:41 +00:00
|
|
|
const DATASTORE_INFO_SUBDIRS: SubdirMap = &[
|
|
|
|
(
|
|
|
|
"download",
|
|
|
|
&Router::new()
|
|
|
|
.download(&API_METHOD_DOWNLOAD_FILE)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"files",
|
|
|
|
&Router::new()
|
|
|
|
.get(
|
|
|
|
&ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&list_snapshot_files),
|
|
|
|
&ObjectSchema::new(
|
|
|
|
"List snapshot files.",
|
2019-11-21 12:10:49 +00:00
|
|
|
&sorted!([
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-11-21 08:36:41 +00:00
|
|
|
("backup-type", false, &BACKUP_TYPE_SCHEMA),
|
|
|
|
("backup-id", false, &BACKUP_ID_SCHEMA),
|
|
|
|
("backup-time", false, &BACKUP_TIME_SCHEMA),
|
2019-11-21 12:10:49 +00:00
|
|
|
]),
|
2019-03-06 09:49:59 +00:00
|
|
|
)
|
|
|
|
)
|
2019-11-21 08:36:41 +00:00
|
|
|
)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"gc",
|
|
|
|
&Router::new()
|
|
|
|
.get(&API_METHOD_GARBAGE_COLLECTION_STATUS)
|
|
|
|
.post(&API_METHOD_START_GARBAGE_COLLECTION)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"groups",
|
|
|
|
&Router::new()
|
|
|
|
.get(
|
|
|
|
&ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&list_groups),
|
|
|
|
&ObjectSchema::new(
|
|
|
|
"List backup groups.",
|
2019-12-11 12:45:23 +00:00
|
|
|
&sorted!([ ("store", false, &DATASTORE_SCHEMA) ]),
|
2019-03-03 10:29:00 +00:00
|
|
|
)
|
|
|
|
)
|
2019-11-21 08:36:41 +00:00
|
|
|
)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"prune",
|
|
|
|
&Router::new()
|
|
|
|
.post(&API_METHOD_PRUNE)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"snapshots",
|
|
|
|
&Router::new()
|
|
|
|
.get(
|
|
|
|
&ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&list_snapshots),
|
|
|
|
&ObjectSchema::new(
|
|
|
|
"List backup groups.",
|
2019-11-21 12:10:49 +00:00
|
|
|
&sorted!([
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-11-21 08:36:41 +00:00
|
|
|
("backup-type", true, &BACKUP_TYPE_SCHEMA),
|
|
|
|
("backup-id", true, &BACKUP_ID_SCHEMA),
|
2019-11-21 12:10:49 +00:00
|
|
|
]),
|
2019-11-21 08:36:41 +00:00
|
|
|
)
|
2019-03-03 10:29:00 +00:00
|
|
|
)
|
2019-11-21 08:36:41 +00:00
|
|
|
)
|
|
|
|
.delete(
|
|
|
|
&ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&delete_snapshots),
|
|
|
|
&ObjectSchema::new(
|
|
|
|
"Delete backup snapshot.",
|
2019-11-21 12:10:49 +00:00
|
|
|
&sorted!([
|
2019-12-11 12:45:23 +00:00
|
|
|
("store", false, &DATASTORE_SCHEMA),
|
2019-11-21 08:36:41 +00:00
|
|
|
("backup-type", false, &BACKUP_TYPE_SCHEMA),
|
|
|
|
("backup-id", false, &BACKUP_ID_SCHEMA),
|
|
|
|
("backup-time", false, &BACKUP_TIME_SCHEMA),
|
2019-11-21 12:10:49 +00:00
|
|
|
]),
|
2019-11-21 08:36:41 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"status",
|
|
|
|
&Router::new()
|
|
|
|
.get(&API_METHOD_STATUS)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"upload-backup-log",
|
|
|
|
&Router::new()
|
|
|
|
.upload(&API_METHOD_UPLOAD_BACKUP_LOG)
|
|
|
|
),
|
|
|
|
];
|
|
|
|
|
2019-11-22 12:02:05 +00:00
|
|
|
const DATASTORE_INFO_ROUTER: Router = Router::new()
|
2019-11-21 08:36:41 +00:00
|
|
|
.get(&list_subdirs_api_method!(DATASTORE_INFO_SUBDIRS))
|
|
|
|
.subdirs(DATASTORE_INFO_SUBDIRS);
|
|
|
|
|
|
|
|
|
|
|
|
pub const ROUTER: Router = Router::new()
|
|
|
|
.get(
|
|
|
|
&ApiMethod::new(
|
|
|
|
&ApiHandler::Sync(&get_datastore_list),
|
|
|
|
&ObjectSchema::new("Directory index.", &[])
|
2019-03-03 10:29:00 +00:00
|
|
|
)
|
2019-11-21 08:36:41 +00:00
|
|
|
)
|
|
|
|
.match_all("store", &DATASTORE_INFO_ROUTER);
|