| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl> | 
|  | 3 | * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl> | 
|  | 4 | * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com> | 
| Wichert Akkerman | 4dc8a2a | 1999-12-23 14:20:14 +0000 | [diff] [blame] | 5 | * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl> | 
|  | 6 | * Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation | 
|  | 7 | *                     Linux for s390 port by D.J. Barrow | 
|  | 8 | *                    <barrow_dj@mail.yahoo.com,djbarrow@de.ibm.com> | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 9 | * All rights reserved. | 
|  | 10 | * | 
|  | 11 | * Redistribution and use in source and binary forms, with or without | 
|  | 12 | * modification, are permitted provided that the following conditions | 
|  | 13 | * are met: | 
|  | 14 | * 1. Redistributions of source code must retain the above copyright | 
|  | 15 | *    notice, this list of conditions and the following disclaimer. | 
|  | 16 | * 2. Redistributions in binary form must reproduce the above copyright | 
|  | 17 | *    notice, this list of conditions and the following disclaimer in the | 
|  | 18 | *    documentation and/or other materials provided with the distribution. | 
|  | 19 | * 3. The name of the author may not be used to endorse or promote products | 
|  | 20 | *    derived from this software without specific prior written permission. | 
|  | 21 | * | 
|  | 22 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | 
|  | 23 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | 
|  | 24 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|  | 25 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|  | 26 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | 
|  | 27 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|  | 28 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|  | 29 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|  | 30 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
|  | 31 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | 32 | * | 
|  | 33 | *	$Id$ | 
|  | 34 | */ | 
|  | 35 |  | 
|  | 36 | #include "defs.h" | 
|  | 37 |  | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 38 | #include <stdint.h> | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 39 | #include <signal.h> | 
|  | 40 | #include <sys/user.h> | 
|  | 41 | #include <fcntl.h> | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 42 |  | 
| Wichert Akkerman | 36915a1 | 1999-07-13 15:45:02 +0000 | [diff] [blame] | 43 | #ifdef HAVE_SYS_REG_H | 
|  | 44 | # include <sys/reg.h> | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 45 | # ifndef PTRACE_PEEKUSR | 
|  | 46 | #  define PTRACE_PEEKUSR PTRACE_PEEKUSER | 
|  | 47 | # endif | 
|  | 48 | # ifndef PTRACE_POKEUSR | 
|  | 49 | #  define PTRACE_POKEUSR PTRACE_POKEUSER | 
|  | 50 | # endif | 
| Wichert Akkerman | faf7222 | 2000-02-19 23:59:03 +0000 | [diff] [blame] | 51 | #elif defined(HAVE_LINUX_PTRACE_H) | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 52 | # undef PTRACE_SYSCALL | 
| Roland McGrath | b0acdfd | 2004-03-01 21:31:02 +0000 | [diff] [blame] | 53 | # ifdef HAVE_STRUCT_IA64_FPREG | 
|  | 54 | #  define ia64_fpreg XXX_ia64_fpreg | 
|  | 55 | # endif | 
|  | 56 | # ifdef HAVE_STRUCT_PT_ALL_USER_REGS | 
|  | 57 | #  define pt_all_user_regs XXX_pt_all_user_regs | 
|  | 58 | # endif | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 59 | # include <linux/ptrace.h> | 
| Roland McGrath | b0acdfd | 2004-03-01 21:31:02 +0000 | [diff] [blame] | 60 | # undef ia64_fpreg | 
|  | 61 | # undef pt_all_user_regs | 
| Wichert Akkerman | 15dea97 | 1999-10-06 13:06:34 +0000 | [diff] [blame] | 62 | #endif | 
| Wichert Akkerman | 36915a1 | 1999-07-13 15:45:02 +0000 | [diff] [blame] | 63 |  | 
| Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 64 | #ifdef IA64 | 
|  | 65 | # include <asm/ptrace_offsets.h> | 
| Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 66 | #endif | 
| Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 67 |  | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 68 | #if defined(SPARC64) | 
| Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 69 | # undef PTRACE_GETREGS | 
|  | 70 | # define PTRACE_GETREGS PTRACE_GETREGS64 | 
|  | 71 | # undef PTRACE_SETREGS | 
|  | 72 | # define PTRACE_SETREGS PTRACE_SETREGS64 | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 73 | #endif | 
| Roland McGrath | 30ff45e | 2003-01-30 20:15:23 +0000 | [diff] [blame] | 74 |  | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 75 | #if defined(SPARC) || defined(SPARC64) || defined(MIPS) | 
| Roland McGrath | 576b784 | 2007-11-04 00:00:00 +0000 | [diff] [blame] | 76 | typedef struct { | 
|  | 77 | struct pt_regs		si_regs; | 
|  | 78 | int			si_mask; | 
|  | 79 | } m_siginfo_t; | 
| Roland McGrath | 30ff45e | 2003-01-30 20:15:23 +0000 | [diff] [blame] | 80 | #elif defined HAVE_ASM_SIGCONTEXT_H | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 81 | # if !defined(IA64) && !defined(X86_64) | 
|  | 82 | #  include <asm/sigcontext.h> | 
|  | 83 | # endif /* !IA64 && !X86_64 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 84 | #else /* !HAVE_ASM_SIGCONTEXT_H */ | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 85 | # if defined I386 && !defined HAVE_STRUCT_SIGCONTEXT_STRUCT | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 86 | struct sigcontext_struct { | 
|  | 87 | unsigned short gs, __gsh; | 
|  | 88 | unsigned short fs, __fsh; | 
|  | 89 | unsigned short es, __esh; | 
|  | 90 | unsigned short ds, __dsh; | 
|  | 91 | unsigned long edi; | 
|  | 92 | unsigned long esi; | 
|  | 93 | unsigned long ebp; | 
|  | 94 | unsigned long esp; | 
|  | 95 | unsigned long ebx; | 
|  | 96 | unsigned long edx; | 
|  | 97 | unsigned long ecx; | 
|  | 98 | unsigned long eax; | 
|  | 99 | unsigned long trapno; | 
|  | 100 | unsigned long err; | 
|  | 101 | unsigned long eip; | 
|  | 102 | unsigned short cs, __csh; | 
|  | 103 | unsigned long eflags; | 
|  | 104 | unsigned long esp_at_signal; | 
|  | 105 | unsigned short ss, __ssh; | 
|  | 106 | unsigned long i387; | 
|  | 107 | unsigned long oldmask; | 
|  | 108 | unsigned long cr2; | 
|  | 109 | }; | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 110 | # else /* !I386 */ | 
|  | 111 | #  if defined M68K && !defined HAVE_STRUCT_SIGCONTEXT | 
| Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 112 | struct sigcontext | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 113 | { | 
|  | 114 | unsigned long sc_mask; | 
|  | 115 | unsigned long sc_usp; | 
|  | 116 | unsigned long sc_d0; | 
|  | 117 | unsigned long sc_d1; | 
|  | 118 | unsigned long sc_a0; | 
|  | 119 | unsigned long sc_a1; | 
|  | 120 | unsigned short sc_sr; | 
|  | 121 | unsigned long sc_pc; | 
|  | 122 | unsigned short sc_formatvec; | 
|  | 123 | }; | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 124 | #  endif /* M68K */ | 
|  | 125 | # endif /* !I386 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 126 | #endif /* !HAVE_ASM_SIGCONTEXT_H */ | 
| Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 127 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 128 | #ifndef NSIG | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 129 | # warning: NSIG is not defined, using 32 | 
|  | 130 | # define NSIG 32 | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 131 | #endif | 
|  | 132 | #ifdef ARM | 
| Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 133 | /* Ugh. Is this really correct? ARM has no RT signals?! */ | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 134 | # undef NSIG | 
|  | 135 | # define NSIG 32 | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 136 | #endif | 
| Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 137 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 138 | #ifdef HAVE_SIGACTION | 
|  | 139 |  | 
| Denys Vlasenko | aa925db | 2012-02-25 15:19:02 +0100 | [diff] [blame] | 140 | #if defined(I386) || defined(X86_64) | 
| Roland McGrath | 2638cb4 | 2002-12-15 23:58:41 +0000 | [diff] [blame] | 141 | /* The libc headers do not define this constant since it should only be | 
| Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 142 | used by the implementation.  So we define it here.  */ | 
| Roland McGrath | 2638cb4 | 2002-12-15 23:58:41 +0000 | [diff] [blame] | 143 | # ifndef SA_RESTORER | 
|  | 144 | #  define SA_RESTORER 0x04000000 | 
|  | 145 | # endif | 
|  | 146 | #endif | 
|  | 147 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 148 | static const struct xlat sigact_flags[] = { | 
| Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 149 | #ifdef SA_RESTORER | 
|  | 150 | { SA_RESTORER,	"SA_RESTORER"	}, | 
|  | 151 | #endif | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 152 | #ifdef SA_STACK | 
|  | 153 | { SA_STACK,	"SA_STACK"	}, | 
|  | 154 | #endif | 
|  | 155 | #ifdef SA_RESTART | 
|  | 156 | { SA_RESTART,	"SA_RESTART"	}, | 
|  | 157 | #endif | 
|  | 158 | #ifdef SA_INTERRUPT | 
|  | 159 | { SA_INTERRUPT,	"SA_INTERRUPT"	}, | 
|  | 160 | #endif | 
| Roland McGrath | 4fef51d | 2008-07-18 01:02:41 +0000 | [diff] [blame] | 161 | #ifdef SA_NODEFER | 
|  | 162 | { SA_NODEFER,	"SA_NODEFER"	}, | 
|  | 163 | #endif | 
|  | 164 | #if defined SA_NOMASK && SA_NODEFER != SA_NOMASK | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 165 | { SA_NOMASK,	"SA_NOMASK"	}, | 
|  | 166 | #endif | 
| Roland McGrath | 4fef51d | 2008-07-18 01:02:41 +0000 | [diff] [blame] | 167 | #ifdef SA_RESETHAND | 
|  | 168 | { SA_RESETHAND,	"SA_RESETHAND"	}, | 
|  | 169 | #endif | 
|  | 170 | #if defined SA_ONESHOT && SA_ONESHOT != SA_RESETHAND | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 171 | { SA_ONESHOT,	"SA_ONESHOT"	}, | 
|  | 172 | #endif | 
|  | 173 | #ifdef SA_SIGINFO | 
|  | 174 | { SA_SIGINFO,	"SA_SIGINFO"	}, | 
|  | 175 | #endif | 
|  | 176 | #ifdef SA_RESETHAND | 
|  | 177 | { SA_RESETHAND,	"SA_RESETHAND"	}, | 
|  | 178 | #endif | 
|  | 179 | #ifdef SA_ONSTACK | 
|  | 180 | { SA_ONSTACK,	"SA_ONSTACK"	}, | 
|  | 181 | #endif | 
|  | 182 | #ifdef SA_NODEFER | 
|  | 183 | { SA_NODEFER,	"SA_NODEFER"	}, | 
|  | 184 | #endif | 
|  | 185 | #ifdef SA_NOCLDSTOP | 
|  | 186 | { SA_NOCLDSTOP,	"SA_NOCLDSTOP"	}, | 
|  | 187 | #endif | 
|  | 188 | #ifdef SA_NOCLDWAIT | 
|  | 189 | { SA_NOCLDWAIT,	"SA_NOCLDWAIT"	}, | 
|  | 190 | #endif | 
|  | 191 | #ifdef _SA_BSDCALL | 
|  | 192 | { _SA_BSDCALL,	"_SA_BSDCALL"	}, | 
|  | 193 | #endif | 
| Chris Metcalf | c8c6698 | 2009-12-28 10:00:15 -0500 | [diff] [blame] | 194 | #ifdef SA_NOPTRACE | 
|  | 195 | { SA_NOPTRACE,	"SA_NOPTRACE"	}, | 
|  | 196 | #endif | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 197 | { 0,		NULL		}, | 
|  | 198 | }; | 
|  | 199 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 200 | static const struct xlat sigprocmaskcmds[] = { | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 201 | { SIG_BLOCK,	"SIG_BLOCK"	}, | 
|  | 202 | { SIG_UNBLOCK,	"SIG_UNBLOCK"	}, | 
|  | 203 | { SIG_SETMASK,	"SIG_SETMASK"	}, | 
|  | 204 | #ifdef SIG_SETMASK32 | 
|  | 205 | { SIG_SETMASK32,"SIG_SETMASK32"	}, | 
|  | 206 | #endif | 
|  | 207 | { 0,		NULL		}, | 
|  | 208 | }; | 
|  | 209 |  | 
|  | 210 | #endif /* HAVE_SIGACTION */ | 
|  | 211 |  | 
| Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 212 | /* Anonymous realtime signals. */ | 
|  | 213 | /* Under glibc 2.1, SIGRTMIN et al are functions, but __SIGRTMIN is a | 
|  | 214 | constant.  This is what we want.  Otherwise, just use SIGRTMIN. */ | 
|  | 215 | #ifdef SIGRTMIN | 
|  | 216 | #ifndef __SIGRTMIN | 
|  | 217 | #define __SIGRTMIN SIGRTMIN | 
|  | 218 | #define __SIGRTMAX SIGRTMAX /* likewise */ | 
|  | 219 | #endif | 
|  | 220 | #endif | 
|  | 221 |  | 
| Denys Vlasenko | d9560c1 | 2011-08-19 17:41:28 +0200 | [diff] [blame] | 222 | /* Note on the size of sigset_t: | 
|  | 223 | * | 
|  | 224 | * In glibc, sigset_t is an array with space for 1024 bits (!), | 
|  | 225 | * even though all arches supported by Linux have only 64 signals | 
|  | 226 | * except MIPS, which has 128. IOW, it is 128 bytes long. | 
|  | 227 | * | 
|  | 228 | * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long). | 
|  | 229 | * However, some old syscall return only 32 lower bits (one word). | 
|  | 230 | * Example: sys_sigpending vs sys_rt_sigpending. | 
|  | 231 | * | 
|  | 232 | * Be aware of this fact when you try to | 
|  | 233 | *     memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t)) | 
|  | 234 | * - sizeof(sigset_t) is much bigger than you think, | 
|  | 235 | * it may overflow tcp->u_arg[] array, and it may try to copy more data | 
|  | 236 | * than is really available in <something>. | 
|  | 237 | * Similarly, | 
|  | 238 | *     umoven(tcp, addr, sizeof(sigset_t), &sigset) | 
|  | 239 | * may be a bad idea: it'll try to read much more data than needed | 
|  | 240 | * to fetch a sigset_t. | 
|  | 241 | * Use (NSIG / 8) as a size instead. | 
|  | 242 | */ | 
|  | 243 |  | 
| Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 244 | const char * | 
| Denys Vlasenko | eccc48c | 2011-06-09 01:28:11 +0200 | [diff] [blame] | 245 | signame(int sig) | 
| Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 246 | { | 
| Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 247 | static char buf[sizeof("SIGRT_%d") + sizeof(int)*3]; | 
|  | 248 |  | 
|  | 249 | if (sig >= 0 && sig < nsignals) | 
| Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 250 | return signalent[sig]; | 
|  | 251 | #ifdef SIGRTMIN | 
| Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 252 | if (sig >= __SIGRTMIN && sig <= __SIGRTMAX) { | 
|  | 253 | sprintf(buf, "SIGRT_%d", (int)(sig - __SIGRTMIN)); | 
| Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 254 | return buf; | 
|  | 255 | } | 
| Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 256 | #endif | 
|  | 257 | sprintf(buf, "%d", sig); | 
|  | 258 | return buf; | 
| Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 259 | } | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 260 |  | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 261 | static void | 
| Denys Vlasenko | eccc48c | 2011-06-09 01:28:11 +0200 | [diff] [blame] | 262 | long_to_sigset(long l, sigset_t *s) | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 263 | { | 
|  | 264 | sigemptyset(s); | 
|  | 265 | *(long *)s = l; | 
|  | 266 | } | 
|  | 267 |  | 
|  | 268 | static int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 269 | copy_sigset_len(struct tcb *tcp, long addr, sigset_t *s, int len) | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 270 | { | 
|  | 271 | if (len > sizeof(*s)) | 
|  | 272 | len = sizeof(*s); | 
|  | 273 | sigemptyset(s); | 
|  | 274 | if (umoven(tcp, addr, len, (char *)s) < 0) | 
|  | 275 | return -1; | 
|  | 276 | return 0; | 
|  | 277 | } | 
|  | 278 |  | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 279 | /* Original sigset is unsigned long */ | 
|  | 280 | #define copy_sigset(tcp, addr, s) copy_sigset_len(tcp, addr, s, sizeof(long)) | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 281 |  | 
| Dmitry V. Levin | ab9008b | 2007-01-11 22:05:04 +0000 | [diff] [blame] | 282 | static const char * | 
|  | 283 | sprintsigmask(const char *str, sigset_t *mask, int rt) | 
|  | 284 | /* set might include realtime sigs */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 285 | { | 
| Denys Vlasenko | d9560c1 | 2011-08-19 17:41:28 +0200 | [diff] [blame] | 286 | /* Was [8 * sizeof(sigset_t) * 8], but | 
|  | 287 | * glibc sigset_t is huge (1024 bits = 128 *bytes*), | 
|  | 288 | * and we were ending up with 8k (!) buffer here. | 
|  | 289 | * | 
|  | 290 | * No Unix system can have sig > 255 | 
|  | 291 | * (waitpid API won't be able to indicate death from one) | 
|  | 292 | * and sig 0 doesn't exist either. | 
|  | 293 | * Therefore max possible no of sigs is 255: 1..255 | 
|  | 294 | */ | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 295 | static char outstr[8 * (255 * 2 / 3)]; | 
| Denys Vlasenko | d9560c1 | 2011-08-19 17:41:28 +0200 | [diff] [blame] | 296 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 297 | int i, nsigs; | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 298 | int maxsigs; | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 299 | int show_members; | 
|  | 300 | char sep; | 
| Dmitry V. Levin | 30145dd | 2010-09-06 22:08:24 +0000 | [diff] [blame] | 301 | char *s; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 302 |  | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 303 | maxsigs = nsignals; | 
|  | 304 | #ifdef __SIGRTMAX | 
|  | 305 | if (rt) | 
|  | 306 | maxsigs = __SIGRTMAX; /* instead */ | 
|  | 307 | #endif | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 308 | s = stpcpy(outstr, str); | 
|  | 309 | nsigs = 0; | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 310 | for (i = 1; i < maxsigs; i++) { | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 311 | if (sigismember(mask, i) == 1) | 
|  | 312 | nsigs++; | 
|  | 313 | } | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 314 |  | 
|  | 315 | /* 1: show mask members, 0: show those which are NOT in mask */ | 
|  | 316 | show_members = (nsigs < nsignals * 2 / 3); | 
|  | 317 | if (!show_members) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 318 | *s++ = '~'; | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 319 |  | 
|  | 320 | sep = '['; | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 321 | for (i = 1; i < maxsigs; i++) { | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 322 | if (sigismember(mask, i) == show_members) { | 
| John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 323 | /* real-time signals on solaris don't have | 
|  | 324 | * signalent entries | 
|  | 325 | */ | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 326 | char tsig[40]; | 
|  | 327 | *s++ = sep; | 
| John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 328 | if (i < nsignals) { | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 329 | s = stpcpy(s, signalent[i] + 3); | 
| John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 330 | } | 
| Roland McGrath | 90b4cb5 | 2003-09-23 22:19:32 +0000 | [diff] [blame] | 331 | #ifdef SIGRTMIN | 
|  | 332 | else if (i >= __SIGRTMIN && i <= __SIGRTMAX) { | 
| Roland McGrath | 90b4cb5 | 2003-09-23 22:19:32 +0000 | [diff] [blame] | 333 | sprintf(tsig, "RT_%u", i - __SIGRTMIN); | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 334 | s = stpcpy(s, tsig); | 
| Roland McGrath | 90b4cb5 | 2003-09-23 22:19:32 +0000 | [diff] [blame] | 335 | } | 
|  | 336 | #endif /* SIGRTMIN */ | 
| John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 337 | else { | 
| John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 338 | sprintf(tsig, "%u", i); | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 339 | s = stpcpy(s, tsig); | 
| John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 340 | } | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 341 | sep = ' '; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 342 | } | 
|  | 343 | } | 
| Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 344 | if (sep == '[') | 
|  | 345 | *s++ = sep; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 346 | *s++ = ']'; | 
|  | 347 | *s = '\0'; | 
|  | 348 | return outstr; | 
|  | 349 | } | 
|  | 350 |  | 
|  | 351 | static void | 
| Denys Vlasenko | eccc48c | 2011-06-09 01:28:11 +0200 | [diff] [blame] | 352 | printsigmask(sigset_t *mask, int rt) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 353 | { | 
| Denys Vlasenko | 5940e65 | 2011-09-01 09:55:05 +0200 | [diff] [blame] | 354 | tprints(sprintsigmask("", mask, rt)); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 355 | } | 
|  | 356 |  | 
|  | 357 | void | 
| Denys Vlasenko | eccc48c | 2011-06-09 01:28:11 +0200 | [diff] [blame] | 358 | printsignal(int nr) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 359 | { | 
| Denys Vlasenko | 5940e65 | 2011-09-01 09:55:05 +0200 | [diff] [blame] | 360 | tprints(signame(nr)); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 361 | } | 
|  | 362 |  | 
| Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 363 | void | 
|  | 364 | print_sigset(struct tcb *tcp, long addr, int rt) | 
|  | 365 | { | 
|  | 366 | sigset_t ss; | 
|  | 367 |  | 
|  | 368 | if (!addr) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 369 | tprints("NULL"); | 
| Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 370 | else if (copy_sigset(tcp, addr, &ss) < 0) | 
|  | 371 | tprintf("%#lx", addr); | 
|  | 372 | else | 
|  | 373 | printsigmask(&ss, rt); | 
|  | 374 | } | 
|  | 375 |  | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 376 | #ifndef ILL_ILLOPC | 
|  | 377 | #define ILL_ILLOPC      1       /* illegal opcode */ | 
|  | 378 | #define ILL_ILLOPN      2       /* illegal operand */ | 
|  | 379 | #define ILL_ILLADR      3       /* illegal addressing mode */ | 
|  | 380 | #define ILL_ILLTRP      4       /* illegal trap */ | 
|  | 381 | #define ILL_PRVOPC      5       /* privileged opcode */ | 
|  | 382 | #define ILL_PRVREG      6       /* privileged register */ | 
|  | 383 | #define ILL_COPROC      7       /* coprocessor error */ | 
|  | 384 | #define ILL_BADSTK      8       /* internal stack error */ | 
|  | 385 | #define FPE_INTDIV      1       /* integer divide by zero */ | 
|  | 386 | #define FPE_INTOVF      2       /* integer overflow */ | 
|  | 387 | #define FPE_FLTDIV      3       /* floating point divide by zero */ | 
|  | 388 | #define FPE_FLTOVF      4       /* floating point overflow */ | 
|  | 389 | #define FPE_FLTUND      5       /* floating point underflow */ | 
|  | 390 | #define FPE_FLTRES      6       /* floating point inexact result */ | 
|  | 391 | #define FPE_FLTINV      7       /* floating point invalid operation */ | 
|  | 392 | #define FPE_FLTSUB      8       /* subscript out of range */ | 
|  | 393 | #define SEGV_MAPERR     1       /* address not mapped to object */ | 
|  | 394 | #define SEGV_ACCERR     2       /* invalid permissions for mapped object */ | 
|  | 395 | #define BUS_ADRALN      1       /* invalid address alignment */ | 
|  | 396 | #define BUS_ADRERR      2       /* non-existant physical address */ | 
|  | 397 | #define BUS_OBJERR      3       /* object specific hardware error */ | 
|  | 398 | #define TRAP_BRKPT      1       /* process breakpoint */ | 
|  | 399 | #define TRAP_TRACE      2       /* process trace trap */ | 
|  | 400 | #define CLD_EXITED      1       /* child has exited */ | 
|  | 401 | #define CLD_KILLED      2       /* child was killed */ | 
|  | 402 | #define CLD_DUMPED      3       /* child terminated abnormally */ | 
|  | 403 | #define CLD_TRAPPED     4       /* traced child has trapped */ | 
|  | 404 | #define CLD_STOPPED     5       /* child has stopped */ | 
|  | 405 | #define CLD_CONTINUED   6       /* stopped child has continued */ | 
|  | 406 | #define POLL_IN         1       /* data input available */ | 
|  | 407 | #define POLL_OUT        2       /* output buffers available */ | 
|  | 408 | #define POLL_MSG        3       /* input message available */ | 
|  | 409 | #define POLL_ERR        4       /* i/o error */ | 
|  | 410 | #define POLL_PRI        5       /* high priority input available */ | 
|  | 411 | #define POLL_HUP        6       /* device disconnected */ | 
| Dmitry V. Levin | 7d4bff1 | 2011-03-10 21:41:34 +0000 | [diff] [blame] | 412 | #define SI_KERNEL	0x80	/* sent by kernel */ | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 413 | #define SI_USER         0       /* sent by kill, sigsend, raise */ | 
|  | 414 | #define SI_QUEUE        -1      /* sent by sigqueue */ | 
|  | 415 | #define SI_TIMER        -2      /* sent by timer expiration */ | 
|  | 416 | #define SI_MESGQ        -3      /* sent by real time mesq state change */ | 
|  | 417 | #define SI_ASYNCIO      -4      /* sent by AIO completion */ | 
| Dmitry V. Levin | 7d4bff1 | 2011-03-10 21:41:34 +0000 | [diff] [blame] | 418 | #define SI_SIGIO	-5	/* sent by SIGIO */ | 
|  | 419 | #define SI_TKILL	-6	/* sent by tkill */ | 
|  | 420 | #define SI_ASYNCNL	-60     /* sent by asynch name lookup completion */ | 
|  | 421 |  | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 422 | #define SI_FROMUSER(sip)	((sip)->si_code <= 0) | 
|  | 423 |  | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 424 | #endif | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 425 |  | 
|  | 426 | #if __GLIBC_MINOR__ < 1 | 
|  | 427 | /* Type for data associated with a signal.  */ | 
|  | 428 | typedef union sigval | 
|  | 429 | { | 
|  | 430 | int sival_int; | 
|  | 431 | void *sival_ptr; | 
|  | 432 | } sigval_t; | 
|  | 433 |  | 
|  | 434 | # define __SI_MAX_SIZE     128 | 
| Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 435 | # define __SI_PAD_SIZE     ((__SI_MAX_SIZE / sizeof(int)) - 3) | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 436 |  | 
|  | 437 | typedef struct siginfo | 
|  | 438 | { | 
|  | 439 | int si_signo;               /* Signal number.  */ | 
|  | 440 | int si_errno;               /* If non-zero, an errno value associated with | 
|  | 441 | this signal, as defined in <errno.h>.  */ | 
|  | 442 | int si_code;                /* Signal code.  */ | 
|  | 443 |  | 
|  | 444 | union | 
|  | 445 | { | 
|  | 446 | int _pad[__SI_PAD_SIZE]; | 
|  | 447 |  | 
|  | 448 | /* kill().  */ | 
|  | 449 | struct | 
|  | 450 | { | 
|  | 451 | __pid_t si_pid;     /* Sending process ID.  */ | 
|  | 452 | __uid_t si_uid;     /* Real user ID of sending process.  */ | 
|  | 453 | } _kill; | 
|  | 454 |  | 
|  | 455 | /* POSIX.1b timers.  */ | 
|  | 456 | struct | 
|  | 457 | { | 
|  | 458 | unsigned int _timer1; | 
|  | 459 | unsigned int _timer2; | 
|  | 460 | } _timer; | 
|  | 461 |  | 
|  | 462 | /* POSIX.1b signals.  */ | 
|  | 463 | struct | 
|  | 464 | { | 
|  | 465 | __pid_t si_pid;     /* Sending process ID.  */ | 
|  | 466 | __uid_t si_uid;     /* Real user ID of sending process.  */ | 
|  | 467 | sigval_t si_sigval; /* Signal value.  */ | 
|  | 468 | } _rt; | 
|  | 469 |  | 
|  | 470 | /* SIGCHLD.  */ | 
|  | 471 | struct | 
|  | 472 | { | 
|  | 473 | __pid_t si_pid;     /* Which child.  */ | 
|  | 474 | int si_status;      /* Exit value or signal.  */ | 
|  | 475 | __clock_t si_utime; | 
|  | 476 | __clock_t si_stime; | 
|  | 477 | } _sigchld; | 
|  | 478 |  | 
|  | 479 | /* SIGILL, SIGFPE, SIGSEGV, SIGBUS.  */ | 
|  | 480 | struct | 
|  | 481 | { | 
|  | 482 | void *si_addr;      /* Faulting insn/memory ref.  */ | 
|  | 483 | } _sigfault; | 
|  | 484 |  | 
|  | 485 | /* SIGPOLL.  */ | 
|  | 486 | struct | 
|  | 487 | { | 
|  | 488 | int si_band;        /* Band event for SIGPOLL.  */ | 
|  | 489 | int si_fd; | 
|  | 490 | } _sigpoll; | 
|  | 491 | } _sifields; | 
|  | 492 | } siginfo_t; | 
|  | 493 |  | 
|  | 494 | #define si_pid		_sifields._kill.si_pid | 
|  | 495 | #define si_uid		_sifields._kill.si_uid | 
|  | 496 | #define si_status	_sifields._sigchld.si_status | 
|  | 497 | #define si_utime	_sifields._sigchld.si_utime | 
|  | 498 | #define si_stime	_sifields._sigchld.si_stime | 
|  | 499 | #define si_value	_sifields._rt.si_sigval | 
|  | 500 | #define si_int		_sifields._rt.si_sigval.sival_int | 
|  | 501 | #define si_ptr		_sifields._rt.si_sigval.sival_ptr | 
|  | 502 | #define si_addr		_sifields._sigfault.si_addr | 
|  | 503 | #define si_band		_sifields._sigpoll.si_band | 
|  | 504 | #define si_fd		_sifields._sigpoll.si_fd | 
|  | 505 |  | 
|  | 506 | #endif | 
|  | 507 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 508 | static const struct xlat siginfo_codes[] = { | 
| Dmitry V. Levin | 7d4bff1 | 2011-03-10 21:41:34 +0000 | [diff] [blame] | 509 | #ifdef SI_KERNEL | 
|  | 510 | { SI_KERNEL,	"SI_KERNEL"	}, | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 511 | #endif | 
|  | 512 | #ifdef SI_USER | 
|  | 513 | { SI_USER,	"SI_USER"	}, | 
|  | 514 | #endif | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 515 | #ifdef SI_QUEUE | 
|  | 516 | { SI_QUEUE,	"SI_QUEUE"	}, | 
|  | 517 | #endif | 
|  | 518 | #ifdef SI_TIMER | 
|  | 519 | { SI_TIMER,	"SI_TIMER"	}, | 
|  | 520 | #endif | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 521 | #ifdef SI_MESGQ | 
|  | 522 | { SI_MESGQ,	"SI_MESGQ"	}, | 
|  | 523 | #endif | 
| Dmitry V. Levin | 7d4bff1 | 2011-03-10 21:41:34 +0000 | [diff] [blame] | 524 | #ifdef SI_ASYNCIO | 
|  | 525 | { SI_ASYNCIO,	"SI_ASYNCIO"	}, | 
|  | 526 | #endif | 
| Roland McGrath | 941b740 | 2003-05-23 00:29:02 +0000 | [diff] [blame] | 527 | #ifdef SI_SIGIO | 
|  | 528 | { SI_SIGIO,	"SI_SIGIO"	}, | 
|  | 529 | #endif | 
|  | 530 | #ifdef SI_TKILL | 
|  | 531 | { SI_TKILL,	"SI_TKILL"	}, | 
|  | 532 | #endif | 
| Dmitry V. Levin | 7d4bff1 | 2011-03-10 21:41:34 +0000 | [diff] [blame] | 533 | #ifdef SI_ASYNCNL | 
|  | 534 | { SI_ASYNCNL,	"SI_ASYNCNL"	}, | 
|  | 535 | #endif | 
|  | 536 | #ifdef SI_NOINFO | 
|  | 537 | { SI_NOINFO,	"SI_NOINFO"	}, | 
|  | 538 | #endif | 
|  | 539 | #ifdef SI_LWP | 
|  | 540 | { SI_LWP,	"SI_LWP"	}, | 
|  | 541 | #endif | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 542 | { 0,		NULL		}, | 
|  | 543 | }; | 
|  | 544 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 545 | static const struct xlat sigill_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 546 | { ILL_ILLOPC,	"ILL_ILLOPC"	}, | 
|  | 547 | { ILL_ILLOPN,	"ILL_ILLOPN"	}, | 
|  | 548 | { ILL_ILLADR,	"ILL_ILLADR"	}, | 
|  | 549 | { ILL_ILLTRP,	"ILL_ILLTRP"	}, | 
|  | 550 | { ILL_PRVOPC,	"ILL_PRVOPC"	}, | 
|  | 551 | { ILL_PRVREG,	"ILL_PRVREG"	}, | 
|  | 552 | { ILL_COPROC,	"ILL_COPROC"	}, | 
|  | 553 | { ILL_BADSTK,	"ILL_BADSTK"	}, | 
|  | 554 | { 0,		NULL		}, | 
|  | 555 | }; | 
|  | 556 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 557 | static const struct xlat sigfpe_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 558 | { FPE_INTDIV,	"FPE_INTDIV"	}, | 
|  | 559 | { FPE_INTOVF,	"FPE_INTOVF"	}, | 
|  | 560 | { FPE_FLTDIV,	"FPE_FLTDIV"	}, | 
|  | 561 | { FPE_FLTOVF,	"FPE_FLTOVF"	}, | 
|  | 562 | { FPE_FLTUND,	"FPE_FLTUND"	}, | 
|  | 563 | { FPE_FLTRES,	"FPE_FLTRES"	}, | 
|  | 564 | { FPE_FLTINV,	"FPE_FLTINV"	}, | 
|  | 565 | { FPE_FLTSUB,	"FPE_FLTSUB"	}, | 
|  | 566 | { 0,		NULL		}, | 
|  | 567 | }; | 
|  | 568 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 569 | static const struct xlat sigtrap_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 570 | { TRAP_BRKPT,	"TRAP_BRKPT"	}, | 
|  | 571 | { TRAP_TRACE,	"TRAP_TRACE"	}, | 
|  | 572 | { 0,		NULL		}, | 
|  | 573 | }; | 
|  | 574 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 575 | static const struct xlat sigchld_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 576 | { CLD_EXITED,	"CLD_EXITED"	}, | 
|  | 577 | { CLD_KILLED,	"CLD_KILLED"	}, | 
|  | 578 | { CLD_DUMPED,	"CLD_DUMPED"	}, | 
|  | 579 | { CLD_TRAPPED,	"CLD_TRAPPED"	}, | 
|  | 580 | { CLD_STOPPED,	"CLD_STOPPED"	}, | 
|  | 581 | { CLD_CONTINUED,"CLD_CONTINUED"	}, | 
|  | 582 | { 0,		NULL		}, | 
|  | 583 | }; | 
|  | 584 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 585 | static const struct xlat sigpoll_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 586 | { POLL_IN,	"POLL_IN"	}, | 
|  | 587 | { POLL_OUT,	"POLL_OUT"	}, | 
|  | 588 | { POLL_MSG,	"POLL_MSG"	}, | 
|  | 589 | { POLL_ERR,	"POLL_ERR"	}, | 
|  | 590 | { POLL_PRI,	"POLL_PRI"	}, | 
|  | 591 | { POLL_HUP,	"POLL_HUP"	}, | 
|  | 592 | { 0,		NULL		}, | 
|  | 593 | }; | 
|  | 594 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 595 | static const struct xlat sigprof_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 596 | #ifdef PROF_SIG | 
|  | 597 | { PROF_SIG,	"PROF_SIG"	}, | 
|  | 598 | #endif | 
|  | 599 | { 0,		NULL		}, | 
|  | 600 | }; | 
|  | 601 |  | 
|  | 602 | #ifdef SIGEMT | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 603 | static const struct xlat sigemt_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 604 | #ifdef EMT_TAGOVF | 
|  | 605 | { EMT_TAGOVF,	"EMT_TAGOVF"	}, | 
|  | 606 | #endif | 
|  | 607 | { 0,		NULL		}, | 
|  | 608 | }; | 
|  | 609 | #endif | 
|  | 610 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 611 | static const struct xlat sigsegv_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 612 | { SEGV_MAPERR,	"SEGV_MAPERR"	}, | 
|  | 613 | { SEGV_ACCERR,	"SEGV_ACCERR"	}, | 
|  | 614 | { 0,		NULL		}, | 
|  | 615 | }; | 
|  | 616 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 617 | static const struct xlat sigbus_codes[] = { | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 618 | { BUS_ADRALN,	"BUS_ADRALN"	}, | 
|  | 619 | { BUS_ADRERR,	"BUS_ADRERR"	}, | 
|  | 620 | { BUS_OBJERR,	"BUS_OBJERR"	}, | 
|  | 621 | { 0,		NULL		}, | 
|  | 622 | }; | 
|  | 623 |  | 
|  | 624 | void | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 625 | printsiginfo(siginfo_t *sip, int verbose) | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 626 | { | 
| Roland McGrath | f9c49b2 | 2004-10-06 22:11:54 +0000 | [diff] [blame] | 627 | const char *code; | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 628 |  | 
|  | 629 | if (sip->si_signo == 0) { | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 630 | tprints("{}"); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 631 | return; | 
|  | 632 | } | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 633 | tprints("{si_signo="); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 634 | printsignal(sip->si_signo); | 
|  | 635 | code = xlookup(siginfo_codes, sip->si_code); | 
|  | 636 | if (!code) { | 
|  | 637 | switch (sip->si_signo) { | 
|  | 638 | case SIGTRAP: | 
|  | 639 | code = xlookup(sigtrap_codes, sip->si_code); | 
|  | 640 | break; | 
|  | 641 | case SIGCHLD: | 
|  | 642 | code = xlookup(sigchld_codes, sip->si_code); | 
|  | 643 | break; | 
|  | 644 | case SIGPOLL: | 
|  | 645 | code = xlookup(sigpoll_codes, sip->si_code); | 
|  | 646 | break; | 
|  | 647 | case SIGPROF: | 
|  | 648 | code = xlookup(sigprof_codes, sip->si_code); | 
|  | 649 | break; | 
|  | 650 | case SIGILL: | 
|  | 651 | code = xlookup(sigill_codes, sip->si_code); | 
|  | 652 | break; | 
|  | 653 | #ifdef SIGEMT | 
|  | 654 | case SIGEMT: | 
|  | 655 | code = xlookup(sigemt_codes, sip->si_code); | 
|  | 656 | break; | 
|  | 657 | #endif | 
|  | 658 | case SIGFPE: | 
|  | 659 | code = xlookup(sigfpe_codes, sip->si_code); | 
|  | 660 | break; | 
|  | 661 | case SIGSEGV: | 
|  | 662 | code = xlookup(sigsegv_codes, sip->si_code); | 
|  | 663 | break; | 
|  | 664 | case SIGBUS: | 
|  | 665 | code = xlookup(sigbus_codes, sip->si_code); | 
|  | 666 | break; | 
|  | 667 | } | 
|  | 668 | } | 
|  | 669 | if (code) | 
|  | 670 | tprintf(", si_code=%s", code); | 
|  | 671 | else | 
|  | 672 | tprintf(", si_code=%#x", sip->si_code); | 
|  | 673 | #ifdef SI_NOINFO | 
|  | 674 | if (sip->si_code != SI_NOINFO) | 
|  | 675 | #endif | 
|  | 676 | { | 
|  | 677 | if (sip->si_errno) { | 
|  | 678 | if (sip->si_errno < 0 || sip->si_errno >= nerrnos) | 
|  | 679 | tprintf(", si_errno=%d", sip->si_errno); | 
|  | 680 | else | 
|  | 681 | tprintf(", si_errno=%s", | 
|  | 682 | errnoent[sip->si_errno]); | 
|  | 683 | } | 
|  | 684 | #ifdef SI_FROMUSER | 
|  | 685 | if (SI_FROMUSER(sip)) { | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 686 | tprintf(", si_pid=%lu, si_uid=%lu", | 
|  | 687 | (unsigned long) sip->si_pid, | 
|  | 688 | (unsigned long) sip->si_uid); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 689 | switch (sip->si_code) { | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 690 | #ifdef SI_USER | 
|  | 691 | case SI_USER: | 
|  | 692 | break; | 
|  | 693 | #endif | 
|  | 694 | #ifdef SI_TKILL | 
|  | 695 | case SI_TKILL: | 
|  | 696 | break; | 
|  | 697 | #endif | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 698 | #ifdef SI_TIMER | 
|  | 699 | case SI_TIMER: | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 700 | tprintf(", si_value=%d", sip->si_int); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 701 | break; | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 702 | #endif | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 703 | default: | 
| Dmitry V. Levin | b41e1c9 | 2011-03-10 23:14:47 +0000 | [diff] [blame] | 704 | if (!sip->si_ptr) | 
|  | 705 | break; | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 706 | if (!verbose) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 707 | tprints(", ..."); | 
| Dmitry V. Levin | 6d9e8e8 | 2011-03-10 22:18:56 +0000 | [diff] [blame] | 708 | else | 
|  | 709 | tprintf(", si_value={int=%u, ptr=%#lx}", | 
|  | 710 | sip->si_int, | 
|  | 711 | (unsigned long) sip->si_ptr); | 
|  | 712 | break; | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 713 | } | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 714 | } | 
|  | 715 | else | 
|  | 716 | #endif /* SI_FROMUSER */ | 
|  | 717 | { | 
|  | 718 | switch (sip->si_signo) { | 
|  | 719 | case SIGCHLD: | 
|  | 720 | tprintf(", si_pid=%ld, si_status=", | 
|  | 721 | (long) sip->si_pid); | 
|  | 722 | if (sip->si_code == CLD_EXITED) | 
|  | 723 | tprintf("%d", sip->si_status); | 
|  | 724 | else | 
|  | 725 | printsignal(sip->si_status); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 726 | if (!verbose) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 727 | tprints(", ..."); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 728 | else | 
|  | 729 | tprintf(", si_utime=%lu, si_stime=%lu", | 
|  | 730 | sip->si_utime, | 
|  | 731 | sip->si_stime); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 732 | break; | 
|  | 733 | case SIGILL: case SIGFPE: | 
|  | 734 | case SIGSEGV: case SIGBUS: | 
|  | 735 | tprintf(", si_addr=%#lx", | 
|  | 736 | (unsigned long) sip->si_addr); | 
|  | 737 | break; | 
|  | 738 | case SIGPOLL: | 
|  | 739 | switch (sip->si_code) { | 
|  | 740 | case POLL_IN: case POLL_OUT: case POLL_MSG: | 
|  | 741 | tprintf(", si_band=%ld", | 
|  | 742 | (long) sip->si_band); | 
|  | 743 | break; | 
|  | 744 | } | 
|  | 745 | break; | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 746 | default: | 
| Dmitry V. Levin | b41e1c9 | 2011-03-10 23:14:47 +0000 | [diff] [blame] | 747 | if (sip->si_pid || sip->si_uid) | 
|  | 748 | tprintf(", si_pid=%lu, si_uid=%lu", | 
|  | 749 | (unsigned long) sip->si_pid, | 
|  | 750 | (unsigned long) sip->si_uid); | 
|  | 751 | if (!sip->si_ptr) | 
|  | 752 | break; | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 753 | if (!verbose) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 754 | tprints(", ..."); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 755 | else { | 
| Dmitry V. Levin | b41e1c9 | 2011-03-10 23:14:47 +0000 | [diff] [blame] | 756 | tprintf(", si_value={int=%u, ptr=%#lx}", | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 757 | sip->si_int, | 
|  | 758 | (unsigned long) sip->si_ptr); | 
|  | 759 | } | 
| Roland McGrath | a39c5a1 | 2002-12-17 05:10:37 +0000 | [diff] [blame] | 760 |  | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 761 | } | 
|  | 762 | } | 
|  | 763 | } | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 764 | tprints("}"); | 
| John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 765 | } | 
|  | 766 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 767 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 768 | sys_sigsetmask(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 769 | { | 
|  | 770 | if (entering(tcp)) { | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 771 | sigset_t sigm; | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 772 | long_to_sigset(tcp->u_arg[0], &sigm); | 
|  | 773 | printsigmask(&sigm, 0); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 774 | } | 
|  | 775 | else if (!syserror(tcp)) { | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 776 | sigset_t sigm; | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 777 | long_to_sigset(tcp->u_rval, &sigm); | 
|  | 778 | tcp->auxstr = sprintsigmask("old mask ", &sigm, 0); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 779 |  | 
|  | 780 | return RVAL_HEX | RVAL_STR; | 
|  | 781 | } | 
|  | 782 | return 0; | 
|  | 783 | } | 
|  | 784 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 785 | #ifdef HAVE_SIGACTION | 
|  | 786 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 787 | struct old_sigaction { | 
|  | 788 | __sighandler_t __sa_handler; | 
|  | 789 | unsigned long sa_mask; | 
|  | 790 | unsigned long sa_flags; | 
|  | 791 | void (*sa_restorer)(void); | 
|  | 792 | }; | 
| Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 793 | #define SA_HANDLER __sa_handler | 
| Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 794 |  | 
| Roland McGrath | a39c5a1 | 2002-12-17 05:10:37 +0000 | [diff] [blame] | 795 | #ifndef SA_HANDLER | 
|  | 796 | #define SA_HANDLER sa_handler | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 797 | #endif | 
|  | 798 |  | 
|  | 799 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 800 | sys_sigaction(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 801 | { | 
|  | 802 | long addr; | 
| John Hughes | 1e4cb34 | 2001-03-06 09:25:46 +0000 | [diff] [blame] | 803 | sigset_t sigset; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 804 | struct old_sigaction sa; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 805 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 806 | if (entering(tcp)) { | 
|  | 807 | printsignal(tcp->u_arg[0]); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 808 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 809 | addr = tcp->u_arg[1]; | 
|  | 810 | } else | 
|  | 811 | addr = tcp->u_arg[2]; | 
|  | 812 | if (addr == 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 813 | tprints("NULL"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 814 | else if (!verbose(tcp)) | 
|  | 815 | tprintf("%#lx", addr); | 
|  | 816 | else if (umove(tcp, addr, &sa) < 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 817 | tprints("{...}"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 818 | else { | 
| Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 819 | /* Architectures using function pointers, like | 
|  | 820 | * hppa, may need to manipulate the function pointer | 
|  | 821 | * to compute the result of a comparison. However, | 
|  | 822 | * the SA_HANDLER function pointer exists only in | 
|  | 823 | * the address space of the traced process, and can't | 
|  | 824 | * be manipulated by strace. In order to prevent the | 
|  | 825 | * compiler from generating code to manipulate | 
|  | 826 | * SA_HANDLER we cast the function pointers to long. */ | 
|  | 827 | if ((long)sa.SA_HANDLER == (long)SIG_ERR) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 828 | tprints("{SIG_ERR, "); | 
| Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 829 | else if ((long)sa.SA_HANDLER == (long)SIG_DFL) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 830 | tprints("{SIG_DFL, "); | 
| Denys Vlasenko | 023b770 | 2012-01-18 16:30:47 +0100 | [diff] [blame] | 831 | else if ((long)sa.SA_HANDLER == (long)SIG_IGN) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 832 | tprints("{SIG_IGN, "); | 
| Denys Vlasenko | 023b770 | 2012-01-18 16:30:47 +0100 | [diff] [blame] | 833 | else | 
| Wichert Akkerman | 2e2553a | 1999-05-09 00:29:58 +0000 | [diff] [blame] | 834 | tprintf("{%#lx, ", (long) sa.SA_HANDLER); | 
| Denys Vlasenko | bbe29b3 | 2012-01-18 15:30:56 +0100 | [diff] [blame] | 835 | long_to_sigset(sa.sa_mask, &sigset); | 
|  | 836 | printsigmask(&sigset, 0); | 
| Denys Vlasenko | bbe29b3 | 2012-01-18 15:30:56 +0100 | [diff] [blame] | 837 | tprints(", "); | 
|  | 838 | printflags(sigact_flags, sa.sa_flags, "SA_???"); | 
|  | 839 | #ifdef SA_RESTORER | 
|  | 840 | if (sa.sa_flags & SA_RESTORER) | 
|  | 841 | tprintf(", %p", sa.sa_restorer); | 
|  | 842 | #endif | 
|  | 843 | tprints("}"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 844 | } | 
|  | 845 | if (entering(tcp)) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 846 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 847 | else | 
|  | 848 | tprintf(", %#lx", (unsigned long) sa.sa_restorer); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 849 | return 0; | 
|  | 850 | } | 
|  | 851 |  | 
|  | 852 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 853 | sys_signal(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 854 | { | 
|  | 855 | if (entering(tcp)) { | 
|  | 856 | printsignal(tcp->u_arg[0]); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 857 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 858 | switch (tcp->u_arg[1]) { | 
| Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 859 | case (long) SIG_ERR: | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 860 | tprints("SIG_ERR"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 861 | break; | 
| Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 862 | case (long) SIG_DFL: | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 863 | tprints("SIG_DFL"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 864 | break; | 
| Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 865 | case (long) SIG_IGN: | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 866 | tprints("SIG_IGN"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 867 | break; | 
|  | 868 | default: | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 869 | tprintf("%#lx", tcp->u_arg[1]); | 
|  | 870 | } | 
| Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 871 | return 0; | 
|  | 872 | } | 
| Dmitry V. Levin | 21a7534 | 2008-09-03 01:22:18 +0000 | [diff] [blame] | 873 | else if (!syserror(tcp)) { | 
| Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 874 | switch (tcp->u_rval) { | 
| Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 875 | case (long) SIG_ERR: | 
| Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 876 | tcp->auxstr = "SIG_ERR"; break; | 
| Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 877 | case (long) SIG_DFL: | 
| Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 878 | tcp->auxstr = "SIG_DFL"; break; | 
| Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 879 | case (long) SIG_IGN: | 
| Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 880 | tcp->auxstr = "SIG_IGN"; break; | 
|  | 881 | default: | 
|  | 882 | tcp->auxstr = NULL; | 
|  | 883 | } | 
|  | 884 | return RVAL_HEX | RVAL_STR; | 
|  | 885 | } | 
| Dmitry V. Levin | 21a7534 | 2008-09-03 01:22:18 +0000 | [diff] [blame] | 886 | return 0; | 
| Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 887 | } | 
|  | 888 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 889 | #endif /* HAVE_SIGACTION */ | 
|  | 890 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 891 | int | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 892 | sys_sigreturn(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 893 | { | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 894 | #if defined(ARM) | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 895 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 896 | struct pt_regs regs; | 
|  | 897 | struct sigcontext_struct sc; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 898 | sigset_t sigm; | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 899 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)®s) == -1) | 
|  | 900 | return 0; | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 901 | if (umove(tcp, regs.ARM_sp, &sc) < 0) | 
|  | 902 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 903 | long_to_sigset(sc.oldmask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 904 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 905 | } | 
|  | 906 | return 0; | 
|  | 907 | #elif defined(S390) || defined(S390X) | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 908 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 909 | long usp; | 
|  | 910 | struct sigcontext_struct sc; | 
| Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 911 | if (upeek(tcp, PT_GPR15, &usp) < 0) | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 912 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 913 | if (umove(tcp, usp + __SIGNAL_FRAMESIZE, &sc) < 0) | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 914 | return 0; | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 915 | tprints(sprintsigmask(") (mask ", (sigset_t *)&sc.oldmask[0], 0)); | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 916 | } | 
|  | 917 | return 0; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 918 | #elif defined(I386) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 919 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 920 | struct sigcontext_struct sc; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 921 | /* Note: on i386, sc is followed on stack by struct fpstate | 
|  | 922 | * and after it an additional u32 extramask[1] which holds | 
|  | 923 | * upper half of the mask. We can fetch it there | 
|  | 924 | * if/when we'd want to display the full mask... | 
|  | 925 | */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 926 | sigset_t sigm; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 927 | if (umove(tcp, i386_regs.esp, &sc) < 0) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 928 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 929 | long_to_sigset(sc.oldmask, &sigm); | 
|  | 930 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 931 | } | 
|  | 932 | return 0; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 933 | #elif defined(IA64) | 
| Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 934 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 935 | struct sigcontext sc; | 
|  | 936 | long sp; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 937 | sigset_t sigm; | 
| Wichert Akkerman | 5ae21ea | 2000-05-01 01:53:59 +0000 | [diff] [blame] | 938 | /* offset of sigcontext in the kernel's sigframe structure: */ | 
|  | 939 | #		define SIGFRAME_SC_OFFSET	0x90 | 
| Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 940 | if (upeek(tcp, PT_R12, &sp) < 0) | 
| Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 941 | return 0; | 
| Wichert Akkerman | 5ae21ea | 2000-05-01 01:53:59 +0000 | [diff] [blame] | 942 | if (umove(tcp, sp + 16 + SIGFRAME_SC_OFFSET, &sc) < 0) | 
| Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 943 | return 0; | 
| Denys Vlasenko | d9560c1 | 2011-08-19 17:41:28 +0200 | [diff] [blame] | 944 | sigemptyset(&sigm); | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 945 | memcpy(&sigm, &sc.sc_mask, NSIG / 8); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 946 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 947 | } | 
|  | 948 | return 0; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 949 | #elif defined(POWERPC) | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 950 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 951 | long esp; | 
|  | 952 | struct sigcontext_struct sc; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 953 | sigset_t sigm; | 
|  | 954 | if (upeek(tcp, sizeof(unsigned long) * PT_R1, &esp) < 0) | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 955 | return 0; | 
| Andreas Schwab | edb3934 | 2010-02-23 00:18:51 +0100 | [diff] [blame] | 956 | /* Skip dummy stack frame. */ | 
| Andreas Schwab | d69fa49 | 2010-07-12 21:39:57 +0200 | [diff] [blame] | 957 | #ifdef POWERPC64 | 
|  | 958 | if (current_personality == 0) | 
|  | 959 | esp += 128; | 
|  | 960 | else | 
|  | 961 | esp += 64; | 
| Andreas Schwab | edb3934 | 2010-02-23 00:18:51 +0100 | [diff] [blame] | 962 | #else | 
|  | 963 | esp += 64; | 
|  | 964 | #endif | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 965 | if (umove(tcp, esp, &sc) < 0) | 
|  | 966 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 967 | long_to_sigset(sc.oldmask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 968 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 969 | } | 
|  | 970 | return 0; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 971 | #elif defined(M68K) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 972 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 973 | long usp; | 
|  | 974 | struct sigcontext sc; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 975 | sigset_t sigm; | 
| Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 976 | if (upeek(tcp, 4*PT_USP, &usp) < 0) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 977 | return 0; | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 978 | if (umove(tcp, usp, &sc) < 0) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 979 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 980 | long_to_sigset(sc.sc_mask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 981 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 982 | } | 
|  | 983 | return 0; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 984 | #elif defined(ALPHA) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 985 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 986 | long fp; | 
|  | 987 | struct sigcontext_struct sc; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 988 | sigset_t sigm; | 
| Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 989 | if (upeek(tcp, REG_FP, &fp) < 0) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 990 | return 0; | 
| Roland McGrath | 0f87c49 | 2003-06-03 23:29:04 +0000 | [diff] [blame] | 991 | if (umove(tcp, fp, &sc) < 0) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 992 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 993 | long_to_sigset(sc.sc_mask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 994 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 995 | } | 
|  | 996 | return 0; | 
| Denys Vlasenko | c36c352 | 2012-02-25 02:47:15 +0100 | [diff] [blame] | 997 | #elif defined(SPARC) || defined(SPARC64) | 
| Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 998 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 999 | long i1; | 
|  | 1000 | struct pt_regs regs; | 
|  | 1001 | m_siginfo_t si; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1002 | sigset_t sigm; | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1003 | if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)®s, 0) < 0) { | 
|  | 1004 | perror("sigreturn: PTRACE_GETREGS"); | 
|  | 1005 | return 0; | 
|  | 1006 | } | 
| Mike Frysinger | 8566c50 | 2009-10-12 11:05:14 -0400 | [diff] [blame] | 1007 | i1 = regs.u_regs[U_REG_O1]; | 
| Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1008 | if (umove(tcp, i1, &si) < 0) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1009 | perror("sigreturn: umove"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1010 | return 0; | 
|  | 1011 | } | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1012 | long_to_sigset(si.si_mask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 1013 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1014 | } | 
|  | 1015 | return 0; | 
| Denys Vlasenko | c36c352 | 2012-02-25 02:47:15 +0100 | [diff] [blame] | 1016 | #elif defined(LINUX_MIPSN32) || defined(LINUX_MIPSN64) | 
| Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1017 | /* This decodes rt_sigreturn.  The 64-bit ABIs do not have | 
|  | 1018 | sigreturn.  */ | 
| Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1019 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1020 | long sp; | 
|  | 1021 | struct ucontext uc; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1022 | sigset_t sigm; | 
| Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 1023 | if (upeek(tcp, REG_SP, &sp) < 0) | 
| Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1024 | return 0; | 
| Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1025 | /* There are six words followed by a 128-byte siginfo.  */ | 
|  | 1026 | sp = sp + 6 * 4 + 128; | 
|  | 1027 | if (umove(tcp, sp, &uc) < 0) | 
| Denys Vlasenko | 5ae2b7c | 2009-02-27 20:32:52 +0000 | [diff] [blame] | 1028 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1029 | long_to_sigset(*(long *) &uc.uc_sigmask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 1030 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 1031 | } | 
|  | 1032 | return 0; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1033 | #elif defined(MIPS) | 
| Denys Vlasenko | b63256e | 2011-06-07 12:13:24 +0200 | [diff] [blame] | 1034 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1035 | long sp; | 
|  | 1036 | struct pt_regs regs; | 
|  | 1037 | m_siginfo_t si; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1038 | sigset_t sigm; | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1039 | if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)®s, 0) < 0) { | 
|  | 1040 | perror("sigreturn: PTRACE_GETREGS"); | 
|  | 1041 | return 0; | 
|  | 1042 | } | 
| Roland McGrath | 576b784 | 2007-11-04 00:00:00 +0000 | [diff] [blame] | 1043 | sp = regs.regs[29]; | 
|  | 1044 | if (umove(tcp, sp, &si) < 0) | 
| Denys Vlasenko | facd45b | 2011-06-09 01:22:10 +0200 | [diff] [blame] | 1045 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1046 | long_to_sigset(si.si_mask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 1047 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Wichert Akkerman | f90da01 | 1999-10-31 21:15:38 +0000 | [diff] [blame] | 1048 | } | 
|  | 1049 | return 0; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1050 | #elif defined(CRISV10) || defined(CRISV32) | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1051 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1052 | struct sigcontext sc; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1053 | long regs[PT_MAX+1]; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1054 | sigset_t sigm; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1055 | if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) { | 
|  | 1056 | perror("sigreturn: PTRACE_GETREGS"); | 
|  | 1057 | return 0; | 
|  | 1058 | } | 
|  | 1059 | if (umove(tcp, regs[PT_USP], &sc) < 0) | 
|  | 1060 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1061 | long_to_sigset(sc.oldmask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 1062 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1063 | } | 
|  | 1064 | return 0; | 
| Chris Metcalf | c8c6698 | 2009-12-28 10:00:15 -0500 | [diff] [blame] | 1065 | #elif defined(TILE) | 
| Chris Metcalf | c8c6698 | 2009-12-28 10:00:15 -0500 | [diff] [blame] | 1066 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1067 | struct ucontext uc; | 
|  | 1068 | long sp; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1069 | sigset_t sigm; | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1070 |  | 
|  | 1071 | /* offset of ucontext in the kernel's sigframe structure */ | 
|  | 1072 | #		define SIGFRAME_UC_OFFSET C_ABI_SAVE_AREA_SIZE + sizeof(struct siginfo) | 
| Chris Metcalf | c8c6698 | 2009-12-28 10:00:15 -0500 | [diff] [blame] | 1073 | if (upeek(tcp, PTREGS_OFFSET_SP, &sp) < 0) | 
|  | 1074 | return 0; | 
|  | 1075 | if (umove(tcp, sp + SIGFRAME_UC_OFFSET, &uc) < 0) | 
|  | 1076 | return 0; | 
| Denys Vlasenko | d9560c1 | 2011-08-19 17:41:28 +0200 | [diff] [blame] | 1077 | sigemptyset(&sigm); | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1078 | memcpy(&sigm, &uc.uc_sigmask, NSIG / 8); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 1079 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Chris Metcalf | c8c6698 | 2009-12-28 10:00:15 -0500 | [diff] [blame] | 1080 | } | 
|  | 1081 | return 0; | 
| Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1082 | #elif defined(MICROBLAZE) | 
| Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1083 | /* TODO: Verify that this is correct...  */ | 
|  | 1084 | if (entering(tcp)) { | 
| Denys Vlasenko | 56a5298 | 2011-06-09 01:36:29 +0200 | [diff] [blame] | 1085 | struct sigcontext sc; | 
| Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1086 | long sp; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1087 | sigset_t sigm; | 
| Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1088 | /* Read r1, the stack pointer.  */ | 
|  | 1089 | if (upeek(tcp, 1 * 4, &sp) < 0) | 
|  | 1090 | return 0; | 
|  | 1091 | if (umove(tcp, sp, &sc) < 0) | 
|  | 1092 | return 0; | 
| Denys Vlasenko | b11322f | 2012-01-10 16:40:35 +0100 | [diff] [blame] | 1093 | long_to_sigset(sc.oldmask, &sigm); | 
| Andreas Schwab | a7920a8 | 2012-01-17 17:56:44 +0100 | [diff] [blame] | 1094 | tprints(sprintsigmask(") (mask ", &sigm, 0)); | 
| Edgar E. Iglesias | 939caba | 2010-07-06 14:21:07 +0200 | [diff] [blame] | 1095 | } | 
|  | 1096 | return 0; | 
| Wichert Akkerman | c1652e2 | 2001-03-27 12:17:16 +0000 | [diff] [blame] | 1097 | #else | 
| Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 1098 | #warning No sys_sigreturn() for this architecture | 
|  | 1099 | #warning         (no problem, just a reminder :-) | 
| Wichert Akkerman | c1652e2 | 2001-03-27 12:17:16 +0000 | [diff] [blame] | 1100 | return 0; | 
| Denys Vlasenko | ea0e6e8 | 2009-02-25 17:08:40 +0000 | [diff] [blame] | 1101 | #endif | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1102 | } | 
|  | 1103 |  | 
|  | 1104 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1105 | sys_siggetmask(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1106 | { | 
|  | 1107 | if (exiting(tcp)) { | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1108 | sigset_t sigm; | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1109 | long_to_sigset(tcp->u_rval, &sigm); | 
|  | 1110 | tcp->auxstr = sprintsigmask("mask ", &sigm, 0); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1111 | } | 
|  | 1112 | return RVAL_HEX | RVAL_STR; | 
|  | 1113 | } | 
|  | 1114 |  | 
|  | 1115 | int | 
| Dmitry V. Levin | e5e6085 | 2009-12-31 22:50:49 +0000 | [diff] [blame] | 1116 | sys_sigsuspend(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1117 | { | 
|  | 1118 | if (entering(tcp)) { | 
|  | 1119 | sigset_t sigm; | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1120 | long_to_sigset(tcp->u_arg[2], &sigm); | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1121 | printsigmask(&sigm, 0); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1122 | } | 
|  | 1123 | return 0; | 
|  | 1124 | } | 
|  | 1125 |  | 
| Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 1126 | #if !defined SS_ONSTACK | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1127 | #define SS_ONSTACK      1 | 
|  | 1128 | #define SS_DISABLE      2 | 
|  | 1129 | #if __GLIBC_MINOR__ == 0 | 
|  | 1130 | typedef struct | 
|  | 1131 | { | 
|  | 1132 | __ptr_t ss_sp; | 
|  | 1133 | int ss_flags; | 
|  | 1134 | size_t ss_size; | 
|  | 1135 | } stack_t; | 
|  | 1136 | #endif | 
|  | 1137 | #endif | 
|  | 1138 |  | 
| Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 1139 | static const struct xlat sigaltstack_flags[] = { | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1140 | { SS_ONSTACK,	"SS_ONSTACK"	}, | 
|  | 1141 | { SS_DISABLE,	"SS_DISABLE"	}, | 
|  | 1142 | { 0,		NULL		}, | 
|  | 1143 | }; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1144 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1145 | static int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1146 | print_stack_t(struct tcb *tcp, unsigned long addr) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1147 | { | 
|  | 1148 | stack_t ss; | 
|  | 1149 | if (umove(tcp, addr, &ss) < 0) | 
|  | 1150 | return -1; | 
|  | 1151 | tprintf("{ss_sp=%#lx, ss_flags=", (unsigned long) ss.ss_sp); | 
| Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 1152 | printflags(sigaltstack_flags, ss.ss_flags, "SS_???"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1153 | tprintf(", ss_size=%lu}", (unsigned long) ss.ss_size); | 
|  | 1154 | return 0; | 
|  | 1155 | } | 
|  | 1156 |  | 
|  | 1157 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1158 | sys_sigaltstack(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1159 | { | 
|  | 1160 | if (entering(tcp)) { | 
|  | 1161 | if (tcp->u_arg[0] == 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1162 | tprints("NULL"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1163 | else if (print_stack_t(tcp, tcp->u_arg[0]) < 0) | 
|  | 1164 | return -1; | 
|  | 1165 | } | 
|  | 1166 | else { | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1167 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1168 | if (tcp->u_arg[1] == 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1169 | tprints("NULL"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1170 | else if (print_stack_t(tcp, tcp->u_arg[1]) < 0) | 
|  | 1171 | return -1; | 
|  | 1172 | } | 
|  | 1173 | return 0; | 
|  | 1174 | } | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1175 |  | 
|  | 1176 | #ifdef HAVE_SIGACTION | 
|  | 1177 |  | 
|  | 1178 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1179 | sys_sigprocmask(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1180 | { | 
|  | 1181 | #ifdef ALPHA | 
|  | 1182 | if (entering(tcp)) { | 
|  | 1183 | printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???"); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1184 | tprints(", "); | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1185 | printsigmask(tcp->u_arg[1], 0); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1186 | } | 
|  | 1187 | else if (!syserror(tcp)) { | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1188 | tcp->auxstr = sprintsigmask("old mask ", tcp->u_rval, 0); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1189 | return RVAL_HEX | RVAL_STR; | 
|  | 1190 | } | 
|  | 1191 | #else /* !ALPHA */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1192 | if (entering(tcp)) { | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1193 | printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???"); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1194 | tprints(", "); | 
| Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 1195 | print_sigset(tcp, tcp->u_arg[1], 0); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1196 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1197 | } | 
|  | 1198 | else { | 
|  | 1199 | if (!tcp->u_arg[2]) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1200 | tprints("NULL"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1201 | else if (syserror(tcp)) | 
|  | 1202 | tprintf("%#lx", tcp->u_arg[2]); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1203 | else | 
| Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 1204 | print_sigset(tcp, tcp->u_arg[2], 0); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1205 | } | 
|  | 1206 | #endif /* !ALPHA */ | 
|  | 1207 | return 0; | 
|  | 1208 | } | 
|  | 1209 |  | 
|  | 1210 | #endif /* HAVE_SIGACTION */ | 
|  | 1211 |  | 
|  | 1212 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1213 | sys_kill(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1214 | { | 
|  | 1215 | if (entering(tcp)) { | 
| Roland McGrath | 4d7ed02 | 2008-05-20 01:43:09 +0000 | [diff] [blame] | 1216 | long pid = tcp->u_arg[0]; | 
| Denys Vlasenko | a794974 | 2011-08-21 17:26:55 +0200 | [diff] [blame] | 1217 | #if SUPPORTED_PERSONALITIES > 1 | 
|  | 1218 | /* Sign-extend a 32-bit value when that's what it is. */ | 
| Roland McGrath | 4d7ed02 | 2008-05-20 01:43:09 +0000 | [diff] [blame] | 1219 | if (personality_wordsize[current_personality] < sizeof pid) | 
|  | 1220 | pid = (long) (int) pid; | 
| Denys Vlasenko | a794974 | 2011-08-21 17:26:55 +0200 | [diff] [blame] | 1221 | #endif | 
| Roland McGrath | 4d7ed02 | 2008-05-20 01:43:09 +0000 | [diff] [blame] | 1222 | tprintf("%ld, %s", pid, signame(tcp->u_arg[1])); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1223 | } | 
|  | 1224 | return 0; | 
|  | 1225 | } | 
|  | 1226 |  | 
| Roland McGrath | 8ffc352 | 2003-07-09 09:47:49 +0000 | [diff] [blame] | 1227 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1228 | sys_tgkill(struct tcb *tcp) | 
| Roland McGrath | 8ffc352 | 2003-07-09 09:47:49 +0000 | [diff] [blame] | 1229 | { | 
|  | 1230 | if (entering(tcp)) { | 
|  | 1231 | tprintf("%ld, %ld, %s", | 
|  | 1232 | tcp->u_arg[0], tcp->u_arg[1], signame(tcp->u_arg[2])); | 
|  | 1233 | } | 
|  | 1234 | return 0; | 
|  | 1235 | } | 
| Roland McGrath | 8ffc352 | 2003-07-09 09:47:49 +0000 | [diff] [blame] | 1236 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1237 | int | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1238 | sys_sigpending(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1239 | { | 
|  | 1240 | sigset_t sigset; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1241 |  | 
|  | 1242 | if (exiting(tcp)) { | 
|  | 1243 | if (syserror(tcp)) | 
|  | 1244 | tprintf("%#lx", tcp->u_arg[0]); | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1245 | else if (copy_sigset(tcp, tcp->u_arg[0], &sigset) < 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1246 | tprints("[?]"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1247 | else | 
| Wichert Akkerman | 4695657 | 1999-11-26 10:12:59 +0000 | [diff] [blame] | 1248 | printsigmask(&sigset, 0); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1249 | } | 
|  | 1250 | return 0; | 
|  | 1251 | } | 
|  | 1252 |  | 
| Denys Vlasenko | 1201426 | 2011-05-30 14:00:14 +0200 | [diff] [blame] | 1253 | int | 
|  | 1254 | sys_rt_sigprocmask(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1255 | { | 
|  | 1256 | sigset_t sigset; | 
|  | 1257 |  | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1258 | /* Note: arg[3] is the length of the sigset. */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1259 | if (entering(tcp)) { | 
|  | 1260 | printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???"); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1261 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1262 | if (!tcp->u_arg[1]) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1263 | tprints("NULL, "); | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1264 | else if (copy_sigset_len(tcp, tcp->u_arg[1], &sigset, tcp->u_arg[3]) < 0) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1265 | tprintf("%#lx, ", tcp->u_arg[1]); | 
|  | 1266 | else { | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1267 | printsigmask(&sigset, 1); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1268 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1269 | } | 
|  | 1270 | } | 
|  | 1271 | else { | 
|  | 1272 | if (!tcp->u_arg[2]) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1273 | tprints("NULL"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1274 | else if (syserror(tcp)) | 
|  | 1275 | tprintf("%#lx", tcp->u_arg[2]); | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1276 | else if (copy_sigset_len(tcp, tcp->u_arg[2], &sigset, tcp->u_arg[3]) < 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1277 | tprints("[?]"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1278 | else | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1279 | printsigmask(&sigset, 1); | 
| Nate Sammons | dab325a | 1999-03-29 23:33:35 +0000 | [diff] [blame] | 1280 | tprintf(", %lu", tcp->u_arg[3]); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1281 | } | 
|  | 1282 | return 0; | 
|  | 1283 | } | 
|  | 1284 |  | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1285 | /* Structure describing the action to be taken when a signal arrives.  */ | 
|  | 1286 | struct new_sigaction | 
|  | 1287 | { | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1288 | __sighandler_t __sa_handler; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1289 | unsigned long sa_flags; | 
|  | 1290 | void (*sa_restorer) (void); | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1291 | /* Kernel treats sa_mask as an array of longs. */ | 
|  | 1292 | unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1]; | 
|  | 1293 | }; | 
|  | 1294 | /* Same for i386-on-x86_64 and similar cases */ | 
|  | 1295 | struct new_sigaction32 | 
|  | 1296 | { | 
|  | 1297 | uint32_t __sa_handler; | 
|  | 1298 | uint32_t sa_flags; | 
|  | 1299 | uint32_t sa_restorer; | 
|  | 1300 | uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)]; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1301 | }; | 
|  | 1302 |  | 
| Roland McGrath | 5f20681 | 2008-08-20 01:59:40 +0000 | [diff] [blame] | 1303 | int | 
| Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 1304 | sys_rt_sigaction(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1305 | { | 
|  | 1306 | struct new_sigaction sa; | 
|  | 1307 | sigset_t sigset; | 
|  | 1308 | long addr; | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1309 | int r; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1310 |  | 
|  | 1311 | if (entering(tcp)) { | 
|  | 1312 | printsignal(tcp->u_arg[0]); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1313 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1314 | addr = tcp->u_arg[1]; | 
|  | 1315 | } else | 
|  | 1316 | addr = tcp->u_arg[2]; | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1317 |  | 
|  | 1318 | if (addr == 0) { | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1319 | tprints("NULL"); | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1320 | goto after_sa; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1321 | } | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1322 | if (!verbose(tcp)) { | 
|  | 1323 | tprintf("%#lx", addr); | 
|  | 1324 | goto after_sa; | 
|  | 1325 | } | 
|  | 1326 | #if SUPPORTED_PERSONALITIES > 1 | 
|  | 1327 | if (personality_wordsize[current_personality] != sizeof(sa.sa_flags) | 
|  | 1328 | && personality_wordsize[current_personality] == 4 | 
|  | 1329 | ) { | 
|  | 1330 | struct new_sigaction32 sa32; | 
|  | 1331 | r = umove(tcp, addr, &sa32); | 
|  | 1332 | if (r >= 0) { | 
|  | 1333 | memset(&sa, 0, sizeof(sa)); | 
|  | 1334 | sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler; | 
|  | 1335 | sa.sa_flags     = sa32.sa_flags; | 
|  | 1336 | sa.sa_restorer  = (void*)(unsigned long)sa32.sa_restorer; | 
|  | 1337 | /* Kernel treats sa_mask as an array of longs. | 
|  | 1338 | * For 32-bit process, "long" is uint32_t, thus, for example, | 
|  | 1339 | * 32th bit in sa_mask will end up as bit 0 in sa_mask[1]. | 
|  | 1340 | * But for (64-bit) kernel, 32th bit in sa_mask is | 
|  | 1341 | * 32th bit in 0th (64-bit) long! | 
|  | 1342 | * For little-endian, it's the same. | 
|  | 1343 | * For big-endian, we swap 32-bit words. | 
|  | 1344 | */ | 
|  | 1345 | sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32); | 
|  | 1346 | } | 
|  | 1347 | } else | 
|  | 1348 | #endif | 
|  | 1349 | { | 
|  | 1350 | r = umove(tcp, addr, &sa); | 
|  | 1351 | } | 
|  | 1352 | if (r < 0) { | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1353 | tprints("{...}"); | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1354 | goto after_sa; | 
|  | 1355 | } | 
| Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 1356 | /* Architectures using function pointers, like | 
|  | 1357 | * hppa, may need to manipulate the function pointer | 
|  | 1358 | * to compute the result of a comparison. However, | 
|  | 1359 | * the SA_HANDLER function pointer exists only in | 
|  | 1360 | * the address space of the traced process, and can't | 
|  | 1361 | * be manipulated by strace. In order to prevent the | 
|  | 1362 | * compiler from generating code to manipulate | 
|  | 1363 | * SA_HANDLER we cast the function pointers to long. */ | 
|  | 1364 | if ((long)sa.__sa_handler == (long)SIG_ERR) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1365 | tprints("{SIG_ERR, "); | 
| Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 1366 | else if ((long)sa.__sa_handler == (long)SIG_DFL) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1367 | tprints("{SIG_DFL, "); | 
| Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 1368 | else if ((long)sa.__sa_handler == (long)SIG_IGN) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1369 | tprints("{SIG_IGN, "); | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1370 | else | 
|  | 1371 | tprintf("{%#lx, ", (long) sa.__sa_handler); | 
|  | 1372 | /* Questionable code below. | 
|  | 1373 | * Kernel won't handle sys_rt_sigaction | 
|  | 1374 | * with wrong sigset size (just returns EINVAL) | 
|  | 1375 | * therefore tcp->u_arg[3(4)] _must_ be NSIG / 8 here, | 
|  | 1376 | * and we always use smaller memcpy. */ | 
|  | 1377 | sigemptyset(&sigset); | 
|  | 1378 | #ifdef LINUXSPARC | 
|  | 1379 | if (tcp->u_arg[4] <= sizeof(sigset)) | 
|  | 1380 | memcpy(&sigset, &sa.sa_mask, tcp->u_arg[4]); | 
|  | 1381 | #else | 
|  | 1382 | if (tcp->u_arg[3] <= sizeof(sigset)) | 
|  | 1383 | memcpy(&sigset, &sa.sa_mask, tcp->u_arg[3]); | 
|  | 1384 | #endif | 
|  | 1385 | else | 
|  | 1386 | memcpy(&sigset, &sa.sa_mask, sizeof(sigset)); | 
|  | 1387 | printsigmask(&sigset, 1); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1388 | tprints(", "); | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1389 | printflags(sigact_flags, sa.sa_flags, "SA_???"); | 
|  | 1390 | #ifdef SA_RESTORER | 
|  | 1391 | if (sa.sa_flags & SA_RESTORER) | 
|  | 1392 | tprintf(", %p", sa.sa_restorer); | 
|  | 1393 | #endif | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1394 | tprints("}"); | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1395 |  | 
|  | 1396 | after_sa: | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1397 | if (entering(tcp)) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1398 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1399 | else | 
| Wichert Akkerman | dacfb6e | 1999-06-03 14:21:07 +0000 | [diff] [blame] | 1400 | #ifdef LINUXSPARC | 
|  | 1401 | tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]); | 
|  | 1402 | #elif defined(ALPHA) | 
|  | 1403 | tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]); | 
|  | 1404 | #else | 
| Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 1405 | tprintf(", %lu", tcp->u_arg[3]); | 
| Wichert Akkerman | dacfb6e | 1999-06-03 14:21:07 +0000 | [diff] [blame] | 1406 | #endif | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1407 | return 0; | 
|  | 1408 | } | 
|  | 1409 |  | 
| Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 1410 | int | 
|  | 1411 | sys_rt_sigpending(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1412 | { | 
|  | 1413 | sigset_t sigset; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1414 |  | 
|  | 1415 | if (exiting(tcp)) { | 
|  | 1416 | if (syserror(tcp)) | 
|  | 1417 | tprintf("%#lx", tcp->u_arg[0]); | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1418 | else if (copy_sigset_len(tcp, tcp->u_arg[0], | 
|  | 1419 | &sigset, tcp->u_arg[1]) < 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1420 | tprints("[?]"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1421 | else | 
| Wichert Akkerman | 4695657 | 1999-11-26 10:12:59 +0000 | [diff] [blame] | 1422 | printsigmask(&sigset, 1); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1423 | } | 
|  | 1424 | return 0; | 
|  | 1425 | } | 
| Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 1426 |  | 
|  | 1427 | int | 
|  | 1428 | sys_rt_sigsuspend(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1429 | { | 
|  | 1430 | if (entering(tcp)) { | 
|  | 1431 | sigset_t sigm; | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1432 | if (copy_sigset_len(tcp, tcp->u_arg[0], &sigm, tcp->u_arg[1]) < 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1433 | tprints("[?]"); | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1434 | else | 
|  | 1435 | printsigmask(&sigm, 1); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1436 | } | 
|  | 1437 | return 0; | 
|  | 1438 | } | 
| Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 1439 |  | 
|  | 1440 | int | 
|  | 1441 | sys_rt_sigqueueinfo(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1442 | { | 
|  | 1443 | if (entering(tcp)) { | 
|  | 1444 | siginfo_t si; | 
|  | 1445 | tprintf("%lu, ", tcp->u_arg[0]); | 
|  | 1446 | printsignal(tcp->u_arg[1]); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1447 | tprints(", "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1448 | if (umove(tcp, tcp->u_arg[2], &si) < 0) | 
|  | 1449 | tprintf("%#lx", tcp->u_arg[2]); | 
|  | 1450 | else | 
| Denys Vlasenko | f535b54 | 2009-01-13 18:30:55 +0000 | [diff] [blame] | 1451 | printsiginfo(&si, verbose(tcp)); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1452 | } | 
|  | 1453 | return 0; | 
|  | 1454 | } | 
|  | 1455 |  | 
| Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 1456 | int sys_rt_sigtimedwait(struct tcb *tcp) | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1457 | { | 
|  | 1458 | if (entering(tcp)) { | 
|  | 1459 | sigset_t sigset; | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1460 |  | 
| Roland McGrath | a39c5a1 | 2002-12-17 05:10:37 +0000 | [diff] [blame] | 1461 | if (copy_sigset_len(tcp, tcp->u_arg[0], | 
| Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 1462 | &sigset, tcp->u_arg[3]) < 0) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1463 | tprints("[?]"); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1464 | else | 
| Wichert Akkerman | 4695657 | 1999-11-26 10:12:59 +0000 | [diff] [blame] | 1465 | printsigmask(&sigset, 1); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1466 | tprints(", "); | 
| Denys Vlasenko | b1a78cf | 2009-04-15 13:31:59 +0000 | [diff] [blame] | 1467 | /* This is the only "return" parameter, */ | 
|  | 1468 | if (tcp->u_arg[1] != 0) | 
|  | 1469 | return 0; | 
|  | 1470 | /* ... if it's NULL, can decode all on entry */ | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1471 | tprints("NULL, "); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1472 | } | 
| Denys Vlasenko | b1a78cf | 2009-04-15 13:31:59 +0000 | [diff] [blame] | 1473 | else if (tcp->u_arg[1] != 0) { | 
|  | 1474 | /* syscall exit, and u_arg[1] wasn't NULL */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1475 | if (syserror(tcp)) | 
| Denys Vlasenko | b1a78cf | 2009-04-15 13:31:59 +0000 | [diff] [blame] | 1476 | tprintf("%#lx, ", tcp->u_arg[1]); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1477 | else { | 
|  | 1478 | siginfo_t si; | 
|  | 1479 | if (umove(tcp, tcp->u_arg[1], &si) < 0) | 
| Denys Vlasenko | b1a78cf | 2009-04-15 13:31:59 +0000 | [diff] [blame] | 1480 | tprintf("%#lx, ", tcp->u_arg[1]); | 
|  | 1481 | else { | 
| Denys Vlasenko | f535b54 | 2009-01-13 18:30:55 +0000 | [diff] [blame] | 1482 | printsiginfo(&si, verbose(tcp)); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1483 | tprints(", "); | 
| Denys Vlasenko | b1a78cf | 2009-04-15 13:31:59 +0000 | [diff] [blame] | 1484 | } | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1485 | } | 
|  | 1486 | } | 
| Denys Vlasenko | b1a78cf | 2009-04-15 13:31:59 +0000 | [diff] [blame] | 1487 | else { | 
|  | 1488 | /* syscall exit, and u_arg[1] was NULL */ | 
|  | 1489 | return 0; | 
|  | 1490 | } | 
|  | 1491 | print_timespec(tcp, tcp->u_arg[2]); | 
|  | 1492 | tprintf(", %d", (int) tcp->u_arg[3]); | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1493 | return 0; | 
|  | 1494 | }; | 
|  | 1495 |  | 
| Roland McGrath | 79dcd7a | 2006-01-12 22:34:50 +0000 | [diff] [blame] | 1496 | int | 
| Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 1497 | sys_restart_syscall(struct tcb *tcp) | 
| Roland McGrath | 79dcd7a | 2006-01-12 22:34:50 +0000 | [diff] [blame] | 1498 | { | 
|  | 1499 | if (entering(tcp)) | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1500 | tprints("<... resuming interrupted call ...>"); | 
| Roland McGrath | 79dcd7a | 2006-01-12 22:34:50 +0000 | [diff] [blame] | 1501 | return 0; | 
|  | 1502 | } | 
|  | 1503 |  | 
| Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 1504 | static int | 
|  | 1505 | do_signalfd(struct tcb *tcp, int flags_arg) | 
| Roland McGrath | f46ccd3 | 2007-08-02 01:15:59 +0000 | [diff] [blame] | 1506 | { | 
|  | 1507 | if (entering(tcp)) { | 
| Dmitry V. Levin | 3138213 | 2011-03-04 05:08:02 +0300 | [diff] [blame] | 1508 | printfd(tcp, tcp->u_arg[0]); | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1509 | tprints(", "); | 
| Roland McGrath | f46ccd3 | 2007-08-02 01:15:59 +0000 | [diff] [blame] | 1510 | print_sigset(tcp, tcp->u_arg[1], 1); | 
| Dmitry V. Levin | 9d2ee3d | 2009-10-05 13:45:19 +0000 | [diff] [blame] | 1511 | tprintf(", %lu", tcp->u_arg[2]); | 
| Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 1512 | if (flags_arg >= 0) { | 
| Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 1513 | tprints(", "); | 
| Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 1514 | printflags(open_mode_flags, tcp->u_arg[flags_arg], "O_???"); | 
|  | 1515 | } | 
| Roland McGrath | f46ccd3 | 2007-08-02 01:15:59 +0000 | [diff] [blame] | 1516 | } | 
|  | 1517 | return 0; | 
|  | 1518 | } | 
| Dmitry V. Levin | 4371b10 | 2008-11-10 22:53:02 +0000 | [diff] [blame] | 1519 |  | 
|  | 1520 | int | 
|  | 1521 | sys_signalfd(struct tcb *tcp) | 
|  | 1522 | { | 
|  | 1523 | return do_signalfd(tcp, -1); | 
|  | 1524 | } | 
|  | 1525 |  | 
|  | 1526 | int | 
|  | 1527 | sys_signalfd4(struct tcb *tcp) | 
|  | 1528 | { | 
|  | 1529 | return do_signalfd(tcp, 3); | 
|  | 1530 | } |