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