all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH storage] plugin: volume snapshot info: untaint snapshot filename
@ 2025-07-25 15:48 Friedrich Weber
  2025-07-28  9:59 ` Fabian Grünbichler
  2025-07-28 13:20 ` [pve-devel] applied: " Fabian Grünbichler
  0 siblings, 2 replies; 9+ messages in thread
From: Friedrich Weber @ 2025-07-25 15:48 UTC (permalink / raw)
  To: pve-devel

Without untainting, offline-deleting a volume-chain snapshot on a
directory storage via the GUI fails with an "Insecure dependecy in
exec [...]" error, because volume_snapshot_delete uses the filename
its qemu-img invocation.

Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
---

Notes:
    I'm not too familiar with the taint mode. Allowing anything that
    starts with a slash seems a little lax, but I don't know if we can do
    any meaningful validation here -- let me know if we can.

 src/PVE/Storage/Plugin.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/PVE/Storage/Plugin.pm b/src/PVE/Storage/Plugin.pm
index a817186..2bd05bd 100644
--- a/src/PVE/Storage/Plugin.pm
+++ b/src/PVE/Storage/Plugin.pm
@@ -1789,6 +1789,7 @@ sub volume_snapshot_info {
         my $snapshots = $json_decode;
         for my $snap (@$snapshots) {
             my $snapfile = $snap->{filename};
+            ($snapfile) = $snapfile =~ m|^(/.*)|; # untaint
             my $snapname = $get_snapname_from_path->($volname, $snapfile);
             #not a proxmox snapshot
             next if !$snapname;
-- 
2.47.2



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-07-31 12:54 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-07-25 15:48 [pve-devel] [PATCH storage] plugin: volume snapshot info: untaint snapshot filename Friedrich Weber
2025-07-28  9:59 ` Fabian Grünbichler
2025-07-28 11:08   ` Fiona Ebner
2025-07-28 12:21     ` Fabian Grünbichler
2025-07-28 13:30       ` Friedrich Weber
2025-07-28 13:32         ` Friedrich Weber
2025-07-31 12:37         ` Friedrich Weber
2025-07-31 12:55           ` Fiona Ebner
2025-07-28 13:20 ` [pve-devel] applied: " Fabian Grünbichler

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal