cleanup proxmox_backup::backup module
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
97dfc62f0d
commit
b2065dc7d2
@ -26,15 +26,37 @@ use proxmox::{http_err, identity, list_subdirs_api_method, sortable};
|
|||||||
use pxar::accessor::aio::Accessor;
|
use pxar::accessor::aio::Accessor;
|
||||||
use pxar::EntryKind;
|
use pxar::EntryKind;
|
||||||
|
|
||||||
|
use pbs_api_types::{
|
||||||
|
Authid, BackupContent, Counts, CryptMode, DataStoreListItem, GarbageCollectionStatus,
|
||||||
|
GroupListItem, SnapshotListItem, SnapshotVerifyState, BACKUP_ARCHIVE_NAME_SCHEMA,
|
||||||
|
BACKUP_ID_SCHEMA, BACKUP_TIME_SCHEMA, BACKUP_TYPE_SCHEMA, DATASTORE_SCHEMA,
|
||||||
|
};
|
||||||
use pbs_client::pxar::create_zip;
|
use pbs_client::pxar::create_zip;
|
||||||
|
use pbs_datastore::{BackupDir, BackupGroup, StoreProgress, CATALOG_NAME};
|
||||||
|
use pbs_datastore::backup_info::BackupInfo;
|
||||||
|
use pbs_datastore::cached_chunk_reader::CachedChunkReader;
|
||||||
|
use pbs_datastore::catalog::CatalogReader;
|
||||||
|
use pbs_datastore::data_blob::DataBlob;
|
||||||
|
use pbs_datastore::data_blob_reader::DataBlobReader;
|
||||||
|
use pbs_datastore::dynamic_index::{BufferedDynamicReader, DynamicIndexReader, LocalDynamicReadAt};
|
||||||
|
use pbs_datastore::fixed_index::{FixedIndexReader};
|
||||||
|
use pbs_datastore::index::IndexFile;
|
||||||
|
use pbs_datastore::manifest::{BackupManifest, CLIENT_LOG_BLOB_NAME, MANIFEST_BLOB_NAME};
|
||||||
|
use pbs_datastore::prune::{compute_prune_info, PruneOptions};
|
||||||
use pbs_tools::blocking::WrappedReaderStream;
|
use pbs_tools::blocking::WrappedReaderStream;
|
||||||
use pbs_tools::stream::{AsyncReaderStream, AsyncChannelWriter};
|
use pbs_tools::stream::{AsyncReaderStream, AsyncChannelWriter};
|
||||||
use pbs_tools::json::{required_integer_param, required_string_param};
|
use pbs_tools::json::{required_integer_param, required_string_param};
|
||||||
|
|
||||||
use crate::api2::types::*;
|
use crate::api2::types::{
|
||||||
|
ArchiveEntry, DataStoreStatus, RRDMode, RRDTimeFrameResolution,
|
||||||
|
IGNORE_VERIFIED_BACKUPS_SCHEMA, UPID_SCHEMA, VERIFICATION_OUTDATED_AFTER_SCHEMA
|
||||||
|
};
|
||||||
use crate::api2::node::rrd::create_value_from_rrd;
|
use crate::api2::node::rrd::create_value_from_rrd;
|
||||||
use crate::api2::helpers;
|
use crate::api2::helpers;
|
||||||
use crate::backup::*;
|
use crate::backup::{
|
||||||
|
check_backup_owner, verify_all_backups, verify_backup_group, verify_backup_dir, verify_filter,
|
||||||
|
DataStore, LocalChunkReader,
|
||||||
|
};
|
||||||
use crate::config::datastore;
|
use crate::config::datastore;
|
||||||
use crate::config::cached_user_info::CachedUserInfo;
|
use crate::config::cached_user_info::CachedUserInfo;
|
||||||
|
|
||||||
|
@ -10,8 +10,13 @@ use proxmox::tools::digest_to_hex;
|
|||||||
use proxmox::tools::fs::{replace_file, CreateOptions};
|
use proxmox::tools::fs::{replace_file, CreateOptions};
|
||||||
use proxmox::api::{RpcEnvironment, RpcEnvironmentType};
|
use proxmox::api::{RpcEnvironment, RpcEnvironmentType};
|
||||||
|
|
||||||
|
use pbs_datastore::DataBlob;
|
||||||
|
use pbs_datastore::backup_info::{BackupDir, BackupInfo};
|
||||||
|
use pbs_datastore::dynamic_index::DynamicIndexWriter;
|
||||||
|
use pbs_datastore::fixed_index::FixedIndexWriter;
|
||||||
|
|
||||||
use crate::api2::types::Authid;
|
use crate::api2::types::Authid;
|
||||||
use crate::backup::*;
|
use crate::backup::{verify_backup_dir_with_lock, DataStore};
|
||||||
use crate::server::WorkerTask;
|
use crate::server::WorkerTask;
|
||||||
use crate::server::formatter::*;
|
use crate::server::formatter::*;
|
||||||
use hyper::{Body, Response};
|
use hyper::{Body, Response};
|
||||||
|
@ -15,9 +15,12 @@ use proxmox::api::schema::*;
|
|||||||
use pbs_tools::fs::lock_dir_noblock_shared;
|
use pbs_tools::fs::lock_dir_noblock_shared;
|
||||||
use pbs_tools::json::{required_array_param, required_integer_param, required_string_param};
|
use pbs_tools::json::{required_array_param, required_integer_param, required_string_param};
|
||||||
use pbs_datastore::PROXMOX_BACKUP_PROTOCOL_ID_V1;
|
use pbs_datastore::PROXMOX_BACKUP_PROTOCOL_ID_V1;
|
||||||
|
use pbs_datastore::backup_info::{BackupDir, BackupGroup, BackupInfo};
|
||||||
|
use pbs_datastore::index::IndexFile;
|
||||||
|
use pbs_datastore::manifest::{archive_type, ArchiveType};
|
||||||
|
|
||||||
use crate::server::{WorkerTask, H2Service};
|
use crate::server::{WorkerTask, H2Service};
|
||||||
use crate::backup::*;
|
use crate::backup::DataStore;
|
||||||
use crate::api2::types::*;
|
use crate::api2::types::*;
|
||||||
use crate::config::acl::PRIV_DATASTORE_BACKUP;
|
use crate::config::acl::PRIV_DATASTORE_BACKUP;
|
||||||
use crate::config::cached_user_info::CachedUserInfo;
|
use crate::config::cached_user_info::CachedUserInfo;
|
||||||
|
@ -12,10 +12,12 @@ use proxmox::{sortable, identity};
|
|||||||
use proxmox::api::{ApiResponseFuture, ApiHandler, ApiMethod, RpcEnvironment};
|
use proxmox::api::{ApiResponseFuture, ApiHandler, ApiMethod, RpcEnvironment};
|
||||||
use proxmox::api::schema::*;
|
use proxmox::api::schema::*;
|
||||||
|
|
||||||
|
use pbs_datastore::DataBlob;
|
||||||
|
use pbs_datastore::file_formats::{DataBlobHeader, EncryptedDataBlobHeader};
|
||||||
use pbs_tools::json::{required_integer_param, required_string_param};
|
use pbs_tools::json::{required_integer_param, required_string_param};
|
||||||
|
|
||||||
use crate::api2::types::*;
|
use crate::api2::types::*;
|
||||||
use crate::backup::*;
|
use crate::backup::DataStore;
|
||||||
|
|
||||||
use super::environment::*;
|
use super::environment::*;
|
||||||
|
|
||||||
|
@ -7,6 +7,8 @@ use ::serde::{Deserialize, Serialize};
|
|||||||
use proxmox::api::{api, Router, RpcEnvironment, Permission};
|
use proxmox::api::{api, Router, RpcEnvironment, Permission};
|
||||||
use proxmox::api::section_config::SectionConfigData;
|
use proxmox::api::section_config::SectionConfigData;
|
||||||
use proxmox::api::schema::{ApiType, parse_property_string};
|
use proxmox::api::schema::{ApiType, parse_property_string};
|
||||||
|
|
||||||
|
use pbs_datastore::chunk_store::ChunkStore;
|
||||||
use pbs_datastore::task::TaskState;
|
use pbs_datastore::task::TaskState;
|
||||||
|
|
||||||
use crate::api2::config::sync::delete_sync_job;
|
use crate::api2::config::sync::delete_sync_job;
|
||||||
@ -17,7 +19,7 @@ use crate::api2::admin::{
|
|||||||
verify::list_verification_jobs,
|
verify::list_verification_jobs,
|
||||||
};
|
};
|
||||||
use crate::api2::types::*;
|
use crate::api2::types::*;
|
||||||
use crate::backup::*;
|
use crate::backup::BackupLockGuard;
|
||||||
use crate::config::cached_user_info::CachedUserInfo;
|
use crate::config::cached_user_info::CachedUserInfo;
|
||||||
use crate::config::datastore::{self, DataStoreConfig, DataStoreConfigUpdater};
|
use crate::config::datastore::{self, DataStoreConfig, DataStoreConfigUpdater};
|
||||||
use crate::config::acl::{PRIV_DATASTORE_ALLOCATE, PRIV_DATASTORE_AUDIT, PRIV_DATASTORE_MODIFY};
|
use crate::config::acl::{PRIV_DATASTORE_ALLOCATE, PRIV_DATASTORE_AUDIT, PRIV_DATASTORE_MODIFY};
|
||||||
|
@ -11,7 +11,9 @@ use proxmox::{
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use pbs_api_types::Fingerprint;
|
||||||
use pbs_datastore::{KeyInfo, Kdf};
|
use pbs_datastore::{KeyInfo, Kdf};
|
||||||
|
use pbs_datastore::key_derivation::KeyConfig;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
config::{
|
config::{
|
||||||
@ -33,11 +35,7 @@ use crate::{
|
|||||||
PROXMOX_CONFIG_DIGEST_SCHEMA,
|
PROXMOX_CONFIG_DIGEST_SCHEMA,
|
||||||
PASSWORD_HINT_SCHEMA,
|
PASSWORD_HINT_SCHEMA,
|
||||||
},
|
},
|
||||||
backup::{
|
backup::open_backup_lockfile,
|
||||||
open_backup_lockfile,
|
|
||||||
KeyConfig,
|
|
||||||
Fingerprint,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#[api(
|
#[api(
|
||||||
|
@ -7,8 +7,9 @@ use hyper::{Body, Response, StatusCode, header};
|
|||||||
|
|
||||||
use proxmox::http_bail;
|
use proxmox::http_bail;
|
||||||
|
|
||||||
|
use pbs_datastore::catalog::{CatalogReader, DirEntryAttribute};
|
||||||
|
|
||||||
use crate::api2::types::ArchiveEntry;
|
use crate::api2::types::ArchiveEntry;
|
||||||
use crate::backup::{CatalogReader, DirEntryAttribute};
|
|
||||||
|
|
||||||
pub async fn create_download_response(path: PathBuf) -> Result<Response<Body>, Error> {
|
pub async fn create_download_response(path: PathBuf) -> Result<Response<Body>, Error> {
|
||||||
let file = match tokio::fs::File::open(path.clone()).await {
|
let file = match tokio::fs::File::open(path.clone()).await {
|
||||||
|
@ -5,8 +5,10 @@ use serde_json::{json, Value};
|
|||||||
|
|
||||||
use proxmox::api::{RpcEnvironment, RpcEnvironmentType};
|
use proxmox::api::{RpcEnvironment, RpcEnvironmentType};
|
||||||
|
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
|
||||||
use crate::api2::types::Authid;
|
use crate::api2::types::Authid;
|
||||||
use crate::backup::*;
|
use crate::backup::DataStore;
|
||||||
use crate::server::formatter::*;
|
use crate::server::formatter::*;
|
||||||
use crate::server::WorkerTask;
|
use crate::server::WorkerTask;
|
||||||
|
|
||||||
|
@ -30,6 +30,9 @@ use proxmox::{
|
|||||||
use pbs_tools::fs::lock_dir_noblock_shared;
|
use pbs_tools::fs::lock_dir_noblock_shared;
|
||||||
use pbs_tools::json::{required_integer_param, required_string_param};
|
use pbs_tools::json::{required_integer_param, required_string_param};
|
||||||
use pbs_datastore::PROXMOX_BACKUP_READER_PROTOCOL_ID_V1;
|
use pbs_datastore::PROXMOX_BACKUP_READER_PROTOCOL_ID_V1;
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
use pbs_datastore::index::IndexFile;
|
||||||
|
use pbs_datastore::manifest::{archive_type, ArchiveType};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
api2::{
|
api2::{
|
||||||
@ -43,13 +46,7 @@ use crate::{
|
|||||||
Authid,
|
Authid,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
backup::{
|
backup::DataStore,
|
||||||
DataStore,
|
|
||||||
ArchiveType,
|
|
||||||
BackupDir,
|
|
||||||
IndexFile,
|
|
||||||
archive_type,
|
|
||||||
},
|
|
||||||
server::{
|
server::{
|
||||||
WorkerTask,
|
WorkerTask,
|
||||||
H2Service,
|
H2Service,
|
||||||
|
@ -15,7 +15,9 @@ use proxmox::{
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
use pbs_datastore::{task_log, task_warn};
|
use pbs_api_types::{Authid, Userid};
|
||||||
|
use pbs_datastore::{task_log, task_warn, StoreProgress};
|
||||||
|
use pbs_datastore::backup_info::{BackupDir, BackupInfo};
|
||||||
use pbs_datastore::task::TaskState;
|
use pbs_datastore::task::TaskState;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
@ -42,18 +44,11 @@ use crate::{
|
|||||||
compute_schedule_status,
|
compute_schedule_status,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
backup::{
|
backup::DataStore,
|
||||||
DataStore,
|
|
||||||
BackupDir,
|
|
||||||
BackupInfo,
|
|
||||||
StoreProgress,
|
|
||||||
},
|
|
||||||
api2::types::{
|
api2::types::{
|
||||||
Authid,
|
|
||||||
UPID_SCHEMA,
|
UPID_SCHEMA,
|
||||||
JOB_ID_SCHEMA,
|
JOB_ID_SCHEMA,
|
||||||
MediaPoolConfig,
|
MediaPoolConfig,
|
||||||
Userid,
|
|
||||||
},
|
},
|
||||||
server::WorkerTask,
|
server::WorkerTask,
|
||||||
tape::{
|
tape::{
|
||||||
|
@ -10,6 +10,8 @@ use proxmox::{
|
|||||||
tools::Uuid,
|
tools::Uuid,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
config::{
|
config::{
|
||||||
self,
|
self,
|
||||||
@ -34,9 +36,6 @@ use crate::{
|
|||||||
MediaContentEntry,
|
MediaContentEntry,
|
||||||
VAULT_NAME_SCHEMA,
|
VAULT_NAME_SCHEMA,
|
||||||
},
|
},
|
||||||
backup::{
|
|
||||||
BackupDir,
|
|
||||||
},
|
|
||||||
tape::{
|
tape::{
|
||||||
TAPE_STATUS_DIR,
|
TAPE_STATUS_DIR,
|
||||||
Inventory,
|
Inventory,
|
||||||
|
@ -28,7 +28,13 @@ use proxmox::{
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
use pbs_datastore::{task_log, task_warn};
|
use pbs_api_types::CryptMode;
|
||||||
|
use pbs_datastore::{task_log, task_warn, DataBlob};
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
use pbs_datastore::dynamic_index::DynamicIndexReader;
|
||||||
|
use pbs_datastore::fixed_index::FixedIndexReader;
|
||||||
|
use pbs_datastore::index::IndexFile;
|
||||||
|
use pbs_datastore::manifest::{archive_type, ArchiveType, BackupManifest, MANIFEST_BLOB_NAME};
|
||||||
use pbs_datastore::task::TaskState;
|
use pbs_datastore::task::TaskState;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
@ -51,19 +57,7 @@ use crate::{
|
|||||||
PRIV_TAPE_READ,
|
PRIV_TAPE_READ,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
backup::{
|
backup::DataStore,
|
||||||
ArchiveType,
|
|
||||||
archive_type,
|
|
||||||
IndexFile,
|
|
||||||
MANIFEST_BLOB_NAME,
|
|
||||||
CryptMode,
|
|
||||||
DataStore,
|
|
||||||
DynamicIndexReader,
|
|
||||||
FixedIndexReader,
|
|
||||||
BackupDir,
|
|
||||||
DataBlob,
|
|
||||||
BackupManifest,
|
|
||||||
},
|
|
||||||
server::{
|
server::{
|
||||||
lookup_user_email,
|
lookup_user_email,
|
||||||
WorkerTask,
|
WorkerTask,
|
||||||
|
@ -6,12 +6,9 @@ use serde::{Deserialize, Serialize};
|
|||||||
use proxmox::api::{api, schema::*};
|
use proxmox::api::{api, schema::*};
|
||||||
use proxmox::const_regex;
|
use proxmox::const_regex;
|
||||||
|
|
||||||
use pbs_datastore::catalog::CatalogEntryType;
|
use pbs_datastore::catalog::{CatalogEntryType, DirEntryAttribute};
|
||||||
|
|
||||||
use crate::{
|
use crate::config::acl::Role;
|
||||||
backup::DirEntryAttribute,
|
|
||||||
config::acl::Role,
|
|
||||||
};
|
|
||||||
|
|
||||||
mod tape;
|
mod tape;
|
||||||
pub use tape::*;
|
pub use tape::*;
|
||||||
|
@ -36,52 +36,6 @@ pub fn backup_group() -> Result<nix::unistd::Group, Error> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub use pbs_datastore::backup_info;
|
|
||||||
pub use pbs_datastore::backup_info::*;
|
|
||||||
pub use pbs_datastore::catalog;
|
|
||||||
pub use pbs_datastore::catalog::*;
|
|
||||||
pub use pbs_datastore::checksum_reader;
|
|
||||||
pub use pbs_datastore::checksum_reader::*;
|
|
||||||
pub use pbs_datastore::checksum_writer;
|
|
||||||
pub use pbs_datastore::checksum_writer::*;
|
|
||||||
pub use pbs_datastore::chunk_stat;
|
|
||||||
pub use pbs_datastore::chunk_stat::*;
|
|
||||||
pub use pbs_datastore::chunk_store;
|
|
||||||
pub use pbs_datastore::chunk_store::*;
|
|
||||||
pub use pbs_datastore::chunker;
|
|
||||||
pub use pbs_datastore::chunker::*;
|
|
||||||
pub use pbs_datastore::crypt_config;
|
|
||||||
pub use pbs_datastore::crypt_config::*;
|
|
||||||
pub use pbs_datastore::crypt_reader;
|
|
||||||
pub use pbs_datastore::crypt_reader::*;
|
|
||||||
pub use pbs_datastore::crypt_writer;
|
|
||||||
pub use pbs_datastore::crypt_writer::*;
|
|
||||||
pub use pbs_datastore::data_blob;
|
|
||||||
pub use pbs_datastore::data_blob::*;
|
|
||||||
pub use pbs_datastore::data_blob_reader;
|
|
||||||
pub use pbs_datastore::data_blob_reader::*;
|
|
||||||
pub use pbs_datastore::data_blob_writer;
|
|
||||||
pub use pbs_datastore::data_blob_writer::*;
|
|
||||||
pub use pbs_datastore::file_formats;
|
|
||||||
pub use pbs_datastore::file_formats::*;
|
|
||||||
pub use pbs_datastore::index;
|
|
||||||
pub use pbs_datastore::index::*;
|
|
||||||
pub use pbs_datastore::key_derivation;
|
|
||||||
pub use pbs_datastore::key_derivation::*;
|
|
||||||
pub use pbs_datastore::manifest;
|
|
||||||
pub use pbs_datastore::manifest::*;
|
|
||||||
pub use pbs_datastore::prune;
|
|
||||||
pub use pbs_datastore::prune::*;
|
|
||||||
|
|
||||||
pub use pbs_datastore::store_progress::StoreProgress;
|
|
||||||
|
|
||||||
pub use pbs_datastore::cached_chunk_reader::*;
|
|
||||||
pub use pbs_datastore::dynamic_index::*;
|
|
||||||
pub use pbs_datastore::fixed_index;
|
|
||||||
pub use pbs_datastore::fixed_index::*;
|
|
||||||
|
|
||||||
pub use pbs_datastore::read_chunk::*;
|
|
||||||
|
|
||||||
// Split
|
// Split
|
||||||
mod read_chunk;
|
mod read_chunk;
|
||||||
pub use read_chunk::*;
|
pub use read_chunk::*;
|
||||||
|
@ -6,26 +6,17 @@ use std::time::Instant;
|
|||||||
|
|
||||||
use anyhow::{bail, format_err, Error};
|
use anyhow::{bail, format_err, Error};
|
||||||
|
|
||||||
use pbs_datastore::task_log;
|
use pbs_api_types::CryptMode;
|
||||||
|
use pbs_datastore::{task_log, DataBlob, StoreProgress};
|
||||||
|
use pbs_datastore::backup_info::{BackupGroup, BackupDir, BackupInfo};
|
||||||
|
use pbs_datastore::index::IndexFile;
|
||||||
|
use pbs_datastore::manifest::{archive_type, ArchiveType, BackupManifest, FileInfo};
|
||||||
use pbs_datastore::task::TaskState;
|
use pbs_datastore::task::TaskState;
|
||||||
use pbs_tools::fs::lock_dir_noblock_shared;
|
use pbs_tools::fs::lock_dir_noblock_shared;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
api2::types::*,
|
api2::types::*,
|
||||||
backup::{
|
backup::DataStore,
|
||||||
DataStore,
|
|
||||||
StoreProgress,
|
|
||||||
DataBlob,
|
|
||||||
BackupGroup,
|
|
||||||
BackupDir,
|
|
||||||
BackupInfo,
|
|
||||||
BackupManifest,
|
|
||||||
IndexFile,
|
|
||||||
CryptMode,
|
|
||||||
FileInfo,
|
|
||||||
ArchiveType,
|
|
||||||
archive_type,
|
|
||||||
},
|
|
||||||
server::UPID,
|
server::UPID,
|
||||||
tools::ParallelHandler,
|
tools::ParallelHandler,
|
||||||
};
|
};
|
||||||
|
@ -462,10 +462,8 @@ async fn schedule_datastore_garbage_collection() {
|
|||||||
|
|
||||||
async fn schedule_datastore_prune() {
|
async fn schedule_datastore_prune() {
|
||||||
|
|
||||||
|
use pbs_datastore::prune::PruneOptions;
|
||||||
use proxmox_backup::{
|
use proxmox_backup::{
|
||||||
backup::{
|
|
||||||
PruneOptions,
|
|
||||||
},
|
|
||||||
config::datastore::{
|
config::datastore::{
|
||||||
self,
|
self,
|
||||||
DataStoreConfig,
|
DataStoreConfig,
|
||||||
|
@ -16,7 +16,13 @@ use proxmox::api::{
|
|||||||
use pxar::accessor::aio::Accessor;
|
use pxar::accessor::aio::Accessor;
|
||||||
use pxar::decoder::aio::Decoder;
|
use pxar::decoder::aio::Decoder;
|
||||||
|
|
||||||
|
use pbs_api_types::CryptMode;
|
||||||
|
use pbs_datastore::{CryptConfig, CATALOG_NAME};
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
use pbs_datastore::catalog::{CatalogReader, DirEntryAttribute};
|
||||||
|
use pbs_datastore::dynamic_index::{BufferedDynamicReader, LocalDynamicReadAt};
|
||||||
use pbs_datastore::index::IndexFile;
|
use pbs_datastore::index::IndexFile;
|
||||||
|
use pbs_datastore::key_derivation::decrypt_key;
|
||||||
use pbs_client::{BackupReader, RemoteChunkReader};
|
use pbs_client::{BackupReader, RemoteChunkReader};
|
||||||
use pbs_client::pxar::{create_zip, extract_sub_dir, extract_sub_dir_seq};
|
use pbs_client::pxar::{create_zip, extract_sub_dir, extract_sub_dir_seq};
|
||||||
use pbs_client::tools::{
|
use pbs_client::tools::{
|
||||||
@ -29,10 +35,6 @@ use pbs_client::tools::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
use proxmox_backup::api2::{helpers, types::ArchiveEntry};
|
use proxmox_backup::api2::{helpers, types::ArchiveEntry};
|
||||||
use proxmox_backup::backup::{
|
|
||||||
decrypt_key, BackupDir, BufferedDynamicReader, CatalogReader, CryptConfig, CryptMode,
|
|
||||||
DirEntryAttribute, LocalDynamicReadAt, CATALOG_NAME,
|
|
||||||
};
|
|
||||||
use proxmox_backup::tools;
|
use proxmox_backup::tools;
|
||||||
|
|
||||||
mod proxmox_file_restore;
|
mod proxmox_file_restore;
|
||||||
|
@ -11,8 +11,9 @@ use serde_json::{json, Value};
|
|||||||
use proxmox::api::{api, cli::*};
|
use proxmox::api::{api, cli::*};
|
||||||
|
|
||||||
use pbs_client::BackupRepository;
|
use pbs_client::BackupRepository;
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
use pbs_datastore::manifest::BackupManifest;
|
||||||
|
|
||||||
use proxmox_backup::backup::{BackupDir, BackupManifest};
|
|
||||||
use proxmox_backup::api2::types::ArchiveEntry;
|
use proxmox_backup::api2::types::ArchiveEntry;
|
||||||
|
|
||||||
use super::block_driver_qemu::QemuBlockDriver;
|
use super::block_driver_qemu::QemuBlockDriver;
|
||||||
|
@ -11,9 +11,9 @@ use serde_json::json;
|
|||||||
use proxmox::tools::fs::lock_file;
|
use proxmox::tools::fs::lock_file;
|
||||||
|
|
||||||
use pbs_client::{DEFAULT_VSOCK_PORT, BackupRepository, VsockClient};
|
use pbs_client::{DEFAULT_VSOCK_PORT, BackupRepository, VsockClient};
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
|
||||||
use proxmox_backup::api2::types::ArchiveEntry;
|
use proxmox_backup::api2::types::ArchiveEntry;
|
||||||
use proxmox_backup::backup::BackupDir;
|
|
||||||
use proxmox_backup::tools;
|
use proxmox_backup::tools;
|
||||||
|
|
||||||
use super::block_driver::*;
|
use super::block_driver::*;
|
||||||
|
@ -20,12 +20,12 @@ use proxmox::api::{
|
|||||||
use proxmox::{identity, list_subdirs_api_method, sortable};
|
use proxmox::{identity, list_subdirs_api_method, sortable};
|
||||||
|
|
||||||
use pbs_client::pxar::{create_archive, Flags, PxarCreateOptions, ENCODER_MAX_ENTRIES};
|
use pbs_client::pxar::{create_archive, Flags, PxarCreateOptions, ENCODER_MAX_ENTRIES};
|
||||||
|
use pbs_datastore::catalog::DirEntryAttribute;
|
||||||
use pbs_tools::fs::read_subdir;
|
use pbs_tools::fs::read_subdir;
|
||||||
use pbs_tools::json::required_string_param;
|
use pbs_tools::json::required_string_param;
|
||||||
use pbs_tools::zip::zip_directory;
|
use pbs_tools::zip::zip_directory;
|
||||||
|
|
||||||
use proxmox_backup::api2::types::*;
|
use proxmox_backup::api2::types::*;
|
||||||
use proxmox_backup::backup::DirEntryAttribute;
|
|
||||||
|
|
||||||
use pxar::encoder::aio::TokioWriter;
|
use pxar::encoder::aio::TokioWriter;
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@ use proxmox::{
|
|||||||
sys::linux::tty,
|
sys::linux::tty,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use pbs_api_types::Fingerprint;
|
||||||
use pbs_datastore::Kdf;
|
use pbs_datastore::Kdf;
|
||||||
use pbs_datastore::paperkey::{PaperkeyFormat, generate_paper_key};
|
use pbs_datastore::paperkey::{PaperkeyFormat, generate_paper_key};
|
||||||
|
|
||||||
@ -24,7 +25,6 @@ use proxmox_backup::{
|
|||||||
PASSWORD_HINT_SCHEMA,
|
PASSWORD_HINT_SCHEMA,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
backup::Fingerprint,
|
|
||||||
config::tape_encryption_keys::{
|
config::tape_encryption_keys::{
|
||||||
load_key_configs,
|
load_key_configs,
|
||||||
complete_key_fingerprint,
|
complete_key_fingerprint,
|
||||||
|
@ -18,9 +18,10 @@ use proxmox::{
|
|||||||
tools::Uuid,
|
tools::Uuid,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use pbs_api_types::Fingerprint;
|
||||||
|
|
||||||
use proxmox_backup::{
|
use proxmox_backup::{
|
||||||
config,
|
config,
|
||||||
backup::Fingerprint,
|
|
||||||
api2::types::{
|
api2::types::{
|
||||||
LTO_DRIVE_PATH_SCHEMA,
|
LTO_DRIVE_PATH_SCHEMA,
|
||||||
DRIVE_NAME_SCHEMA,
|
DRIVE_NAME_SCHEMA,
|
||||||
|
@ -16,14 +16,10 @@ use anyhow::{bail, Error};
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use proxmox::tools::fs::file_read_optional_string;
|
use proxmox::tools::fs::file_read_optional_string;
|
||||||
|
use pbs_api_types::Fingerprint;
|
||||||
|
use pbs_datastore::key_derivation::KeyConfig;
|
||||||
|
|
||||||
use crate::{
|
use crate::backup::open_backup_lockfile;
|
||||||
backup::{
|
|
||||||
open_backup_lockfile,
|
|
||||||
Fingerprint,
|
|
||||||
KeyConfig,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
mod hex_key {
|
mod hex_key {
|
||||||
use serde::{self, Deserialize, Serializer, Deserializer};
|
use serde::{self, Deserialize, Serializer, Deserializer};
|
||||||
|
@ -3,12 +3,14 @@ use std::sync::Arc;
|
|||||||
use anyhow::Error;
|
use anyhow::Error;
|
||||||
|
|
||||||
use pbs_datastore::{task_log, task_warn};
|
use pbs_datastore::{task_log, task_warn};
|
||||||
|
use pbs_datastore::backup_info::BackupInfo;
|
||||||
|
use pbs_datastore::prune::{compute_prune_info, PruneOptions};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
api2::types::*,
|
api2::types::*,
|
||||||
config::acl::PRIV_DATASTORE_MODIFY,
|
config::acl::PRIV_DATASTORE_MODIFY,
|
||||||
config::cached_user_info::CachedUserInfo,
|
config::cached_user_info::CachedUserInfo,
|
||||||
backup::{compute_prune_info, BackupInfo, DataStore, PruneOptions},
|
backup::DataStore,
|
||||||
server::jobstate::Job,
|
server::jobstate::Job,
|
||||||
server::WorkerTask,
|
server::WorkerTask,
|
||||||
};
|
};
|
||||||
|
@ -27,13 +27,12 @@ use proxmox::{
|
|||||||
sys::error::SysResult,
|
sys::error::SysResult,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use pbs_api_types::Fingerprint;
|
||||||
|
use pbs_datastore::key_derivation::KeyConfig;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
config,
|
config,
|
||||||
tools::run_command,
|
tools::run_command,
|
||||||
backup::{
|
|
||||||
Fingerprint,
|
|
||||||
KeyConfig,
|
|
||||||
},
|
|
||||||
api2::types::{
|
api2::types::{
|
||||||
MamAttribute,
|
MamAttribute,
|
||||||
LtoDriveAndMediaStatus,
|
LtoDriveAndMediaStatus,
|
||||||
|
@ -28,14 +28,12 @@ use proxmox::{
|
|||||||
api::section_config::SectionConfigData,
|
api::section_config::SectionConfigData,
|
||||||
};
|
};
|
||||||
|
|
||||||
use pbs_datastore::task_log;
|
use pbs_api_types::Fingerprint;
|
||||||
|
use pbs_datastore::key_derivation::KeyConfig;
|
||||||
use pbs_datastore::task::TaskState;
|
use pbs_datastore::task::TaskState;
|
||||||
|
use pbs_datastore::task_log;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
backup::{
|
|
||||||
Fingerprint,
|
|
||||||
KeyConfig,
|
|
||||||
},
|
|
||||||
api2::types::{
|
api2::types::{
|
||||||
VirtualTapeDrive,
|
VirtualTapeDrive,
|
||||||
LtoTapeDrive,
|
LtoTapeDrive,
|
||||||
|
@ -10,8 +10,9 @@ use proxmox::tools::{
|
|||||||
fs::{replace_file, CreateOptions},
|
fs::{replace_file, CreateOptions},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use pbs_datastore::key_derivation::KeyConfig;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
backup::KeyConfig,
|
|
||||||
tape::{
|
tape::{
|
||||||
TapeWrite,
|
TapeWrite,
|
||||||
TapeRead,
|
TapeRead,
|
||||||
|
@ -8,7 +8,7 @@ use proxmox::tools::{
|
|||||||
io::ReadExt,
|
io::ReadExt,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::backup::DataBlob;
|
use pbs_datastore::DataBlob;
|
||||||
|
|
||||||
use crate::tape::{
|
use crate::tape::{
|
||||||
TapeWrite,
|
TapeWrite,
|
||||||
|
@ -1,6 +1,17 @@
|
|||||||
//! File format definitions and implementations for data written to
|
//! File format definitions and implementations for data written to
|
||||||
//! tapes
|
//! tapes
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
use anyhow::{bail, Error};
|
||||||
|
use bitflags::bitflags;
|
||||||
|
use endian_trait::Endian;
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
use proxmox::tools::Uuid;
|
||||||
|
|
||||||
|
use pbs_api_types::Fingerprint;
|
||||||
|
|
||||||
mod blocked_reader;
|
mod blocked_reader;
|
||||||
pub use blocked_reader::*;
|
pub use blocked_reader::*;
|
||||||
|
|
||||||
@ -22,17 +33,6 @@ pub use multi_volume_writer::*;
|
|||||||
mod multi_volume_reader;
|
mod multi_volume_reader;
|
||||||
pub use multi_volume_reader::*;
|
pub use multi_volume_reader::*;
|
||||||
|
|
||||||
use std::collections::HashMap;
|
|
||||||
|
|
||||||
use anyhow::{bail, Error};
|
|
||||||
use ::serde::{Deserialize, Serialize};
|
|
||||||
use endian_trait::Endian;
|
|
||||||
use bitflags::bitflags;
|
|
||||||
|
|
||||||
use proxmox::tools::Uuid;
|
|
||||||
|
|
||||||
use crate::backup::Fingerprint;
|
|
||||||
|
|
||||||
/// We use 256KB blocksize (always)
|
/// We use 256KB blocksize (always)
|
||||||
pub const PROXMOX_TAPE_BLOCK_SIZE: usize = 256*1024;
|
pub const PROXMOX_TAPE_BLOCK_SIZE: usize = 256*1024;
|
||||||
|
|
||||||
|
@ -6,21 +6,14 @@ use std::fs::File;
|
|||||||
use anyhow::{bail, Error};
|
use anyhow::{bail, Error};
|
||||||
use nix::dir::Dir;
|
use nix::dir::Dir;
|
||||||
|
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
use pbs_datastore::index::IndexFile;
|
||||||
|
use pbs_datastore::fixed_index::FixedIndexReader;
|
||||||
|
use pbs_datastore::dynamic_index::DynamicIndexReader;
|
||||||
|
use pbs_datastore::manifest::{archive_type, ArchiveType, CLIENT_LOG_BLOB_NAME, MANIFEST_BLOB_NAME};
|
||||||
use pbs_tools::fs::lock_dir_noblock_shared;
|
use pbs_tools::fs::lock_dir_noblock_shared;
|
||||||
|
|
||||||
use crate::{
|
use crate::backup::DataStore;
|
||||||
backup::{
|
|
||||||
DataStore,
|
|
||||||
BackupDir,
|
|
||||||
ArchiveType,
|
|
||||||
IndexFile,
|
|
||||||
FixedIndexReader,
|
|
||||||
DynamicIndexReader,
|
|
||||||
MANIFEST_BLOB_NAME,
|
|
||||||
CLIENT_LOG_BLOB_NAME,
|
|
||||||
archive_type,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Helper to access the contents of a datastore backup snapshot
|
/// Helper to access the contents of a datastore backup snapshot
|
||||||
///
|
///
|
||||||
|
@ -9,6 +9,7 @@ use anyhow::{bail, format_err, Error};
|
|||||||
use endian_trait::Endian;
|
use endian_trait::Endian;
|
||||||
|
|
||||||
use pbs_tools::fs::read_subdir;
|
use pbs_tools::fs::read_subdir;
|
||||||
|
use pbs_datastore::backup_info::BackupDir;
|
||||||
|
|
||||||
use proxmox::tools::{
|
use proxmox::tools::{
|
||||||
Uuid,
|
Uuid,
|
||||||
@ -24,7 +25,6 @@ use proxmox::tools::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
backup::BackupDir,
|
|
||||||
tape::{
|
tape::{
|
||||||
MediaId,
|
MediaId,
|
||||||
file_formats::MediaSetLabel,
|
file_formats::MediaSetLabel,
|
||||||
|
@ -10,12 +10,14 @@
|
|||||||
use std::path::{PathBuf, Path};
|
use std::path::{PathBuf, Path};
|
||||||
|
|
||||||
use anyhow::{bail, Error};
|
use anyhow::{bail, Error};
|
||||||
use ::serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use proxmox::tools::Uuid;
|
use proxmox::tools::Uuid;
|
||||||
|
|
||||||
|
use pbs_api_types::Fingerprint;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
backup::{Fingerprint, BackupLockGuard},
|
backup::BackupLockGuard,
|
||||||
api2::types::{
|
api2::types::{
|
||||||
MediaStatus,
|
MediaStatus,
|
||||||
MediaLocation,
|
MediaLocation,
|
||||||
|
@ -3,15 +3,13 @@ use std::sync::{Arc, Mutex};
|
|||||||
|
|
||||||
use anyhow::{format_err, Error};
|
use anyhow::{format_err, Error};
|
||||||
|
|
||||||
|
use pbs_datastore::DataBlob;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
backup::{
|
backup::DataStore,
|
||||||
DataStore,
|
|
||||||
DataBlob,
|
|
||||||
},
|
|
||||||
tape::{
|
tape::{
|
||||||
CatalogSet,
|
CatalogSet,
|
||||||
SnapshotReader,
|
SnapshotReader,
|
||||||
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user