From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <pve-devel-bounces@lists.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id AFC921FF15E for <inbox@lore.proxmox.com>; Tue, 22 Apr 2025 13:53:35 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 1A0123AE2D; Tue, 22 Apr 2025 13:52:34 +0200 (CEST) To: pve-devel@lists.proxmox.com Date: Tue, 22 Apr 2025 13:51:30 +0200 In-Reply-To: <20250422115141.808427-1-alexandre.derumier@groupe-cyllene.com> References: <20250422115141.808427-1-alexandre.derumier@groupe-cyllene.com> MIME-Version: 1.0 Message-ID: <mailman.34.1745322752.394.pve-devel@lists.proxmox.com> List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com> List-Post: <mailto:pve-devel@lists.proxmox.com> From: Alexandre Derumier via pve-devel <pve-devel@lists.proxmox.com> Precedence: list Cc: Alexandre Derumier <alexandre.derumier@groupe-cyllene.com> X-Mailman-Version: 2.1.29 X-BeenThere: pve-devel@lists.proxmox.com List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/> Reply-To: Proxmox VE development discussion <pve-devel@lists.proxmox.com> List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help> Subject: [pve-devel] [PATCH pve-storage 4/5] storage: vdisk_free: remove external snapshots Content-Type: multipart/mixed; boundary="===============9040693553615948433==" Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" <pve-devel-bounces@lists.proxmox.com> --===============9040693553615948433== Content-Type: message/rfc822 Content-Disposition: inline Return-Path: <root@formationkvm1.odiso.net> X-Original-To: pve-devel@lists.proxmox.com Delivered-To: pve-devel@lists.proxmox.com Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id EBCFEC8CD1 for <pve-devel@lists.proxmox.com>; Tue, 22 Apr 2025 13:52:29 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 5A86B3A766 for <pve-devel@lists.proxmox.com>; Tue, 22 Apr 2025 13:51:57 +0200 (CEST) Received: from bastiontest.odiso.net (unknown [IPv6:2a0a:1580:2000:6700::14]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for <pve-devel@lists.proxmox.com>; Tue, 22 Apr 2025 13:51:53 +0200 (CEST) Received: from formationkvm1.odiso.net (unknown [10.11.201.57]) by bastiontest.odiso.net (Postfix) with ESMTP id 7E00E860F14; Tue, 22 Apr 2025 13:51:44 +0200 (CEST) Received: by formationkvm1.odiso.net (Postfix, from userid 0) id 5827F1115FBC; Tue, 22 Apr 2025 13:51:43 +0200 (CEST) From: Alexandre Derumier <alexandre.derumier@groupe-cyllene.com> To: pve-devel@lists.proxmox.com Subject: [PATCH pve-storage 4/5] storage: vdisk_free: remove external snapshots Date: Tue, 22 Apr 2025 13:51:30 +0200 Message-Id: <20250422115141.808427-10-alexandre.derumier@groupe-cyllene.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250422115141.808427-1-alexandre.derumier@groupe-cyllene.com> References: <20250422115141.808427-1-alexandre.derumier@groupe-cyllene.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.116 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_NONE 0.1 DMARC none policy HEADER_FROM_DIFFERENT_DOMAINS 0.001 From and EnvelopeFrom 2nd level mail domains are different KAM_DMARC_NONE 0.25 DKIM has Failed or SPF has failed on the message and the domain has no DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods RDNS_NONE 0.793 Delivered to internal network by a host with no rDNS SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record add a $include_snapshots param to free_image to remove the whole chain of snapshots when deleting the main image. Signed-off-by: Alexandre Derumier <alexandre.derumier@groupe-cyllene.com> --- src/PVE/Storage.pm | 2 +- src/PVE/Storage/LVMPlugin.pm | 72 ++++++++++++++++++++++++------------ src/PVE/Storage/Plugin.pm | 27 +++++++++++--- 3 files changed, 71 insertions(+), 30 deletions(-) diff --git a/src/PVE/Storage.pm b/src/PVE/Storage.pm index db9d190..55a9a43 100755 --- a/src/PVE/Storage.pm +++ b/src/PVE/Storage.pm @@ -1059,7 +1059,7 @@ sub vdisk_free { my (undef, undef, undef, undef, undef, $isBase, $format) = $plugin->parse_volname($volname); - $cleanup_worker = $plugin->free_image($storeid, $scfg, $volname, $isBase, $format); + $cleanup_worker = $plugin->free_image($storeid, $scfg, $volname, $isBase, $format, 1); }); return if !$cleanup_worker; diff --git a/src/PVE/Storage/LVMPlugin.pm b/src/PVE/Storage/LVMPlugin.pm index 8ee337a..b20fe98 100644 --- a/src/PVE/Storage/LVMPlugin.pm +++ b/src/PVE/Storage/LVMPlugin.pm @@ -463,10 +463,34 @@ sub alloc_snap_image { } sub free_image { - my ($class, $storeid, $scfg, $volname, $isBase) = @_; + my ($class, $storeid, $scfg, $volname, $isBase, $format, $include_snapshots) = @_; my $vg = $scfg->{vgname}; + my $name = ($class->parse_volname($volname))[1]; + + #activate volumes && snapshot volumes + my $path = $class->path($scfg, $volname, $storeid); + $path = "\@pve-$name" if $format && $format eq 'qcow2'; + my $cmd = ['/sbin/lvchange', '-aly', $path]; + run_command($cmd, errmsg => "can't activate LV '$path' to zero-out its data"); + $cmd = ['/sbin/lvchange', '--refresh', $path]; + run_command($cmd, errmsg => "can't refresh LV '$path' to zero-out its data"); + + my $volnames = []; + if ($include_snapshots) { + my $snapshots = $class->volume_snapshot_info($scfg, $storeid, $volname); + for my $snapid (sort { $snapshots->{$b}->{order} <=> $snapshots->{$a}->{order} } keys %$snapshots) { + my $snap = $snapshots->{$snapid}; + next if $snapid eq 'current'; + next if !$snap->{volid}; + next if !$snap->{ext}; + my ($snap_storeid, $snap_volname) = PVE::Storage::parse_volume_id($snap->{volid}); + push @$volnames, $snap_volname; + } + } + push @$volnames, $volname; + # we need to zero out LVM data for security reasons # and to allow thin provisioning @@ -478,40 +502,40 @@ sub free_image { if ($scfg->{saferemove_throughput}) { $throughput = $scfg->{saferemove_throughput}; } - - my $cmd = [ + for my $name (@$volnames) { + my $cmd = [ '/usr/bin/cstream', '-i', '/dev/zero', - '-o', "/dev/$vg/del-$volname", + '-o', "/dev/$vg/del-$name", '-T', '10', '-v', '1', '-b', '1048576', '-t', "$throughput" - ]; - eval { run_command($cmd, errmsg => "zero out finished (note: 'No space left on device' is ok here)"); }; - warn $@ if $@; - - $class->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub { - my $cmd = ['/sbin/lvremove', '-f', "$vg/del-$volname"]; - run_command($cmd, errmsg => "lvremove '$vg/del-$volname' error"); - }); - print "successfully removed volume $volname ($vg/del-$volname)\n"; + ]; + eval { run_command($cmd, errmsg => "zero out finished (note: 'No space left on device' is ok here)"); }; + warn $@ if $@; + + $class->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub { + my $cmd = ['/sbin/lvremove', '-f', "$vg/del-$name"]; + run_command($cmd, errmsg => "lvremove '$vg/del-$name' error"); + }); + print "successfully removed volume $name ($vg/del-$name)\n"; + } }; - my $cmd = ['/sbin/lvchange', '-aly', "$vg/$volname"]; - run_command($cmd, errmsg => "can't activate LV '$vg/$volname' to zero-out its data"); - $cmd = ['/sbin/lvchange', '--refresh', "$vg/$volname"]; - run_command($cmd, errmsg => "can't refresh LV '$vg/$volname' to zero-out its data"); - if ($scfg->{saferemove}) { - # avoid long running task, so we only rename here - $cmd = ['/sbin/lvrename', $vg, $volname, "del-$volname"]; - run_command($cmd, errmsg => "lvrename '$vg/$volname' error"); + for my $name (@$volnames) { + # avoid long running task, so we only rename here + my $cmd = ['/sbin/lvrename', $vg, $name, "del-$name"]; + run_command($cmd, errmsg => "lvrename '$vg/$name' error"); + } return $zero_out_worker; } else { - my $tmpvg = $scfg->{vgname}; - $cmd = ['/sbin/lvremove', '-f', "$tmpvg/$volname"]; - run_command($cmd, errmsg => "lvremove '$tmpvg/$volname' error"); + for my $name (@$volnames) { + my $tmpvg = $scfg->{vgname}; + my $cmd = ['/sbin/lvremove', '-f', "$tmpvg/$name"]; + run_command($cmd, errmsg => "lvremove '$tmpvg/$name' error"); + } } return undef; diff --git a/src/PVE/Storage/Plugin.pm b/src/PVE/Storage/Plugin.pm index 3f83fae..0319ab2 100644 --- a/src/PVE/Storage/Plugin.pm +++ b/src/PVE/Storage/Plugin.pm @@ -959,7 +959,7 @@ sub alloc_snap_image { } sub free_image { - my ($class, $storeid, $scfg, $volname, $isBase, $format) = @_; + my ($class, $storeid, $scfg, $volname, $isBase, $format, $include_snapshots) = @_; die "cannot remove protected volume '$volname' on '$storeid'\n" if $class->get_volume_attribute($scfg, $storeid, $volname, 'protected'); @@ -975,12 +975,29 @@ sub free_image { if (defined($format) && ($format eq 'subvol')) { File::Path::remove_tree($path); } else { - if (!(-f $path || -l $path)) { - warn "disk image '$path' does not exist\n"; - return undef; + + my $volnames = []; + if ($include_snapshots) { + my $snapshots = $class->volume_snapshot_info($scfg, $storeid, $volname); + for my $snapid (sort { $snapshots->{$b}->{order} <=> $snapshots->{$a}->{order} } keys %$snapshots) { + my $snap = $snapshots->{$snapid}; + next if $snapid eq 'current'; + next if !$snap->{volid}; + next if !$snap->{ext}; + my ($snap_storeid, $snap_volname) = PVE::Storage::parse_volume_id($snap->{volid}); + push @$volnames, $snap_volname; + } } + push @$volnames, $volname; - unlink($path) || die "unlink '$path' failed - $!\n"; + for my $name (@$volnames) { + my $path = $class->filesystem_path($scfg, $name); + if (!(-f $path || -l $path)) { + warn "disk image '$path' does not exist\n"; + } else { + unlink($path) || die "unlink '$path' failed - $!\n"; + } + } } # try to cleanup directory to not clutter storage with empty $vmid dirs if -- 2.39.5 --===============9040693553615948433== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel --===============9040693553615948433==--