Re: save_xstate_sig (Re: frequent lockups in 3.18rc4)

From: Linus Torvalds
Date: Thu Dec 18 2014 - 16:34:17 EST


On Thu, Dec 18, 2014 at 1:17 PM, Andy Lutomirski <luto@xxxxxxxxxxxxxx> wrote:
>
> I admit that my understanding of the disaster that is x86's FPU handling is
> limited, but I'm moderately confident that save_xstate_sig is broken.

Very possible. The FPU code *is* nasty.

> The code is:
>
> if (user_has_fpu()) {
> /* Save the live register state to the user directly. */
> if (save_user_xstate(buf_fx))
> return -1;
> /* Update the thread's fxstate to save the fsave header. */
> if (ia32_fxstate)
> fpu_fxsave(&tsk->thread.fpu);
> } else {
> sanitize_i387_state(tsk);
> if (__copy_to_user(buf_fx, xsave, xstate_size))
> return -1;
> }
>
> Suppose that user_has_fpu() returns true, we call save_user_xstate, and the
> xsave instruction (or anything else in there, for that matter) causes a page
> fault.
>
> The page fault handler is well within its rights to schedule.

You don't even have to page fault. Preemption..

But that shouldn't actually be the bug. This is just an optimization.
If we have the FPU, we save it from the FP state, rather than copying
it from our kernel copy. If we schedule (page fault, preemption,
whatever) and lose the FPU, the code still works - we'll just take a
TS fault, and have to reload the information.

So I'm with you in that there can certainly be bugs in the FPU
handling, but I don't think this is one.

Linus
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/