From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 0AC7D99BE2 for ; Thu, 16 Nov 2023 16:32:05 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id CE53B16F20 for ; Thu, 16 Nov 2023 16:31:34 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (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 ; Thu, 16 Nov 2023 16:31:33 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 90C6243975 for ; Thu, 16 Nov 2023 16:31:33 +0100 (CET) From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= To: pve-devel@lists.proxmox.com Date: Thu, 16 Nov 2023 16:31:24 +0100 Message-Id: <20231116153128.788593-1-f.gruenbichler@proxmox.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.066 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [RFC access-control/manager 0/4] fix #1148: nested pools X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Nov 2023 15:32:05 -0000 this series extends the poolname to allow (for now) two '/' inside the name to nest pools like this; parent/child/grandchild since '/' is a bad character for path parameters, some API shuffling is needed. other approaches that were tried but discarded, or rejected outright: - urlencoding - systemd-escape - manual encoding/escaping - just encoding the parent/children in user.cfg, but not in the pool name RFC for now, but getting some feedback while I'm finishing up the resource limit series based upon it might be sensible. switching over some of the UI pool lists to also nest them visually should be do-able as a follow-up. pve-access-control: Fabian Grünbichler (2): allow up to three levels of pool nesting pools: record parent/subpool information src/PVE/AccessControl.pm | 24 +++++++++++++++++++++--- src/test/parser_writer.pl | 4 ++++ src/test/perm-test6.pl | 16 ++++++++++++++++ src/test/test6.cfg | 5 +++++ 4 files changed, 46 insertions(+), 3 deletions(-) pve-manager: Fabian Grünbichler (2): api: pools: support nested pools ui: pools: switch to new API endpoints PVE/API2/Pool.pm | 243 +++++++++++++++++++++++-------- www/manager6/dc/PoolView.js | 3 + www/manager6/grid/PoolMembers.js | 14 +- www/manager6/pool/StatusView.js | 2 +- 4 files changed, 196 insertions(+), 66 deletions(-) -- 2.39.2