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
|
/*
* arch/x86/xstate.c
*
* x86 extended state operations
*
*/
#include <xen/param.h>
#include <xen/percpu.h>
#include <xen/sched.h>
#include <asm/current.h>
#include <asm/processor.h>
#include <asm/i387.h>
#include <asm/xstate.h>
#include <asm/asm_defns.h>
/*
* Maximum size (in byte) of the XSAVE/XRSTOR save area required by all
* the supported and enabled features on the processor, including the
* XSAVE.HEADER. We only enable XCNTXT_MASK that we have known.
*/
static u32 __read_mostly xsave_cntxt_size;
/* A 64-bit bitmask of the XSAVE/XRSTOR features supported by processor. */
u64 __read_mostly xfeature_mask;
unsigned int *__read_mostly xstate_offsets;
unsigned int *__read_mostly xstate_sizes;
u64 __read_mostly xstate_align;
static unsigned int __read_mostly xstate_features;
uint32_t __read_mostly mxcsr_mask = 0x0000ffbf;
/* Cached xcr0 for fast read */
static DEFINE_PER_CPU(uint64_t, xcr0);
/* Because XCR0 is cached for each CPU, xsetbv() is not exposed. Users should
* use set_xcr0() instead.
*/
static inline bool xsetbv(u32 index, u64 xfeatures)
{
u32 hi = xfeatures >> 32;
u32 lo = (u32)xfeatures;
asm volatile ( "1: .byte 0x0f,0x01,0xd1\n"
"3: \n"
".section .fixup,\"ax\" \n"
"2: xor %0,%0 \n"
" jmp 3b \n"
".previous \n"
_ASM_EXTABLE(1b, 2b)
: "+a" (lo)
: "c" (index), "d" (hi));
return lo != 0;
}
bool set_xcr0(u64 val)
{
uint64_t *this_xcr0 = &this_cpu(xcr0);
if ( *this_xcr0 != val )
{
if ( !xsetbv(XCR_XFEATURE_ENABLED_MASK, val) )
return false;
*this_xcr0 = val;
}
return true;
}
uint64_t get_xcr0(void)
{
return this_cpu(xcr0);
}
/* Cached xss for fast read */
static DEFINE_PER_CPU(uint64_t, xss);
void set_msr_xss(u64 xss)
{
u64 *this_xss = &this_cpu(xss);
if ( *this_xss != xss )
{
wrmsrl(MSR_IA32_XSS, xss);
*this_xss = xss;
}
}
uint64_t get_msr_xss(void)
{
return this_cpu(xss);
}
static int setup_xstate_features(bool bsp)
{
unsigned int leaf, eax, ebx, ecx, edx;
if ( bsp )
{
xstate_features = flsl(xfeature_mask);
xstate_offsets = xzalloc_array(unsigned int, xstate_features);
if ( !xstate_offsets )
return -ENOMEM;
xstate_sizes = xzalloc_array(unsigned int, xstate_features);
if ( !xstate_sizes )
return -ENOMEM;
}
for ( leaf = 2; leaf < xstate_features; leaf++ )
{
if ( bsp )
{
cpuid_count(XSTATE_CPUID, leaf, &xstate_sizes[leaf],
&xstate_offsets[leaf], &ecx, &edx);
if ( ecx & XSTATE_ALIGN64 )
__set_bit(leaf, &xstate_align);
}
else
{
cpuid_count(XSTATE_CPUID, leaf, &eax,
&ebx, &ecx, &edx);
BUG_ON(eax != xstate_sizes[leaf]);
BUG_ON(ebx != xstate_offsets[leaf]);
BUG_ON(!(ecx & XSTATE_ALIGN64) != !test_bit(leaf, &xstate_align));
}
}
return 0;
}
static void setup_xstate_comp(uint16_t *comp_offsets,
const uint64_t xcomp_bv)
{
unsigned int i;
unsigned int offset;
/*
* The FP xstates and SSE xstates are legacy states. They are always
* in the fixed offsets in the xsave area in either compacted form
* or standard form.
*/
comp_offsets[0] = 0;
comp_offsets[1] = XSAVE_SSE_OFFSET;
comp_offsets[2] = FXSAVE_SIZE + XSAVE_HDR_SIZE;
offset = comp_offsets[2];
for ( i = 2; i < xstate_features; i++ )
{
if ( (1ul << i) & xcomp_bv )
{
if ( test_bit(i, &xstate_align) )
offset = ROUNDUP(offset, 64);
comp_offsets[i] = offset;
offset += xstate_sizes[i];
}
}
ASSERT(offset <= xsave_cntxt_size);
}
/*
* Serialise a vcpus xsave state into a representation suitable for the
* toolstack.
*
* Internally a vcpus xsave state may be compressed or uncompressed, depending
* on the features in use, but the ABI with the toolstack is strictly
* uncompressed.
*
* It is the callers responsibility to ensure that there is xsave state to
* serialise, and that the provided buffer is exactly the right size.
*/
void expand_xsave_states(struct vcpu *v, void *dest, unsigned int size)
{
const struct xsave_struct *xsave = v->arch.xsave_area;
const void *src;
uint16_t comp_offsets[sizeof(xfeature_mask)*8];
u64 xstate_bv = xsave->xsave_hdr.xstate_bv;
u64 valid;
/* Check there is state to serialise (i.e. at least an XSAVE_HDR) */
BUG_ON(!v->arch.xcr0_accum);
/* Check there is the correct room to decompress into. */
BUG_ON(size != xstate_ctxt_size(v->arch.xcr0_accum));
if ( !(xsave->xsave_hdr.xcomp_bv & XSTATE_COMPACTION_ENABLED) )
{
memcpy(dest, xsave, size);
return;
}
ASSERT(xsave_area_compressed(xsave));
setup_xstate_comp(comp_offsets, xsave->xsave_hdr.xcomp_bv);
/*
* Copy legacy XSAVE area and XSAVE hdr area.
*/
memcpy(dest, xsave, XSTATE_AREA_MIN_SIZE);
memset(dest + XSTATE_AREA_MIN_SIZE, 0, size - XSTATE_AREA_MIN_SIZE);
((struct xsave_struct *)dest)->xsave_hdr.xcomp_bv = 0;
/*
* Copy each region from the possibly compacted offset to the
* non-compacted offset.
*/
src = xsave;
valid = xstate_bv & ~XSTATE_FP_SSE;
while ( valid )
{
u64 feature = valid & -valid;
unsigned int index = fls(feature) - 1;
/*
* We previously verified xstate_bv. If there isn't valid
* comp_offsets[] information, something is very broken.
*/
BUG_ON(!comp_offsets[index]);
BUG_ON((xstate_offsets[index] + xstate_sizes[index]) > size);
memcpy(dest + xstate_offsets[index], src + comp_offsets[index],
xstate_sizes[index]);
valid &= ~feature;
}
}
/*
* Deserialise a toolstack's xsave state representation suitably for a vcpu.
*
* Internally a vcpus xsave state may be compressed or uncompressed, depending
* on the features in use, but the ABI with the toolstack is strictly
* uncompressed.
*
* It is the callers responsibility to ensure that the source buffer contains
* xsave state, is uncompressed, and is exactly the right size.
*/
void compress_xsave_states(struct vcpu *v, const void *src, unsigned int size)
{
struct xsave_struct *xsave = v->arch.xsave_area;
void *dest;
uint16_t comp_offsets[sizeof(xfeature_mask)*8];
u64 xstate_bv, valid;
BUG_ON(!v->arch.xcr0_accum);
BUG_ON(size != xstate_ctxt_size(v->arch.xcr0_accum));
ASSERT(!xsave_area_compressed(src));
xstate_bv = ((const struct xsave_struct *)src)->xsave_hdr.xstate_bv;
if ( !(v->arch.xcr0_accum & XSTATE_XSAVES_ONLY) )
{
memcpy(xsave, src, size);
return;
}
/*
* Copy legacy XSAVE area, to avoid complications with CPUID
* leaves 0 and 1 in the loop below.
*/
memcpy(xsave, src, FXSAVE_SIZE);
/* Set XSTATE_BV and XCOMP_BV. */
xsave->xsave_hdr.xstate_bv = xstate_bv;
xsave->xsave_hdr.xcomp_bv = v->arch.xcr0_accum | XSTATE_COMPACTION_ENABLED;
setup_xstate_comp(comp_offsets, xsave->xsave_hdr.xcomp_bv);
/*
* Copy each region from the non-compacted offset to the
* possibly compacted offset.
*/
dest = xsave;
valid = xstate_bv & ~XSTATE_FP_SSE;
while ( valid )
{
u64 feature = valid & -valid;
unsigned int index = fls(feature) - 1;
/*
* We previously verified xstate_bv. If we don't have valid
* comp_offset[] information, something is very broken.
*/
BUG_ON(!comp_offsets[index]);
BUG_ON((xstate_offsets[index] + xstate_sizes[index]) > size);
memcpy(dest + comp_offsets[index], src + xstate_offsets[index],
xstate_sizes[index]);
valid &= ~feature;
}
}
void xsave(struct vcpu *v, uint64_t mask)
{
struct xsave_struct *ptr = v->arch.xsave_area;
uint32_t hmask = mask >> 32;
uint32_t lmask = mask;
unsigned int fip_width = v->domain->arch.x87_fip_width;
#define XSAVE(pfx) \
if ( v->arch.xcr0_accum & XSTATE_XSAVES_ONLY ) \
asm volatile ( ".byte " pfx "0x0f,0xc7,0x2f\n" /* xsaves */ \
: "=m" (*ptr) \
: "a" (lmask), "d" (hmask), "D" (ptr) ); \
else \
alternative_io(".byte " pfx "0x0f,0xae,0x27\n", /* xsave */ \
".byte " pfx "0x0f,0xae,0x37\n", /* xsaveopt */ \
X86_FEATURE_XSAVEOPT, \
"=m" (*ptr), \
"a" (lmask), "d" (hmask), "D" (ptr))
if ( fip_width == 8 || !(mask & X86_XCR0_FP) )
{
XSAVE("0x48,");
}
else if ( fip_width == 4 )
{
XSAVE("");
}
else
{
/*
* FIP/FDP may not be written in some cases (e.g., if XSAVEOPT/XSAVES
* is used, or on AMD CPUs if an exception isn't pending).
*
* To tell if the hardware writes these fields, poison the FIP field.
* The poison is
* a) non-canonical
* b) non-zero for the reserved part of a 32-bit FCS:FIP
* c) random with a vanishingly small probability to match a value the
* hardware may write (1e-19) even if it did not canonicalize the
* 64-bit FIP or zero-extend the 16-bit FCS.
*/
uint64_t orig_fip = ptr->fpu_sse.fip.addr;
const uint64_t bad_fip = 0x6a3f5c4b13a533f6;
ptr->fpu_sse.fip.addr = bad_fip;
XSAVE("0x48,");
/* FIP/FDP not updated? Restore the old FIP value. */
if ( ptr->fpu_sse.fip.addr == bad_fip )
{
ptr->fpu_sse.fip.addr = orig_fip;
return;
}
/*
* If the FIP/FDP[63:32] are both zero, it is safe to use the
* 32-bit restore to also restore the selectors.
*/
if ( !((ptr->fpu_sse.fip.addr | ptr->fpu_sse.fdp.addr) >> 32) )
{
struct ix87_env fpu_env;
asm volatile ( "fnstenv %0" : "=m" (fpu_env) );
ptr->fpu_sse.fip.sel = fpu_env.fcs;
ptr->fpu_sse.fdp.sel = fpu_env.fds;
fip_width = 4;
}
else
fip_width = 8;
}
#undef XSAVE
if ( mask & X86_XCR0_FP )
ptr->fpu_sse.x[FPU_WORD_SIZE_OFFSET] = fip_width;
}
void xrstor(struct vcpu *v, uint64_t mask)
{
uint32_t hmask = mask >> 32;
uint32_t lmask = mask;
struct xsave_struct *ptr = v->arch.xsave_area;
unsigned int faults, prev_faults;
/*
* Some CPUs don't save/restore FDP/FIP/FOP unless an exception
* is pending. Clear the x87 state here by setting it to fixed
* values. The hypervisor data segment can be sometimes 0 and
* sometimes new user value. Both should be ok. Use the FPU saved
* data block as a safe address because it should be in L1.
*/
if ( cpu_bug_fpu_ptrs &&
!(ptr->fpu_sse.fsw & ~ptr->fpu_sse.fcw & 0x003f) )
asm volatile ( "fnclex\n\t" /* clear exceptions */
"ffree %%st(7)\n\t" /* clear stack tag */
"fildl %0" /* load to clear state */
: : "m" (ptr->fpu_sse) );
/*
* XRSTOR can fault if passed a corrupted data block. We handle this
* possibility, which may occur if the block was passed to us by control
* tools or through VCPUOP_initialise, by silently adjusting state.
*/
for ( prev_faults = faults = 0; ; prev_faults = faults )
{
switch ( __builtin_expect(ptr->fpu_sse.x[FPU_WORD_SIZE_OFFSET], 8) )
{
BUILD_BUG_ON(sizeof(faults) != 4); /* Clang doesn't support %z in asm. */
#define _xrstor(insn) \
asm volatile ( "1: .byte " insn "\n" \
"3:\n" \
" .section .fixup,\"ax\"\n" \
"2: incl %[faults]\n" \
" jmp 3b\n" \
" .previous\n" \
_ASM_EXTABLE(1b, 2b) \
: [mem] "+m" (*ptr), [faults] "+g" (faults) \
: [lmask] "a" (lmask), [hmask] "d" (hmask), \
[ptr] "D" (ptr) )
#define XRSTOR(pfx) \
if ( v->arch.xcr0_accum & XSTATE_XSAVES_ONLY ) \
{ \
if ( unlikely(!(ptr->xsave_hdr.xcomp_bv & \
XSTATE_COMPACTION_ENABLED)) ) \
{ \
ASSERT(!ptr->xsave_hdr.xcomp_bv); \
ptr->xsave_hdr.xcomp_bv = ptr->xsave_hdr.xstate_bv | \
XSTATE_COMPACTION_ENABLED; \
} \
_xrstor(pfx "0x0f,0xc7,0x1f"); /* xrstors */ \
} \
else \
_xrstor(pfx "0x0f,0xae,0x2f") /* xrstor */
default:
XRSTOR("0x48,");
break;
case 4: case 2:
XRSTOR("");
break;
#undef XRSTOR
#undef _xrstor
}
if ( likely(faults == prev_faults) )
break;
#ifndef NDEBUG
gprintk(XENLOG_WARNING, "fault#%u: mxcsr=%08x\n",
faults, ptr->fpu_sse.mxcsr);
gprintk(XENLOG_WARNING, "xs=%016lx xc=%016lx\n",
ptr->xsave_hdr.xstate_bv, ptr->xsave_hdr.xcomp_bv);
gprintk(XENLOG_WARNING, "r0=%016lx r1=%016lx\n",
ptr->xsave_hdr.reserved[0], ptr->xsave_hdr.reserved[1]);
gprintk(XENLOG_WARNING, "r2=%016lx r3=%016lx\n",
ptr->xsave_hdr.reserved[2], ptr->xsave_hdr.reserved[3]);
gprintk(XENLOG_WARNING, "r4=%016lx r5=%016lx\n",
ptr->xsave_hdr.reserved[4], ptr->xsave_hdr.reserved[5]);
#endif
switch ( faults )
{
case 1: /* Stage 1: Reset state to be loaded. */
ptr->xsave_hdr.xstate_bv &= ~mask;
/*
* Also try to eliminate fault reasons, even if this shouldn't be
* needed here (other code should ensure the sanity of the data).
*/
if ( ((mask & X86_XCR0_SSE) ||
((mask & X86_XCR0_YMM) &&
!(ptr->xsave_hdr.xcomp_bv & XSTATE_COMPACTION_ENABLED))) )
ptr->fpu_sse.mxcsr &= mxcsr_mask;
if ( v->arch.xcr0_accum & XSTATE_XSAVES_ONLY )
{
ptr->xsave_hdr.xcomp_bv &= this_cpu(xcr0) | this_cpu(xss);
ptr->xsave_hdr.xstate_bv &= ptr->xsave_hdr.xcomp_bv;
ptr->xsave_hdr.xcomp_bv |= XSTATE_COMPACTION_ENABLED;
}
else
{
ptr->xsave_hdr.xstate_bv &= this_cpu(xcr0);
ptr->xsave_hdr.xcomp_bv = 0;
}
memset(ptr->xsave_hdr.reserved, 0, sizeof(ptr->xsave_hdr.reserved));
continue;
case 2: /* Stage 2: Reset all state. */
ptr->fpu_sse.mxcsr = MXCSR_DEFAULT;
ptr->xsave_hdr.xstate_bv = 0;
ptr->xsave_hdr.xcomp_bv = v->arch.xcr0_accum & XSTATE_XSAVES_ONLY
? XSTATE_COMPACTION_ENABLED : 0;
continue;
}
domain_crash(current->domain);
return;
}
}
bool xsave_enabled(const struct vcpu *v)
{
if ( !cpu_has_xsave )
return false;
ASSERT(xsave_cntxt_size >= XSTATE_AREA_MIN_SIZE);
ASSERT(v->arch.xsave_area);
return !!v->arch.xcr0_accum;
}
int xstate_alloc_save_area(struct vcpu *v)
{
struct xsave_struct *save_area;
unsigned int size;
if ( !cpu_has_xsave )
return 0;
if ( !is_idle_vcpu(v) || !cpu_has_xsavec )
{
size = xsave_cntxt_size;
BUG_ON(size < XSTATE_AREA_MIN_SIZE);
}
else
{
/*
* For idle vcpus on XSAVEC-capable CPUs allocate an area large
* enough to save any individual extended state.
*/
unsigned int i;
for ( size = 0, i = 2; i < xstate_features; ++i )
if ( size < xstate_sizes[i] )
size = xstate_sizes[i];
size += XSTATE_AREA_MIN_SIZE;
}
/* XSAVE/XRSTOR requires the save area be 64-byte-boundary aligned. */
BUILD_BUG_ON(__alignof(*save_area) < 64);
save_area = _xzalloc(size, __alignof(*save_area));
if ( save_area == NULL )
return -ENOMEM;
/*
* Set the memory image to default values, but don't force the context
* to be loaded from memory (i.e. keep save_area->xsave_hdr.xstate_bv
* clear).
*/
save_area->fpu_sse.fcw = FCW_DEFAULT;
save_area->fpu_sse.mxcsr = MXCSR_DEFAULT;
v->arch.xsave_area = save_area;
v->arch.xcr0 = 0;
v->arch.xcr0_accum = 0;
return 0;
}
void xstate_free_save_area(struct vcpu *v)
{
xfree(v->arch.xsave_area);
v->arch.xsave_area = NULL;
}
static unsigned int hw_uncompressed_size(uint64_t xcr0)
{
u64 act_xcr0 = get_xcr0();
unsigned int size;
bool ok = set_xcr0(xcr0);
ASSERT(ok);
size = cpuid_count_ebx(XSTATE_CPUID, 0);
ok = set_xcr0(act_xcr0);
ASSERT(ok);
return size;
}
/* Fastpath for common xstate size requests, avoiding reloads of xcr0. */
unsigned int xstate_ctxt_size(u64 xcr0)
{
if ( xcr0 == xfeature_mask )
return xsave_cntxt_size;
if ( xcr0 == 0 )
return 0;
return hw_uncompressed_size(xcr0);
}
static bool valid_xcr0(uint64_t xcr0)
{
/* FP must be unconditionally set. */
if ( !(xcr0 & X86_XCR0_FP) )
return false;
/* YMM depends on SSE. */
if ( (xcr0 & X86_XCR0_YMM) && !(xcr0 & X86_XCR0_SSE) )
return false;
if ( xcr0 & (X86_XCR0_OPMASK | X86_XCR0_ZMM | X86_XCR0_HI_ZMM) )
{
/* OPMASK, ZMM, and HI_ZMM require YMM. */
if ( !(xcr0 & X86_XCR0_YMM) )
return false;
/* OPMASK, ZMM, and HI_ZMM must be the same. */
if ( ~xcr0 & (X86_XCR0_OPMASK | X86_XCR0_ZMM | X86_XCR0_HI_ZMM) )
return false;
}
/* BNDREGS and BNDCSR must be the same. */
if ( !(xcr0 & X86_XCR0_BNDREGS) != !(xcr0 & X86_XCR0_BNDCSR) )
return false;
return true;
}
/* Collect the information of processor's extended state */
void xstate_init(struct cpuinfo_x86 *c)
{
/*
* NB: use_xsave cannot live in initdata because llvm might optimize
* reading it, see: https://bugs.llvm.org/show_bug.cgi?id=39707
*/
static bool __read_mostly use_xsave = true;
boolean_param("xsave", use_xsave);
bool bsp = c == &boot_cpu_data;
u32 eax, ebx, ecx, edx;
u64 feature_mask;
if ( bsp )
{
static typeof(current->arch.xsave_area->fpu_sse) __initdata ctxt;
asm ( "fxsave %0" : "=m" (ctxt) );
if ( ctxt.mxcsr_mask )
mxcsr_mask = ctxt.mxcsr_mask;
}
if ( !cpu_has_xsave )
return;
if ( (bsp && !use_xsave) ||
boot_cpu_data.cpuid_level < XSTATE_CPUID )
{
BUG_ON(!bsp);
setup_clear_cpu_cap(X86_FEATURE_XSAVE);
return;
}
/*
* Zap the cached values to make set_xcr0() and set_msr_xss() really
* write it.
*/
this_cpu(xcr0) = 0;
this_cpu(xss) = ~0;
cpuid_count(XSTATE_CPUID, 0, &eax, &ebx, &ecx, &edx);
feature_mask = (((u64)edx << 32) | eax) & XCNTXT_MASK;
BUG_ON(!valid_xcr0(feature_mask));
BUG_ON(!(feature_mask & X86_XCR0_SSE));
/*
* Set CR4_OSXSAVE and run "cpuid" to get xsave_cntxt_size.
*/
set_in_cr4(X86_CR4_OSXSAVE);
if ( !set_xcr0(feature_mask) )
BUG();
if ( bsp )
{
xfeature_mask = feature_mask;
/*
* xsave_cntxt_size is the max size required by enabled features.
* We know FP/SSE and YMM about eax, and nothing about edx at present.
*/
xsave_cntxt_size = hw_uncompressed_size(feature_mask);
printk("xstate: size: %#x and states: %#"PRIx64"\n",
xsave_cntxt_size, xfeature_mask);
}
else
{
BUG_ON(xfeature_mask != feature_mask);
BUG_ON(xsave_cntxt_size != hw_uncompressed_size(feature_mask));
}
if ( setup_xstate_features(bsp) && bsp )
BUG();
}
int validate_xstate(const struct domain *d, uint64_t xcr0, uint64_t xcr0_accum,
const struct xsave_hdr *hdr)
{
uint64_t xcr0_max = cpu_policy_xcr0_max(d->arch.cpuid);
unsigned int i;
if ( (hdr->xstate_bv & ~xcr0_accum) ||
(xcr0 & ~xcr0_accum) ||
(xcr0_accum & ~xcr0_max) ||
!valid_xcr0(xcr0) ||
!valid_xcr0(xcr0_accum) )
return -EINVAL;
if ( (xcr0_accum & ~xfeature_mask) ||
hdr->xcomp_bv )
return -EOPNOTSUPP;
for ( i = 0; i < ARRAY_SIZE(hdr->reserved); ++i )
if ( hdr->reserved[i] )
return -EIO;
return 0;
}
int handle_xsetbv(u32 index, u64 new_bv)
{
struct vcpu *curr = current;
uint64_t xcr0_max = cpu_policy_xcr0_max(curr->domain->arch.cpuid);
u64 mask;
if ( index != XCR_XFEATURE_ENABLED_MASK )
return -EOPNOTSUPP;
/*
* The CPUID logic shouldn't be able to hand out an XCR0 exceeding Xen's
* maximum features, but keep the check for robustness.
*/
if ( unlikely(xcr0_max & ~xfeature_mask) )
{
gprintk(XENLOG_ERR,
"xcr0_max %016" PRIx64 " exceeds hardware max %016" PRIx64 "\n",
xcr0_max, xfeature_mask);
domain_crash(curr->domain);
return -EINVAL;
}
if ( (new_bv & ~xcr0_max) || !valid_xcr0(new_bv) )
return -EINVAL;
/* By this point, new_bv really should be accepted by hardware. */
if ( unlikely(!set_xcr0(new_bv)) )
{
gprintk(XENLOG_ERR, "new_bv %016" PRIx64 " rejected by hardware\n",
new_bv);
domain_crash(curr->domain);
return -EFAULT;
}
mask = new_bv & ~curr->arch.xcr0_accum;
curr->arch.xcr0 = new_bv;
curr->arch.xcr0_accum |= new_bv;
if ( new_bv & XSTATE_NONLAZY )
curr->arch.nonlazy_xstate_used = 1;
mask &= curr->fpu_dirtied ? ~XSTATE_FP_SSE : XSTATE_NONLAZY;
if ( mask )
{
unsigned long cr0 = read_cr0();
clts();
if ( curr->fpu_dirtied )
asm ( "stmxcsr %0" : "=m" (curr->arch.xsave_area->fpu_sse.mxcsr) );
else if ( xstate_all(curr) )
{
/* See the comment in i387.c:vcpu_restore_fpu_eager(). */
mask |= XSTATE_LAZY;
curr->fpu_initialised = 1;
curr->fpu_dirtied = 1;
cr0 &= ~X86_CR0_TS;
}
xrstor(curr, mask);
if ( cr0 & X86_CR0_TS )
write_cr0(cr0);
}
return 0;
}
uint64_t read_bndcfgu(void)
{
unsigned long cr0 = read_cr0();
struct xsave_struct *xstate
= idle_vcpu[smp_processor_id()]->arch.xsave_area;
const struct xstate_bndcsr *bndcsr;
ASSERT(cpu_has_mpx);
clts();
if ( cpu_has_xsavec )
{
asm ( ".byte 0x0f,0xc7,0x27\n" /* xsavec */
: "=m" (*xstate)
: "a" (X86_XCR0_BNDCSR), "d" (0), "D" (xstate) );
bndcsr = (void *)(xstate + 1);
}
else
{
asm ( ".byte 0x0f,0xae,0x27\n" /* xsave */
: "=m" (*xstate)
: "a" (X86_XCR0_BNDCSR), "d" (0), "D" (xstate) );
bndcsr = (void *)xstate + xstate_offsets[X86_XCR0_BNDCSR_POS];
}
if ( cr0 & X86_CR0_TS )
write_cr0(cr0);
return xstate->xsave_hdr.xstate_bv & X86_XCR0_BNDCSR ? bndcsr->bndcfgu : 0;
}
void xstate_set_init(uint64_t mask)
{
unsigned long cr0 = read_cr0();
unsigned long xcr0 = this_cpu(xcr0);
struct vcpu *v = idle_vcpu[smp_processor_id()];
struct xsave_struct *xstate = v->arch.xsave_area;
if ( ~xfeature_mask & mask )
{
ASSERT_UNREACHABLE();
return;
}
if ( (~xcr0 & mask) && !set_xcr0(xcr0 | mask) )
return;
clts();
memset(&xstate->xsave_hdr, 0, sizeof(xstate->xsave_hdr));
xrstor(v, mask);
if ( cr0 & X86_CR0_TS )
write_cr0(cr0);
if ( (~xcr0 & mask) && !set_xcr0(xcr0) )
BUG();
}
/*
* Local variables:
* mode: C
* c-file-style: "BSD"
* c-basic-offset: 4
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|