|
@@ -34,6 +34,7 @@
|
|
|
#include <linux/tboot.h>
|
|
|
#include <linux/hrtimer.h>
|
|
|
#include <linux/frame.h>
|
|
|
+#include <linux/nospec.h>
|
|
|
#include "kvm_cache_regs.h"
|
|
|
#include "x86.h"
|
|
|
|
|
@@ -898,21 +899,18 @@ static const unsigned short vmcs_field_to_offset_table[] = {
|
|
|
|
|
|
static inline short vmcs_field_to_offset(unsigned long field)
|
|
|
{
|
|
|
- BUILD_BUG_ON(ARRAY_SIZE(vmcs_field_to_offset_table) > SHRT_MAX);
|
|
|
+ const size_t size = ARRAY_SIZE(vmcs_field_to_offset_table);
|
|
|
+ unsigned short offset;
|
|
|
|
|
|
- if (field >= ARRAY_SIZE(vmcs_field_to_offset_table))
|
|
|
+ BUILD_BUG_ON(size > SHRT_MAX);
|
|
|
+ if (field >= size)
|
|
|
return -ENOENT;
|
|
|
|
|
|
- /*
|
|
|
- * FIXME: Mitigation for CVE-2017-5753. To be replaced with a
|
|
|
- * generic mechanism.
|
|
|
- */
|
|
|
- asm("lfence");
|
|
|
-
|
|
|
- if (vmcs_field_to_offset_table[field] == 0)
|
|
|
+ field = array_index_nospec(field, size);
|
|
|
+ offset = vmcs_field_to_offset_table[field];
|
|
|
+ if (offset == 0)
|
|
|
return -ENOENT;
|
|
|
-
|
|
|
- return vmcs_field_to_offset_table[field];
|
|
|
+ return offset;
|
|
|
}
|
|
|
|
|
|
static inline struct vmcs12 *get_vmcs12(struct kvm_vcpu *vcpu)
|