Commit edaad4aaa088d31a4a25ecc4a4df8b95579572b4

Authored by David S. Miller
Committed by Greg Kroah-Hartman
1 parent b22e085738

sparc64: Do not define thread fpregs save area as zero-length array.

[ Upstream commit e2653143d7d79a49f1a961aeae1d82612838b12c ]

This breaks the stack end corruption detection facility.

What that facility does it write a magic value to "end_of_stack()"
and checking to see if it gets overwritten.

"end_of_stack()" is "task_thread_info(p) + 1", which for sparc64 is
the beginning of the FPU register save area.

So once the user uses the FPU, the magic value is overwritten and the
debug checks trigger.

Fix this by making the size explicit.

Due to the size we use for the fpsaved[], gsr[], and xfsr[] arrays we
are limited to 7 levels of FPU state saves.  So each FPU register set
is 256 bytes, allocate 256 * 7 for the fpregs area.

Reported-by: Meelis Roos <mroos@linux.ee>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

arch/sparc/include/asm/thread_info_64.h
... ... @@ -63,7 +63,8 @@
63 63 struct pt_regs *kern_una_regs;
64 64 unsigned int kern_una_insn;
65 65  
66   - unsigned long fpregs[0] __attribute__ ((aligned(64)));
  66 + unsigned long fpregs[(7 * 256) / sizeof(unsigned long)]
  67 + __attribute__ ((aligned(64)));
67 68 };
68 69  
69 70 #endif /* !(__ASSEMBLY__) */