Page MenuHomeFreeBSD

Spectre AKA IBRS
ClosedPublic

Authored by kib on Jan 24 2018, 2:35 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Apr 6, 7:54 AM
Unknown Object (File)
Mar 8 2024, 8:10 PM
Unknown Object (File)
Feb 1 2024, 2:14 AM
Unknown Object (File)
Jan 17 2024, 7:31 AM
Unknown Object (File)
Dec 31 2023, 1:35 PM
Unknown Object (File)
Dec 31 2023, 1:35 PM
Unknown Object (File)
Dec 31 2023, 1:35 PM
Unknown Object (File)
Dec 31 2023, 1:35 PM

Details

Summary

Coded according to the 336996-001.

Test Plan

Tested on Haswell with recalled microcode.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

sys/amd64/amd64/initcpu.c
67

Probably avoiding negative-sense tunables/sysctls is preferred (although we have clfush_disable just above, perhaps maintaining consistency is sensible)

op requested changes to this revision.Jan 24 2018, 9:39 PM
op added inline comments.
sys/amd64/amd64/support.S
831

According to 2.5.1.3 the CPUID_STDEXT3_IBPD is not IA32_ARCH_CAP_IBRS_ALL?

This revision now requires changes to proceed.Jan 24 2018, 9:39 PM

Nevermind, it's handled.

sys/amd64/amd64/support.S
828

1f

2.5.1.3:
~~~
On processors with enhanced IBRS, an RSB overwrite sequence does not suffice to prevent the
predicted target of a near return from using an RSB entry created in a less privileged predictor mode.
Software can avoid this by enabling SMEP (for transitions from user mode to supervisor mode
) and by maintaining IA32_SPEC_CTRL.IBRS = 1 (for VM exits).
~~~

sys/amd64/amd64/support.S
831

Nope, it's fine, just the CPUID_STDEXT3_IBPD was named misleading.

sys/amd64/amd64/support.S
828

Re-read the citation and the code where you put the note. Your suggestion would result in doing something which is exactly opposite to what is recommended in the 2.5.1.3. If the IA32_ARCH_CAP_IBRS_ALL bit is set, then RSB reset sequence is useless, while jmp 1f would jump right to the sequence. Instead, the paragraph recommends to enable SMEP as the measure.

We always have SMEP turned on if CPU supports it, there is no such action as turning SMEP on after the kernel is booted. So there is nothing to do in the case of enhanced IBRS.

  • Disable IBPB on return to usermode
  • Ensure that IBPB is enabled on kernel entry before we enable interrupts. Then we do not need to tweak MSRs when re-entering kernel.
  • Except for NMI and MCE, where we preserve previous MSR content on entry and restore on exit, to ensure proper nesting.
  • Disable IBPB around mwait, Intel claims that if any HT has the control enabled, it hurts the whole core performance.

Would it make sense to reference Intel doc 336996-001 somewhere in a comment?

In D14029#295586, @imp wrote:

Would it make sense to reference Intel doc 336996-001 somewhere in a comment?

If this interface is to stay, Intel must move the content of the whitepaper into SDM. I will add a note to specialregs.h for now.

Pre-calculate all IBRS pre-conditions instead of doing it on each kernel entry.
Disable IBRS on return if it was enabled, regardless of the IBRS enable state.

I'm curious: why disable IBPB for userland?

This revision was not accepted when it landed; it landed in state Needs Review.Jan 31 2018, 2:36 PM
This revision was automatically updated to reflect the committed changes.