xstate.c 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082
  1. /*
  2. * xsave/xrstor support.
  3. *
  4. * Author: Suresh Siddha <suresh.b.siddha@intel.com>
  5. */
  6. #include <linux/compat.h>
  7. #include <linux/cpu.h>
  8. #include <linux/mman.h>
  9. #include <linux/pkeys.h>
  10. #include <asm/fpu/api.h>
  11. #include <asm/fpu/internal.h>
  12. #include <asm/fpu/signal.h>
  13. #include <asm/fpu/regset.h>
  14. #include <asm/fpu/xstate.h>
  15. #include <asm/tlbflush.h>
  16. /*
  17. * Although we spell it out in here, the Processor Trace
  18. * xfeature is completely unused. We use other mechanisms
  19. * to save/restore PT state in Linux.
  20. */
  21. static const char *xfeature_names[] =
  22. {
  23. "x87 floating point registers" ,
  24. "SSE registers" ,
  25. "AVX registers" ,
  26. "MPX bounds registers" ,
  27. "MPX CSR" ,
  28. "AVX-512 opmask" ,
  29. "AVX-512 Hi256" ,
  30. "AVX-512 ZMM_Hi256" ,
  31. "Processor Trace (unused)" ,
  32. "Protection Keys User registers",
  33. "unknown xstate feature" ,
  34. };
  35. /*
  36. * Mask of xstate features supported by the CPU and the kernel:
  37. */
  38. u64 xfeatures_mask __read_mostly;
  39. static unsigned int xstate_offsets[XFEATURE_MAX] = { [ 0 ... XFEATURE_MAX - 1] = -1};
  40. static unsigned int xstate_sizes[XFEATURE_MAX] = { [ 0 ... XFEATURE_MAX - 1] = -1};
  41. static unsigned int xstate_comp_offsets[sizeof(xfeatures_mask)*8];
  42. /*
  43. * The XSAVE area of kernel can be in standard or compacted format;
  44. * it is always in standard format for user mode. This is the user
  45. * mode standard format size used for signal and ptrace frames.
  46. */
  47. unsigned int fpu_user_xstate_size;
  48. /*
  49. * Clear all of the X86_FEATURE_* bits that are unavailable
  50. * when the CPU has no XSAVE support.
  51. */
  52. void fpu__xstate_clear_all_cpu_caps(void)
  53. {
  54. setup_clear_cpu_cap(X86_FEATURE_XSAVE);
  55. setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT);
  56. setup_clear_cpu_cap(X86_FEATURE_XSAVEC);
  57. setup_clear_cpu_cap(X86_FEATURE_XSAVES);
  58. setup_clear_cpu_cap(X86_FEATURE_AVX);
  59. setup_clear_cpu_cap(X86_FEATURE_AVX2);
  60. setup_clear_cpu_cap(X86_FEATURE_AVX512F);
  61. setup_clear_cpu_cap(X86_FEATURE_AVX512PF);
  62. setup_clear_cpu_cap(X86_FEATURE_AVX512ER);
  63. setup_clear_cpu_cap(X86_FEATURE_AVX512CD);
  64. setup_clear_cpu_cap(X86_FEATURE_AVX512DQ);
  65. setup_clear_cpu_cap(X86_FEATURE_AVX512BW);
  66. setup_clear_cpu_cap(X86_FEATURE_AVX512VL);
  67. setup_clear_cpu_cap(X86_FEATURE_MPX);
  68. setup_clear_cpu_cap(X86_FEATURE_XGETBV1);
  69. setup_clear_cpu_cap(X86_FEATURE_PKU);
  70. setup_clear_cpu_cap(X86_FEATURE_AVX512_4VNNIW);
  71. setup_clear_cpu_cap(X86_FEATURE_AVX512_4FMAPS);
  72. }
  73. /*
  74. * Return whether the system supports a given xfeature.
  75. *
  76. * Also return the name of the (most advanced) feature that the caller requested:
  77. */
  78. int cpu_has_xfeatures(u64 xfeatures_needed, const char **feature_name)
  79. {
  80. u64 xfeatures_missing = xfeatures_needed & ~xfeatures_mask;
  81. if (unlikely(feature_name)) {
  82. long xfeature_idx, max_idx;
  83. u64 xfeatures_print;
  84. /*
  85. * So we use FLS here to be able to print the most advanced
  86. * feature that was requested but is missing. So if a driver
  87. * asks about "XFEATURE_MASK_SSE | XFEATURE_MASK_YMM" we'll print the
  88. * missing AVX feature - this is the most informative message
  89. * to users:
  90. */
  91. if (xfeatures_missing)
  92. xfeatures_print = xfeatures_missing;
  93. else
  94. xfeatures_print = xfeatures_needed;
  95. xfeature_idx = fls64(xfeatures_print)-1;
  96. max_idx = ARRAY_SIZE(xfeature_names)-1;
  97. xfeature_idx = min(xfeature_idx, max_idx);
  98. *feature_name = xfeature_names[xfeature_idx];
  99. }
  100. if (xfeatures_missing)
  101. return 0;
  102. return 1;
  103. }
  104. EXPORT_SYMBOL_GPL(cpu_has_xfeatures);
  105. static int xfeature_is_supervisor(int xfeature_nr)
  106. {
  107. /*
  108. * We currently do not support supervisor states, but if
  109. * we did, we could find out like this.
  110. *
  111. * SDM says: If state component 'i' is a user state component,
  112. * ECX[0] return 0; if state component i is a supervisor
  113. * state component, ECX[0] returns 1.
  114. */
  115. u32 eax, ebx, ecx, edx;
  116. cpuid_count(XSTATE_CPUID, xfeature_nr, &eax, &ebx, &ecx, &edx);
  117. return !!(ecx & 1);
  118. }
  119. static int xfeature_is_user(int xfeature_nr)
  120. {
  121. return !xfeature_is_supervisor(xfeature_nr);
  122. }
  123. /*
  124. * When executing XSAVEOPT (or other optimized XSAVE instructions), if
  125. * a processor implementation detects that an FPU state component is still
  126. * (or is again) in its initialized state, it may clear the corresponding
  127. * bit in the header.xfeatures field, and can skip the writeout of registers
  128. * to the corresponding memory layout.
  129. *
  130. * This means that when the bit is zero, the state component might still contain
  131. * some previous - non-initialized register state.
  132. *
  133. * Before writing xstate information to user-space we sanitize those components,
  134. * to always ensure that the memory layout of a feature will be in the init state
  135. * if the corresponding header bit is zero. This is to ensure that user-space doesn't
  136. * see some stale state in the memory layout during signal handling, debugging etc.
  137. */
  138. void fpstate_sanitize_xstate(struct fpu *fpu)
  139. {
  140. struct fxregs_state *fx = &fpu->state.fxsave;
  141. int feature_bit;
  142. u64 xfeatures;
  143. if (!use_xsaveopt())
  144. return;
  145. xfeatures = fpu->state.xsave.header.xfeatures;
  146. /*
  147. * None of the feature bits are in init state. So nothing else
  148. * to do for us, as the memory layout is up to date.
  149. */
  150. if ((xfeatures & xfeatures_mask) == xfeatures_mask)
  151. return;
  152. /*
  153. * FP is in init state
  154. */
  155. if (!(xfeatures & XFEATURE_MASK_FP)) {
  156. fx->cwd = 0x37f;
  157. fx->swd = 0;
  158. fx->twd = 0;
  159. fx->fop = 0;
  160. fx->rip = 0;
  161. fx->rdp = 0;
  162. memset(&fx->st_space[0], 0, 128);
  163. }
  164. /*
  165. * SSE is in init state
  166. */
  167. if (!(xfeatures & XFEATURE_MASK_SSE))
  168. memset(&fx->xmm_space[0], 0, 256);
  169. /*
  170. * First two features are FPU and SSE, which above we handled
  171. * in a special way already:
  172. */
  173. feature_bit = 0x2;
  174. xfeatures = (xfeatures_mask & ~xfeatures) >> 2;
  175. /*
  176. * Update all the remaining memory layouts according to their
  177. * standard xstate layout, if their header bit is in the init
  178. * state:
  179. */
  180. while (xfeatures) {
  181. if (xfeatures & 0x1) {
  182. int offset = xstate_comp_offsets[feature_bit];
  183. int size = xstate_sizes[feature_bit];
  184. memcpy((void *)fx + offset,
  185. (void *)&init_fpstate.xsave + offset,
  186. size);
  187. }
  188. xfeatures >>= 1;
  189. feature_bit++;
  190. }
  191. }
  192. /*
  193. * Enable the extended processor state save/restore feature.
  194. * Called once per CPU onlining.
  195. */
  196. void fpu__init_cpu_xstate(void)
  197. {
  198. if (!boot_cpu_has(X86_FEATURE_XSAVE) || !xfeatures_mask)
  199. return;
  200. /*
  201. * Make it clear that XSAVES supervisor states are not yet
  202. * implemented should anyone expect it to work by changing
  203. * bits in XFEATURE_MASK_* macros and XCR0.
  204. */
  205. WARN_ONCE((xfeatures_mask & XFEATURE_MASK_SUPERVISOR),
  206. "x86/fpu: XSAVES supervisor states are not yet implemented.\n");
  207. xfeatures_mask &= ~XFEATURE_MASK_SUPERVISOR;
  208. cr4_set_bits(X86_CR4_OSXSAVE);
  209. xsetbv(XCR_XFEATURE_ENABLED_MASK, xfeatures_mask);
  210. }
  211. /*
  212. * Note that in the future we will likely need a pair of
  213. * functions here: one for user xstates and the other for
  214. * system xstates. For now, they are the same.
  215. */
  216. static int xfeature_enabled(enum xfeature xfeature)
  217. {
  218. return !!(xfeatures_mask & (1UL << xfeature));
  219. }
  220. /*
  221. * Record the offsets and sizes of various xstates contained
  222. * in the XSAVE state memory layout.
  223. */
  224. static void __init setup_xstate_features(void)
  225. {
  226. u32 eax, ebx, ecx, edx, i;
  227. /* start at the beginnning of the "extended state" */
  228. unsigned int last_good_offset = offsetof(struct xregs_state,
  229. extended_state_area);
  230. /*
  231. * The FP xstates and SSE xstates are legacy states. They are always
  232. * in the fixed offsets in the xsave area in either compacted form
  233. * or standard form.
  234. */
  235. xstate_offsets[0] = 0;
  236. xstate_sizes[0] = offsetof(struct fxregs_state, xmm_space);
  237. xstate_offsets[1] = xstate_sizes[0];
  238. xstate_sizes[1] = FIELD_SIZEOF(struct fxregs_state, xmm_space);
  239. for (i = FIRST_EXTENDED_XFEATURE; i < XFEATURE_MAX; i++) {
  240. if (!xfeature_enabled(i))
  241. continue;
  242. cpuid_count(XSTATE_CPUID, i, &eax, &ebx, &ecx, &edx);
  243. /*
  244. * If an xfeature is supervisor state, the offset
  245. * in EBX is invalid. We leave it to -1.
  246. */
  247. if (xfeature_is_user(i))
  248. xstate_offsets[i] = ebx;
  249. xstate_sizes[i] = eax;
  250. /*
  251. * In our xstate size checks, we assume that the
  252. * highest-numbered xstate feature has the
  253. * highest offset in the buffer. Ensure it does.
  254. */
  255. WARN_ONCE(last_good_offset > xstate_offsets[i],
  256. "x86/fpu: misordered xstate at %d\n", last_good_offset);
  257. last_good_offset = xstate_offsets[i];
  258. }
  259. }
  260. static void __init print_xstate_feature(u64 xstate_mask)
  261. {
  262. const char *feature_name;
  263. if (cpu_has_xfeatures(xstate_mask, &feature_name))
  264. pr_info("x86/fpu: Supporting XSAVE feature 0x%03Lx: '%s'\n", xstate_mask, feature_name);
  265. }
  266. /*
  267. * Print out all the supported xstate features:
  268. */
  269. static void __init print_xstate_features(void)
  270. {
  271. print_xstate_feature(XFEATURE_MASK_FP);
  272. print_xstate_feature(XFEATURE_MASK_SSE);
  273. print_xstate_feature(XFEATURE_MASK_YMM);
  274. print_xstate_feature(XFEATURE_MASK_BNDREGS);
  275. print_xstate_feature(XFEATURE_MASK_BNDCSR);
  276. print_xstate_feature(XFEATURE_MASK_OPMASK);
  277. print_xstate_feature(XFEATURE_MASK_ZMM_Hi256);
  278. print_xstate_feature(XFEATURE_MASK_Hi16_ZMM);
  279. print_xstate_feature(XFEATURE_MASK_PKRU);
  280. }
  281. /*
  282. * This check is important because it is easy to get XSTATE_*
  283. * confused with XSTATE_BIT_*.
  284. */
  285. #define CHECK_XFEATURE(nr) do { \
  286. WARN_ON(nr < FIRST_EXTENDED_XFEATURE); \
  287. WARN_ON(nr >= XFEATURE_MAX); \
  288. } while (0)
  289. /*
  290. * We could cache this like xstate_size[], but we only use
  291. * it here, so it would be a waste of space.
  292. */
  293. static int xfeature_is_aligned(int xfeature_nr)
  294. {
  295. u32 eax, ebx, ecx, edx;
  296. CHECK_XFEATURE(xfeature_nr);
  297. cpuid_count(XSTATE_CPUID, xfeature_nr, &eax, &ebx, &ecx, &edx);
  298. /*
  299. * The value returned by ECX[1] indicates the alignment
  300. * of state component 'i' when the compacted format
  301. * of the extended region of an XSAVE area is used:
  302. */
  303. return !!(ecx & 2);
  304. }
  305. /*
  306. * This function sets up offsets and sizes of all extended states in
  307. * xsave area. This supports both standard format and compacted format
  308. * of the xsave aread.
  309. */
  310. static void __init setup_xstate_comp(void)
  311. {
  312. unsigned int xstate_comp_sizes[sizeof(xfeatures_mask)*8];
  313. int i;
  314. /*
  315. * The FP xstates and SSE xstates are legacy states. They are always
  316. * in the fixed offsets in the xsave area in either compacted form
  317. * or standard form.
  318. */
  319. xstate_comp_offsets[0] = 0;
  320. xstate_comp_offsets[1] = offsetof(struct fxregs_state, xmm_space);
  321. if (!boot_cpu_has(X86_FEATURE_XSAVES)) {
  322. for (i = FIRST_EXTENDED_XFEATURE; i < XFEATURE_MAX; i++) {
  323. if (xfeature_enabled(i)) {
  324. xstate_comp_offsets[i] = xstate_offsets[i];
  325. xstate_comp_sizes[i] = xstate_sizes[i];
  326. }
  327. }
  328. return;
  329. }
  330. xstate_comp_offsets[FIRST_EXTENDED_XFEATURE] =
  331. FXSAVE_SIZE + XSAVE_HDR_SIZE;
  332. for (i = FIRST_EXTENDED_XFEATURE; i < XFEATURE_MAX; i++) {
  333. if (xfeature_enabled(i))
  334. xstate_comp_sizes[i] = xstate_sizes[i];
  335. else
  336. xstate_comp_sizes[i] = 0;
  337. if (i > FIRST_EXTENDED_XFEATURE) {
  338. xstate_comp_offsets[i] = xstate_comp_offsets[i-1]
  339. + xstate_comp_sizes[i-1];
  340. if (xfeature_is_aligned(i))
  341. xstate_comp_offsets[i] =
  342. ALIGN(xstate_comp_offsets[i], 64);
  343. }
  344. }
  345. }
  346. /*
  347. * Print out xstate component offsets and sizes
  348. */
  349. static void __init print_xstate_offset_size(void)
  350. {
  351. int i;
  352. for (i = FIRST_EXTENDED_XFEATURE; i < XFEATURE_MAX; i++) {
  353. if (!xfeature_enabled(i))
  354. continue;
  355. pr_info("x86/fpu: xstate_offset[%d]: %4d, xstate_sizes[%d]: %4d\n",
  356. i, xstate_comp_offsets[i], i, xstate_sizes[i]);
  357. }
  358. }
  359. /*
  360. * setup the xstate image representing the init state
  361. */
  362. static void __init setup_init_fpu_buf(void)
  363. {
  364. static int on_boot_cpu __initdata = 1;
  365. WARN_ON_FPU(!on_boot_cpu);
  366. on_boot_cpu = 0;
  367. if (!boot_cpu_has(X86_FEATURE_XSAVE))
  368. return;
  369. setup_xstate_features();
  370. print_xstate_features();
  371. if (boot_cpu_has(X86_FEATURE_XSAVES))
  372. init_fpstate.xsave.header.xcomp_bv = (u64)1 << 63 | xfeatures_mask;
  373. /*
  374. * Init all the features state with header.xfeatures being 0x0
  375. */
  376. copy_kernel_to_xregs_booting(&init_fpstate.xsave);
  377. /*
  378. * Dump the init state again. This is to identify the init state
  379. * of any feature which is not represented by all zero's.
  380. */
  381. copy_xregs_to_kernel_booting(&init_fpstate.xsave);
  382. }
  383. static int xfeature_uncompacted_offset(int xfeature_nr)
  384. {
  385. u32 eax, ebx, ecx, edx;
  386. /*
  387. * Only XSAVES supports supervisor states and it uses compacted
  388. * format. Checking a supervisor state's uncompacted offset is
  389. * an error.
  390. */
  391. if (XFEATURE_MASK_SUPERVISOR & (1 << xfeature_nr)) {
  392. WARN_ONCE(1, "No fixed offset for xstate %d\n", xfeature_nr);
  393. return -1;
  394. }
  395. CHECK_XFEATURE(xfeature_nr);
  396. cpuid_count(XSTATE_CPUID, xfeature_nr, &eax, &ebx, &ecx, &edx);
  397. return ebx;
  398. }
  399. static int xfeature_size(int xfeature_nr)
  400. {
  401. u32 eax, ebx, ecx, edx;
  402. CHECK_XFEATURE(xfeature_nr);
  403. cpuid_count(XSTATE_CPUID, xfeature_nr, &eax, &ebx, &ecx, &edx);
  404. return eax;
  405. }
  406. /*
  407. * 'XSAVES' implies two different things:
  408. * 1. saving of supervisor/system state
  409. * 2. using the compacted format
  410. *
  411. * Use this function when dealing with the compacted format so
  412. * that it is obvious which aspect of 'XSAVES' is being handled
  413. * by the calling code.
  414. */
  415. int using_compacted_format(void)
  416. {
  417. return boot_cpu_has(X86_FEATURE_XSAVES);
  418. }
  419. static void __xstate_dump_leaves(void)
  420. {
  421. int i;
  422. u32 eax, ebx, ecx, edx;
  423. static int should_dump = 1;
  424. if (!should_dump)
  425. return;
  426. should_dump = 0;
  427. /*
  428. * Dump out a few leaves past the ones that we support
  429. * just in case there are some goodies up there
  430. */
  431. for (i = 0; i < XFEATURE_MAX + 10; i++) {
  432. cpuid_count(XSTATE_CPUID, i, &eax, &ebx, &ecx, &edx);
  433. pr_warn("CPUID[%02x, %02x]: eax=%08x ebx=%08x ecx=%08x edx=%08x\n",
  434. XSTATE_CPUID, i, eax, ebx, ecx, edx);
  435. }
  436. }
  437. #define XSTATE_WARN_ON(x) do { \
  438. if (WARN_ONCE(x, "XSAVE consistency problem, dumping leaves")) { \
  439. __xstate_dump_leaves(); \
  440. } \
  441. } while (0)
  442. #define XCHECK_SZ(sz, nr, nr_macro, __struct) do { \
  443. if ((nr == nr_macro) && \
  444. WARN_ONCE(sz != sizeof(__struct), \
  445. "%s: struct is %zu bytes, cpu state %d bytes\n", \
  446. __stringify(nr_macro), sizeof(__struct), sz)) { \
  447. __xstate_dump_leaves(); \
  448. } \
  449. } while (0)
  450. /*
  451. * We have a C struct for each 'xstate'. We need to ensure
  452. * that our software representation matches what the CPU
  453. * tells us about the state's size.
  454. */
  455. static void check_xstate_against_struct(int nr)
  456. {
  457. /*
  458. * Ask the CPU for the size of the state.
  459. */
  460. int sz = xfeature_size(nr);
  461. /*
  462. * Match each CPU state with the corresponding software
  463. * structure.
  464. */
  465. XCHECK_SZ(sz, nr, XFEATURE_YMM, struct ymmh_struct);
  466. XCHECK_SZ(sz, nr, XFEATURE_BNDREGS, struct mpx_bndreg_state);
  467. XCHECK_SZ(sz, nr, XFEATURE_BNDCSR, struct mpx_bndcsr_state);
  468. XCHECK_SZ(sz, nr, XFEATURE_OPMASK, struct avx_512_opmask_state);
  469. XCHECK_SZ(sz, nr, XFEATURE_ZMM_Hi256, struct avx_512_zmm_uppers_state);
  470. XCHECK_SZ(sz, nr, XFEATURE_Hi16_ZMM, struct avx_512_hi16_state);
  471. XCHECK_SZ(sz, nr, XFEATURE_PKRU, struct pkru_state);
  472. /*
  473. * Make *SURE* to add any feature numbers in below if
  474. * there are "holes" in the xsave state component
  475. * numbers.
  476. */
  477. if ((nr < XFEATURE_YMM) ||
  478. (nr >= XFEATURE_MAX) ||
  479. (nr == XFEATURE_PT_UNIMPLEMENTED_SO_FAR)) {
  480. WARN_ONCE(1, "no structure for xstate: %d\n", nr);
  481. XSTATE_WARN_ON(1);
  482. }
  483. }
  484. /*
  485. * This essentially double-checks what the cpu told us about
  486. * how large the XSAVE buffer needs to be. We are recalculating
  487. * it to be safe.
  488. */
  489. static void do_extra_xstate_size_checks(void)
  490. {
  491. int paranoid_xstate_size = FXSAVE_SIZE + XSAVE_HDR_SIZE;
  492. int i;
  493. for (i = FIRST_EXTENDED_XFEATURE; i < XFEATURE_MAX; i++) {
  494. if (!xfeature_enabled(i))
  495. continue;
  496. check_xstate_against_struct(i);
  497. /*
  498. * Supervisor state components can be managed only by
  499. * XSAVES, which is compacted-format only.
  500. */
  501. if (!using_compacted_format())
  502. XSTATE_WARN_ON(xfeature_is_supervisor(i));
  503. /* Align from the end of the previous feature */
  504. if (xfeature_is_aligned(i))
  505. paranoid_xstate_size = ALIGN(paranoid_xstate_size, 64);
  506. /*
  507. * The offset of a given state in the non-compacted
  508. * format is given to us in a CPUID leaf. We check
  509. * them for being ordered (increasing offsets) in
  510. * setup_xstate_features().
  511. */
  512. if (!using_compacted_format())
  513. paranoid_xstate_size = xfeature_uncompacted_offset(i);
  514. /*
  515. * The compacted-format offset always depends on where
  516. * the previous state ended.
  517. */
  518. paranoid_xstate_size += xfeature_size(i);
  519. }
  520. XSTATE_WARN_ON(paranoid_xstate_size != fpu_kernel_xstate_size);
  521. }
  522. /*
  523. * Get total size of enabled xstates in XCR0/xfeatures_mask.
  524. *
  525. * Note the SDM's wording here. "sub-function 0" only enumerates
  526. * the size of the *user* states. If we use it to size a buffer
  527. * that we use 'XSAVES' on, we could potentially overflow the
  528. * buffer because 'XSAVES' saves system states too.
  529. *
  530. * Note that we do not currently set any bits on IA32_XSS so
  531. * 'XCR0 | IA32_XSS == XCR0' for now.
  532. */
  533. static unsigned int __init get_xsaves_size(void)
  534. {
  535. unsigned int eax, ebx, ecx, edx;
  536. /*
  537. * - CPUID function 0DH, sub-function 1:
  538. * EBX enumerates the size (in bytes) required by
  539. * the XSAVES instruction for an XSAVE area
  540. * containing all the state components
  541. * corresponding to bits currently set in
  542. * XCR0 | IA32_XSS.
  543. */
  544. cpuid_count(XSTATE_CPUID, 1, &eax, &ebx, &ecx, &edx);
  545. return ebx;
  546. }
  547. static unsigned int __init get_xsave_size(void)
  548. {
  549. unsigned int eax, ebx, ecx, edx;
  550. /*
  551. * - CPUID function 0DH, sub-function 0:
  552. * EBX enumerates the size (in bytes) required by
  553. * the XSAVE instruction for an XSAVE area
  554. * containing all the *user* state components
  555. * corresponding to bits currently set in XCR0.
  556. */
  557. cpuid_count(XSTATE_CPUID, 0, &eax, &ebx, &ecx, &edx);
  558. return ebx;
  559. }
  560. /*
  561. * Will the runtime-enumerated 'xstate_size' fit in the init
  562. * task's statically-allocated buffer?
  563. */
  564. static bool is_supported_xstate_size(unsigned int test_xstate_size)
  565. {
  566. if (test_xstate_size <= sizeof(union fpregs_state))
  567. return true;
  568. pr_warn("x86/fpu: xstate buffer too small (%zu < %d), disabling xsave\n",
  569. sizeof(union fpregs_state), test_xstate_size);
  570. return false;
  571. }
  572. static int init_xstate_size(void)
  573. {
  574. /* Recompute the context size for enabled features: */
  575. unsigned int possible_xstate_size;
  576. unsigned int xsave_size;
  577. xsave_size = get_xsave_size();
  578. if (boot_cpu_has(X86_FEATURE_XSAVES))
  579. possible_xstate_size = get_xsaves_size();
  580. else
  581. possible_xstate_size = xsave_size;
  582. /* Ensure we have the space to store all enabled: */
  583. if (!is_supported_xstate_size(possible_xstate_size))
  584. return -EINVAL;
  585. /*
  586. * The size is OK, we are definitely going to use xsave,
  587. * make it known to the world that we need more space.
  588. */
  589. fpu_kernel_xstate_size = possible_xstate_size;
  590. do_extra_xstate_size_checks();
  591. /*
  592. * User space is always in standard format.
  593. */
  594. fpu_user_xstate_size = xsave_size;
  595. return 0;
  596. }
  597. /*
  598. * We enabled the XSAVE hardware, but something went wrong and
  599. * we can not use it. Disable it.
  600. */
  601. static void fpu__init_disable_system_xstate(void)
  602. {
  603. xfeatures_mask = 0;
  604. cr4_clear_bits(X86_CR4_OSXSAVE);
  605. fpu__xstate_clear_all_cpu_caps();
  606. }
  607. /*
  608. * Enable and initialize the xsave feature.
  609. * Called once per system bootup.
  610. */
  611. void __init fpu__init_system_xstate(void)
  612. {
  613. unsigned int eax, ebx, ecx, edx;
  614. static int on_boot_cpu __initdata = 1;
  615. int err;
  616. WARN_ON_FPU(!on_boot_cpu);
  617. on_boot_cpu = 0;
  618. if (!boot_cpu_has(X86_FEATURE_XSAVE)) {
  619. pr_info("x86/fpu: Legacy x87 FPU detected.\n");
  620. return;
  621. }
  622. if (boot_cpu_data.cpuid_level < XSTATE_CPUID) {
  623. WARN_ON_FPU(1);
  624. return;
  625. }
  626. cpuid_count(XSTATE_CPUID, 0, &eax, &ebx, &ecx, &edx);
  627. xfeatures_mask = eax + ((u64)edx << 32);
  628. if ((xfeatures_mask & XFEATURE_MASK_FPSSE) != XFEATURE_MASK_FPSSE) {
  629. /*
  630. * This indicates that something really unexpected happened
  631. * with the enumeration. Disable XSAVE and try to continue
  632. * booting without it. This is too early to BUG().
  633. */
  634. pr_err("x86/fpu: FP/SSE not present amongst the CPU's xstate features: 0x%llx.\n", xfeatures_mask);
  635. goto out_disable;
  636. }
  637. xfeatures_mask &= fpu__get_supported_xfeatures_mask();
  638. /* Enable xstate instructions to be able to continue with initialization: */
  639. fpu__init_cpu_xstate();
  640. err = init_xstate_size();
  641. if (err)
  642. goto out_disable;
  643. /*
  644. * Update info used for ptrace frames; use standard-format size and no
  645. * supervisor xstates:
  646. */
  647. update_regset_xstate_info(fpu_user_xstate_size, xfeatures_mask & ~XFEATURE_MASK_SUPERVISOR);
  648. fpu__init_prepare_fx_sw_frame();
  649. setup_init_fpu_buf();
  650. setup_xstate_comp();
  651. print_xstate_offset_size();
  652. pr_info("x86/fpu: Enabled xstate features 0x%llx, context size is %d bytes, using '%s' format.\n",
  653. xfeatures_mask,
  654. fpu_kernel_xstate_size,
  655. boot_cpu_has(X86_FEATURE_XSAVES) ? "compacted" : "standard");
  656. return;
  657. out_disable:
  658. /* something went wrong, try to boot without any XSAVE support */
  659. fpu__init_disable_system_xstate();
  660. }
  661. /*
  662. * Restore minimal FPU state after suspend:
  663. */
  664. void fpu__resume_cpu(void)
  665. {
  666. /*
  667. * Restore XCR0 on xsave capable CPUs:
  668. */
  669. if (boot_cpu_has(X86_FEATURE_XSAVE))
  670. xsetbv(XCR_XFEATURE_ENABLED_MASK, xfeatures_mask);
  671. }
  672. /*
  673. * Given an xstate feature mask, calculate where in the xsave
  674. * buffer the state is. Callers should ensure that the buffer
  675. * is valid.
  676. *
  677. * Note: does not work for compacted buffers.
  678. */
  679. void *__raw_xsave_addr(struct xregs_state *xsave, int xstate_feature_mask)
  680. {
  681. int feature_nr = fls64(xstate_feature_mask) - 1;
  682. if (!xfeature_enabled(feature_nr)) {
  683. WARN_ON_FPU(1);
  684. return NULL;
  685. }
  686. return (void *)xsave + xstate_comp_offsets[feature_nr];
  687. }
  688. /*
  689. * Given the xsave area and a state inside, this function returns the
  690. * address of the state.
  691. *
  692. * This is the API that is called to get xstate address in either
  693. * standard format or compacted format of xsave area.
  694. *
  695. * Note that if there is no data for the field in the xsave buffer
  696. * this will return NULL.
  697. *
  698. * Inputs:
  699. * xstate: the thread's storage area for all FPU data
  700. * xstate_feature: state which is defined in xsave.h (e.g.
  701. * XFEATURE_MASK_FP, XFEATURE_MASK_SSE, etc...)
  702. * Output:
  703. * address of the state in the xsave area, or NULL if the
  704. * field is not present in the xsave buffer.
  705. */
  706. void *get_xsave_addr(struct xregs_state *xsave, int xstate_feature)
  707. {
  708. /*
  709. * Do we even *have* xsave state?
  710. */
  711. if (!boot_cpu_has(X86_FEATURE_XSAVE))
  712. return NULL;
  713. /*
  714. * We should not ever be requesting features that we
  715. * have not enabled. Remember that pcntxt_mask is
  716. * what we write to the XCR0 register.
  717. */
  718. WARN_ONCE(!(xfeatures_mask & xstate_feature),
  719. "get of unsupported state");
  720. /*
  721. * This assumes the last 'xsave*' instruction to
  722. * have requested that 'xstate_feature' be saved.
  723. * If it did not, we might be seeing and old value
  724. * of the field in the buffer.
  725. *
  726. * This can happen because the last 'xsave' did not
  727. * request that this feature be saved (unlikely)
  728. * or because the "init optimization" caused it
  729. * to not be saved.
  730. */
  731. if (!(xsave->header.xfeatures & xstate_feature))
  732. return NULL;
  733. return __raw_xsave_addr(xsave, xstate_feature);
  734. }
  735. EXPORT_SYMBOL_GPL(get_xsave_addr);
  736. /*
  737. * This wraps up the common operations that need to occur when retrieving
  738. * data from xsave state. It first ensures that the current task was
  739. * using the FPU and retrieves the data in to a buffer. It then calculates
  740. * the offset of the requested field in the buffer.
  741. *
  742. * This function is safe to call whether the FPU is in use or not.
  743. *
  744. * Note that this only works on the current task.
  745. *
  746. * Inputs:
  747. * @xsave_state: state which is defined in xsave.h (e.g. XFEATURE_MASK_FP,
  748. * XFEATURE_MASK_SSE, etc...)
  749. * Output:
  750. * address of the state in the xsave area or NULL if the state
  751. * is not present or is in its 'init state'.
  752. */
  753. const void *get_xsave_field_ptr(int xsave_state)
  754. {
  755. struct fpu *fpu = &current->thread.fpu;
  756. if (!fpu->fpstate_active)
  757. return NULL;
  758. /*
  759. * fpu__save() takes the CPU's xstate registers
  760. * and saves them off to the 'fpu memory buffer.
  761. */
  762. fpu__save(fpu);
  763. return get_xsave_addr(&fpu->state.xsave, xsave_state);
  764. }
  765. #ifdef CONFIG_ARCH_HAS_PKEYS
  766. #define NR_VALID_PKRU_BITS (CONFIG_NR_PROTECTION_KEYS * 2)
  767. #define PKRU_VALID_MASK (NR_VALID_PKRU_BITS - 1)
  768. /*
  769. * This will go out and modify PKRU register to set the access
  770. * rights for @pkey to @init_val.
  771. */
  772. int arch_set_user_pkey_access(struct task_struct *tsk, int pkey,
  773. unsigned long init_val)
  774. {
  775. u32 old_pkru;
  776. int pkey_shift = (pkey * PKRU_BITS_PER_PKEY);
  777. u32 new_pkru_bits = 0;
  778. /*
  779. * This check implies XSAVE support. OSPKE only gets
  780. * set if we enable XSAVE and we enable PKU in XCR0.
  781. */
  782. if (!boot_cpu_has(X86_FEATURE_OSPKE))
  783. return -EINVAL;
  784. /*
  785. * For most XSAVE components, this would be an arduous task:
  786. * brining fpstate up to date with fpregs, updating fpstate,
  787. * then re-populating fpregs. But, for components that are
  788. * never lazily managed, we can just access the fpregs
  789. * directly. PKRU is never managed lazily, so we can just
  790. * manipulate it directly. Make sure it stays that way.
  791. */
  792. WARN_ON_ONCE(!use_eager_fpu());
  793. /* Set the bits we need in PKRU: */
  794. if (init_val & PKEY_DISABLE_ACCESS)
  795. new_pkru_bits |= PKRU_AD_BIT;
  796. if (init_val & PKEY_DISABLE_WRITE)
  797. new_pkru_bits |= PKRU_WD_BIT;
  798. /* Shift the bits in to the correct place in PKRU for pkey: */
  799. new_pkru_bits <<= pkey_shift;
  800. /* Get old PKRU and mask off any old bits in place: */
  801. old_pkru = read_pkru();
  802. old_pkru &= ~((PKRU_AD_BIT|PKRU_WD_BIT) << pkey_shift);
  803. /* Write old part along with new part: */
  804. write_pkru(old_pkru | new_pkru_bits);
  805. return 0;
  806. }
  807. #endif /* ! CONFIG_ARCH_HAS_PKEYS */
  808. /*
  809. * This is similar to user_regset_copyout(), but will not add offset to
  810. * the source data pointer or increment pos, count, kbuf, and ubuf.
  811. */
  812. static inline int xstate_copyout(unsigned int pos, unsigned int count,
  813. void *kbuf, void __user *ubuf,
  814. const void *data, const int start_pos,
  815. const int end_pos)
  816. {
  817. if ((count == 0) || (pos < start_pos))
  818. return 0;
  819. if (end_pos < 0 || pos < end_pos) {
  820. unsigned int copy = (end_pos < 0 ? count : min(count, end_pos - pos));
  821. if (kbuf) {
  822. memcpy(kbuf + pos, data, copy);
  823. } else {
  824. if (__copy_to_user(ubuf + pos, data, copy))
  825. return -EFAULT;
  826. }
  827. }
  828. return 0;
  829. }
  830. /*
  831. * Convert from kernel XSAVES compacted format to standard format and copy
  832. * to a ptrace buffer. It supports partial copy but pos always starts from
  833. * zero. This is called from xstateregs_get() and there we check the CPU
  834. * has XSAVES.
  835. */
  836. int copyout_from_xsaves(unsigned int pos, unsigned int count, void *kbuf,
  837. void __user *ubuf, struct xregs_state *xsave)
  838. {
  839. unsigned int offset, size;
  840. int ret, i;
  841. struct xstate_header header;
  842. /*
  843. * Currently copy_regset_to_user() starts from pos 0:
  844. */
  845. if (unlikely(pos != 0))
  846. return -EFAULT;
  847. /*
  848. * The destination is a ptrace buffer; we put in only user xstates:
  849. */
  850. memset(&header, 0, sizeof(header));
  851. header.xfeatures = xsave->header.xfeatures;
  852. header.xfeatures &= ~XFEATURE_MASK_SUPERVISOR;
  853. /*
  854. * Copy xregs_state->header:
  855. */
  856. offset = offsetof(struct xregs_state, header);
  857. size = sizeof(header);
  858. ret = xstate_copyout(offset, size, kbuf, ubuf, &header, 0, count);
  859. if (ret)
  860. return ret;
  861. for (i = 0; i < XFEATURE_MAX; i++) {
  862. /*
  863. * Copy only in-use xstates:
  864. */
  865. if ((header.xfeatures >> i) & 1) {
  866. void *src = __raw_xsave_addr(xsave, 1 << i);
  867. offset = xstate_offsets[i];
  868. size = xstate_sizes[i];
  869. ret = xstate_copyout(offset, size, kbuf, ubuf, src, 0, count);
  870. if (ret)
  871. return ret;
  872. if (offset + size >= count)
  873. break;
  874. }
  875. }
  876. /*
  877. * Fill xsave->i387.sw_reserved value for ptrace frame:
  878. */
  879. offset = offsetof(struct fxregs_state, sw_reserved);
  880. size = sizeof(xstate_fx_sw_bytes);
  881. ret = xstate_copyout(offset, size, kbuf, ubuf, xstate_fx_sw_bytes, 0, count);
  882. if (ret)
  883. return ret;
  884. return 0;
  885. }
  886. /*
  887. * Convert from a ptrace standard-format buffer to kernel XSAVES format
  888. * and copy to the target thread. This is called from xstateregs_set() and
  889. * there we check the CPU has XSAVES and a whole standard-sized buffer
  890. * exists.
  891. */
  892. int copyin_to_xsaves(const void *kbuf, const void __user *ubuf,
  893. struct xregs_state *xsave)
  894. {
  895. unsigned int offset, size;
  896. int i;
  897. u64 xfeatures;
  898. u64 allowed_features;
  899. offset = offsetof(struct xregs_state, header);
  900. size = sizeof(xfeatures);
  901. if (kbuf) {
  902. memcpy(&xfeatures, kbuf + offset, size);
  903. } else {
  904. if (__copy_from_user(&xfeatures, ubuf + offset, size))
  905. return -EFAULT;
  906. }
  907. /*
  908. * Reject if the user sets any disabled or supervisor features:
  909. */
  910. allowed_features = xfeatures_mask & ~XFEATURE_MASK_SUPERVISOR;
  911. if (xfeatures & ~allowed_features)
  912. return -EINVAL;
  913. for (i = 0; i < XFEATURE_MAX; i++) {
  914. u64 mask = ((u64)1 << i);
  915. if (xfeatures & mask) {
  916. void *dst = __raw_xsave_addr(xsave, 1 << i);
  917. offset = xstate_offsets[i];
  918. size = xstate_sizes[i];
  919. if (kbuf) {
  920. memcpy(dst, kbuf + offset, size);
  921. } else {
  922. if (__copy_from_user(dst, ubuf + offset, size))
  923. return -EFAULT;
  924. }
  925. }
  926. }
  927. /*
  928. * The state that came in from userspace was user-state only.
  929. * Mask all the user states out of 'xfeatures':
  930. */
  931. xsave->header.xfeatures &= XFEATURE_MASK_SUPERVISOR;
  932. /*
  933. * Add back in the features that came in from userspace:
  934. */
  935. xsave->header.xfeatures |= xfeatures;
  936. return 0;
  937. }