2020-10-20 09:10:04 +00:00
|
|
|
use anyhow::{Error};
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use serde::{Serialize, Deserialize};
|
|
|
|
|
|
|
|
use proxmox::api::{
|
|
|
|
api,
|
|
|
|
schema::*,
|
|
|
|
section_config::{
|
|
|
|
SectionConfig,
|
|
|
|
SectionConfigData,
|
|
|
|
SectionConfigPlugin,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
use crate::api2::types::*;
|
|
|
|
|
|
|
|
lazy_static! {
|
2021-02-11 12:40:11 +00:00
|
|
|
pub static ref CONFIG: SectionConfig = init();
|
2020-10-20 09:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
properties: {
|
|
|
|
id: {
|
|
|
|
schema: JOB_ID_SCHEMA,
|
|
|
|
},
|
|
|
|
store: {
|
|
|
|
schema: DATASTORE_SCHEMA,
|
|
|
|
},
|
|
|
|
"ignore-verified": {
|
|
|
|
optional: true,
|
|
|
|
schema: IGNORE_VERIFIED_BACKUPS_SCHEMA,
|
|
|
|
},
|
|
|
|
"outdated-after": {
|
|
|
|
optional: true,
|
|
|
|
schema: VERIFICATION_OUTDATED_AFTER_SCHEMA,
|
|
|
|
},
|
|
|
|
comment: {
|
|
|
|
optional: true,
|
|
|
|
schema: SINGLE_LINE_COMMENT_SCHEMA,
|
|
|
|
},
|
|
|
|
schedule: {
|
|
|
|
optional: true,
|
|
|
|
schema: VERIFICATION_SCHEDULE_SCHEMA,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
#[derive(Serialize,Deserialize)]
|
2021-05-31 12:53:08 +00:00
|
|
|
#[serde(rename_all="kebab-case")]
|
2020-10-20 09:10:04 +00:00
|
|
|
/// Verification Job
|
|
|
|
pub struct VerificationJobConfig {
|
2020-10-28 14:32:28 +00:00
|
|
|
/// unique ID to address this job
|
2020-10-20 09:10:04 +00:00
|
|
|
pub id: String,
|
2020-10-28 14:32:28 +00:00
|
|
|
/// the datastore ID this verificaiton job affects
|
2020-10-20 09:10:04 +00:00
|
|
|
pub store: String,
|
|
|
|
#[serde(skip_serializing_if="Option::is_none")]
|
2020-10-28 14:32:28 +00:00
|
|
|
/// if not set to false, check the age of the last snapshot verification to filter
|
|
|
|
/// out recent ones, depending on 'outdated_after' configuration.
|
2020-10-20 09:10:04 +00:00
|
|
|
pub ignore_verified: Option<bool>,
|
|
|
|
#[serde(skip_serializing_if="Option::is_none")]
|
2020-10-28 14:32:28 +00:00
|
|
|
/// Reverify snapshots after X days, never if 0. Ignored if 'ignore_verified' is false.
|
2020-10-20 09:10:04 +00:00
|
|
|
pub outdated_after: Option<i64>,
|
|
|
|
#[serde(skip_serializing_if="Option::is_none")]
|
|
|
|
pub comment: Option<String>,
|
|
|
|
#[serde(skip_serializing_if="Option::is_none")]
|
2020-10-28 14:32:28 +00:00
|
|
|
/// when to schedule this job in calendar event notation
|
2020-10-20 09:10:04 +00:00
|
|
|
pub schedule: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
properties: {
|
2021-02-19 08:50:25 +00:00
|
|
|
config: {
|
|
|
|
type: VerificationJobConfig,
|
2020-10-20 09:10:04 +00:00
|
|
|
},
|
2021-02-19 08:50:25 +00:00
|
|
|
status: {
|
|
|
|
type: JobScheduleStatus,
|
2020-10-20 09:10:04 +00:00
|
|
|
},
|
2021-02-19 08:50:25 +00:00
|
|
|
},
|
2020-10-20 09:10:04 +00:00
|
|
|
)]
|
|
|
|
#[derive(Serialize,Deserialize)]
|
2021-05-31 12:53:08 +00:00
|
|
|
#[serde(rename_all="kebab-case")]
|
2020-10-20 09:10:04 +00:00
|
|
|
/// Status of Verification Job
|
|
|
|
pub struct VerificationJobStatus {
|
2021-02-19 08:50:25 +00:00
|
|
|
#[serde(flatten)]
|
|
|
|
pub config: VerificationJobConfig,
|
|
|
|
#[serde(flatten)]
|
|
|
|
pub status: JobScheduleStatus,
|
2020-10-20 09:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn init() -> SectionConfig {
|
|
|
|
let obj_schema = match VerificationJobConfig::API_SCHEMA {
|
|
|
|
Schema::Object(ref obj_schema) => obj_schema,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let plugin = SectionConfigPlugin::new("verification".to_string(), Some(String::from("id")), obj_schema);
|
|
|
|
let mut config = SectionConfig::new(&JOB_ID_SCHEMA);
|
|
|
|
config.register_plugin(plugin);
|
|
|
|
|
|
|
|
config
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const VERIFICATION_CFG_FILENAME: &str = "/etc/proxmox-backup/verification.cfg";
|
|
|
|
pub const VERIFICATION_CFG_LOCKFILE: &str = "/etc/proxmox-backup/.verification.lck";
|
|
|
|
|
|
|
|
pub fn config() -> Result<(SectionConfigData, [u8;32]), Error> {
|
|
|
|
|
|
|
|
let content = proxmox::tools::fs::file_read_optional_string(VERIFICATION_CFG_FILENAME)?;
|
|
|
|
let content = content.unwrap_or_else(String::new);
|
|
|
|
|
|
|
|
let digest = openssl::sha::sha256(content.as_bytes());
|
|
|
|
let data = CONFIG.parse(VERIFICATION_CFG_FILENAME, &content)?;
|
|
|
|
Ok((data, digest))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn save_config(config: &SectionConfigData) -> Result<(), Error> {
|
|
|
|
let raw = CONFIG.write(VERIFICATION_CFG_FILENAME, &config)?;
|
2021-07-20 11:51:55 +00:00
|
|
|
crate::backup::replace_backup_config(VERIFICATION_CFG_FILENAME, raw.as_bytes())
|
2020-10-20 09:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// shell completion helper
|
|
|
|
pub fn complete_verification_job_id(_arg: &str, _param: &HashMap<String, String>) -> Vec<String> {
|
|
|
|
match config() {
|
|
|
|
Ok((data, _digest)) => data.sections.iter().map(|(id, _)| id.to_string()).collect(),
|
|
|
|
Err(_) => return vec![],
|
|
|
|
}
|
2020-10-28 12:56:49 +00:00
|
|
|
}
|