x86/fpu: Limit xstate copy size in xstateregs_set()
authorThomas Gleixner <tglx@linutronix.de>
Wed, 23 Jun 2021 12:01:35 +0000 (14:01 +0200)
committerBorislav Petkov <bp@suse.de>
Wed, 23 Jun 2021 15:49:46 +0000 (17:49 +0200)
If the count argument is larger than the xstate size, this will happily
copy beyond the end of xstate.

Fixes: 91c3dba7dbc1 ("x86/fpu/xstate: Fix PTRACE frames for XSAVES")
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Andy Lutomirski <luto@kernel.org>
Reviewed-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20210623121452.120741557@linutronix.de
arch/x86/kernel/fpu/regset.c

index c413756..6bb8744 100644 (file)
@@ -117,7 +117,7 @@ int xstateregs_set(struct task_struct *target, const struct user_regset *regset,
        /*
         * A whole standard-format XSAVE buffer is needed:
         */
-       if ((pos != 0) || (count < fpu_user_xstate_size))
+       if (pos != 0 || count != fpu_user_xstate_size)
                return -EFAULT;
 
        xsave = &fpu->state.xsave;