From: "Max R. Carrara" <m.carrara@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH pve-storage v1 50/54] fix #2884: support nested subdir scanning for 'snippets' vtype
Date: Wed, 22 Apr 2026 13:13:16 +0200 [thread overview]
Message-ID: <20260422111322.257380-51-m.carrara@proxmox.com> (raw)
In-Reply-To: <20260422111322.257380-1-m.carrara@proxmox.com>
Add support for parsing nested subdirectories for the 'snippets'
volume type by adapting its corresponding regex used by parsing
helpers.
Add additional test cases wherever applicable to account for nested
subdirectories for 'snippets' volumes, as was done for the 'iso' and
'vztmpl' volume types.
Originally-by: Noel Ullreich <n.ullreich@proxmox.com>
Signed-off-by: Max R. Carrara <m.carrara@proxmox.com>
---
src/PVE/Storage/Common/Parse.pm | 1 +
src/PVE/Storage/Common/test/parser_tests.pl | 52 ++++++++++++++
src/PVE/Storage/Plugin.pm | 4 +-
src/test/filesystem_path_test.pm | 16 +++++
src/test/list_volumes_test.pm | 78 +++++++++++++++++++++
src/test/parse_volname_test.pm | 52 ++++++++++++++
src/test/path_to_volume_id_test.pm | 7 ++
7 files changed, 208 insertions(+), 2 deletions(-)
diff --git a/src/PVE/Storage/Common/Parse.pm b/src/PVE/Storage/Common/Parse.pm
index 92e5b0fd..55fbc129 100644
--- a/src/PVE/Storage/Common/Parse.pm
+++ b/src/PVE/Storage/Common/Parse.pm
@@ -126,6 +126,7 @@ my $RE_BACKUP_FILE_PATH = qr!
my $RE_SNIPPETS_FILE_PATH = qr!
(?<path>
+ (?<dir> $RE_DIRECTORY_COMPONENTS )?
(?<file> [^/]+ )
)
!xn;
diff --git a/src/PVE/Storage/Common/test/parser_tests.pl b/src/PVE/Storage/Common/test/parser_tests.pl
index c80d0d90..38d5ebac 100755
--- a/src/PVE/Storage/Common/test/parser_tests.pl
+++ b/src/PVE/Storage/Common/test/parser_tests.pl
@@ -498,6 +498,57 @@ my $volname_cases_snippets_valid = [
volname => 'snippets/userconfig.yaml',
},
},
+
+ # subdirectories
+ {
+ path => 'subdir/hookscript.pl',
+ expected => {
+ file => 'hookscript.pl',
+ dir => 'subdir',
+ 'disk-path' => 'subdir/hookscript.pl',
+ path => 'subdir/hookscript.pl',
+ vtype => 'snippets',
+ volname => 'snippets/subdir/hookscript.pl',
+ },
+ },
+ {
+ path => 'deeply/nested/subdir/hookscript.pl',
+ expected => {
+ file => 'hookscript.pl',
+ dir => 'deeply/nested/subdir',
+ 'disk-path' => 'deeply/nested/subdir/hookscript.pl',
+ path => 'deeply/nested/subdir/hookscript.pl',
+ vtype => 'snippets',
+ volname => 'snippets/deeply/nested/subdir/hookscript.pl',
+ },
+ },
+];
+
+my $volname_cases_snippets_invalid = [
+ {
+ description => "Parent dir reference in path (beginning) (snippets)",
+ args => {
+ path => '../hookscript.pl',
+ vtype => 'snippets',
+ },
+ expected => undef,
+ },
+ {
+ description => "Parent dir reference in path (middle) (snippets)",
+ args => {
+ path => 'subdir/../hookscript.pl',
+ vtype => 'snippets',
+ },
+ expected => undef,
+ },
+ {
+ description => "Parent dir reference in path (end) (snippets)",
+ args => {
+ path => 'subdir/hookscript.pl/..',
+ vtype => 'snippets',
+ },
+ expected => undef,
+ },
];
my $volname_cases_import_valid = [
@@ -597,6 +648,7 @@ my $cases_invalid_all = [
$volname_cases_iso_invalid,
$volname_cases_vztmpl_invalid,
$volname_cases_backup_invalid,
+ $volname_cases_snippets_invalid,
$volname_cases_import_invalid,
];
diff --git a/src/PVE/Storage/Plugin.pm b/src/PVE/Storage/Plugin.pm
index 2df56e76..3a3e1b62 100644
--- a/src/PVE/Storage/Plugin.pm
+++ b/src/PVE/Storage/Plugin.pm
@@ -235,7 +235,7 @@ my $defaultData = {
},
'max-scan-depth' => {
description => "Maximum depth of subdirectories to traverse when searching for"
- . " ISOs and container templates in directories.",
+ . " ISOs, container templates and snippets in directories.",
type => 'integer',
default => 0,
minimum => 0,
@@ -1831,7 +1831,7 @@ sub list_volumes {
}
if ($type eq 'snippets') {
- return get_subdir_files($storeid, $scfg, 'snippets', undef);
+ return get_subdir_files($storeid, $scfg, 'snippets', undef, $depth);
}
if ($type eq 'import') {
diff --git a/src/test/filesystem_path_test.pm b/src/test/filesystem_path_test.pm
index b5c1ab33..ff6dffe1 100644
--- a/src/test/filesystem_path_test.pm
+++ b/src/test/filesystem_path_test.pm
@@ -82,6 +82,22 @@ my $tests = [
'backup',
],
},
+ {
+ volname => 'snippets/userconfig.yaml',
+ snapname => undef,
+ expected => ["$DEFAULT_STORAGE_DIR/snippets/userconfig.yaml", undef, 'snippets'],
+ },
+ {
+ volname => 'snippets/hookscript.pl',
+ snapname => undef,
+ expected => ["$DEFAULT_STORAGE_DIR/snippets/hookscript.pl", undef, 'snippets'],
+ },
+ {
+ volname => 'snippets/foo/bar/baz/something.txt',
+ snapname => undef,
+ expected =>
+ ["$DEFAULT_STORAGE_DIR/snippets/foo/bar/baz/something.txt", undef, 'snippets'],
+ },
];
my sub run_tests($tests) {
diff --git a/src/test/list_volumes_test.pm b/src/test/list_volumes_test.pm
index 6bdfa37c..edcf1ba1 100644
--- a/src/test/list_volumes_test.pm
+++ b/src/test/list_volumes_test.pm
@@ -1340,6 +1340,24 @@ my $test_param_list = [
"$DEFAULT_STORAGE_PATH/template/cache/1/2/3/4/5/some-lxc-template.tar.gz",
expected => undef,
},
+ {
+ file => "$DEFAULT_STORAGE_PATH/snippets/some-hookscript.pl",
+ expected => {
+ content => 'snippets',
+ ctime => $DEFAULT_CTIME,
+ format => 'snippet',
+ size => $DEFAULT_SIZE,
+ volid => 'local:snippets/some-hookscript.pl',
+ },
+ },
+ {
+ file => "$DEFAULT_STORAGE_PATH/snippets/1/some-hookscript.pl",
+ expected => undef,
+ },
+ {
+ file => "$DEFAULT_STORAGE_PATH/snippets/1/2/3/4/5/some-hookscript.pl",
+ expected => undef,
+ },
],
},
{
@@ -1410,6 +1428,31 @@ my $test_param_list = [
file => "$DEFAULT_STORAGE_PATH/template/cache/1/2/some-lxc-template.tar.gz",
expected => undef,
},
+ {
+ file => "$DEFAULT_STORAGE_PATH/snippets/some-hookscript.pl",
+ expected => {
+ content => 'snippets',
+ ctime => $DEFAULT_CTIME,
+ format => 'snippet',
+ size => $DEFAULT_SIZE,
+ volid => 'local:snippets/some-hookscript.pl',
+ },
+ },
+ {
+ file => "$DEFAULT_STORAGE_PATH/snippets/1/some-hookscript.pl",
+ expected => {
+ content => 'snippets',
+ ctime => $DEFAULT_CTIME,
+ format => 'snippet',
+ size => $DEFAULT_SIZE,
+ volid => 'local:snippets/1/some-hookscript.pl',
+ },
+ },
+ {
+ # Exceeds max-scan-depth
+ file => "$DEFAULT_STORAGE_PATH/snippets/1/2/some-hookscript.pl",
+ expected => undef,
+ },
],
},
{
@@ -1502,6 +1545,41 @@ my $test_param_list = [
"$DEFAULT_STORAGE_PATH/template/cache/1/2/3/4/5/6/some-lxc-template.tar.gz",
expected => undef,
},
+ {
+ file => "$DEFAULT_STORAGE_PATH/snippets/some-hookscript.pl",
+ expected => {
+ content => 'snippets',
+ ctime => $DEFAULT_CTIME,
+ format => 'snippet',
+ size => $DEFAULT_SIZE,
+ volid => 'local:snippets/some-hookscript.pl',
+ },
+ },
+ {
+ file => "$DEFAULT_STORAGE_PATH/snippets/1/some-hookscript.pl",
+ expected => {
+ content => 'snippets',
+ ctime => $DEFAULT_CTIME,
+ format => 'snippet',
+ size => $DEFAULT_SIZE,
+ volid => 'local:snippets/1/some-hookscript.pl',
+ },
+ },
+ {
+ file => "$DEFAULT_STORAGE_PATH/snippets/1/2/3/4/5/some-hookscript.pl",
+ expected => {
+ content => 'snippets',
+ ctime => $DEFAULT_CTIME,
+ format => 'snippet',
+ size => $DEFAULT_SIZE,
+ volid => 'local:snippets/1/2/3/4/5/some-hookscript.pl',
+ },
+ },
+ {
+ # Exceeds max-scan-depth
+ file => "$DEFAULT_STORAGE_PATH/snippets/1/2/3/4/5/6/some-hookscript.pl",
+ expected => undef,
+ },
],
},
];
diff --git a/src/test/parse_volname_test.pm b/src/test/parse_volname_test.pm
index b90815c2..0a425ee2 100644
--- a/src/test/parse_volname_test.pm
+++ b/src/test/parse_volname_test.pm
@@ -372,10 +372,62 @@ my $tests = [
volname => "snippets/$file_name",
expected => ['snippets', $file_name, undef, undef, undef, undef, 'raw'],
},
+ {
+ description => "Snippets, $file_name, subdirectory",
+ volname => "snippets/foo/$file_name",
+ expected => ['snippets', "foo/$file_name", undef, undef, undef, undef, 'raw'],
+ },
+ {
+ description => "Snippets, $file_name, nested subdirectories",
+ volname => "snippets/foo/bar/baz/$file_name",
+ expected =>
+ ['snippets', "foo/bar/baz/$file_name", undef, undef, undef, undef, 'raw'],
+ },
+ {
+ description => "Snippets, $file_name, subdirectory with same name as file",
+ volname => "snippets/$file_name/$file_name",
+ expected =>
+ ['snippets', "$file_name/$file_name", undef, undef, undef, undef, 'raw'],
+ },
);
push($tests->@*, @extra_tests);
}
+
+ # Failed tests
+ {
+ my $file_name = "some-file.txt";
+
+ my @extra_failed_tests = (
+ {
+ description =>
+ "Snippets, $file_name, parent directory reference before volume type prefix",
+ volname => "../snippets/$file_name",
+ expected => "unable to parse directory volume name '../snippets/$file_name'\n",
+ },
+ {
+ description =>
+ "Snippets, $file_name, parent directory reference at beginning of volume path",
+ volname => "snippets/../$file_name",
+ expected => "unable to parse directory volume name 'snippets/../$file_name'\n",
+ },
+ {
+ description =>
+ "Snippets, $file_name, parent directory reference at end of volume path",
+ volname => "snippets/$file_name/..",
+ expected => "unable to parse directory volume name 'snippets/$file_name/..'\n",
+ },
+ {
+ description =>
+ "Snippets, $file_name, parent directory reference between dir components of volume path",
+ volname => "snippets/foo/../bar/$file_name",
+ expected =>
+ "unable to parse directory volume name 'snippets/foo/../bar/$file_name'\n",
+ },
+ );
+
+ push($tests->@*, @extra_failed_tests);
+ }
}
# Test cases for import files
diff --git a/src/test/path_to_volume_id_test.pm b/src/test/path_to_volume_id_test.pm
index 4dfc68e1..d22f6272 100644
--- a/src/test/path_to_volume_id_test.pm
+++ b/src/test/path_to_volume_id_test.pm
@@ -181,6 +181,13 @@ my $tests = [
'snippets', 'local:snippets/hookscript.pl',
],
},
+ {
+ description => 'Snippets, arbitrary file, nested subdirectories',
+ file => "$DEFAULT_STORAGE_DIR/snippets/foo/bar/baz/something.txt",
+ expected => [
+ 'snippets', 'local:snippets/foo/bar/baz/something.txt',
+ ],
+ },
{
description => 'CT template, tar.xz',
file => "$DEFAULT_STORAGE_DIR/template/cache/debian-10.0-standard_10.0-1_amd64.tar.xz",
--
2.47.3
next prev parent reply other threads:[~2026-04-22 11:21 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-22 11:12 [PATCH pve-storage, pve-manager v1 00/54] Fix #2884: Implement Subdirectory Scanning for Dir-Based Storage Types Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 01/54] test: plugin tests: run tests with at most 4 jobs Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 02/54] plugin, common: remove superfluous use of =pod command paragraph Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 03/54] common: add POD headings for groups of helpers Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 04/54] common: use Exporter module for PVE::Storage::Common Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 05/54] plugin: make get_subdir_files a proper subroutine and update style Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 06/54] plugin api: replace helpers w/ standalone subs, bump API version & age Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 07/54] common: prevent autovivification in plugin_get_vtype_subdir helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 08/54] plugin: break up needless if-elsif chain into separate if-blocks Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 09/54] plugin: adapt get_subdir_files helper of list_volumes API method Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 10/54] plugin: update code style of list_volumes plugin " Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 11/54] plugin: use closure for obtaining raw volume data in list_volumes Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 12/54] plugin: use closure for inner loop logic " Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 13/54] storage: update code style in function path_to_volume_id Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 14/54] storage: break up needless if-elsif chain in path_to_volume_id Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 15/54] storage: heave vtype file path parsing logic inside loop into helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 16/54] storage: clean up code that was moved into helper in path_to_volume_id Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 17/54] api: status: move content type assert for up-/downloads into helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 18/54] api: status: use helper from common module to get content directory Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 19/54] api: status: move up-/download file path parsing code into helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 20/54] api: status: simplify file content assertion logic for up-/download Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 21/54] test: guest import: add tests for PVE::GuestImport Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 22/54] tree-wide: introduce parsing module and replace usages of ISO_EXT_RE_0 Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 23/54] common: test: set up parser testing code, add tests for 'iso' vtype Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 24/54] tree-wide: replace usages of VZTMPL_EXT_RE_1 with parsing functions Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 25/54] tree-wide: replace usages of BACKUP_EXT_RE_2 " Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 26/54] tree-wide: replace usages of inline regexes for snippets with parsers Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 27/54] tree-wide: partially replace usages of regexes for 'import' vtype Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 28/54] tree-wide: replace remaining " Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 29/54] plugin: simplify recently refactored logic in parse_volname method Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 30/54] plugin: simplify recently refactored logic in get_subdir_files helper Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 31/54] storage: simplify recently refactored logic in path_to_volume_id sub Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 32/54] api: status: simplify recently added parsing helper for file transfers Max R. Carrara
2026-04-22 11:12 ` [PATCH pve-storage v1 33/54] plugin: use parsing helper in parse_volume_id sub Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 34/54] test: list volumes: reorganize and modernize test running code Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 35/54] test: list volumes: fix broken test checking for vmlist modifications Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 36/54] test: list volumes: introduce new format for test cases Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 37/54] test: list volumes: remove legacy code and migrate cases to new format Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 38/54] test: list volumes: document behavior wrt. undeclared content types Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 39/54] plugin: correct comment in get_subdir_files helper Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 40/54] test: parse volname: modernize code Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 41/54] test: parse volname: adapt tests regarding 'import' volume type Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 42/54] test: parse volname: move VM disk test creation into separate block Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 43/54] test: parse volname: move backup file test creation into sep. block Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 44/54] test: parse volname: parameterize test case creation for some vtypes Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 45/54] test: volume id: modernize code Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 46/54] test: volume id: rename 'volname' test case parameter to 'file' Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 47/54] test: filesystem path: modernize code Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 48/54] fix #2884: implement nested subdir scanning and support 'iso' vtype Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 49/54] fix #2884: support nested subdir scanning for 'vztmpl' volume type Max R. Carrara
2026-04-22 11:13 ` Max R. Carrara [this message]
2026-04-22 11:13 ` [PATCH pve-storage v1 51/54] test: add more tests for 'import' vtype & guard against nested subdirs Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 52/54] test: add tests guarding against subdir scanning for vtypes Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-storage v1 53/54] storage api: mark old public regexes for removal, bump APIVER & APIAGE Max R. Carrara
2026-04-22 11:13 ` [PATCH pve-manager v1 54/54] fix #2884: ui: storage: add field for 'max-scan-depth' property Max R. Carrara
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260422111322.257380-51-m.carrara@proxmox.com \
--to=m.carrara@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox