Page MenuHomeFreeBSD

vmm: add tunable to trap WBINVD
ClosedPublic

Authored by corvink on May 19 2022, 1:53 PM.
Tags
Referenced Files
Unknown Object (File)
Jan 15 2024, 6:44 AM
Unknown Object (File)
Dec 20 2023, 5:37 AM
Unknown Object (File)
Dec 12 2023, 4:46 AM
Unknown Object (File)
Sep 16 2023, 8:43 AM
Unknown Object (File)
Jun 10 2023, 11:16 PM
Unknown Object (File)
Jun 8 2023, 9:46 AM
Unknown Object (File)
Mar 5 2023, 5:40 PM
Unknown Object (File)
Mar 1 2023, 8:53 AM
Subscribers

Details

Summary

x86 is cache coherent. However, there are special cases where cache
coherency isn't ensured (e.g. when switching the caching mode). In these
cases, WBINVD can be used. WBINVD writes all cache lines back into main
memory and invalidates the whole cache.

Due to the invalidation of the whole cache, WBINVD is a very heavy
instruction and degrades the performance on all cores. So, we should
minimize the use of WBINVD as much as possible.

In a virtual environment, the WBINVD call is mostly useless. The guest
isn't able to break cache coherency because he can't switch the physical
cache mode. When using pci passthrough WBINVD might be useful.

Nevertheless, trapping and ignoring WBINVD is an unsafe operation. For
that reason, we implement it as tunable.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sys/amd64/vmm/amd/svm.c
509

Should we add a tunable for the SVM case? Also, would you consider making this a capability that can be specified on a per-VM basis the way HLT and PAUSE trapping is?

sys/amd64/vmm/amd/svm.c
509

Sry, I don't understand which tunable you want to add to SVM.

This patch adds two new tunables:

  • hw.vmm.trap_wbinvd which enables the trap (used by vmx and svm)
  • hw.vmm.vmx.cap.wbinvd_exit it just reports if vmx supports the trap. As far as I can see, svm always supports it and svm has no such cap tunables yet. I've only added it to be consistent with cap_pause_exit etc.

WBINVD degrades performance on all threads. So, either you want to avoid it for all VMs or you don't care. At the moment, it could make sense to specify the trap on a per-VM basis because (to my understanding) it's only unsafe under certain conditions when using passthru devices.

I'm thinking of a solution to emulate WBINVD instead of ignoring it in the future. When that's ready, the tunable could be removed and the trap could always be enabled.

KVM only executes WBINVD if the guest has access a passthru device with non-coherent cache, otherwise KVM ignores WBINVD too (https://elixir.bootlin.com/linux/latest/source/arch/x86/kvm/x86.c#L7375). ACRN does a page-walk on the whole EPT and calls clflushopt for each cacheline (https://github.com/projectacrn/acrn-hypervisor/blob/8b16be918533ba9395ec7fa4eea40412075c487b/hypervisor/arch/x86/guest/vmexit.c#L429).

jhb added inline comments.
sys/amd64/vmm/amd/svm.c
509

I had misread the tunable patch of the patch. Mmm, this is probably fine, yes.

This revision is now accepted and ready to land.May 23 2022, 6:12 PM
This revision was automatically updated to reflect the committed changes.