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 15043A256E for ; Mon, 19 Jun 2023 09:28:57 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id DB4F625402 for ; Mon, 19 Jun 2023 09:28:56 +0200 (CEST) Received: from bastionodiso.odiso.net (bastionodiso.odiso.net [IPv6:2a0a:1580:2000::2d]) (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 ; Mon, 19 Jun 2023 09:28:54 +0200 (CEST) Received: from kvmformation3.odiso.net (formationkvm3.odiso.net [10.3.94.12]) by bastionodiso.odiso.net (Postfix) with ESMTP id 508C37EAF; Mon, 19 Jun 2023 09:28:45 +0200 (CEST) Received: by kvmformation3.odiso.net (Postfix, from userid 0) id 4F6B2241690; Mon, 19 Jun 2023 09:28:45 +0200 (CEST) From: Alexandre Derumier To: pve-devel@lists.proxmox.com Date: Mon, 19 Jun 2023 09:28:36 +0200 Message-Id: <20230619072841.38531-8-aderumier@odiso.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230619072841.38531-1-aderumier@odiso.com> References: <20230619072841.38531-1-aderumier@odiso.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.014 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 HEADER_FROM_DIFFERENT_DOMAINS 0.25 From and EnvelopeFrom 2nd level mail domains are different KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH v6 qemu-server 05/10] memory: get_max_mem: use config memory max 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: Mon, 19 Jun 2023 07:28:57 -0000 verify than defined vm memorymax is not bigger than host cpu supported memory Add add early check in update vm api Signed-off-by: Alexandre Derumier --- PVE/API2/Qemu.pm | 35 +++++++++++++++++++++++++---------- PVE/QemuServer/Memory.pm | 19 ++++++++++++++++++- 2 files changed, 43 insertions(+), 11 deletions(-) diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm index 39b6b04..f0b0dda 100644 --- a/PVE/API2/Qemu.pm +++ b/PVE/API2/Qemu.pm @@ -32,7 +32,7 @@ use PVE::QemuServer::Drive; use PVE::QemuServer::ImportDisk; use PVE::QemuServer::Monitor qw(mon_cmd); use PVE::QemuServer::Machine; -use PVE::QemuServer::Memory qw(get_current_memory); +use PVE::QemuServer::Memory qw(get_current_memory parse_memory get_host_max_mem); use PVE::QemuServer::PCI; use PVE::QemuServer::USB; use PVE::QemuMigrate; @@ -478,6 +478,29 @@ my $create_disks = sub { return ($vollist, $res); }; +my $check_memory_param = sub { + my ($conf, $param) = @_; + + my $mem = parse_memory($param->{memory}); + my $host_max_mem = get_host_max_mem($conf); + + die "memory max can't be bigger than supported cpu architecture $host_max_mem MiB\n" + if $mem->{max} && $mem->{max} > $host_max_mem; + + die "current memory value too large (must be smaller than max memory)\n" + if $mem->{max} && $mem->{current} > $mem->{max}; + + if ($param->{memory} || defined($param->{balloon})) { + + my $memory = $param->{memory} || $conf->{pending}->{memory} || $conf->{memory}; + my $current = get_current_memory($memory); + my $balloon = defined($param->{balloon}) ? $param->{balloon} : $conf->{pending}->{balloon} || $conf->{balloon}; + + die "balloon value too large (must be smaller than current assigned memory)\n" + if $balloon && $balloon > $current; + } +}; + my $check_cpu_model_access = sub { my ($rpcenv, $authuser, $new, $existing) = @_; @@ -1678,15 +1701,7 @@ my $update_vm_api = sub { } } - if ($param->{memory} || defined($param->{balloon})) { - - my $memory = $param->{memory} || $conf->{pending}->{memory} || $conf->{memory}; - my $maxmem = get_current_memory($memory); - my $balloon = defined($param->{balloon}) ? $param->{balloon} : $conf->{pending}->{balloon} || $conf->{balloon}; - - die "balloon value too large (must be smaller than assigned memory)\n" - if $balloon && $balloon > $maxmem; - } + &$check_memory_param($conf, $param); PVE::Cluster::log_msg('info', $authuser, "update VM $vmid: " . join (' ', @paramarr)); diff --git a/PVE/QemuServer/Memory.pm b/PVE/QemuServer/Memory.pm index d25c79c..cf489ea 100644 --- a/PVE/QemuServer/Memory.pm +++ b/PVE/QemuServer/Memory.pm @@ -14,6 +14,8 @@ use base qw(Exporter); our @EXPORT_OK = qw( get_current_memory +parse_memory +get_host_max_mem ); my $MAX_NUMA = 8; @@ -98,7 +100,7 @@ sub get_host_phys_address_bits { return; # undef, cannot really do anything.. } -my sub get_max_mem { +sub get_host_max_mem { my ($conf) = @_; my $cpu = {}; @@ -132,6 +134,21 @@ my sub get_max_mem { return $bits_to_max_mem > 4*1024*1024 ? 4*1024*1024 : $bits_to_max_mem; } +my sub get_max_mem { + my ($conf) = @_; + + my $host_max_mem = get_host_max_mem($conf); + my $mem = parse_memory($conf->{memory}); + + if ($mem->{max}) { + die "configured memory max can't be bigger than supported cpu architecture $host_max_mem MiB\n" + if $mem->{max} > $host_max_mem; + return $mem->{max}; + } + + return $host_max_mem; +} + sub get_current_memory { my ($value) = @_; -- 2.39.2