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