[pve-devel] [PATCH common] cert: fix invalid CSR version

2023-03-31 Thread Mira Limbeck
According to rfc2986 the only valid version is 0. No newer rfc changed that. See section 4.1: https://www.rfc-editor.org/rfc/rfc2986#section-4.1 Manually verifying the CSR with openssl results in the following error: ``` $ openssl req -in bad.csr -text -noout Certificate Request: Data:

[pve-devel] [PATCH manager] configs: blacklist: fix typo

2023-03-31 Thread Lukas Wagner
Signed-off-by: Lukas Wagner --- configs/pve-blacklist.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/pve-blacklist.conf b/configs/pve-blacklist.conf index 9687961d..27d1be48 100644 --- a/configs/pve-blacklist.conf +++ b/configs/pve-blacklist.conf @@ -1,4 +1,4 @@

Re: [pve-devel] [PATCH v2 manager] fix #3248: GUI: storage: upload multiple files

2023-03-31 Thread Matthias Heiserer
ping - still applies On 20.07.2022 14:26, Matthias Heiserer wrote: Queue multiple files for upload to the storage. The upload itself happens in a separate window. When closing the window, files with an error (i.e. wrong hash) are retained in the upload window. Signed-off-by: Matthias Heiserer

[pve-devel] [PATCH manager v3 4/6] added Shared Files tab in Node Settings

2023-03-31 Thread Markus Frank
to add/remove/show directories that are available for shared filesystems. and added /map/dirs/ path to PermPathStore. Signed-off-by: Markus Frank --- www/manager6/Makefile | 1 + www/manager6/data/PermPathStore.js | 3 + www/manager6/node/Config.js| 12 ++ www/manager6

[pve-devel] [PATCH docs v3 1/6] added shared filesystem doc for virtio-fs & virtio-9p

2023-03-31 Thread Markus Frank
Signed-off-by: Markus Frank --- qm.adoc | 61 + 1 file changed, 61 insertions(+) diff --git a/qm.adoc b/qm.adoc index 0726b29..8cc1678 100644 --- a/qm.adoc +++ b/qm.adoc @@ -934,6 +934,67 @@ recommended to always use a limiter to avoid gues

[pve-devel] [PATCH docs/acces-control/manager/qemu-server v3 0/6] feature #1027 virtio-9p/virtio-fs

2023-03-31 Thread Markus Frank
pve-docs: Markus Frank (1): added shared filesystem doc for virtio-fs & virtio-9p qm.adoc | 61 + 1 file changed, 61 insertions(+) pve-access-control: v3: * replaced /dirs with /map/dirs/ v2: * admin gives access via an ACL (/dirs/)

[pve-devel] [PATCH qemu-server v3 6/6] feature #1027: virtio-9p & virtio-fs support

2023-03-31 Thread Markus Frank
adds support for sharing directorys with a guest vm virtio-9p can be simply started with qemu virtio-fs needs virtiofsd to be started Signed-off-by: Markus Frank --- PVE/API2/Qemu.pm | 20 +- PVE/QemuServer.pm | 158 ++ 2 files changed, 177 inse

[pve-devel] [PATCH manager v3 3/6] added Config for Shared Filesystem Directories

2023-03-31 Thread Markus Frank
and made an API Endpoint for getting, adding and removing directories to the config. Signed-off-by: Markus Frank --- PVE/API2/DirConfig.pm | 129 +++ PVE/API2/Makefile | 1 + PVE/API2/Nodes.pm | 6 ++ PVE/DirConfig.pm | 139 +++

[pve-devel] [PATCH manager v3 5/6] added options to add virtio-9p & virtio-fs Shared Filesystems to qemu config

2023-03-31 Thread Markus Frank
Signed-off-by: Markus Frank --- www/manager6/Makefile| 1 + www/manager6/Utils.js| 1 + www/manager6/qemu/HardwareView.js| 19 + www/manager6/qemu/SharedFilesEdit.js | 101 +++ 4 files changed, 122 insertions(+) create mode 100

[pve-devel] [PATCH access-control v3 2/6] added acls for Shared Files Directories

2023-03-31 Thread Markus Frank
Signed-off-by: Markus Frank --- src/PVE/API2/Directory.pm | 68 +++ src/PVE/AccessControl.pm | 16 + src/PVE/RPCEnvironment.pm | 12 ++- 3 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 src/PVE/API2/Directory.pm diff --git a/sr

[pve-devel] [PATCH widget-toolkit] form: combo grid: use correct method to initialize the picker

2023-03-31 Thread Dominik Csapak
'createPicker' does create the picker, but not all necessary initialization for the combobox (namely it does not set the owner field, but that's only an implementation detail). Instead 'getPicker' should be used for that, since that does all the necessary initialization and is the same function use

[pve-devel] [PATCH manager] fix #4627: ui: backup edit: don't deselect all vms on load

2023-03-31 Thread Dominik Csapak
'selectPoolMembers' will be called when the poolid field changes. (That can even happen when the mode is not even 'pool') Due to how the fields are set, there is a race condition that this will be called after the remaining fields were set up, including the vm list that might have entires selected.

Re: [pve-devel] [PATCH proxmox-perl-rs 07/18] log: set default log level to 'info', add product specfig logging env var1

2023-03-31 Thread Lukas Wagner
Whoop, not sure what happened here with the commit message - already fixed locally, will be included in v2 ;) On 3/27/23 17:18, Lukas Wagner wrote: Logging behaviour can be overridden by the {PMG,PVE}_LOG environment variable. This commit also disables styled output and timestamps in log mess