]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kernel/fpu/regset.c
x86/fpu: Remove 'kbuf' parameter from the copy_user_to_xstate() API
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kernel / fpu / regset.c
CommitLineData
0c306bcf
IM
1/*
2 * FPU register's regset abstraction, for ptrace, core dumps, etc.
3 */
4#include <asm/fpu/internal.h>
5#include <asm/fpu/signal.h>
6#include <asm/fpu/regset.h>
91c3dba7 7#include <asm/fpu/xstate.h>
68db0cf1 8#include <linux/sched/task_stack.h>
0c306bcf
IM
9
10/*
11 * The xstateregs_active() routine is the same as the regset_fpregs_active() routine,
12 * as the "regset->n" for the xstate regset will be updated based on the feature
6a6256f9 13 * capabilities supported by the xsave.
0c306bcf
IM
14 */
15int regset_fpregs_active(struct task_struct *target, const struct user_regset *regset)
16{
17 struct fpu *target_fpu = &target->thread.fpu;
18
19 return target_fpu->fpstate_active ? regset->n : 0;
20}
21
22int regset_xregset_fpregs_active(struct task_struct *target, const struct user_regset *regset)
23{
24 struct fpu *target_fpu = &target->thread.fpu;
25
01f8fd73
BP
26 if (boot_cpu_has(X86_FEATURE_FXSR) && target_fpu->fpstate_active)
27 return regset->n;
28 else
29 return 0;
0c306bcf
IM
30}
31
32int xfpregs_get(struct task_struct *target, const struct user_regset *regset,
33 unsigned int pos, unsigned int count,
34 void *kbuf, void __user *ubuf)
35{
36 struct fpu *fpu = &target->thread.fpu;
37
01f8fd73 38 if (!boot_cpu_has(X86_FEATURE_FXSR))
0c306bcf
IM
39 return -ENODEV;
40
05602812 41 fpu__activate_fpstate_read(fpu);
0c306bcf
IM
42 fpstate_sanitize_xstate(fpu);
43
44 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
45 &fpu->state.fxsave, 0, -1);
46}
47
48int xfpregs_set(struct task_struct *target, const struct user_regset *regset,
49 unsigned int pos, unsigned int count,
50 const void *kbuf, const void __user *ubuf)
51{
52 struct fpu *fpu = &target->thread.fpu;
53 int ret;
54
01f8fd73 55 if (!boot_cpu_has(X86_FEATURE_FXSR))
0c306bcf
IM
56 return -ENODEV;
57
6a81d7eb 58 fpu__activate_fpstate_write(fpu);
0c306bcf
IM
59 fpstate_sanitize_xstate(fpu);
60
61 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
62 &fpu->state.fxsave, 0, -1);
63
64 /*
65 * mxcsr reserved bits must be masked to zero for security reasons.
66 */
67 fpu->state.fxsave.mxcsr &= mxcsr_feature_mask;
68
69 /*
70 * update the header bits in the xsave header, indicating the
71 * presence of FP and SSE state.
72 */
d366bf7e 73 if (boot_cpu_has(X86_FEATURE_XSAVE))
d91cab78 74 fpu->state.xsave.header.xfeatures |= XFEATURE_MASK_FPSSE;
0c306bcf
IM
75
76 return ret;
77}
78
79int xstateregs_get(struct task_struct *target, const struct user_regset *regset,
80 unsigned int pos, unsigned int count,
81 void *kbuf, void __user *ubuf)
82{
83 struct fpu *fpu = &target->thread.fpu;
c47ada30 84 struct xregs_state *xsave;
0c306bcf
IM
85 int ret;
86
d366bf7e 87 if (!boot_cpu_has(X86_FEATURE_XSAVE))
0c306bcf
IM
88 return -ENODEV;
89
0c306bcf
IM
90 xsave = &fpu->state.xsave;
91
91c3dba7
YY
92 fpu__activate_fpstate_read(fpu);
93
94 if (using_compacted_format()) {
f0d4f30a 95 if (kbuf)
d7eda6c9 96 ret = copy_xstate_to_kernel(kbuf, xsave, pos, count);
f0d4f30a 97 else
d7eda6c9 98 ret = copy_xstate_to_user(ubuf, xsave, pos, count);
91c3dba7
YY
99 } else {
100 fpstate_sanitize_xstate(fpu);
101 /*
102 * Copy the 48 bytes defined by the software into the xsave
103 * area in the thread struct, so that we can copy the whole
104 * area to user using one user_regset_copyout().
105 */
106 memcpy(&xsave->i387.sw_reserved, xstate_fx_sw_bytes, sizeof(xstate_fx_sw_bytes));
107
108 /*
109 * Copy the xstate memory layout.
110 */
111 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, xsave, 0, -1);
112 }
0c306bcf
IM
113 return ret;
114}
115
116int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
117 unsigned int pos, unsigned int count,
118 const void *kbuf, const void __user *ubuf)
119{
120 struct fpu *fpu = &target->thread.fpu;
c47ada30 121 struct xregs_state *xsave;
0c306bcf
IM
122 int ret;
123
d366bf7e 124 if (!boot_cpu_has(X86_FEATURE_XSAVE))
0c306bcf
IM
125 return -ENODEV;
126
91c3dba7
YY
127 /*
128 * A whole standard-format XSAVE buffer is needed:
129 */
130 if ((pos != 0) || (count < fpu_user_xstate_size))
131 return -EFAULT;
0c306bcf
IM
132
133 xsave = &fpu->state.xsave;
134
91c3dba7
YY
135 fpu__activate_fpstate_write(fpu);
136
79fecc2b
IM
137 if (boot_cpu_has(X86_FEATURE_XSAVES)) {
138 if (kbuf)
59dffa4e 139 ret = copy_kernel_to_xstate(kbuf, xsave);
79fecc2b 140 else
7b9094c6 141 ret = copy_user_to_xstate(ubuf, xsave);
79fecc2b 142 } else {
91c3dba7 143 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, xsave, 0, -1);
79fecc2b 144 }
91c3dba7
YY
145
146 /*
147 * In case of failure, mark all states as init:
148 */
149 if (ret)
150 fpstate_init(&fpu->state);
151
0c306bcf
IM
152 /*
153 * mxcsr reserved bits must be masked to zero for security reasons.
154 */
155 xsave->i387.mxcsr &= mxcsr_feature_mask;
156 xsave->header.xfeatures &= xfeatures_mask;
157 /*
158 * These bits must be zero.
159 */
160 memset(&xsave->header.reserved, 0, 48);
161
162 return ret;
163}
164
165#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
166
167/*
168 * FPU tag word conversions.
169 */
170
171static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
172{
173 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
174
175 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
176 tmp = ~twd;
177 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
178 /* and move the valid bits to the lower byte. */
179 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
180 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
181 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
182
183 return tmp;
184}
185
186#define FPREG_ADDR(f, n) ((void *)&(f)->st_space + (n) * 16)
187#define FP_EXP_TAG_VALID 0
188#define FP_EXP_TAG_ZERO 1
189#define FP_EXP_TAG_SPECIAL 2
190#define FP_EXP_TAG_EMPTY 3
191
c47ada30 192static inline u32 twd_fxsr_to_i387(struct fxregs_state *fxsave)
0c306bcf
IM
193{
194 struct _fpxreg *st;
195 u32 tos = (fxsave->swd >> 11) & 7;
196 u32 twd = (unsigned long) fxsave->twd;
197 u32 tag;
198 u32 ret = 0xffff0000u;
199 int i;
200
201 for (i = 0; i < 8; i++, twd >>= 1) {
202 if (twd & 0x1) {
203 st = FPREG_ADDR(fxsave, (i - tos) & 7);
204
205 switch (st->exponent & 0x7fff) {
206 case 0x7fff:
207 tag = FP_EXP_TAG_SPECIAL;
208 break;
209 case 0x0000:
210 if (!st->significand[0] &&
211 !st->significand[1] &&
212 !st->significand[2] &&
213 !st->significand[3])
214 tag = FP_EXP_TAG_ZERO;
215 else
216 tag = FP_EXP_TAG_SPECIAL;
217 break;
218 default:
219 if (st->significand[3] & 0x8000)
220 tag = FP_EXP_TAG_VALID;
221 else
222 tag = FP_EXP_TAG_SPECIAL;
223 break;
224 }
225 } else {
226 tag = FP_EXP_TAG_EMPTY;
227 }
228 ret |= tag << (2 * i);
229 }
230 return ret;
231}
232
233/*
234 * FXSR floating point environment conversions.
235 */
236
237void
238convert_from_fxsr(struct user_i387_ia32_struct *env, struct task_struct *tsk)
239{
c47ada30 240 struct fxregs_state *fxsave = &tsk->thread.fpu.state.fxsave;
0c306bcf
IM
241 struct _fpreg *to = (struct _fpreg *) &env->st_space[0];
242 struct _fpxreg *from = (struct _fpxreg *) &fxsave->st_space[0];
243 int i;
244
245 env->cwd = fxsave->cwd | 0xffff0000u;
246 env->swd = fxsave->swd | 0xffff0000u;
247 env->twd = twd_fxsr_to_i387(fxsave);
248
249#ifdef CONFIG_X86_64
250 env->fip = fxsave->rip;
251 env->foo = fxsave->rdp;
252 /*
253 * should be actually ds/cs at fpu exception time, but
254 * that information is not available in 64bit mode.
255 */
256 env->fcs = task_pt_regs(tsk)->cs;
257 if (tsk == current) {
258 savesegment(ds, env->fos);
259 } else {
260 env->fos = tsk->thread.ds;
261 }
262 env->fos |= 0xffff0000;
263#else
264 env->fip = fxsave->fip;
265 env->fcs = (u16) fxsave->fcs | ((u32) fxsave->fop << 16);
266 env->foo = fxsave->foo;
267 env->fos = fxsave->fos;
268#endif
269
270 for (i = 0; i < 8; ++i)
271 memcpy(&to[i], &from[i], sizeof(to[0]));
272}
273
274void convert_to_fxsr(struct task_struct *tsk,
275 const struct user_i387_ia32_struct *env)
276
277{
c47ada30 278 struct fxregs_state *fxsave = &tsk->thread.fpu.state.fxsave;
0c306bcf
IM
279 struct _fpreg *from = (struct _fpreg *) &env->st_space[0];
280 struct _fpxreg *to = (struct _fpxreg *) &fxsave->st_space[0];
281 int i;
282
283 fxsave->cwd = env->cwd;
284 fxsave->swd = env->swd;
285 fxsave->twd = twd_i387_to_fxsr(env->twd);
286 fxsave->fop = (u16) ((u32) env->fcs >> 16);
287#ifdef CONFIG_X86_64
288 fxsave->rip = env->fip;
289 fxsave->rdp = env->foo;
290 /* cs and ds ignored */
291#else
292 fxsave->fip = env->fip;
293 fxsave->fcs = (env->fcs & 0xffff);
294 fxsave->foo = env->foo;
295 fxsave->fos = env->fos;
296#endif
297
298 for (i = 0; i < 8; ++i)
299 memcpy(&to[i], &from[i], sizeof(from[0]));
300}
301
302int fpregs_get(struct task_struct *target, const struct user_regset *regset,
303 unsigned int pos, unsigned int count,
304 void *kbuf, void __user *ubuf)
305{
306 struct fpu *fpu = &target->thread.fpu;
307 struct user_i387_ia32_struct env;
308
05602812 309 fpu__activate_fpstate_read(fpu);
0c306bcf 310
78df526c 311 if (!boot_cpu_has(X86_FEATURE_FPU))
0c306bcf
IM
312 return fpregs_soft_get(target, regset, pos, count, kbuf, ubuf);
313
01f8fd73 314 if (!boot_cpu_has(X86_FEATURE_FXSR))
0c306bcf
IM
315 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
316 &fpu->state.fsave, 0,
317 -1);
318
319 fpstate_sanitize_xstate(fpu);
320
321 if (kbuf && pos == 0 && count == sizeof(env)) {
322 convert_from_fxsr(kbuf, target);
323 return 0;
324 }
325
326 convert_from_fxsr(&env, target);
327
328 return user_regset_copyout(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
329}
330
331int fpregs_set(struct task_struct *target, const struct user_regset *regset,
332 unsigned int pos, unsigned int count,
333 const void *kbuf, const void __user *ubuf)
334{
335 struct fpu *fpu = &target->thread.fpu;
336 struct user_i387_ia32_struct env;
337 int ret;
338
6a81d7eb 339 fpu__activate_fpstate_write(fpu);
0c306bcf
IM
340 fpstate_sanitize_xstate(fpu);
341
78df526c 342 if (!boot_cpu_has(X86_FEATURE_FPU))
0c306bcf
IM
343 return fpregs_soft_set(target, regset, pos, count, kbuf, ubuf);
344
01f8fd73 345 if (!boot_cpu_has(X86_FEATURE_FXSR))
0c306bcf
IM
346 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
347 &fpu->state.fsave, 0,
348 -1);
349
350 if (pos > 0 || count < sizeof(env))
351 convert_from_fxsr(&env, target);
352
353 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &env, 0, -1);
354 if (!ret)
355 convert_to_fxsr(target, &env);
356
357 /*
358 * update the header bit in the xsave header, indicating the
359 * presence of FP.
360 */
d366bf7e 361 if (boot_cpu_has(X86_FEATURE_XSAVE))
d91cab78 362 fpu->state.xsave.header.xfeatures |= XFEATURE_MASK_FP;
0c306bcf
IM
363 return ret;
364}
365
366/*
367 * FPU state for core dumps.
368 * This is only used for a.out dumps now.
369 * It is declared generically using elf_fpregset_t (which is
370 * struct user_i387_struct) but is in fact only used for 32-bit
371 * dumps, so on 64-bit it is really struct user_i387_ia32_struct.
372 */
373int dump_fpu(struct pt_regs *regs, struct user_i387_struct *ufpu)
374{
375 struct task_struct *tsk = current;
376 struct fpu *fpu = &tsk->thread.fpu;
377 int fpvalid;
378
379 fpvalid = fpu->fpstate_active;
380 if (fpvalid)
381 fpvalid = !fpregs_get(tsk, NULL,
382 0, sizeof(struct user_i387_ia32_struct),
383 ufpu, NULL);
384
385 return fpvalid;
386}
387EXPORT_SYMBOL(dump_fpu);
388
389#endif /* CONFIG_X86_32 || CONFIG_IA32_EMULATION */