1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <xen/cache.h>
#include <xen/kernel.h>
#include <xen/param.h>
#include <xen/sched.h>
#include <xen/lib/x86/cpu-policy.h>
#include <asm/amd.h>
#include <asm/cpu-policy.h>
#include <asm/hvm/nestedhvm.h>
#include <asm/hvm/svm/svm.h>
#include <asm/msr-index.h>
#include <asm/paging.h>
#include <asm/setup.h>
#include <asm/xstate.h>
struct cpu_policy __read_mostly raw_cpu_policy;
struct cpu_policy __ro_after_init host_cpu_policy;
#ifdef CONFIG_PV
struct cpu_policy __ro_after_init pv_max_cpu_policy;
struct cpu_policy __ro_after_init pv_def_cpu_policy;
#endif
#ifdef CONFIG_HVM
struct cpu_policy __ro_after_init hvm_max_cpu_policy;
struct cpu_policy __ro_after_init hvm_def_cpu_policy;
#endif
const uint32_t known_features[] = INIT_KNOWN_FEATURES;
static const uint32_t __initconst pv_max_featuremask[] = INIT_PV_MAX_FEATURES;
static const uint32_t hvm_shadow_max_featuremask[] = INIT_HVM_SHADOW_MAX_FEATURES;
static const uint32_t __initconst hvm_hap_max_featuremask[] =
INIT_HVM_HAP_MAX_FEATURES;
static const uint32_t __initconst pv_def_featuremask[] = INIT_PV_DEF_FEATURES;
static const uint32_t __initconst hvm_shadow_def_featuremask[] =
INIT_HVM_SHADOW_DEF_FEATURES;
static const uint32_t __initconst hvm_hap_def_featuremask[] =
INIT_HVM_HAP_DEF_FEATURES;
static const uint32_t deep_features[] = INIT_DEEP_FEATURES;
static const struct feature_name {
const char *name;
unsigned int bit;
} feature_names[] __initconstrel = INIT_FEATURE_NAMES;
/*
* Parse a list of cpuid feature names -> bool, calling the callback for any
* matches found.
*
* always_inline, because this is init code only and we really don't want a
* function pointer call in the middle of the loop.
*/
static int __init always_inline parse_cpuid(
const char *s, void (*callback)(unsigned int feat, bool val))
{
const char *ss;
int val, rc = 0;
do {
const struct feature_name *lhs, *rhs, *mid = NULL /* GCC... */;
const char *feat;
ss = strchr(s, ',');
if ( !ss )
ss = strchr(s, '\0');
/* Skip the 'no-' prefix for name comparisons. */
feat = s;
if ( strncmp(s, "no-", 3) == 0 )
feat += 3;
/* (Re)initalise lhs and rhs for binary search. */
lhs = feature_names;
rhs = feature_names + ARRAY_SIZE(feature_names);
while ( lhs < rhs )
{
int res;
mid = lhs + (rhs - lhs) / 2;
res = cmdline_strcmp(feat, mid->name);
if ( res < 0 )
{
rhs = mid;
continue;
}
if ( res > 0 )
{
lhs = mid + 1;
continue;
}
if ( (val = parse_boolean(mid->name, s, ss)) >= 0 )
{
callback(mid->bit, val);
mid = NULL;
}
break;
}
/*
* Mid being NULL means that the name and boolean were successfully
* identified. Everything else is an error.
*/
if ( mid )
rc = -EINVAL;
s = ss + 1;
} while ( *ss );
return rc;
}
static void __init cf_check _parse_xen_cpuid(unsigned int feat, bool val)
{
if ( !val )
setup_clear_cpu_cap(feat);
else if ( feat == X86_FEATURE_RDRAND &&
(cpuid_ecx(1) & cpufeat_mask(X86_FEATURE_RDRAND)) )
setup_force_cpu_cap(X86_FEATURE_RDRAND);
}
static int __init cf_check parse_xen_cpuid(const char *s)
{
return parse_cpuid(s, _parse_xen_cpuid);
}
custom_param("cpuid", parse_xen_cpuid);
static bool __initdata dom0_cpuid_cmdline;
static uint32_t __initdata dom0_enable_feat[FSCAPINTS];
static uint32_t __initdata dom0_disable_feat[FSCAPINTS];
static void __init cf_check _parse_dom0_cpuid(unsigned int feat, bool val)
{
__set_bit (feat, val ? dom0_enable_feat : dom0_disable_feat);
__clear_bit(feat, val ? dom0_disable_feat : dom0_enable_feat );
}
static int __init cf_check parse_dom0_cpuid(const char *s)
{
dom0_cpuid_cmdline = true;
return parse_cpuid(s, _parse_dom0_cpuid);
}
custom_param("dom0-cpuid", parse_dom0_cpuid);
#define EMPTY_LEAF ((struct cpuid_leaf){})
static void zero_leaves(struct cpuid_leaf *l,
unsigned int first, unsigned int last)
{
memset(&l[first], 0, sizeof(*l) * (last - first + 1));
}
static void sanitise_featureset(uint32_t *fs)
{
/* for_each_set_bit() uses unsigned longs. Extend with zeroes. */
uint32_t disabled_features[
ROUNDUP(FSCAPINTS, sizeof(unsigned long)/sizeof(uint32_t))] = {};
unsigned int i;
for ( i = 0; i < FSCAPINTS; ++i )
{
/* Clamp to known mask. */
fs[i] &= known_features[i];
/*
* Identify which features with deep dependencies have been
* disabled.
*/
disabled_features[i] = ~fs[i] & deep_features[i];
}
for_each_set_bit(i, (void *)disabled_features,
sizeof(disabled_features) * 8)
{
const uint32_t *dfs = x86_cpu_policy_lookup_deep_deps(i);
unsigned int j;
ASSERT(dfs); /* deep_features[] should guarentee this. */
for ( j = 0; j < FSCAPINTS; ++j )
{
fs[j] &= ~dfs[j];
disabled_features[j] &= ~dfs[j];
}
}
}
static void recalculate_xstate(struct cpu_policy *p)
{
uint64_t xstates = XSTATE_FP_SSE;
uint32_t xstate_size = XSTATE_AREA_MIN_SIZE;
unsigned int i, Da1 = p->xstate.Da1;
/*
* The Da1 leaf is the only piece of information preserved in the common
* case. Everything else is derived from other feature state.
*/
memset(&p->xstate, 0, sizeof(p->xstate));
if ( !p->basic.xsave )
return;
if ( p->basic.avx )
{
xstates |= X86_XCR0_YMM;
xstate_size = max(xstate_size,
xstate_offsets[X86_XCR0_YMM_POS] +
xstate_sizes[X86_XCR0_YMM_POS]);
}
if ( p->feat.mpx )
{
xstates |= X86_XCR0_BNDREGS | X86_XCR0_BNDCSR;
xstate_size = max(xstate_size,
xstate_offsets[X86_XCR0_BNDCSR_POS] +
xstate_sizes[X86_XCR0_BNDCSR_POS]);
}
if ( p->feat.avx512f )
{
xstates |= X86_XCR0_OPMASK | X86_XCR0_ZMM | X86_XCR0_HI_ZMM;
xstate_size = max(xstate_size,
xstate_offsets[X86_XCR0_HI_ZMM_POS] +
xstate_sizes[X86_XCR0_HI_ZMM_POS]);
}
if ( p->feat.pku )
{
xstates |= X86_XCR0_PKRU;
xstate_size = max(xstate_size,
xstate_offsets[X86_XCR0_PKRU_POS] +
xstate_sizes[X86_XCR0_PKRU_POS]);
}
p->xstate.max_size = xstate_size;
p->xstate.xcr0_low = xstates & ~XSTATE_XSAVES_ONLY;
p->xstate.xcr0_high = (xstates & ~XSTATE_XSAVES_ONLY) >> 32;
p->xstate.Da1 = Da1;
if ( p->xstate.xsaves )
{
p->xstate.xss_low = xstates & XSTATE_XSAVES_ONLY;
p->xstate.xss_high = (xstates & XSTATE_XSAVES_ONLY) >> 32;
}
else
xstates &= ~XSTATE_XSAVES_ONLY;
for ( i = 2; i < min(63ul, ARRAY_SIZE(p->xstate.comp)); ++i )
{
uint64_t curr_xstate = 1ul << i;
if ( !(xstates & curr_xstate) )
continue;
p->xstate.comp[i].size = xstate_sizes[i];
p->xstate.comp[i].offset = xstate_offsets[i];
p->xstate.comp[i].xss = curr_xstate & XSTATE_XSAVES_ONLY;
p->xstate.comp[i].align = curr_xstate & xstate_align;
}
}
/*
* Misc adjustments to the policy. Mostly clobbering reserved fields and
* duplicating shared fields. Intentionally hidden fields are annotated.
*/
static void recalculate_misc(struct cpu_policy *p)
{
p->basic.raw_fms &= 0x0fff0fff; /* Clobber Processor Type on Intel. */
p->basic.apic_id = 0; /* Dynamic. */
p->basic.raw[0x5] = EMPTY_LEAF; /* MONITOR not exposed to guests. */
p->basic.raw[0x6] = EMPTY_LEAF; /* Therm/Power not exposed to guests. */
p->basic.raw[0x8] = EMPTY_LEAF;
/* TODO: Rework topology logic. */
memset(p->topo.raw, 0, sizeof(p->topo.raw));
p->basic.raw[0xc] = EMPTY_LEAF;
p->extd.e1d &= ~CPUID_COMMON_1D_FEATURES;
/* Most of Power/RAS hidden from guests. */
p->extd.raw[0x7].a = p->extd.raw[0x7].b = p->extd.raw[0x7].c = 0;
p->extd.raw[0x8].d = 0;
switch ( p->x86_vendor )
{
case X86_VENDOR_INTEL:
p->basic.l2_nr_queries = 1; /* Fixed to 1 query. */
p->basic.raw[0x3] = EMPTY_LEAF; /* PSN - always hidden. */
p->basic.raw[0x9] = EMPTY_LEAF; /* DCA - always hidden. */
p->extd.vendor_ebx = 0;
p->extd.vendor_ecx = 0;
p->extd.vendor_edx = 0;
p->extd.raw[0x1].a = p->extd.raw[0x1].b = 0;
p->extd.raw[0x5] = EMPTY_LEAF;
p->extd.raw[0x6].a = p->extd.raw[0x6].b = p->extd.raw[0x6].d = 0;
p->extd.raw[0x8].a &= 0x0000ffff;
p->extd.raw[0x8].c = 0;
break;
case X86_VENDOR_AMD:
case X86_VENDOR_HYGON:
zero_leaves(p->basic.raw, 0x2, 0x3);
memset(p->cache.raw, 0, sizeof(p->cache.raw));
zero_leaves(p->basic.raw, 0x9, 0xa);
p->extd.vendor_ebx = p->basic.vendor_ebx;
p->extd.vendor_ecx = p->basic.vendor_ecx;
p->extd.vendor_edx = p->basic.vendor_edx;
p->extd.raw_fms = p->basic.raw_fms;
p->extd.raw[0x1].b &= 0xff00ffff;
p->extd.e1d |= p->basic._1d & CPUID_COMMON_1D_FEATURES;
p->extd.raw[0x8].a &= 0x0000ffff; /* GuestMaxPhysAddr hidden. */
p->extd.raw[0x8].c &= 0x0003f0ff;
p->extd.raw[0x9] = EMPTY_LEAF;
zero_leaves(p->extd.raw, 0xb, 0x18);
/* 0x19 - TLB details. Pass through. */
/* 0x1a - Perf hints. Pass through. */
p->extd.raw[0x1b] = EMPTY_LEAF; /* IBS - not supported. */
p->extd.raw[0x1c] = EMPTY_LEAF; /* LWP - not supported. */
p->extd.raw[0x1d] = EMPTY_LEAF; /* TopoExt Cache */
p->extd.raw[0x1e] = EMPTY_LEAF; /* TopoExt APIC ID/Core/Node */
p->extd.raw[0x1f] = EMPTY_LEAF; /* SEV */
p->extd.raw[0x20] = EMPTY_LEAF; /* Platform QoS */
break;
}
}
void calculate_raw_cpu_policy(void)
{
struct cpu_policy *p = &raw_cpu_policy;
x86_cpu_policy_fill_native(p);
/* Nothing good will come from Xen and libx86 disagreeing on vendor. */
ASSERT(p->x86_vendor == boot_cpu_data.x86_vendor);
/* 0x000000ce MSR_INTEL_PLATFORM_INFO */
/* Was already added by probe_cpuid_faulting() */
if ( cpu_has_arch_caps )
rdmsrl(MSR_ARCH_CAPABILITIES, p->arch_caps.raw);
}
static void __init calculate_host_policy(void)
{
struct cpu_policy *p = &host_cpu_policy;
unsigned int max_extd_leaf;
*p = raw_cpu_policy;
p->basic.max_leaf =
min_t(uint32_t, p->basic.max_leaf, ARRAY_SIZE(p->basic.raw) - 1);
p->feat.max_subleaf =
min_t(uint32_t, p->feat.max_subleaf, ARRAY_SIZE(p->feat.raw) - 1);
max_extd_leaf = p->extd.max_leaf;
/*
* For AMD/Hygon hardware before Zen3, we unilaterally modify LFENCE to be
* dispatch serialising for Spectre mitigations. Extend max_extd_leaf
* beyond what hardware supports, to include the feature leaf containing
* this information.
*/
if ( cpu_has_lfence_dispatch )
max_extd_leaf = max(max_extd_leaf, 0x80000021);
p->extd.max_leaf = 0x80000000 | min_t(uint32_t, max_extd_leaf & 0xffff,
ARRAY_SIZE(p->extd.raw) - 1);
x86_cpu_featureset_to_policy(boot_cpu_data.x86_capability, p);
recalculate_xstate(p);
recalculate_misc(p);
/* When vPMU is disabled, drop it from the host policy. */
if ( vpmu_mode == XENPMU_MODE_OFF )
p->basic.raw[0xa] = EMPTY_LEAF;
if ( p->extd.svm )
{
/* Clamp to implemented features which require hardware support. */
p->extd.raw[0xa].d &= ((1u << SVM_FEATURE_NPT) |
(1u << SVM_FEATURE_LBRV) |
(1u << SVM_FEATURE_NRIPS) |
(1u << SVM_FEATURE_PAUSEFILTER) |
(1u << SVM_FEATURE_DECODEASSISTS));
/* Enable features which are always emulated. */
p->extd.raw[0xa].d |= ((1u << SVM_FEATURE_VMCBCLEAN) |
(1u << SVM_FEATURE_TSCRATEMSR));
}
/* 0x000000ce MSR_INTEL_PLATFORM_INFO */
/* probe_cpuid_faulting() sanity checks presence of MISC_FEATURES_ENABLES */
p->platform_info.cpuid_faulting = cpu_has_cpuid_faulting;
/* Temporary, until we have known_features[] for feature bits in MSRs. */
p->arch_caps.raw &=
(ARCH_CAPS_RDCL_NO | ARCH_CAPS_IBRS_ALL | ARCH_CAPS_RSBA |
ARCH_CAPS_SKIP_L1DFL | ARCH_CAPS_SSB_NO | ARCH_CAPS_MDS_NO |
ARCH_CAPS_IF_PSCHANGE_MC_NO | ARCH_CAPS_TSX_CTRL | ARCH_CAPS_TAA_NO |
ARCH_CAPS_SBDR_SSDP_NO | ARCH_CAPS_FBSDP_NO | ARCH_CAPS_PSDP_NO |
ARCH_CAPS_FB_CLEAR | ARCH_CAPS_RRSBA | ARCH_CAPS_BHI_NO |
ARCH_CAPS_PBRSB_NO);
}
static void __init guest_common_default_feature_adjustments(uint32_t *fs)
{
/*
* IvyBridge client parts suffer from leakage of RDRAND data due to SRBDS
* (XSA-320 / CVE-2020-0543), and won't be receiving microcode to
* compensate.
*
* Mitigate by hiding RDRAND from guests by default, unless explicitly
* overridden on the Xen command line (cpuid=rdrand). Irrespective of the
* default setting, guests can use RDRAND if explicitly enabled
* (cpuid="host,rdrand=1") in the VM's config file, and VMs which were
* previously using RDRAND can migrate in.
*/
if ( boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model == 0x3a &&
cpu_has_rdrand && !is_forced_cpu_cap(X86_FEATURE_RDRAND) )
__clear_bit(X86_FEATURE_RDRAND, fs);
/*
* On certain hardware, speculative or errata workarounds can result in
* TSX being placed in "force-abort" mode, where it doesn't actually
* function as expected, but is technically compatible with the ISA.
*
* Do not advertise RTM to guests by default if it won't actually work.
*/
if ( rtm_disabled )
__clear_bit(X86_FEATURE_RTM, fs);
}
static void __init guest_common_feature_adjustments(uint32_t *fs)
{
/* Unconditionally claim to be able to set the hypervisor bit. */
__set_bit(X86_FEATURE_HYPERVISOR, fs);
/*
* If IBRS is offered to the guest, unconditionally offer STIBP. It is a
* nop on non-HT hardware, and has this behaviour to make heterogeneous
* setups easier to manage.
*/
if ( test_bit(X86_FEATURE_IBRSB, fs) )
__set_bit(X86_FEATURE_STIBP, fs);
if ( test_bit(X86_FEATURE_IBRS, fs) )
__set_bit(X86_FEATURE_AMD_STIBP, fs);
/*
* On hardware which supports IBRS/IBPB, we can offer IBPB independently
* of IBRS by using the AMD feature bit. An administrator may wish for
* performance reasons to offer IBPB without IBRS.
*/
if ( host_cpu_policy.feat.ibrsb )
__set_bit(X86_FEATURE_IBPB, fs);
}
static void __init calculate_pv_max_policy(void)
{
struct cpu_policy *p = &pv_max_cpu_policy;
uint32_t fs[FSCAPINTS];
unsigned int i;
*p = host_cpu_policy;
x86_cpu_policy_to_featureset(p, fs);
for ( i = 0; i < ARRAY_SIZE(fs); ++i )
fs[i] &= pv_max_featuremask[i];
/*
* If Xen isn't virtualising MSR_SPEC_CTRL for PV guests (functional
* availability, or admin choice), hide the feature.
*/
if ( !boot_cpu_has(X86_FEATURE_SC_MSR_PV) )
{
__clear_bit(X86_FEATURE_IBRSB, fs);
__clear_bit(X86_FEATURE_IBRS, fs);
}
guest_common_feature_adjustments(fs);
sanitise_featureset(fs);
x86_cpu_featureset_to_policy(fs, p);
recalculate_xstate(p);
p->extd.raw[0xa] = EMPTY_LEAF; /* No SVM for PV guests. */
p->arch_caps.raw = 0; /* Not supported yet. */
}
static void __init calculate_pv_def_policy(void)
{
struct cpu_policy *p = &pv_def_cpu_policy;
uint32_t fs[FSCAPINTS];
unsigned int i;
*p = pv_max_cpu_policy;
x86_cpu_policy_to_featureset(p, fs);
for ( i = 0; i < ARRAY_SIZE(fs); ++i )
fs[i] &= pv_def_featuremask[i];
guest_common_feature_adjustments(fs);
guest_common_default_feature_adjustments(fs);
sanitise_featureset(fs);
x86_cpu_featureset_to_policy(fs, p);
recalculate_xstate(p);
}
static void __init calculate_hvm_max_policy(void)
{
struct cpu_policy *p = &hvm_max_cpu_policy;
uint32_t fs[FSCAPINTS];
unsigned int i;
const uint32_t *mask;
*p = host_cpu_policy;
x86_cpu_policy_to_featureset(p, fs);
mask = hvm_hap_supported() ?
hvm_hap_max_featuremask : hvm_shadow_max_featuremask;
for ( i = 0; i < ARRAY_SIZE(fs); ++i )
fs[i] &= mask[i];
/*
* Xen can provide an (x2)APIC emulation to HVM guests even if the host's
* (x2)APIC isn't enabled.
*/
__set_bit(X86_FEATURE_APIC, fs);
__set_bit(X86_FEATURE_X2APIC, fs);
/*
* We don't support EFER.LMSLE at all. AMD has dropped the feature from
* hardware and allocated a CPUID bit to indicate its absence.
*/
__set_bit(X86_FEATURE_NO_LMSL, fs);
/*
* On AMD, PV guests are entirely unable to use SYSENTER as Xen runs in
* long mode (and init_amd() has cleared it out of host capabilities), but
* HVM guests are able if running in protected mode.
*/
if ( (boot_cpu_data.x86_vendor & (X86_VENDOR_AMD | X86_VENDOR_HYGON)) &&
raw_cpu_policy.basic.sep )
__set_bit(X86_FEATURE_SEP, fs);
/*
* VIRT_SSBD is exposed in the default policy as a result of
* amd_virt_spec_ctrl being set, it also needs exposing in the max policy.
*/
if ( amd_virt_spec_ctrl )
__set_bit(X86_FEATURE_VIRT_SSBD, fs);
/*
* If Xen isn't virtualising MSR_SPEC_CTRL for HVM guests (functional
* availability, or admin choice), hide the feature.
*/
if ( !boot_cpu_has(X86_FEATURE_SC_MSR_HVM) )
{
__clear_bit(X86_FEATURE_IBRSB, fs);
__clear_bit(X86_FEATURE_IBRS, fs);
}
else if ( boot_cpu_has(X86_FEATURE_AMD_SSBD) )
/*
* If SPEC_CTRL.SSBD is available VIRT_SPEC_CTRL.SSBD can be exposed
* and implemented using the former. Expose in the max policy only as
* the preference is for guests to use SPEC_CTRL.SSBD if available.
*/
__set_bit(X86_FEATURE_VIRT_SSBD, fs);
/*
* With VT-x, some features are only supported by Xen if dedicated
* hardware support is also available.
*/
if ( cpu_has_vmx )
{
if ( !cpu_has_vmx_mpx )
__clear_bit(X86_FEATURE_MPX, fs);
if ( !cpu_has_vmx_xsaves )
__clear_bit(X86_FEATURE_XSAVES, fs);
}
/*
* Xen doesn't use PKS, so the guest support for it has opted to not use
* the VMCS load/save controls for efficiency reasons. This depends on
* the exact vmentry/exit behaviour, so don't expose PKS in other
* situations until someone has cross-checked the behaviour for safety.
*/
if ( !cpu_has_vmx )
__clear_bit(X86_FEATURE_PKS, fs);
guest_common_feature_adjustments(fs);
sanitise_featureset(fs);
x86_cpu_featureset_to_policy(fs, p);
recalculate_xstate(p);
/* It's always possible to emulate CPUID faulting for HVM guests */
p->platform_info.cpuid_faulting = true;
p->arch_caps.raw = 0; /* Not supported yet. */
}
static void __init calculate_hvm_def_policy(void)
{
struct cpu_policy *p = &hvm_def_cpu_policy;
uint32_t fs[FSCAPINTS];
unsigned int i;
const uint32_t *mask;
*p = hvm_max_cpu_policy;
x86_cpu_policy_to_featureset(p, fs);
mask = hvm_hap_supported() ?
hvm_hap_def_featuremask : hvm_shadow_def_featuremask;
for ( i = 0; i < ARRAY_SIZE(fs); ++i )
fs[i] &= mask[i];
guest_common_feature_adjustments(fs);
guest_common_default_feature_adjustments(fs);
/*
* Only expose VIRT_SSBD if AMD_SSBD is not available, and thus
* amd_virt_spec_ctrl is set.
*/
if ( amd_virt_spec_ctrl )
__set_bit(X86_FEATURE_VIRT_SSBD, fs);
sanitise_featureset(fs);
x86_cpu_featureset_to_policy(fs, p);
recalculate_xstate(p);
}
void __init init_guest_cpu_policies(void)
{
calculate_raw_cpu_policy();
calculate_host_policy();
if ( IS_ENABLED(CONFIG_PV) )
{
calculate_pv_max_policy();
calculate_pv_def_policy();
}
if ( hvm_enabled )
{
calculate_hvm_max_policy();
calculate_hvm_def_policy();
}
}
int init_domain_cpu_policy(struct domain *d)
{
struct cpu_policy *p = is_pv_domain(d)
? (IS_ENABLED(CONFIG_PV) ? &pv_def_cpu_policy : NULL)
: (IS_ENABLED(CONFIG_HVM) ? &hvm_def_cpu_policy : NULL);
if ( !p )
{
ASSERT_UNREACHABLE();
return -EOPNOTSUPP;
}
p = xmemdup(p);
if ( !p )
return -ENOMEM;
/* See comment in ctxt_switch_levelling() */
if ( !opt_dom0_cpuid_faulting && is_control_domain(d) && is_pv_domain(d) )
p->platform_info.cpuid_faulting = false;
/*
* Expose the "hardware speculation behaviour" bits of ARCH_CAPS to dom0,
* so dom0 can turn off workarounds as appropriate. Temporary, until the
* domain policy logic gains a better understanding of MSRs.
*/
if ( is_hardware_domain(d) && cpu_has_arch_caps )
{
uint64_t val;
rdmsrl(MSR_ARCH_CAPABILITIES, val);
p->arch_caps.raw = val &
(ARCH_CAPS_RDCL_NO | ARCH_CAPS_IBRS_ALL | ARCH_CAPS_RSBA |
ARCH_CAPS_SSB_NO | ARCH_CAPS_MDS_NO | ARCH_CAPS_IF_PSCHANGE_MC_NO |
ARCH_CAPS_TAA_NO | ARCH_CAPS_SBDR_SSDP_NO | ARCH_CAPS_FBSDP_NO |
ARCH_CAPS_PSDP_NO | ARCH_CAPS_FB_CLEAR | ARCH_CAPS_RRSBA |
ARCH_CAPS_BHI_NO | ARCH_CAPS_PBRSB_NO);
}
d->arch.cpu_policy = p;
recalculate_cpuid_policy(d);
return 0;
}
void recalculate_cpuid_policy(struct domain *d)
{
struct cpu_policy *p = d->arch.cpuid;
const struct cpu_policy *max = is_pv_domain(d)
? (IS_ENABLED(CONFIG_PV) ? &pv_max_cpu_policy : NULL)
: (IS_ENABLED(CONFIG_HVM) ? &hvm_max_cpu_policy : NULL);
uint32_t fs[FSCAPINTS], max_fs[FSCAPINTS];
unsigned int i;
if ( !max )
{
ASSERT_UNREACHABLE();
return;
}
p->x86_vendor = x86_cpuid_lookup_vendor(
p->basic.vendor_ebx, p->basic.vendor_ecx, p->basic.vendor_edx);
p->basic.max_leaf = min(p->basic.max_leaf, max->basic.max_leaf);
p->feat.max_subleaf = min(p->feat.max_subleaf, max->feat.max_subleaf);
p->extd.max_leaf = 0x80000000 | min(p->extd.max_leaf & 0xffff,
((p->x86_vendor & (X86_VENDOR_AMD |
X86_VENDOR_HYGON))
? CPUID_GUEST_NR_EXTD_AMD
: CPUID_GUEST_NR_EXTD_INTEL) - 1);
x86_cpu_policy_to_featureset(p, fs);
x86_cpu_policy_to_featureset(max, max_fs);
if ( is_hvm_domain(d) )
{
/*
* HVM domains using Shadow paging have further restrictions on their
* available paging features.
*/
if ( !hap_enabled(d) )
{
for ( i = 0; i < ARRAY_SIZE(max_fs); i++ )
max_fs[i] &= hvm_shadow_max_featuremask[i];
}
/* Hide nested-virt if it hasn't been explicitly configured. */
if ( !nestedhvm_enabled(d) )
{
__clear_bit(X86_FEATURE_VMX, max_fs);
__clear_bit(X86_FEATURE_SVM, max_fs);
}
}
/*
* Allow the toolstack to set HTT, X2APIC and CMP_LEGACY. These bits
* affect how to interpret topology information in other cpuid leaves.
*/
__set_bit(X86_FEATURE_HTT, max_fs);
__set_bit(X86_FEATURE_X2APIC, max_fs);
__set_bit(X86_FEATURE_CMP_LEGACY, max_fs);
/*
* 32bit PV domains can't use any Long Mode features, and cannot use
* SYSCALL on non-AMD hardware.
*/
if ( is_pv_32bit_domain(d) )
{
__clear_bit(X86_FEATURE_LM, max_fs);
if ( !(boot_cpu_data.x86_vendor & (X86_VENDOR_AMD | X86_VENDOR_HYGON)) )
__clear_bit(X86_FEATURE_SYSCALL, max_fs);
}
/* Clamp the toolstacks choices to reality. */
for ( i = 0; i < ARRAY_SIZE(fs); i++ )
fs[i] &= max_fs[i];
if ( p->basic.max_leaf < XSTATE_CPUID )
__clear_bit(X86_FEATURE_XSAVE, fs);
sanitise_featureset(fs);
/* Fold host's FDP_EXCP_ONLY and NO_FPU_SEL into guest's view. */
fs[FEATURESET_7b0] &= ~(cpufeat_mask(X86_FEATURE_FDP_EXCP_ONLY) |
cpufeat_mask(X86_FEATURE_NO_FPU_SEL));
fs[FEATURESET_7b0] |= (host_cpu_policy.feat._7b0 &
(cpufeat_mask(X86_FEATURE_FDP_EXCP_ONLY) |
cpufeat_mask(X86_FEATURE_NO_FPU_SEL)));
x86_cpu_featureset_to_policy(fs, p);
/* Pass host cacheline size through to guests. */
p->basic.clflush_size = max->basic.clflush_size;
p->extd.maxphysaddr = min(p->extd.maxphysaddr, max->extd.maxphysaddr);
p->extd.maxphysaddr = min_t(uint8_t, p->extd.maxphysaddr,
paging_max_paddr_bits(d));
p->extd.maxphysaddr = max_t(uint8_t, p->extd.maxphysaddr,
(p->basic.pae || p->basic.pse36) ? 36 : 32);
p->extd.maxlinaddr = p->extd.lm ? 48 : 32;
recalculate_xstate(p);
recalculate_misc(p);
for ( i = 0; i < ARRAY_SIZE(p->cache.raw); ++i )
{
if ( p->cache.subleaf[i].type >= 1 &&
p->cache.subleaf[i].type <= 3 )
{
/* Subleaf has a valid cache type. Zero reserved fields. */
p->cache.raw[i].a &= 0xffffc3ffu;
p->cache.raw[i].d &= 0x00000007u;
}
else
{
/* Subleaf is not valid. Zero the rest of the union. */
zero_leaves(p->cache.raw, i, ARRAY_SIZE(p->cache.raw) - 1);
break;
}
}
if ( vpmu_mode == XENPMU_MODE_OFF ||
((vpmu_mode & XENPMU_MODE_ALL) && !is_hardware_domain(d)) )
p->basic.raw[0xa] = EMPTY_LEAF;
if ( !p->extd.svm )
p->extd.raw[0xa] = EMPTY_LEAF;
if ( !p->extd.page1gb )
p->extd.raw[0x19] = EMPTY_LEAF;
}
void __init init_dom0_cpuid_policy(struct domain *d)
{
struct cpu_policy *p = d->arch.cpuid;
/* dom0 can't migrate. Give it ITSC if available. */
if ( cpu_has_itsc )
p->extd.itsc = true;
/*
* Expose the "hardware speculation behaviour" bits of ARCH_CAPS to dom0,
* so dom0 can turn off workarounds as appropriate. Temporary, until the
* domain policy logic gains a better understanding of MSRs.
*/
if ( cpu_has_arch_caps )
p->feat.arch_caps = true;
/* Apply dom0-cpuid= command line settings, if provided. */
if ( dom0_cpuid_cmdline )
{
uint32_t fs[FSCAPINTS];
unsigned int i;
x86_cpu_policy_to_featureset(p, fs);
for ( i = 0; i < ARRAY_SIZE(fs); ++i )
{
fs[i] |= dom0_enable_feat [i];
fs[i] &= ~dom0_disable_feat[i];
}
x86_cpu_featureset_to_policy(fs, p);
recalculate_cpuid_policy(d);
}
}
static void __init __maybe_unused build_assertions(void)
{
BUILD_BUG_ON(ARRAY_SIZE(known_features) != FSCAPINTS);
BUILD_BUG_ON(ARRAY_SIZE(pv_max_featuremask) != FSCAPINTS);
BUILD_BUG_ON(ARRAY_SIZE(hvm_shadow_max_featuremask) != FSCAPINTS);
BUILD_BUG_ON(ARRAY_SIZE(hvm_hap_max_featuremask) != FSCAPINTS);
BUILD_BUG_ON(ARRAY_SIZE(deep_features) != FSCAPINTS);
/* Find some more clever allocation scheme if this trips. */
BUILD_BUG_ON(sizeof(struct cpu_policy) > PAGE_SIZE);
BUILD_BUG_ON(sizeof(raw_cpu_policy.basic) !=
sizeof(raw_cpu_policy.basic.raw));
BUILD_BUG_ON(sizeof(raw_cpu_policy.feat) !=
sizeof(raw_cpu_policy.feat.raw));
BUILD_BUG_ON(sizeof(raw_cpu_policy.xstate) !=
sizeof(raw_cpu_policy.xstate.raw));
BUILD_BUG_ON(sizeof(raw_cpu_policy.extd) !=
sizeof(raw_cpu_policy.extd.raw));
}
|