backup: flock snapshot on backup start

An flock on the snapshot dir itself is used in addition to the group dir
lock. The lock is used to avoid races with forget and prune, while
having more granularity than the group lock (i.e. the group lock is
necessary to prevent more than one backup per group, but the snapshot
lock still allows backups unrelated to the currently running to be
forgotten/pruned).

Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
This commit is contained in:
Stefan Reiter
2020-08-11 10:50:39 +02:00
committed by Dietmar Maurer
parent 6d6b4e72d3
commit f23f75433f
3 changed files with 12 additions and 6 deletions

View File

@ -106,7 +106,7 @@ async move {
}
}
let (path, is_new) = datastore.create_backup_dir(&backup_dir)?;
let (path, is_new, _snap_guard) = datastore.create_locked_backup_dir(&backup_dir)?;
if !is_new { bail!("backup directory already exists."); }
WorkerTask::spawn("backup", Some(worker_id), userid.clone(), true, move |worker| {
@ -146,6 +146,7 @@ async move {
async move {
// keep flock until task ends
let _group_guard = _group_guard;
let _snap_guard = _snap_guard;
let res = select!{
req = req_fut => req,