2018-12-20 09:32:49 +00:00
|
|
|
extern crate proxmox_backup;
|
2018-12-14 07:28:56 +00:00
|
|
|
|
|
|
|
use failure::*;
|
2019-01-18 15:50:15 +00:00
|
|
|
//use std::os::unix::io::AsRawFd;
|
2018-12-14 07:28:56 +00:00
|
|
|
|
2018-12-20 09:32:49 +00:00
|
|
|
use proxmox_backup::tools;
|
|
|
|
use proxmox_backup::cli::command::*;
|
|
|
|
use proxmox_backup::api::schema::*;
|
|
|
|
use proxmox_backup::api::router::*;
|
2019-01-17 10:38:22 +00:00
|
|
|
use proxmox_backup::client::http_client::*;
|
|
|
|
use proxmox_backup::client::catar_backup_stream::*;
|
2018-12-20 09:32:49 +00:00
|
|
|
//use proxmox_backup::backup::chunk_store::*;
|
|
|
|
//use proxmox_backup::backup::image_index::*;
|
|
|
|
//use proxmox_backup::config::datastore;
|
2019-01-17 10:38:22 +00:00
|
|
|
//use proxmox_backup::catar::encoder::*;
|
2019-01-18 15:50:15 +00:00
|
|
|
//use proxmox_backup::backup::datastore::*;
|
2019-01-17 10:38:22 +00:00
|
|
|
|
2018-12-15 10:14:41 +00:00
|
|
|
use serde_json::{Value};
|
2019-01-17 10:38:22 +00:00
|
|
|
use hyper::Body;
|
|
|
|
|
|
|
|
fn backup_directory(body: Body, store: &str, archive_name: &str) -> Result<(), Error> {
|
2018-12-27 12:15:10 +00:00
|
|
|
|
2019-01-17 10:38:22 +00:00
|
|
|
let client = HttpClient::new("localhost");
|
2018-12-27 12:15:10 +00:00
|
|
|
|
2019-01-18 11:01:37 +00:00
|
|
|
let epoch = std::time::SystemTime::now().duration_since(
|
|
|
|
std::time::SystemTime::UNIX_EPOCH)?.as_secs();
|
|
|
|
|
|
|
|
let query = url::form_urlencoded::Serializer::new(String::new())
|
|
|
|
.append_pair("archive_name", archive_name)
|
|
|
|
.append_pair("type", "host")
|
|
|
|
.append_pair("id", &tools::nodename())
|
|
|
|
.append_pair("time", &epoch.to_string())
|
|
|
|
.finish();
|
|
|
|
|
2019-01-22 11:10:38 +00:00
|
|
|
let path = format!("api2/json/admin/datastore/{}/catar?{}", store, query);
|
2019-01-02 10:02:56 +00:00
|
|
|
|
2019-01-17 11:43:29 +00:00
|
|
|
client.upload("application/x-proxmox-backup-catar", body, &path)?;
|
2018-12-27 09:11:11 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2019-01-17 10:38:22 +00:00
|
|
|
/****
|
2018-12-27 09:11:11 +00:00
|
|
|
fn backup_image(datastore: &DataStore, file: &std::fs::File, size: usize, target: &str, chunk_size: usize) -> Result<(), Error> {
|
|
|
|
|
2019-01-17 10:38:22 +00:00
|
|
|
let mut target = PathBuf::from(target);
|
2018-12-27 09:11:11 +00:00
|
|
|
|
|
|
|
if let Some(ext) = target.extension() {
|
|
|
|
if ext != "iidx" {
|
|
|
|
bail!("got wrong file extension - expected '.iidx'");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
target.set_extension("iidx");
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut index = datastore.create_image_writer(&target, size, chunk_size)?;
|
|
|
|
|
|
|
|
tools::file_chunker(file, chunk_size, |pos, chunk| {
|
|
|
|
index.add_chunk(pos, chunk)?;
|
|
|
|
Ok(true)
|
|
|
|
})?;
|
|
|
|
|
|
|
|
index.close()?; // commit changes
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-01-17 10:38:22 +00:00
|
|
|
*/
|
2018-12-27 09:11:11 +00:00
|
|
|
|
2019-01-21 17:58:14 +00:00
|
|
|
fn list_backups(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
|
|
|
|
let client = HttpClient::new("localhost");
|
|
|
|
|
2019-01-22 11:10:38 +00:00
|
|
|
let path = format!("api2/json/admin/datastore/{}/backups", store);
|
2019-01-21 17:58:14 +00:00
|
|
|
|
|
|
|
let result = client.get(&path)?;
|
|
|
|
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
2018-12-27 09:11:11 +00:00
|
|
|
fn create_backup(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
|
2018-12-14 07:28:56 +00:00
|
|
|
|
2019-01-17 11:14:02 +00:00
|
|
|
let filename = tools::required_string_param(¶m, "filename")?;
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
let target = tools::required_string_param(¶m, "target")?;
|
2018-12-14 12:39:41 +00:00
|
|
|
|
2019-01-18 15:50:15 +00:00
|
|
|
let mut _chunk_size = 4*1024*1024;
|
2018-12-21 10:18:08 +00:00
|
|
|
|
|
|
|
if let Some(size) = param["chunk-size"].as_u64() {
|
|
|
|
static SIZES: [u64; 7] = [64, 128, 256, 512, 1024, 2048, 4096];
|
|
|
|
|
|
|
|
if SIZES.contains(&size) {
|
2019-01-18 15:50:15 +00:00
|
|
|
_chunk_size = (size as usize) * 1024;
|
2018-12-21 10:18:08 +00:00
|
|
|
} else {
|
|
|
|
bail!("Got unsupported chunk size '{}'", size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-17 10:38:22 +00:00
|
|
|
let stat = match nix::sys::stat::stat(filename) {
|
|
|
|
Ok(s) => s,
|
|
|
|
Err(err) => bail!("unable to access '{}' - {}", filename, err),
|
|
|
|
};
|
2018-12-14 12:39:41 +00:00
|
|
|
|
2018-12-27 09:11:11 +00:00
|
|
|
if (stat.st_mode & libc::S_IFDIR) != 0 {
|
|
|
|
println!("Backup directory '{}' to '{}'", filename, store);
|
|
|
|
|
2019-01-17 10:38:22 +00:00
|
|
|
let stream = CaTarBackupStream::open(filename)?;
|
|
|
|
|
|
|
|
let body = Body::wrap_stream(stream);
|
2018-12-27 12:15:10 +00:00
|
|
|
|
2019-01-17 10:38:22 +00:00
|
|
|
backup_directory(body, store, target)?;
|
2018-12-27 09:11:11 +00:00
|
|
|
|
|
|
|
} else if (stat.st_mode & (libc::S_IFREG|libc::S_IFBLK)) != 0 {
|
2019-01-17 10:38:22 +00:00
|
|
|
println!("Backup image '{}' to '{}'", filename, store);
|
2018-12-15 13:51:05 +00:00
|
|
|
|
2018-12-16 13:44:44 +00:00
|
|
|
if stat.st_size <= 0 { bail!("got strange file size '{}'", stat.st_size); }
|
2019-01-18 15:50:15 +00:00
|
|
|
let _size = stat.st_size as usize;
|
2018-12-14 12:39:41 +00:00
|
|
|
|
2019-01-17 10:38:22 +00:00
|
|
|
panic!("implement me");
|
|
|
|
|
|
|
|
//backup_image(&datastore, &file, size, &target, chunk_size)?;
|
2018-12-21 07:36:57 +00:00
|
|
|
|
2019-01-02 11:55:18 +00:00
|
|
|
// let idx = datastore.open_image_reader(target)?;
|
|
|
|
// idx.print_info();
|
2018-12-16 13:44:44 +00:00
|
|
|
|
2018-12-27 09:11:11 +00:00
|
|
|
} else {
|
|
|
|
bail!("unsupported file type (expected a directory, file or block device)");
|
2018-12-16 13:44:44 +00:00
|
|
|
}
|
|
|
|
|
2018-12-21 08:24:55 +00:00
|
|
|
//datastore.garbage_collection()?;
|
2018-12-18 10:06:03 +00:00
|
|
|
|
2018-12-14 07:28:56 +00:00
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
2019-01-21 17:58:14 +00:00
|
|
|
let create_cmd_def = CliCommand::new(
|
2018-12-14 07:28:56 +00:00
|
|
|
ApiMethod::new(
|
2018-12-27 09:11:11 +00:00
|
|
|
create_backup,
|
|
|
|
ObjectSchema::new("Create backup.")
|
|
|
|
.required("filename", StringSchema::new("Source name (file or directory name)"))
|
2018-12-14 07:28:56 +00:00
|
|
|
.required("store", StringSchema::new("Datastore name."))
|
2018-12-20 13:09:31 +00:00
|
|
|
.required("target", StringSchema::new("Target name."))
|
2018-12-21 10:18:08 +00:00
|
|
|
.optional(
|
|
|
|
"chunk-size",
|
|
|
|
IntegerSchema::new("Chunk size in KB. Must be a power of 2.")
|
|
|
|
.minimum(64)
|
|
|
|
.maximum(4096)
|
|
|
|
.default(4096)
|
|
|
|
)
|
2018-12-14 07:28:56 +00:00
|
|
|
))
|
2018-12-20 13:09:31 +00:00
|
|
|
.arg_param(vec!["filename", "target"])
|
2019-01-18 12:42:52 +00:00
|
|
|
.completion_cb("filename", tools::complete_file_name)
|
2018-12-20 09:32:49 +00:00
|
|
|
.completion_cb("store", proxmox_backup::config::datastore::complete_datastore_name);
|
2018-12-15 10:24:39 +00:00
|
|
|
|
2019-01-21 17:58:14 +00:00
|
|
|
let list_cmd_def = CliCommand::new(
|
|
|
|
ApiMethod::new(
|
|
|
|
list_backups,
|
|
|
|
ObjectSchema::new("List backups.")
|
|
|
|
.required("store", StringSchema::new("Datastore name."))
|
|
|
|
))
|
|
|
|
.arg_param(vec!["store"])
|
|
|
|
.completion_cb("store", proxmox_backup::config::datastore::complete_datastore_name);
|
|
|
|
|
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
|
|
|
.insert("create".to_owned(), create_cmd_def.into())
|
|
|
|
.insert("list".to_owned(), list_cmd_def.into());
|
2018-12-14 12:39:41 +00:00
|
|
|
|
2018-12-14 07:28:56 +00:00
|
|
|
if let Err(err) = run_cli_command(&cmd_def.into()) {
|
|
|
|
eprintln!("Error: {}", err);
|
2019-01-03 13:36:31 +00:00
|
|
|
if err.downcast::<UsageError>().is_ok() {
|
|
|
|
print_cli_usage();
|
|
|
|
}
|
2018-12-14 07:28:56 +00:00
|
|
|
std::process::exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|