Page MenuHomeFreeBSD

vmm: Let guests enable SMEP/SMAP if the host supports it
ClosedPublic

Authored by markj on May 26 2021, 12:01 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Sep 12, 5:23 PM
Unknown Object (File)
Sat, Sep 9, 1:08 PM
Unknown Object (File)
Mon, Sep 4, 4:50 PM
Unknown Object (File)
May 27 2023, 7:00 PM
Unknown Object (File)
May 20 2023, 11:20 PM
Unknown Object (File)
May 7 2023, 2:12 PM
Unknown Object (File)
Feb 16 2023, 10:45 AM
Unknown Object (File)
Jan 25 2023, 8:25 PM
Subscribers

Details

Summary

Enabling the bits in cpuid appears to be sufficient. We already allow
the guest to set CR4_SMAP and _SMEP.

Test Plan

I booted a FreeBSD VM on an Intel system that implements SMAP, and verified
that the CPU feature is recognized and that it actually works (by adding
an access to user memory into a system call).

I do not have an AMD system I can use to test this; any assistance here would be
appreciated.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 39456
Build 36345: arc lint + arc unit

Event Timeline

This revision is now accepted and ready to land.May 26 2021, 12:03 AM
markj added a reviewer: kib.

From dmesg on a FreeBSD-14 guest on a Ryzen 4700U.

Host:

Structured Extended Features=0x219c91a9<FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,PQE,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA>

Guest before the change:

Structured Extended Features=0x20040129<FSGSBASE,BMI1,AVX2,BMI2,RDSEED,SHA>

Guest with the change:

Structured Extended Features=0x201401a9<FSGSBASE,BMI1,AVX2,SMEP,BMI2,RDSEED,SMAP,SHA>

I believe SMAP on AMD is very recent feature, AFAIR it is not present on Zen2.

In D30462#684409, @kib wrote:

I believe SMAP on AMD is very recent feature, AFAIR it is not present on Zen2.

See the above dmesg fragment showing SMAP present on the Zen2-based 4700U