summaryrefslogtreecommitdiff
path: root/arch/sparc/include/asm/sigcontext.h
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-08-20 17:14:54 -0700
committerDavid S. Miller <davem@davemloft.net>2011-08-20 17:14:54 -0700
commit5598473a5b40c47a8c5349dd2c2630797169cf1a (patch)
tree514474c6359d158fe1adc7477dbcf64c326b1770 /arch/sparc/include/asm/sigcontext.h
parent4a0342ca8e8150bd47e7118a76e300692a1b6b7b (diff)
sparc: Allow handling signals when stack is corrupted.
If we can't push the pending register windows onto the user's stack, we disallow signal delivery even if the signal would be delivered on a valid seperate signal stack. Add a register window save area in the signal frame, and store any unsavable windows there. On sigreturn, if any windows are still queued up in the signal frame, try to push them back onto the stack and if that fails we kill the process immediately. This allows the debug/tst-longjmp_chk2 glibc test case to pass. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/include/asm/sigcontext.h')
-rw-r--r--arch/sparc/include/asm/sigcontext.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/sparc/include/asm/sigcontext.h b/arch/sparc/include/asm/sigcontext.h
index a1607d180354..69914d748130 100644
--- a/arch/sparc/include/asm/sigcontext.h
+++ b/arch/sparc/include/asm/sigcontext.h
@@ -45,6 +45,19 @@ typedef struct {
int si_mask;
} __siginfo32_t;
+#define __SIGC_MAXWIN 7
+
+typedef struct {
+ unsigned long locals[8];
+ unsigned long ins[8];
+} __siginfo_reg_window;
+
+typedef struct {
+ int wsaved;
+ __siginfo_reg_window reg_window[__SIGC_MAXWIN];
+ unsigned long rwbuf_stkptrs[__SIGC_MAXWIN];
+} __siginfo_rwin_t;
+
#ifdef CONFIG_SPARC64
typedef struct {
unsigned int si_float_regs [64];
@@ -73,6 +86,7 @@ struct sigcontext {
unsigned long ss_size;
} sigc_stack;
unsigned long sigc_mask;
+ __siginfo_rwin_t * sigc_rwin_save;
};
#else