stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Juergen Gross <jgross@suse.com>
To: billm@melbpc.org.au, tglx@linutronix.de, mingo@redhat.com,
	hpa@zytor.com, x86@kernel.org, linux-kernel@vger.kernel.org,
	luto@amacapital.net
Cc: stable@vger.kernel.org
Subject: Re: [Patch V2] x86/ldt: correct fpu emulation access to ldt
Date: Thu, 6 Aug 2015 11:13:16 +0200	[thread overview]
Message-ID: <55C3252C.2090606@suse.com> (raw)
In-Reply-To: <1438852060-22725-1-git-send-email-jgross@suse.com>

Please ignore, V3 coming soon.


Juergen

On 08/06/2015 11:07 AM, Juergen Gross wrote:
> Commit 37868fe113ff ("x86/ldt: Make modify_ldt synchronous") introduced
> a new struct ldt_struct anchored at mm->context.ldt.
>
> Adapt the x86 fpu emulation to use that new structure.
>
> Cc: <stable@vger.kernel.org> # 37868fe113ff: x86/ldt: Make modify_ldt synchronous
> Cc: <stable@vger.kernel.org> # a5b9e5a2f14f: x86/ldt: Make modify_ldt optional
> Signed-off-by: Juergen Gross <jgross@suse.com>
> ---
>   arch/x86/math-emu/fpu_entry.c   |  3 +--
>   arch/x86/math-emu/fpu_system.h  | 18 +++++++++++++++---
>   arch/x86/math-emu/get_address.c |  3 +--
>   3 files changed, 17 insertions(+), 7 deletions(-)
>
> diff --git a/arch/x86/math-emu/fpu_entry.c b/arch/x86/math-emu/fpu_entry.c
> index f37e84a..203318a 100644
> --- a/arch/x86/math-emu/fpu_entry.c
> +++ b/arch/x86/math-emu/fpu_entry.c
> @@ -29,7 +29,6 @@
>
>   #include <asm/uaccess.h>
>   #include <asm/traps.h>
> -#include <asm/desc.h>
>   #include <asm/user.h>
>   #include <asm/fpu/internal.h>
>
> @@ -181,7 +180,7 @@ void math_emulate(struct math_emu_info *info)
>   			math_abort(FPU_info, SIGILL);
>   		}
>
> -		code_descriptor = LDT_DESCRIPTOR(FPU_CS);
> +		code_descriptor = *FPU_get_ldt_descriptor(FPU_CS);
>   		if (SEG_D_SIZE(code_descriptor)) {
>   			/* The above test may be wrong, the book is not clear */
>   			/* Segmented 32 bit protected mode */
> diff --git a/arch/x86/math-emu/fpu_system.h b/arch/x86/math-emu/fpu_system.h
> index 9ccecb6..9330583 100644
> --- a/arch/x86/math-emu/fpu_system.h
> +++ b/arch/x86/math-emu/fpu_system.h
> @@ -16,9 +16,21 @@
>   #include <linux/kernel.h>
>   #include <linux/mm.h>
>
> -/* s is always from a cpu register, and the cpu does bounds checking
> - * during register load --> no further bounds checks needed */
> -#define LDT_DESCRIPTOR(s)	(((struct desc_struct *)current->mm->context.ldt)[(s) >> 3])
> +#include <asm/desc.h>
> +#include <asm/mmu_context.h>
> +
> +static inline struct desc_struct *FPU_get_ldt_descriptor(unsigned seg)
> +{
> +	static struct desc_struct zero_desc;
> +
> +#ifdef CONFIG_MODIFY_LDT_SYSCALL
> +	seg >>= 3;
> +	if (seg < current->mm->context.ldt->size)
> +		return current->mm->context.ldt->entries + seg;
> +#endif
> +	return &zero_desc;
> +}
> +
>   #define SEG_D_SIZE(x)		((x).b & (3 << 21))
>   #define SEG_G_BIT(x)		((x).b & (1 << 23))
>   #define SEG_GRANULARITY(x)	(((x).b & (1 << 23)) ? 4096 : 1)
> diff --git a/arch/x86/math-emu/get_address.c b/arch/x86/math-emu/get_address.c
> index 6ef5e99..f912edd 100644
> --- a/arch/x86/math-emu/get_address.c
> +++ b/arch/x86/math-emu/get_address.c
> @@ -20,7 +20,6 @@
>   #include <linux/stddef.h>
>
>   #include <asm/uaccess.h>
> -#include <asm/desc.h>
>
>   #include "fpu_system.h"
>   #include "exception.h"
> @@ -158,7 +157,7 @@ static long pm_address(u_char FPU_modrm, u_char segment,
>   		addr->selector = PM_REG_(segment);
>   	}
>
> -	descriptor = LDT_DESCRIPTOR(PM_REG_(segment));
> +	descriptor = *FPU_get_ldt_descriptor(segment);
>   	base_address = SEG_BASE_ADDR(descriptor);
>   	address = base_address + offset;
>   	limit = base_address
>


      reply	other threads:[~2015-08-06  9:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-06  9:07 [Patch V2] x86/ldt: correct fpu emulation access to ldt Juergen Gross
2015-08-06  9:13 ` Juergen Gross [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55C3252C.2090606@suse.com \
    --to=jgross@suse.com \
    --cc=billm@melbpc.org.au \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@amacapital.net \
    --cc=mingo@redhat.com \
    --cc=stable@vger.kernel.org \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).