Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932619AbcKYQp4 (ORCPT ); Fri, 25 Nov 2016 11:45:56 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53180 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755348AbcKYQps (ORCPT ); Fri, 25 Nov 2016 11:45:48 -0500 Subject: Re: [PATCH] KVM: x86: restrict maximal physical address To: =?UTF-8?B?UmFkaW0gS3LEjW3DocWZ?= References: <20161125145105.9508-1-rkrcmar@redhat.com> <88fa28cd-6d81-6f88-871c-484973b98292@redhat.com> <20161125161450.GB5878@potion> Cc: linux-kernel@vger.kernel.org, kvm@vger.kernel.org, Paolo Bonzini From: David Hildenbrand Organization: Red Hat GmbH Message-ID: <1cca4e4d-97f8-91b9-4e71-66f4a3c3cfb2@redhat.com> Date: Fri, 25 Nov 2016 17:43:10 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <20161125161450.GB5878@potion> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Fri, 25 Nov 2016 16:43:13 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2118 Lines: 54 >> This check is correct. >> >> However, I wonder if there is any way for user space to query this property? > > Do you mean boot_cpu_data.x86_phys_bits? > Userspace can execute CPUID instruction and read the value; QEMU does. Thanks, good to know. I remember that on s390x we explicitly decided to query the maximum address from KVM (KVM_S390_VM_MEM_LIMIT_SIZE) for two reasons. One of them was "just because our CPU supports it doesn't mean KVM supports it". Just like with all CPU features. However, this applies only for configuring hardware virtualization. The value that is exposed to the guest comes from the cpu model (with s390x cpu model support). So it will also not change during migration. But if this will never be relevant for x86 (KVM will always support host x86_phys_bits), fine. > >> On s390x, there is a kvm capability to export this information to user >> space. So QEMU can fail (e.g. migration) with a nice error message about >> missing hardware support. >> >> (most probably we still want to block this case, as migration will seem to >> work but than simply fail due to missing hardware support I guess). Maybe >> there is also already a nice check in QEMU that I am not yet aware of :) > > This patch is bad. It would break QEMU on all old machines, because > QEMU sets 40 by default. Not sure if rounding that value down (so it is at least consistent in KVM) makes sense (and documenting this behavior "may be rounded down"). And then implementing appropriate checks in QEMU (if not already present). > > Heh, QEMU doesn't check at all -- it even allows migration with > "host-phys-bits" feature and will happily change phys-bits when > migrating to another machine. > Either migrate that value (hmmm... ) or glue it to a command line parameter, so it won't change while migrating. E.g. - cpu models (if this value was always the same for a CPU generation - no expert on x86 cpu models). - "-cpu maxmem..." - could be a fit when thinking about "maximum VM size == max phys bits for our guest". But depends how this value is actually interpreted by guests. -- David