Re: [PATCH v6 6/9] KVM: x86: lapic: don't allow to change APIC ID unconditionally

From: Chao Gao
Date: Tue Mar 01 2022 - 02:53:05 EST


On Fri, Feb 25, 2022 at 04:46:31PM +0200, Maxim Levitsky wrote:
>On Fri, 2022-02-25 at 16:22 +0800, Zeng Guang wrote:
>> From: Maxim Levitsky <mlevitsk@xxxxxxxxxx>
>>
>> No normal guest has any reason to change physical APIC IDs, and
>> allowing this introduces bugs into APIC acceleration code.
>>
>> And Intel recent hardware just ignores writes to APIC_ID in
>> xAPIC mode. More background can be found at:
>> https://lore.kernel.org/lkml/Yfw5ddGNOnDqxMLs@xxxxxxxxxx/
>>
>> Looks there is no much value to support writable xAPIC ID in
>> guest except supporting some old and crazy use cases which
>> probably would fail on real hardware. So, make xAPIC ID
>> read-only for KVM guests.
>>
>> Signed-off-by: Maxim Levitsky <mlevitsk@xxxxxxxxxx>
>> Signed-off-by: Zeng Guang <guang.zeng@xxxxxxxxx>
>
>Assuming that this is approved and accepted upstream,
>that is even better that my proposal of doing this
>when APICv is enabled.

Sean & Paolo

what's your opinion? Shall we make xAPIC ID read-only unconditionally
or just when enable_apicv is enabled or use a parameter to control
it as Sean suggested at

https://lore.kernel.org/lkml/Yfw5ddGNOnDqxMLs@xxxxxxxxxx/

Intel SDM Vol3 10.4.6 Local APID ID says:

In MP systems, the local APIC ID is also used as a processor ID by the
BIOS and the operating system. Some processors permit software to
modify the APIC ID. However, the ability of software to modify the APIC
ID is processor model specific. Because of this, operating system
software should avoid writing to the local APIC ID register.

So, we think it is fine to make xAPIC ID always read-only. Instead of
supporting writable xAPIC ID in KVM guest, it may be better to fix software
that modify local APIC ID.

Intel IPI virtualization and AVIC are two cases that requires special
handling if xAPIC ID is writable. But it doesn't worth the effort and
is error-prone (e.g., AVIC is broken if guest changed its APIC ID).

>
>Since now apic id is always read only, now we should not
>forget to clean up some parts of kvm like kvm_recalculate_apic_map,
>which are not needed anymore.

Do you mean marking apic_map as DIRTY isn't needed in some cases?
Or some cleanup should be done inside kvm_recalculate_apic_map()?

For the former, I think we can ...

>
>Best regards,
> Maxim Levitsky
>
>> ---
>> arch/x86/kvm/lapic.c | 25 ++++++++++++++++++-------
>> 1 file changed, 18 insertions(+), 7 deletions(-)
>>
>> diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c
>> index e4bcdab1fac0..b38288c8a94f 100644
>> --- a/arch/x86/kvm/lapic.c
>> +++ b/arch/x86/kvm/lapic.c
>> @@ -2044,10 +2044,17 @@ static int kvm_lapic_reg_write(struct kvm_lapic *apic, u32 reg, u32 val)
>>
>> switch (reg) {
>> case APIC_ID: /* Local APIC ID */
>> - if (!apic_x2apic_mode(apic))
>> - kvm_apic_set_xapic_id(apic, val >> 24);
>> - else
>> + if (apic_x2apic_mode(apic)) {
>> ret = 1;
>> + break;
>> + }
>> + /* Don't allow changing APIC ID to avoid unexpected issues */
>> + if ((val >> 24) != apic->vcpu->vcpu_id) {
>> + kvm_vm_bugged(apic->vcpu->kvm);
>> + break;
>> + }
>> +
>> + kvm_apic_set_xapic_id(apic, val >> 24);

... drop the kvm_apic_set_xapic_id().