* [Patch V3] x86/ldt: correct fpu emulation access to ldt
@ 2015-08-06 9:21 Juergen Gross
2015-08-06 15:15 ` Andy Lutomirski
0 siblings, 1 reply; 3+ messages in thread
From: Juergen Gross @ 2015-08-06 9:21 UTC (permalink / raw)
To: billm, tglx, mingo, hpa, x86, linux-kernel, luto; +Cc: Juergen Gross, stable
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 | 21 ++++++++++++++++++---
arch/x86/math-emu/get_address.c | 3 +--
3 files changed, 20 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..d4a49d7 100644
--- a/arch/x86/math-emu/fpu_system.h
+++ b/arch/x86/math-emu/fpu_system.h
@@ -16,9 +16,24 @@
#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;
+ struct desc_struct *ret = &zero_desc;
+
+#ifdef CONFIG_MODIFY_LDT_SYSCALL
+ seg >>= 3;
+ mutex_lock(¤t->mm->context.lock);
+ if (current->mm->context.ldt && seg < current->mm->context.ldt->size)
+ ret = current->mm->context.ldt->entries + seg;
+ mutex_unlock(¤t->mm->context.lock);
+#endif
+ return ret;
+}
+
#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
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Patch V3] x86/ldt: correct fpu emulation access to ldt
2015-08-06 9:21 [Patch V3] x86/ldt: correct fpu emulation access to ldt Juergen Gross
@ 2015-08-06 15:15 ` Andy Lutomirski
2015-08-06 16:00 ` Juergen Gross
0 siblings, 1 reply; 3+ messages in thread
From: Andy Lutomirski @ 2015-08-06 15:15 UTC (permalink / raw)
To: Juergen Gross
Cc: billm, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, X86 ML,
linux-kernel@vger.kernel.org, Andrew Lutomirski, stable
On Thu, Aug 6, 2015 at 2:21 AM, Juergen Gross <jgross@suse.com> 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 | 21 ++++++++++++++++++---
> arch/x86/math-emu/get_address.c | 3 +--
> 3 files changed, 20 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..d4a49d7 100644
> --- a/arch/x86/math-emu/fpu_system.h
> +++ b/arch/x86/math-emu/fpu_system.h
> @@ -16,9 +16,24 @@
> #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;
> + struct desc_struct *ret = &zero_desc;
> +
> +#ifdef CONFIG_MODIFY_LDT_SYSCALL
> + seg >>= 3;
> + mutex_lock(¤t->mm->context.lock);
> + if (current->mm->context.ldt && seg < current->mm->context.ldt->size)
> + ret = current->mm->context.ldt->entries + seg;
> + mutex_unlock(¤t->mm->context.lock);
> +#endif
Is there a good reason to return a pointer instead of returning struct
desc_struct directly? I think that, if you return a pointer, the
locking is still wrong. context.ldt can change at any point during
which IRQs are enabled (unless you hold the mutex), so I don't think
the mutex is sufficient -- the pointer can become invalid even after
this function returns.
--Andy
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Patch V3] x86/ldt: correct fpu emulation access to ldt
2015-08-06 15:15 ` Andy Lutomirski
@ 2015-08-06 16:00 ` Juergen Gross
0 siblings, 0 replies; 3+ messages in thread
From: Juergen Gross @ 2015-08-06 16:00 UTC (permalink / raw)
To: Andy Lutomirski
Cc: billm, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, X86 ML,
linux-kernel@vger.kernel.org, Andrew Lutomirski, stable
On 08/06/2015 05:15 PM, Andy Lutomirski wrote:
> On Thu, Aug 6, 2015 at 2:21 AM, Juergen Gross <jgross@suse.com> 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 | 21 ++++++++++++++++++---
>> arch/x86/math-emu/get_address.c | 3 +--
>> 3 files changed, 20 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..d4a49d7 100644
>> --- a/arch/x86/math-emu/fpu_system.h
>> +++ b/arch/x86/math-emu/fpu_system.h
>> @@ -16,9 +16,24 @@
>> #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;
>> + struct desc_struct *ret = &zero_desc;
>> +
>> +#ifdef CONFIG_MODIFY_LDT_SYSCALL
>> + seg >>= 3;
>> + mutex_lock(¤t->mm->context.lock);
>> + if (current->mm->context.ldt && seg < current->mm->context.ldt->size)
>> + ret = current->mm->context.ldt->entries + seg;
>> + mutex_unlock(¤t->mm->context.lock);
>> +#endif
>
> Is there a good reason to return a pointer instead of returning struct
> desc_struct directly? I think that, if you return a pointer, the
> locking is still wrong. context.ldt can change at any point during
> which IRQs are enabled (unless you hold the mutex), so I don't think
> the mutex is sufficient -- the pointer can become invalid even after
> this function returns.
Aah, of course. Sorry about that.
I just wanted to avoid returning a 8 byte structure on 32 bit. I'll send
V4...
Thanks,
Juergen
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-08-06 16:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-06 9:21 [Patch V3] x86/ldt: correct fpu emulation access to ldt Juergen Gross
2015-08-06 15:15 ` Andy Lutomirski
2015-08-06 16:00 ` Juergen Gross
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).