]> git.proxmox.com Git - pve-guest-common.git/commitdiff
partially fix #3111: snapshot rollback: improve removing replication snapshots
authorFabian Ebner <f.ebner@proxmox.com>
Thu, 12 Aug 2021 11:01:05 +0000 (13:01 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Mon, 8 Nov 2021 09:34:00 +0000 (10:34 +0100)
Get the replicatable volumes from the snapshot config rather than the
current config. And filter those volumes further to those that will
actually be rolled back.

Previously, a volume that only had replication snapshots (e.g. because
it was added after the snapshot was taken, or the vmstate volume)
would lose them.  Then, on the next replication run, such a volume
would lead to an error, because replication tried to do a full sync,
but the target volume still exists.

This is not a complete fix. It is still possible to run into problems:
- by removing the last (non-replication) snapshots after a rollback
  before replication can run once.
- by creating a snapshot and making a rollback before replication can
  run once.

The list of volumes is not required to be sorted for prepare(), but it
is sorted by how foreach_volume() iterates now, so not random.

Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
src/PVE/AbstractConfig.pm

index 3348d8a53d685a253aaa6c12e54eedf2243275fb..493bf97cd9fd208334ef5755b4aaeb2b33fb0cc2 100644 (file)
@@ -974,13 +974,22 @@ sub snapshot_rollback {
        if ($prepare) {
            my $repl_conf = PVE::ReplicationConfig->new();
            if ($repl_conf->check_for_existing_jobs($vmid, 1)) {
-               # remove all replication snapshots
-               my $volumes = $class->get_replicatable_volumes($storecfg, $vmid, $conf, 1);
-               my $sorted_volids = [ sort keys %$volumes ];
+               my $volumes = $class->get_replicatable_volumes($storecfg, $vmid, $snap, 1);
+
+               # filter by what we actually iterate over below (excludes vmstate!)
+               my $volids = [];
+               $class->foreach_volume($snap, sub {
+                   my ($vs, $volume) = @_;
+
+                   my $volid_key = $class->volid_key();
+                   my $volid = $volume->{$volid_key};
+
+                   push @{$volids}, $volid if $volumes->{$volid};
+               });
 
                # remove all local replication snapshots (jobid => undef)
                my $logfunc = sub { my $line = shift; chomp $line; print "$line\n"; };
-               PVE::Replication::prepare($storecfg, $sorted_volids, undef, 1, undef, $logfunc);
+               PVE::Replication::prepare($storecfg, $volids, undef, 1, undef, $logfunc);
            }
 
            $class->foreach_volume($snap, sub {