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" |
Dmitry V. Levin | 0e946ab | 2015-07-17 23:56:54 +0000 | [diff] [blame] | 35 | #include <signal.h> |
Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 36 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 37 | #ifndef NSIG |
Dmitry V. Levin | 74219ea | 2015-03-06 01:47:18 +0000 | [diff] [blame] | 38 | # warning NSIG is not defined, using 32 |
Denys Vlasenko | 8470374 | 2012-02-25 02:38:52 +0100 | [diff] [blame] | 39 | # define NSIG 32 |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 40 | #elif NSIG < 32 |
Dmitry V. Levin | 74219ea | 2015-03-06 01:47:18 +0000 | [diff] [blame] | 41 | # error NSIG < 32 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 42 | #endif |
Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 43 | |
Roland McGrath | 2638cb4 | 2002-12-15 23:58:41 +0000 | [diff] [blame] | 44 | /* 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] | 45 | used by the implementation. So we define it here. */ |
Dmitry V. Levin | 5c7f627 | 2014-02-08 00:26:06 +0000 | [diff] [blame] | 46 | #ifndef SA_RESTORER |
| 47 | # ifdef ASM_SA_RESTORER |
| 48 | # define SA_RESTORER ASM_SA_RESTORER |
Roland McGrath | 2638cb4 | 2002-12-15 23:58:41 +0000 | [diff] [blame] | 49 | # endif |
| 50 | #endif |
| 51 | |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 52 | /* |
| 53 | * Some architectures define SA_RESTORER in their headers, |
| 54 | * but do not actually have sa_restorer. |
| 55 | * |
| 56 | * Some architectures, otherwise, do not define SA_RESTORER in their headers, |
| 57 | * but actually have sa_restorer. |
| 58 | */ |
| 59 | #ifdef SA_RESTORER |
| 60 | # if defined HPPA || defined IA64 |
| 61 | # define HAVE_SA_RESTORER 0 |
| 62 | # else |
| 63 | # define HAVE_SA_RESTORER 1 |
| 64 | # endif |
| 65 | #else /* !SA_RESTORER */ |
Andreas Schwab | a897136 | 2015-03-11 14:15:34 +0100 | [diff] [blame] | 66 | # if defined SPARC || defined SPARC64 || defined M68K |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 67 | # define HAVE_SA_RESTORER 1 |
| 68 | # else |
| 69 | # define HAVE_SA_RESTORER 0 |
| 70 | # endif |
Mike Frysinger | d632e10 | 2014-08-09 09:04:18 -0400 | [diff] [blame] | 71 | #endif |
| 72 | |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 73 | #include "xlat/sigact_flags.h" |
Dmitry V. Levin | 0ed617b | 2014-04-25 23:30:54 +0000 | [diff] [blame] | 74 | #include "xlat/sigprocmaskcmds.h" |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 75 | |
Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 76 | /* Anonymous realtime signals. */ |
Dmitry V. Levin | 59f63d3 | 2015-03-05 05:03:41 +0000 | [diff] [blame] | 77 | #ifndef ASM_SIGRTMIN |
| 78 | /* Linux kernel >= 3.18 defines SIGRTMIN to 32 on all architectures. */ |
| 79 | # define ASM_SIGRTMIN 32 |
Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 80 | #endif |
Dmitry V. Levin | 59f63d3 | 2015-03-05 05:03:41 +0000 | [diff] [blame] | 81 | #ifndef ASM_SIGRTMAX |
| 82 | /* Under glibc 2.1, SIGRTMAX et al are functions, but __SIGRTMAX is a |
| 83 | constant. This is what we want. Otherwise, just use SIGRTMAX. */ |
| 84 | # ifdef SIGRTMAX |
| 85 | # ifndef __SIGRTMAX |
| 86 | # define __SIGRTMAX SIGRTMAX |
| 87 | # endif |
| 88 | # endif |
| 89 | # ifdef __SIGRTMAX |
| 90 | # define ASM_SIGRTMAX __SIGRTMAX |
| 91 | # endif |
Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 92 | #endif |
| 93 | |
Denys Vlasenko | d9560c1 | 2011-08-19 17:41:28 +0200 | [diff] [blame] | 94 | /* Note on the size of sigset_t: |
| 95 | * |
| 96 | * In glibc, sigset_t is an array with space for 1024 bits (!), |
| 97 | * even though all arches supported by Linux have only 64 signals |
| 98 | * except MIPS, which has 128. IOW, it is 128 bytes long. |
| 99 | * |
| 100 | * In-kernel sigset_t is sized correctly (it is either 64 or 128 bit long). |
| 101 | * However, some old syscall return only 32 lower bits (one word). |
| 102 | * Example: sys_sigpending vs sys_rt_sigpending. |
| 103 | * |
| 104 | * Be aware of this fact when you try to |
| 105 | * memcpy(&tcp->u_arg[1], &something, sizeof(sigset_t)) |
| 106 | * - sizeof(sigset_t) is much bigger than you think, |
| 107 | * it may overflow tcp->u_arg[] array, and it may try to copy more data |
| 108 | * than is really available in <something>. |
| 109 | * Similarly, |
| 110 | * umoven(tcp, addr, sizeof(sigset_t), &sigset) |
| 111 | * may be a bad idea: it'll try to read much more data than needed |
| 112 | * to fetch a sigset_t. |
| 113 | * Use (NSIG / 8) as a size instead. |
| 114 | */ |
| 115 | |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 116 | const char * |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 117 | signame(const int sig) |
Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 118 | { |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 119 | static char buf[sizeof("SIGRT_%u") + sizeof(int)*3]; |
Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 120 | |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 121 | if (sig >= 0) { |
| 122 | const unsigned int s = sig; |
| 123 | |
| 124 | if (s < nsignals) |
| 125 | return signalent[s]; |
Dmitry V. Levin | 59f63d3 | 2015-03-05 05:03:41 +0000 | [diff] [blame] | 126 | #ifdef ASM_SIGRTMAX |
Dmitry V. Levin | 07572c6 | 2016-01-12 00:04:15 +0000 | [diff] [blame] | 127 | if (s >= ASM_SIGRTMIN && s <= (unsigned int) ASM_SIGRTMAX) { |
Dmitry V. Levin | 59f63d3 | 2015-03-05 05:03:41 +0000 | [diff] [blame] | 128 | sprintf(buf, "SIGRT_%u", s - ASM_SIGRTMIN); |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 129 | return buf; |
| 130 | } |
Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 131 | #endif |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 132 | } |
Denys Vlasenko | 041b3ee | 2011-08-18 12:48:56 +0200 | [diff] [blame] | 133 | sprintf(buf, "%d", sig); |
| 134 | return buf; |
Nate Sammons | ce780fc | 1999-03-29 23:23:13 +0000 | [diff] [blame] | 135 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 136 | |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 137 | static unsigned int |
| 138 | popcount32(const uint32_t *a, unsigned int size) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 139 | { |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 140 | unsigned int count = 0; |
Denys Vlasenko | d9560c1 | 2011-08-19 17:41:28 +0200 | [diff] [blame] | 141 | |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 142 | for (; size; ++a, --size) { |
| 143 | uint32_t x = *a; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 144 | |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 145 | #ifdef HAVE___BUILTIN_POPCOUNT |
| 146 | count += __builtin_popcount(x); |
Denys Vlasenko | a877379 | 2013-07-18 20:42:41 +0200 | [diff] [blame] | 147 | #else |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 148 | for (; x; ++count) |
| 149 | x &= x - 1; |
Nate Sammons | 4a12143 | 1999-04-06 01:19:39 +0000 | [diff] [blame] | 150 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 151 | } |
Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 152 | |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 153 | return count; |
| 154 | } |
| 155 | |
Dmitry V. Levin | 74219ea | 2015-03-06 01:47:18 +0000 | [diff] [blame] | 156 | const char * |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 157 | sprintsigmask_n(const char *prefix, const void *sig_mask, unsigned int bytes) |
| 158 | { |
| 159 | /* |
| 160 | * The maximum number of signal names to be printed is NSIG * 2 / 3. |
| 161 | * Most of signal names have length 7, |
| 162 | * average length of signal names is less than 7. |
| 163 | * The length of prefix string does not exceed 16. |
| 164 | */ |
| 165 | static char outstr[128 + 8 * (NSIG * 2 / 3)]; |
| 166 | |
| 167 | char *s; |
| 168 | const uint32_t *mask; |
| 169 | uint32_t inverted_mask[NSIG / 32]; |
| 170 | unsigned int size; |
| 171 | int i; |
| 172 | char sep; |
| 173 | |
| 174 | s = stpcpy(outstr, prefix); |
| 175 | |
| 176 | mask = sig_mask; |
| 177 | /* length of signal mask in 4-byte words */ |
| 178 | size = (bytes >= NSIG / 8) ? NSIG / 32 : (bytes + 3) / 4; |
| 179 | |
| 180 | /* check whether 2/3 or more bits are set */ |
| 181 | if (popcount32(mask, size) >= size * 32 * 2 / 3) { |
| 182 | /* show those signals that are NOT in the mask */ |
| 183 | unsigned int j; |
| 184 | for (j = 0; j < size; ++j) |
| 185 | inverted_mask[j] = ~mask[j]; |
| 186 | mask = inverted_mask; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 187 | *s++ = '~'; |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 188 | } |
Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 189 | |
| 190 | sep = '['; |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 191 | for (i = 0; (i = next_set_bit(mask, i, size * 32)) >= 0; ) { |
| 192 | ++i; |
| 193 | *s++ = sep; |
Dmitry V. Levin | 3ed5d02 | 2014-09-10 13:46:04 +0000 | [diff] [blame] | 194 | if ((unsigned) i < nsignals) { |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 195 | s = stpcpy(s, signalent[i] + 3); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 196 | } |
Dmitry V. Levin | 59f63d3 | 2015-03-05 05:03:41 +0000 | [diff] [blame] | 197 | #ifdef ASM_SIGRTMAX |
| 198 | else if (i >= ASM_SIGRTMIN && i <= ASM_SIGRTMAX) { |
| 199 | s += sprintf(s, "RT_%u", i - ASM_SIGRTMIN); |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 200 | } |
| 201 | #endif |
| 202 | else { |
| 203 | s += sprintf(s, "%u", i); |
| 204 | } |
| 205 | sep = ' '; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 206 | } |
Denys Vlasenko | 4f3df07 | 2012-01-29 22:38:35 +0100 | [diff] [blame] | 207 | if (sep == '[') |
| 208 | *s++ = sep; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 209 | *s++ = ']'; |
| 210 | *s = '\0'; |
| 211 | return outstr; |
| 212 | } |
| 213 | |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 214 | #define sprintsigmask_val(prefix, mask) \ |
| 215 | sprintsigmask_n((prefix), &(mask), sizeof(mask)) |
| 216 | |
| 217 | #define tprintsigmask_val(prefix, mask) \ |
| 218 | tprints(sprintsigmask_n((prefix), &(mask), sizeof(mask))) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 219 | |
| 220 | void |
Denys Vlasenko | eccc48c | 2011-06-09 01:28:11 +0200 | [diff] [blame] | 221 | printsignal(int nr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 222 | { |
Denys Vlasenko | 5940e65 | 2011-09-01 09:55:05 +0200 | [diff] [blame] | 223 | tprints(signame(nr)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 224 | } |
| 225 | |
Dmitry V. Levin | 1165620 | 2016-02-18 00:08:30 +0000 | [diff] [blame] | 226 | static void |
| 227 | print_sigset_addr_len_limit(struct tcb *tcp, long addr, long len, long min_len) |
Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 228 | { |
Dmitry V. Levin | 1165620 | 2016-02-18 00:08:30 +0000 | [diff] [blame] | 229 | /* |
| 230 | * Here len is usually equal to NSIG / 8 or current_wordsize. |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 231 | * But we code this defensively: |
| 232 | */ |
Dmitry V. Levin | 1165620 | 2016-02-18 00:08:30 +0000 | [diff] [blame] | 233 | if (len < min_len || len > NSIG / 8) { |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 234 | printaddr(addr); |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 235 | return; |
| 236 | } |
Dmitry V. Levin | 1165620 | 2016-02-18 00:08:30 +0000 | [diff] [blame] | 237 | int mask[NSIG / 8 / sizeof(int)] = {}; |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 238 | if (umoven_or_printaddr(tcp, addr, len, mask)) |
| 239 | return; |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 240 | tprints(sprintsigmask_n("", mask, len)); |
Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 241 | } |
| 242 | |
Dmitry V. Levin | 1165620 | 2016-02-18 00:08:30 +0000 | [diff] [blame] | 243 | void |
| 244 | print_sigset_addr_len(struct tcb *tcp, long addr, long len) |
| 245 | { |
| 246 | print_sigset_addr_len_limit(tcp, addr, len, current_wordsize); |
| 247 | } |
| 248 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 249 | SYS_FUNC(sigsetmask) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 250 | { |
| 251 | if (entering(tcp)) { |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 252 | tprintsigmask_val("", tcp->u_arg[0]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 253 | } |
| 254 | else if (!syserror(tcp)) { |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 255 | tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 256 | return RVAL_HEX | RVAL_STR; |
| 257 | } |
| 258 | return 0; |
| 259 | } |
| 260 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 261 | #ifdef HAVE_SIGACTION |
| 262 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 263 | struct old_sigaction { |
Denys Vlasenko | 86d9484 | 2013-02-08 12:59:13 +0100 | [diff] [blame] | 264 | /* sa_handler may be a libc #define, need to use other name: */ |
Chris Dearman | 2b4bb1c | 2013-12-09 19:58:42 -0800 | [diff] [blame] | 265 | #ifdef MIPS |
| 266 | unsigned int sa_flags; |
| 267 | void (*__sa_handler)(int); |
| 268 | /* Kernel treats sa_mask as an array of longs. */ |
| 269 | unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1]; |
| 270 | #else |
Denys Vlasenko | 86d9484 | 2013-02-08 12:59:13 +0100 | [diff] [blame] | 271 | void (*__sa_handler)(int); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 272 | unsigned long sa_mask; |
| 273 | unsigned long sa_flags; |
Chris Dearman | 2b4bb1c | 2013-12-09 19:58:42 -0800 | [diff] [blame] | 274 | #endif /* !MIPS */ |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 275 | #if HAVE_SA_RESTORER |
Vicente Olivert Riera | c3a5c01 | 2014-09-11 20:05:18 +0100 | [diff] [blame] | 276 | void (*sa_restorer)(void); |
| 277 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 278 | }; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 279 | |
Elliott Hughes | 458b3f2 | 2014-02-28 23:21:35 +0000 | [diff] [blame] | 280 | struct old_sigaction32 { |
| 281 | /* sa_handler may be a libc #define, need to use other name: */ |
| 282 | uint32_t __sa_handler; |
| 283 | uint32_t sa_mask; |
| 284 | uint32_t sa_flags; |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 285 | #if HAVE_SA_RESTORER |
Elliott Hughes | 458b3f2 | 2014-02-28 23:21:35 +0000 | [diff] [blame] | 286 | uint32_t sa_restorer; |
Vicente Olivert Riera | c3a5c01 | 2014-09-11 20:05:18 +0100 | [diff] [blame] | 287 | #endif |
Elliott Hughes | 458b3f2 | 2014-02-28 23:21:35 +0000 | [diff] [blame] | 288 | }; |
| 289 | |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 290 | static void |
| 291 | decode_old_sigaction(struct tcb *tcp, long addr) |
| 292 | { |
| 293 | struct old_sigaction sa; |
Elliott Hughes | 458b3f2 | 2014-02-28 23:21:35 +0000 | [diff] [blame] | 294 | |
| 295 | #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4 |
| 296 | if (current_wordsize != sizeof(sa.__sa_handler) && current_wordsize == 4) { |
| 297 | struct old_sigaction32 sa32; |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 298 | |
| 299 | if (umove_or_printaddr(tcp, addr, &sa32)) |
| 300 | return; |
| 301 | |
| 302 | memset(&sa, 0, sizeof(sa)); |
| 303 | sa.__sa_handler = (void*)(uintptr_t)sa32.__sa_handler; |
| 304 | sa.sa_flags = sa32.sa_flags; |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 305 | #if HAVE_SA_RESTORER && defined SA_RESTORER |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 306 | sa.sa_restorer = (void*)(uintptr_t)sa32.sa_restorer; |
Vicente Olivert Riera | c3a5c01 | 2014-09-11 20:05:18 +0100 | [diff] [blame] | 307 | #endif |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 308 | sa.sa_mask = sa32.sa_mask; |
Elliott Hughes | 458b3f2 | 2014-02-28 23:21:35 +0000 | [diff] [blame] | 309 | } else |
| 310 | #endif |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 311 | if (umove_or_printaddr(tcp, addr, &sa)) |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 312 | return; |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 313 | |
| 314 | /* Architectures using function pointers, like |
| 315 | * hppa, may need to manipulate the function pointer |
| 316 | * to compute the result of a comparison. However, |
| 317 | * the __sa_handler function pointer exists only in |
| 318 | * the address space of the traced process, and can't |
| 319 | * be manipulated by strace. In order to prevent the |
| 320 | * compiler from generating code to manipulate |
| 321 | * __sa_handler we cast the function pointers to long. */ |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 322 | tprints("{"); |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 323 | if ((long)sa.__sa_handler == (long)SIG_ERR) |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 324 | tprints("SIG_ERR"); |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 325 | else if ((long)sa.__sa_handler == (long)SIG_DFL) |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 326 | tprints("SIG_DFL"); |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 327 | else if ((long)sa.__sa_handler == (long)SIG_IGN) |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 328 | tprints("SIG_IGN"); |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 329 | else |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 330 | printaddr((long) sa.__sa_handler); |
| 331 | tprints(", "); |
Chris Dearman | 2b4bb1c | 2013-12-09 19:58:42 -0800 | [diff] [blame] | 332 | #ifdef MIPS |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 333 | tprintsigmask_addr("", sa.sa_mask); |
Chris Dearman | 2b4bb1c | 2013-12-09 19:58:42 -0800 | [diff] [blame] | 334 | #else |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 335 | tprintsigmask_val("", sa.sa_mask); |
Chris Dearman | 2b4bb1c | 2013-12-09 19:58:42 -0800 | [diff] [blame] | 336 | #endif |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 337 | tprints(", "); |
| 338 | printflags(sigact_flags, sa.sa_flags, "SA_???"); |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 339 | #if HAVE_SA_RESTORER && defined SA_RESTORER |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 340 | if (sa.sa_flags & SA_RESTORER) |
| 341 | tprintf(", %p", sa.sa_restorer); |
| 342 | #endif |
| 343 | tprints("}"); |
| 344 | } |
| 345 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 346 | SYS_FUNC(sigaction) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 347 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 348 | if (entering(tcp)) { |
| 349 | printsignal(tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 350 | tprints(", "); |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 351 | decode_old_sigaction(tcp, tcp->u_arg[1]); |
| 352 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 353 | } else |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 354 | decode_old_sigaction(tcp, tcp->u_arg[2]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 355 | return 0; |
| 356 | } |
| 357 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 358 | SYS_FUNC(signal) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 359 | { |
| 360 | if (entering(tcp)) { |
| 361 | printsignal(tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 362 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 363 | switch (tcp->u_arg[1]) { |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 364 | case (long) SIG_ERR: |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 365 | tprints("SIG_ERR"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 366 | break; |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 367 | case (long) SIG_DFL: |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 368 | tprints("SIG_DFL"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 369 | break; |
Jan Kratochvil | 1f94271 | 2008-08-06 21:38:52 +0000 | [diff] [blame] | 370 | case (long) SIG_IGN: |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 371 | tprints("SIG_IGN"); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 372 | break; |
| 373 | default: |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 374 | printaddr(tcp->u_arg[1]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 375 | } |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 376 | return 0; |
| 377 | } |
Dmitry V. Levin | 21a7534 | 2008-09-03 01:22:18 +0000 | [diff] [blame] | 378 | else if (!syserror(tcp)) { |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 379 | switch (tcp->u_rval) { |
Denys Vlasenko | 989ebc9 | 2012-03-17 04:42:07 +0100 | [diff] [blame] | 380 | case (long) SIG_ERR: |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 381 | tcp->auxstr = "SIG_ERR"; break; |
Denys Vlasenko | 989ebc9 | 2012-03-17 04:42:07 +0100 | [diff] [blame] | 382 | case (long) SIG_DFL: |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 383 | tcp->auxstr = "SIG_DFL"; break; |
Denys Vlasenko | 989ebc9 | 2012-03-17 04:42:07 +0100 | [diff] [blame] | 384 | case (long) SIG_IGN: |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 385 | tcp->auxstr = "SIG_IGN"; break; |
Denys Vlasenko | 989ebc9 | 2012-03-17 04:42:07 +0100 | [diff] [blame] | 386 | default: |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 387 | tcp->auxstr = NULL; |
| 388 | } |
| 389 | return RVAL_HEX | RVAL_STR; |
| 390 | } |
Dmitry V. Levin | 21a7534 | 2008-09-03 01:22:18 +0000 | [diff] [blame] | 391 | return 0; |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 394 | #endif /* HAVE_SIGACTION */ |
| 395 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 396 | SYS_FUNC(siggetmask) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 397 | { |
| 398 | if (exiting(tcp)) { |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 399 | tcp->auxstr = sprintsigmask_val("mask ", tcp->u_rval); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 400 | } |
| 401 | return RVAL_HEX | RVAL_STR; |
| 402 | } |
| 403 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 404 | SYS_FUNC(sigsuspend) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 405 | { |
Dmitry V. Levin | 0e45b50 | 2015-07-17 00:51:45 +0000 | [diff] [blame] | 406 | tprintsigmask_val("", tcp->u_arg[2]); |
| 407 | |
| 408 | return RVAL_DECODED; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 411 | #ifdef HAVE_SIGACTION |
| 412 | |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 413 | /* "Old" sigprocmask, which operates with word-sized signal masks */ |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 414 | SYS_FUNC(sigprocmask) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 415 | { |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 416 | # ifdef ALPHA |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 417 | if (entering(tcp)) { |
Mike Frysinger | dde045c | 2012-03-15 00:45:33 -0400 | [diff] [blame] | 418 | /* |
| 419 | * Alpha/OSF is different: it doesn't pass in two pointers, |
| 420 | * but rather passes in the new bitmask as an argument and |
| 421 | * then returns the old bitmask. This "works" because we |
| 422 | * only have 64 signals to worry about. If you want more, |
| 423 | * use of the rt_sigprocmask syscall is required. |
| 424 | * Alpha: |
| 425 | * old = osf_sigprocmask(how, new); |
| 426 | * Everyone else: |
| 427 | * ret = sigprocmask(how, &new, &old, ...); |
| 428 | */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 429 | printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???"); |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 430 | tprintsigmask_val(", ", tcp->u_arg[1]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 431 | } |
| 432 | else if (!syserror(tcp)) { |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 433 | tcp->auxstr = sprintsigmask_val("old mask ", tcp->u_rval); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 434 | return RVAL_HEX | RVAL_STR; |
| 435 | } |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 436 | # else /* !ALPHA */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 437 | if (entering(tcp)) { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 438 | printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 439 | tprints(", "); |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 440 | print_sigset_addr_len(tcp, tcp->u_arg[1], current_wordsize); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 441 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 442 | } |
| 443 | else { |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 444 | print_sigset_addr_len(tcp, tcp->u_arg[2], current_wordsize); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 445 | } |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 446 | # endif /* !ALPHA */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 447 | return 0; |
| 448 | } |
| 449 | |
| 450 | #endif /* HAVE_SIGACTION */ |
| 451 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 452 | SYS_FUNC(kill) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 453 | { |
Dmitry V. Levin | 0e45b50 | 2015-07-17 00:51:45 +0000 | [diff] [blame] | 454 | tprintf("%ld, %s", |
| 455 | widen_to_long(tcp->u_arg[0]), |
| 456 | signame(tcp->u_arg[1])); |
| 457 | |
| 458 | return RVAL_DECODED; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 459 | } |
| 460 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 461 | SYS_FUNC(tgkill) |
Roland McGrath | 8ffc352 | 2003-07-09 09:47:49 +0000 | [diff] [blame] | 462 | { |
Dmitry V. Levin | 0e45b50 | 2015-07-17 00:51:45 +0000 | [diff] [blame] | 463 | tprintf("%ld, %ld, %s", |
| 464 | widen_to_long(tcp->u_arg[0]), |
| 465 | widen_to_long(tcp->u_arg[1]), |
| 466 | signame(tcp->u_arg[2])); |
| 467 | |
| 468 | return RVAL_DECODED; |
Roland McGrath | 8ffc352 | 2003-07-09 09:47:49 +0000 | [diff] [blame] | 469 | } |
Roland McGrath | 8ffc352 | 2003-07-09 09:47:49 +0000 | [diff] [blame] | 470 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 471 | SYS_FUNC(sigpending) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 472 | { |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 473 | if (exiting(tcp)) |
| 474 | print_sigset_addr_len(tcp, tcp->u_arg[0], current_wordsize); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 475 | return 0; |
| 476 | } |
| 477 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 478 | SYS_FUNC(rt_sigprocmask) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 479 | { |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 480 | /* 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] | 481 | if (entering(tcp)) { |
| 482 | printxval(sigprocmaskcmds, tcp->u_arg[0], "SIG_???"); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 483 | tprints(", "); |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 484 | print_sigset_addr_len(tcp, tcp->u_arg[1], tcp->u_arg[3]); |
| 485 | tprints(", "); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 486 | } |
| 487 | else { |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 488 | 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] | 489 | tprintf(", %lu", tcp->u_arg[3]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 490 | } |
| 491 | return 0; |
| 492 | } |
| 493 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 494 | /* Structure describing the action to be taken when a signal arrives. */ |
| 495 | struct new_sigaction |
| 496 | { |
Denys Vlasenko | 86d9484 | 2013-02-08 12:59:13 +0100 | [diff] [blame] | 497 | /* sa_handler may be a libc #define, need to use other name: */ |
Chris Dearman | 2b4bb1c | 2013-12-09 19:58:42 -0800 | [diff] [blame] | 498 | #ifdef MIPS |
| 499 | unsigned int sa_flags; |
| 500 | void (*__sa_handler)(int); |
| 501 | #else |
Denys Vlasenko | 86d9484 | 2013-02-08 12:59:13 +0100 | [diff] [blame] | 502 | void (*__sa_handler)(int); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 503 | unsigned long sa_flags; |
Chris Dearman | 2b4bb1c | 2013-12-09 19:58:42 -0800 | [diff] [blame] | 504 | #endif /* !MIPS */ |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 505 | #if HAVE_SA_RESTORER |
Vicente Olivert Riera | c3a5c01 | 2014-09-11 20:05:18 +0100 | [diff] [blame] | 506 | void (*sa_restorer)(void); |
| 507 | #endif |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 508 | /* Kernel treats sa_mask as an array of longs. */ |
| 509 | unsigned long sa_mask[NSIG / sizeof(long) ? NSIG / sizeof(long) : 1]; |
| 510 | }; |
| 511 | /* Same for i386-on-x86_64 and similar cases */ |
| 512 | struct new_sigaction32 |
| 513 | { |
| 514 | uint32_t __sa_handler; |
| 515 | uint32_t sa_flags; |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 516 | #if HAVE_SA_RESTORER |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 517 | uint32_t sa_restorer; |
Vicente Olivert Riera | c3a5c01 | 2014-09-11 20:05:18 +0100 | [diff] [blame] | 518 | #endif |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 519 | uint32_t sa_mask[2 * (NSIG / sizeof(long) ? NSIG / sizeof(long) : 1)]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 520 | }; |
| 521 | |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 522 | static void |
| 523 | decode_new_sigaction(struct tcb *tcp, long addr) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 524 | { |
| 525 | struct new_sigaction sa; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 526 | |
Denys Vlasenko | d4d3ede | 2013-02-13 16:31:32 +0100 | [diff] [blame] | 527 | #if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4 |
Denys Vlasenko | 9fd4f96 | 2012-03-19 09:36:42 +0100 | [diff] [blame] | 528 | if (current_wordsize != sizeof(sa.sa_flags) && current_wordsize == 4) { |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 529 | struct new_sigaction32 sa32; |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 530 | |
| 531 | if (umove_or_printaddr(tcp, addr, &sa32)) |
| 532 | return; |
| 533 | |
| 534 | memset(&sa, 0, sizeof(sa)); |
| 535 | sa.__sa_handler = (void*)(unsigned long)sa32.__sa_handler; |
| 536 | sa.sa_flags = sa32.sa_flags; |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 537 | #if HAVE_SA_RESTORER && defined SA_RESTORER |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 538 | sa.sa_restorer = (void*)(unsigned long)sa32.sa_restorer; |
Vicente Olivert Riera | c3a5c01 | 2014-09-11 20:05:18 +0100 | [diff] [blame] | 539 | #endif |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 540 | /* Kernel treats sa_mask as an array of longs. |
| 541 | * For 32-bit process, "long" is uint32_t, thus, for example, |
| 542 | * 32th bit in sa_mask will end up as bit 0 in sa_mask[1]. |
| 543 | * But for (64-bit) kernel, 32th bit in sa_mask is |
| 544 | * 32th bit in 0th (64-bit) long! |
| 545 | * For little-endian, it's the same. |
| 546 | * For big-endian, we swap 32-bit words. |
| 547 | */ |
| 548 | sa.sa_mask[0] = sa32.sa_mask[0] + ((long)(sa32.sa_mask[1]) << 32); |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 549 | } else |
| 550 | #endif |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 551 | if (umove_or_printaddr(tcp, addr, &sa)) |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 552 | return; |
Dmitry V. Levin | 735843e | 2015-07-17 00:37:39 +0000 | [diff] [blame] | 553 | |
Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 554 | /* Architectures using function pointers, like |
| 555 | * hppa, may need to manipulate the function pointer |
| 556 | * to compute the result of a comparison. However, |
Denys Vlasenko | 86d9484 | 2013-02-08 12:59:13 +0100 | [diff] [blame] | 557 | * the __sa_handler function pointer exists only in |
Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 558 | * the address space of the traced process, and can't |
| 559 | * be manipulated by strace. In order to prevent the |
| 560 | * compiler from generating code to manipulate |
Denys Vlasenko | 86d9484 | 2013-02-08 12:59:13 +0100 | [diff] [blame] | 561 | * __sa_handler we cast the function pointers to long. */ |
Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 562 | if ((long)sa.__sa_handler == (long)SIG_ERR) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 563 | tprints("{SIG_ERR, "); |
Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 564 | else if ((long)sa.__sa_handler == (long)SIG_DFL) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 565 | tprints("{SIG_DFL, "); |
Carlos O'Donell | 4677c8a | 2009-09-09 18:13:19 +0000 | [diff] [blame] | 566 | else if ((long)sa.__sa_handler == (long)SIG_IGN) |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 567 | tprints("{SIG_IGN, "); |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 568 | else |
| 569 | tprintf("{%#lx, ", (long) sa.__sa_handler); |
Denys Vlasenko | 80b73a2 | 2013-07-18 10:10:46 +0200 | [diff] [blame] | 570 | /* |
| 571 | * Sigset size is in tcp->u_arg[4] (SPARC) |
| 572 | * or in tcp->u_arg[3] (all other), |
| 573 | * but kernel won't handle sys_rt_sigaction |
| 574 | * with wrong sigset size (just returns EINVAL instead). |
| 575 | * We just fetch the right size, which is NSIG / 8. |
| 576 | */ |
Dmitry V. Levin | 38593e9 | 2014-02-26 16:51:28 +0000 | [diff] [blame] | 577 | tprintsigmask_val("", sa.sa_mask); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 578 | tprints(", "); |
Denys Vlasenko | 80b73a2 | 2013-07-18 10:10:46 +0200 | [diff] [blame] | 579 | |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 580 | printflags(sigact_flags, sa.sa_flags, "SA_???"); |
Dmitry V. Levin | 24b8eb0 | 2015-02-28 17:17:09 +0000 | [diff] [blame] | 581 | #if HAVE_SA_RESTORER && defined SA_RESTORER |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 582 | if (sa.sa_flags & SA_RESTORER) |
| 583 | tprintf(", %p", sa.sa_restorer); |
| 584 | #endif |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 585 | tprints("}"); |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 586 | } |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 587 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 588 | SYS_FUNC(rt_sigaction) |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 589 | { |
| 590 | if (entering(tcp)) { |
| 591 | printsignal(tcp->u_arg[0]); |
Denys Vlasenko | 60fe8c1 | 2011-09-01 10:00:28 +0200 | [diff] [blame] | 592 | tprints(", "); |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 593 | decode_new_sigaction(tcp, tcp->u_arg[1]); |
| 594 | tprints(", "); |
| 595 | } else { |
| 596 | decode_new_sigaction(tcp, tcp->u_arg[2]); |
Denys Vlasenko | 9472a27 | 2013-02-12 11:43:46 +0100 | [diff] [blame] | 597 | #if defined(SPARC) || defined(SPARC64) |
Wichert Akkerman | dacfb6e | 1999-06-03 14:21:07 +0000 | [diff] [blame] | 598 | tprintf(", %#lx, %lu", tcp->u_arg[3], tcp->u_arg[4]); |
| 599 | #elif defined(ALPHA) |
| 600 | tprintf(", %lu, %#lx", tcp->u_arg[3], tcp->u_arg[4]); |
| 601 | #else |
Denys Vlasenko | 7a862d7 | 2009-04-15 13:22:59 +0000 | [diff] [blame] | 602 | tprintf(", %lu", tcp->u_arg[3]); |
Wichert Akkerman | dacfb6e | 1999-06-03 14:21:07 +0000 | [diff] [blame] | 603 | #endif |
Dmitry V. Levin | ac655a8 | 2014-01-07 22:41:30 +0000 | [diff] [blame] | 604 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 605 | return 0; |
| 606 | } |
| 607 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 608 | SYS_FUNC(rt_sigpending) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 609 | { |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 610 | if (exiting(tcp)) { |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 611 | /* |
| 612 | * One of the few syscalls where sigset size (arg[1]) |
| 613 | * is allowed to be <= NSIG / 8, not strictly ==. |
| 614 | * This allows non-rt sigpending() syscall |
| 615 | * to reuse rt_sigpending() code in kernel. |
| 616 | */ |
Dmitry V. Levin | 1165620 | 2016-02-18 00:08:30 +0000 | [diff] [blame] | 617 | print_sigset_addr_len_limit(tcp, tcp->u_arg[0], |
| 618 | tcp->u_arg[1], 1); |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 619 | tprintf(", %lu", tcp->u_arg[1]); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 620 | } |
| 621 | return 0; |
| 622 | } |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 623 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 624 | SYS_FUNC(rt_sigsuspend) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 625 | { |
Dmitry V. Levin | 0e45b50 | 2015-07-17 00:51:45 +0000 | [diff] [blame] | 626 | /* NB: kernel requires arg[1] == NSIG / 8 */ |
| 627 | print_sigset_addr_len(tcp, tcp->u_arg[0], tcp->u_arg[1]); |
| 628 | tprintf(", %lu", tcp->u_arg[1]); |
| 629 | |
| 630 | return RVAL_DECODED; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 631 | } |
Denys Vlasenko | 1d63246 | 2009-04-14 12:51:00 +0000 | [diff] [blame] | 632 | |
Dmitry V. Levin | 297632b | 2012-03-13 15:51:13 +0000 | [diff] [blame] | 633 | static void |
| 634 | print_sigqueueinfo(struct tcb *tcp, int sig, unsigned long uinfo) |
| 635 | { |
Dmitry V. Levin | 297632b | 2012-03-13 15:51:13 +0000 | [diff] [blame] | 636 | printsignal(sig); |
| 637 | tprints(", "); |
Dmitry V. Levin | e2fb0bb | 2015-09-15 21:51:15 +0000 | [diff] [blame] | 638 | printsiginfo_at(tcp, uinfo); |
Dmitry V. Levin | 297632b | 2012-03-13 15:51:13 +0000 | [diff] [blame] | 639 | } |
| 640 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 641 | SYS_FUNC(rt_sigqueueinfo) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 642 | { |
Dmitry V. Levin | 11d623f | 2016-02-17 05:24:43 +0000 | [diff] [blame^] | 643 | tprintf("%d, ", (int) tcp->u_arg[0]); |
Dmitry V. Levin | 0e45b50 | 2015-07-17 00:51:45 +0000 | [diff] [blame] | 644 | print_sigqueueinfo(tcp, tcp->u_arg[1], tcp->u_arg[2]); |
| 645 | |
| 646 | return RVAL_DECODED; |
Dmitry V. Levin | 297632b | 2012-03-13 15:51:13 +0000 | [diff] [blame] | 647 | } |
| 648 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 649 | SYS_FUNC(rt_tgsigqueueinfo) |
Dmitry V. Levin | 297632b | 2012-03-13 15:51:13 +0000 | [diff] [blame] | 650 | { |
Dmitry V. Levin | 11d623f | 2016-02-17 05:24:43 +0000 | [diff] [blame^] | 651 | tprintf("%d, %d, ", (int) tcp->u_arg[0], (int) tcp->u_arg[1]); |
Dmitry V. Levin | 0e45b50 | 2015-07-17 00:51:45 +0000 | [diff] [blame] | 652 | print_sigqueueinfo(tcp, tcp->u_arg[2], tcp->u_arg[3]); |
| 653 | |
| 654 | return RVAL_DECODED; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 655 | } |
| 656 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 657 | SYS_FUNC(rt_sigtimedwait) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 658 | { |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 659 | /* NB: kernel requires arg[3] == NSIG / 8 */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 660 | if (entering(tcp)) { |
Denys Vlasenko | 5e133aa | 2013-07-18 17:02:21 +0200 | [diff] [blame] | 661 | 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] | 662 | tprints(", "); |
Dmitry V. Levin | 49faae9 | 2016-02-19 03:27:09 +0000 | [diff] [blame] | 663 | if (!tcp->u_arg[1]) { |
| 664 | /* |
| 665 | * This is the only "return" parameter, |
| 666 | * if it's NULL, decode all parameters on entry. |
| 667 | */ |
| 668 | tprints("NULL, "); |
| 669 | print_timespec(tcp, tcp->u_arg[2]); |
| 670 | tprintf(", %lu", tcp->u_arg[3]); |
| 671 | tcp->auxstr = NULL; |
| 672 | } else { |
| 673 | tcp->auxstr = sprint_timespec(tcp, tcp->u_arg[2]); |
| 674 | } |
| 675 | } else { |
| 676 | if (tcp->auxstr) { |
| 677 | printsiginfo_at(tcp, tcp->u_arg[1]); |
| 678 | tprintf(", %s, %lu", tcp->auxstr, tcp->u_arg[3]); |
| 679 | tcp->auxstr = NULL; |
| 680 | } |
Dmitry V. Levin | 3858b93 | 2015-09-18 01:54:59 +0000 | [diff] [blame] | 681 | |
Dmitry V. Levin | 49faae9 | 2016-02-19 03:27:09 +0000 | [diff] [blame] | 682 | if (!syserror(tcp) && tcp->u_rval) { |
| 683 | tcp->auxstr = signame(tcp->u_rval); |
| 684 | return RVAL_STR; |
| 685 | } |
| 686 | } |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 687 | return 0; |
| 688 | }; |
| 689 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 690 | SYS_FUNC(restart_syscall) |
Roland McGrath | 79dcd7a | 2006-01-12 22:34:50 +0000 | [diff] [blame] | 691 | { |
Dmitry V. Levin | 0e45b50 | 2015-07-17 00:51:45 +0000 | [diff] [blame] | 692 | tprintf("<... resuming interrupted %s ...>", |
| 693 | tcp->s_prev_ent ? tcp->s_prev_ent->sys_name : "system call"); |
| 694 | |
| 695 | return RVAL_DECODED; |
Roland McGrath | 79dcd7a | 2006-01-12 22:34:50 +0000 | [diff] [blame] | 696 | } |