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