From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id 26F051FF0A7 for ; Mon, 17 Aug 2026 13:59:39 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id B2C2E23D40; Mon, 17 Aug 2026 13:59:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=genua.de; s=202307; t=1786967967; bh=VOZDuuhl8tR7SP1pRythc+lVEdgccGtUagtDnsGwWXk=; h=Date:From:To:Subject:References:In-Reply-To:From; b=BRJ81IHyxf2yus7/yHP3PsDECRU+39yxL0gdiuhFMT2WJM6PzCgPHxwONJn8evuuP rm1M9P5OLwN67KLtfjiRWTKRxzwl/RDq3ZD+klwhlwI1NRZ2OwqPtrm/V5+45OfTax BTmcoJSuytXUiWWFb5MmQRSr6tUmtNlE+nt0avPH7rdd0dZZhM3GXoVCTyQWL1N8bZ PYlA+ueyISCAHWhvbDgQBTznPpilPAA6aCsAFXkZfpvXbuNprsnzO4WL+yQaCFJWCM yAUpby+ttgsIiMLfn2Zz3oc+fnObO2v8ptMTowkxPMYvCtyGXef9Talh8Gk2KAJnLE D4in9o6ITjiGg== Date: Mon, 17 Aug 2026 13:59:26 +0200 From: Christian Ludwig To: Subject: [PATCH pve-storage 5/13] Volume access check test for efi-firmware Message-ID: References: MIME-Version: 1.0 In-Reply-To: X-Originating-IP: [192.168.217.185] X-ClientProxiedBy: kch1-mta08.win.genua.de (10.208.16.108) To kch1-mta07.win.genua.de (10.208.16.107) Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg="sha-256"; boundary="----C33465865F2FBAB9965C4F2D2E7CD808" X-SPAM-LEVEL: Spam detection results: 0 AWL 0.234 Adjusted score from AWL reputation of From: address DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain DMARC_PASS -0.1 DMARC pass policy SPF_HELO_PASS -0.001 SPF: HELO matches SPF record SPF_PASS -0.001 SPF: sender matches SPF record UNPARSEABLE_RELAY 0.001 Informational: message has unparseable relay lines Message-ID-Hash: Y3WEBZDTFNMRQA7I5IT6MO252OKH5VXI X-Message-ID-Hash: Y3WEBZDTFNMRQA7I5IT6MO252OKH5VXI X-MailFrom: christian_ludwig@genua.de X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Content-Filtered-By: Mailman/MimeDel 3.3.10 X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: ------C33465865F2FBAB9965C4F2D2E7CD808 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Add a test case for an efi-firmware volume to check for it's type. Signed-off-by: Christian Ludwig --- src/test/run_volume_access_tests.pl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/test/run_volume_access_tests.pl b/src/test/run_volume_access_tests.pl index 3448708..72331e5 100755 --- a/src/test/run_volume_access_tests.pl +++ b/src/test/run_volume_access_tests.pl @@ -15,7 +15,7 @@ use PVE::Storage::Plugin; my $storage_cfg = <<'EOF'; dir: dir path /mnt/pve/dir - content vztmpl,snippets,iso,backup,rootdir,images + content vztmpl,snippets,iso,backup,rootdir,images,efi-firmware EOF my $user_cfg = <<'EOF'; @@ -103,6 +103,13 @@ my @tests = ( 'iso' => 1, }, }, + { + volid => 'dir:efi-firmware/custom-uefi.fd', + denied_users => {}, + allowed_types => { + 'efi-firmware' => 1, + }, + }, { volid => 'dir:111/subvol-111-disk-0.subvol', denied_users => { -- 2.34.1 ------C33465865F2FBAB9965C4F2D2E7CD808--