mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-08-16 04:01:17 +00:00
api: config: use guard for unmounting on failed datastore creation
Currently if any `?`/`bail!` happens between mounting and completing the creation process unmounting will be skipped. Adding this guard solves that problem and makes it easier to add things in the future without having to worry about a disk not being unmounted in case of a failed creation. Reported-by: Wolfgang Bumiller <w.bumiller@proxmox.com> Signed-off-by: Hannes Laimer <h.laimer@proxmox.com> Tested-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
parent
3362a6e049
commit
b693f5d471
@ -1,7 +1,7 @@
|
|||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
|
|
||||||
use ::serde::{Deserialize, Serialize};
|
use ::serde::{Deserialize, Serialize};
|
||||||
use anyhow::{bail, format_err, Error};
|
use anyhow::{bail, Error};
|
||||||
use hex::FromHex;
|
use hex::FromHex;
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
use tracing::warn;
|
use tracing::warn;
|
||||||
@ -70,6 +70,29 @@ pub fn list_datastores(
|
|||||||
Ok(list.into_iter().filter(filter_by_privs).collect())
|
Ok(list.into_iter().filter(filter_by_privs).collect())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct UnmountGuard {
|
||||||
|
path: Option<PathBuf>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl UnmountGuard {
|
||||||
|
fn new(path: Option<PathBuf>) -> Self {
|
||||||
|
UnmountGuard { path }
|
||||||
|
}
|
||||||
|
fn disable(mut self) {
|
||||||
|
self.path = None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Drop for UnmountGuard {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
if let Some(path) = &self.path {
|
||||||
|
if let Err(e) = unmount_by_mountpoint(path) {
|
||||||
|
warn!("could not unmount device: {e}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub(crate) fn do_create_datastore(
|
pub(crate) fn do_create_datastore(
|
||||||
_lock: BackupLockGuard,
|
_lock: BackupLockGuard,
|
||||||
mut config: SectionConfigData,
|
mut config: SectionConfigData,
|
||||||
@ -87,59 +110,50 @@ pub(crate) fn do_create_datastore(
|
|||||||
param_bail!("path", err);
|
param_bail!("path", err);
|
||||||
}
|
}
|
||||||
|
|
||||||
let need_unmount = datastore.backing_device.is_some();
|
|
||||||
if need_unmount {
|
|
||||||
do_mount_device(datastore.clone())?;
|
|
||||||
};
|
|
||||||
|
|
||||||
let tuning: DatastoreTuning = serde_json::from_value(
|
let tuning: DatastoreTuning = serde_json::from_value(
|
||||||
DatastoreTuning::API_SCHEMA
|
DatastoreTuning::API_SCHEMA
|
||||||
.parse_property_string(datastore.tuning.as_deref().unwrap_or(""))?,
|
.parse_property_string(datastore.tuning.as_deref().unwrap_or(""))?,
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
let res = if reuse_datastore {
|
let unmount_guard = if datastore.backing_device.is_some() {
|
||||||
ChunkStore::verify_chunkstore(&path)
|
do_mount_device(datastore.clone())?;
|
||||||
|
UnmountGuard::new(Some(path.clone()))
|
||||||
|
} else {
|
||||||
|
UnmountGuard::new(None)
|
||||||
|
};
|
||||||
|
|
||||||
|
if reuse_datastore {
|
||||||
|
ChunkStore::verify_chunkstore(&path)?;
|
||||||
} else {
|
} else {
|
||||||
let mut is_empty = true;
|
|
||||||
if let Ok(dir) = std::fs::read_dir(&path) {
|
if let Ok(dir) = std::fs::read_dir(&path) {
|
||||||
for file in dir {
|
for file in dir {
|
||||||
let name = file?.file_name();
|
let name = file?.file_name();
|
||||||
let name = name.to_str();
|
let name = name.to_str();
|
||||||
if !name.is_some_and(|name| name.starts_with('.') || name == "lost+found") {
|
if !name.is_some_and(|name| name.starts_with('.') || name == "lost+found") {
|
||||||
is_empty = false;
|
bail!("datastore path not empty");
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if is_empty {
|
let backup_user = pbs_config::backup_user()?;
|
||||||
let backup_user = pbs_config::backup_user()?;
|
ChunkStore::create(
|
||||||
ChunkStore::create(
|
&datastore.name,
|
||||||
&datastore.name,
|
path.clone(),
|
||||||
path.clone(),
|
backup_user.uid,
|
||||||
backup_user.uid,
|
backup_user.gid,
|
||||||
backup_user.gid,
|
tuning.sync_level.unwrap_or_default(),
|
||||||
tuning.sync_level.unwrap_or_default(),
|
)
|
||||||
)
|
.map(|_| ())?;
|
||||||
.map(|_| ())
|
|
||||||
} else {
|
|
||||||
Err(format_err!("datastore path not empty"))
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if res.is_err() {
|
|
||||||
if need_unmount {
|
|
||||||
if let Err(e) = unmount_by_mountpoint(&path) {
|
|
||||||
warn!("could not unmount device: {e}");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
config.set_data(&datastore.name, "datastore", &datastore)?;
|
config.set_data(&datastore.name, "datastore", &datastore)?;
|
||||||
|
|
||||||
pbs_config::datastore::save_config(&config)?;
|
pbs_config::datastore::save_config(&config)?;
|
||||||
|
|
||||||
jobstate::create_state_file("garbage_collection", &datastore.name)
|
jobstate::create_state_file("garbage_collection", &datastore.name)?;
|
||||||
|
|
||||||
|
unmount_guard.disable();
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[api(
|
#[api(
|
||||||
|
Loading…
Reference in New Issue
Block a user