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