Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +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-1996 Rick Sladkey <jrs@world.std.com> |
| 5 | * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl> |
| 6 | * Copyright (c) 2002-2004 Roland McGrath <roland@redhat.com> |
| 7 | * Copyright (c) 2004 Ulrich Drepper <drepper@redhat.com> |
| 8 | * Copyright (c) 2009-2013 Denys Vlasenko <dvlasenk@redhat.com> |
| 9 | * Copyright (c) 2014-2015 Dmitry V. Levin <ldv@altlinux.org> |
| 10 | * All rights reserved. |
| 11 | * |
| 12 | * Redistribution and use in source and binary forms, with or without |
| 13 | * modification, are permitted provided that the following conditions |
| 14 | * are met: |
| 15 | * 1. Redistributions of source code must retain the above copyright |
| 16 | * notice, this list of conditions and the following disclaimer. |
| 17 | * 2. Redistributions in binary form must reproduce the above copyright |
| 18 | * notice, this list of conditions and the following disclaimer in the |
| 19 | * documentation and/or other materials provided with the distribution. |
| 20 | * 3. The name of the author may not be used to endorse or promote products |
| 21 | * derived from this software without specific prior written permission. |
| 22 | * |
| 23 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 24 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 25 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 26 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 27 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 28 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 29 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 30 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 32 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 33 | */ |
| 34 | |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 35 | #include "defs.h" |
| 36 | |
| 37 | #include <sys/wait.h> |
| 38 | |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 39 | #include "xlat/wait4_options.h" |
| 40 | |
| 41 | #if !defined WCOREFLAG && defined WCOREFLG |
| 42 | # define WCOREFLAG WCOREFLG |
| 43 | #endif |
| 44 | #ifndef WCOREFLAG |
| 45 | # define WCOREFLAG 0x80 |
| 46 | #endif |
| 47 | #ifndef WCOREDUMP |
| 48 | # define WCOREDUMP(status) ((status) & 0200) |
| 49 | #endif |
| 50 | #ifndef W_STOPCODE |
| 51 | # define W_STOPCODE(sig) ((sig) << 8 | 0x7f) |
| 52 | #endif |
| 53 | #ifndef W_EXITCODE |
| 54 | # define W_EXITCODE(ret, sig) ((ret) << 8 | (sig)) |
| 55 | #endif |
Dmitry V. Levin | d8b3404 | 2015-02-12 22:43:02 +0000 | [diff] [blame] | 56 | #ifndef W_CONTINUED |
| 57 | # define W_CONTINUED 0xffff |
| 58 | #endif |
| 59 | |
Dmitry V. Levin | fadf379 | 2015-02-13 00:26:38 +0000 | [diff] [blame] | 60 | #include "ptrace.h" |
Dmitry V. Levin | d8b3404 | 2015-02-12 22:43:02 +0000 | [diff] [blame] | 61 | #include "xlat/ptrace_events.h" |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 62 | |
| 63 | static int |
| 64 | printstatus(int status) |
| 65 | { |
| 66 | int exited = 0; |
| 67 | |
| 68 | /* |
| 69 | * Here is a tricky presentation problem. This solution |
| 70 | * is still not entirely satisfactory but since there |
| 71 | * are no wait status constructors it will have to do. |
| 72 | */ |
| 73 | if (WIFSTOPPED(status)) { |
Dmitry V. Levin | d8b3404 | 2015-02-12 22:43:02 +0000 | [diff] [blame] | 74 | int sig = WSTOPSIG(status); |
| 75 | tprintf("[{WIFSTOPPED(s) && WSTOPSIG(s) == %s%s}", |
| 76 | signame(sig & 0x7f), |
| 77 | sig & 0x80 ? " | 0x80" : ""); |
| 78 | status &= ~W_STOPCODE(sig); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 79 | } |
| 80 | else if (WIFSIGNALED(status)) { |
| 81 | tprintf("[{WIFSIGNALED(s) && WTERMSIG(s) == %s%s}", |
| 82 | signame(WTERMSIG(status)), |
| 83 | WCOREDUMP(status) ? " && WCOREDUMP(s)" : ""); |
| 84 | status &= ~(W_EXITCODE(0, WTERMSIG(status)) | WCOREFLAG); |
| 85 | } |
| 86 | else if (WIFEXITED(status)) { |
| 87 | tprintf("[{WIFEXITED(s) && WEXITSTATUS(s) == %d}", |
| 88 | WEXITSTATUS(status)); |
| 89 | exited = 1; |
| 90 | status &= ~W_EXITCODE(WEXITSTATUS(status), 0); |
| 91 | } |
Dmitry V. Levin | d8b3404 | 2015-02-12 22:43:02 +0000 | [diff] [blame] | 92 | #ifdef WIFCONTINUED |
| 93 | else if (WIFCONTINUED(status)) { |
| 94 | tprints("[{WIFCONTINUED(s)}"); |
| 95 | status &= ~W_CONTINUED; |
| 96 | } |
| 97 | #endif |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 98 | else { |
| 99 | tprintf("[%#x]", status); |
| 100 | return 0; |
| 101 | } |
| 102 | |
Dmitry V. Levin | d8b3404 | 2015-02-12 22:43:02 +0000 | [diff] [blame] | 103 | if (status) { |
| 104 | unsigned int event = (unsigned int) status >> 16; |
| 105 | if (event) { |
| 106 | tprints(" | "); |
| 107 | printxval(ptrace_events, event, "PTRACE_EVENT_???"); |
| 108 | tprints(" << 16"); |
| 109 | status &= 0xffff; |
| 110 | } |
| 111 | if (status) |
| 112 | tprintf(" | %#x", status); |
| 113 | } |
| 114 | tprints("]"); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 115 | |
| 116 | return exited; |
| 117 | } |
| 118 | |
| 119 | static int |
Dmitry V. Levin | af618fa | 2016-02-11 02:39:04 +0000 | [diff] [blame] | 120 | printwaitn(struct tcb *tcp, void (*const print_rusage)(struct tcb *, long)) |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 121 | { |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 122 | if (entering(tcp)) { |
| 123 | /* On Linux, kernel-side pid_t is typedef'ed to int |
| 124 | * on all arches. Also, glibc-2.8 truncates wait3 and wait4 |
| 125 | * pid argument to int on 64bit arches, producing, |
| 126 | * for example, wait4(4294967295, ...) instead of -1 |
| 127 | * in strace. We have to use int here, not long. |
| 128 | */ |
| 129 | int pid = tcp->u_arg[0]; |
| 130 | tprintf("%d, ", pid); |
| 131 | } else { |
Dmitry V. Levin | af618fa | 2016-02-11 02:39:04 +0000 | [diff] [blame] | 132 | int status; |
| 133 | |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 134 | /* status */ |
Dmitry V. Levin | 90cfe8f | 2015-07-15 00:36:20 +0000 | [diff] [blame] | 135 | if (tcp->u_rval == 0) |
| 136 | printaddr(tcp->u_arg[1]); |
| 137 | else if (!umove_or_printaddr(tcp, tcp->u_arg[1], &status)) |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 138 | printstatus(status); |
| 139 | /* options */ |
| 140 | tprints(", "); |
| 141 | printflags(wait4_options, tcp->u_arg[2], "W???"); |
Dmitry V. Levin | af618fa | 2016-02-11 02:39:04 +0000 | [diff] [blame] | 142 | if (print_rusage) { |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 143 | /* usage */ |
Dmitry V. Levin | af618fa | 2016-02-11 02:39:04 +0000 | [diff] [blame] | 144 | tprints(", "); |
| 145 | if (tcp->u_rval > 0) |
| 146 | print_rusage(tcp, tcp->u_arg[3]); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 147 | else |
Dmitry V. Levin | 90cfe8f | 2015-07-15 00:36:20 +0000 | [diff] [blame] | 148 | printaddr(tcp->u_arg[3]); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | return 0; |
| 152 | } |
| 153 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 154 | SYS_FUNC(waitpid) |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 155 | { |
Dmitry V. Levin | af618fa | 2016-02-11 02:39:04 +0000 | [diff] [blame] | 156 | return printwaitn(tcp, NULL); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 159 | SYS_FUNC(wait4) |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 160 | { |
Dmitry V. Levin | af618fa | 2016-02-11 02:39:04 +0000 | [diff] [blame] | 161 | return printwaitn(tcp, printrusage); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | #ifdef ALPHA |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 165 | SYS_FUNC(osf_wait4) |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 166 | { |
Dmitry V. Levin | af618fa | 2016-02-11 02:39:04 +0000 | [diff] [blame] | 167 | return printwaitn(tcp, printrusage32); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 168 | } |
| 169 | #endif |
| 170 | |
| 171 | #include "xlat/waitid_types.h" |
| 172 | |
Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 173 | SYS_FUNC(waitid) |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 174 | { |
| 175 | if (entering(tcp)) { |
| 176 | printxval(waitid_types, tcp->u_arg[0], "P_???"); |
Dmitry V. Levin | 591906c | 2016-02-11 02:42:36 +0000 | [diff] [blame] | 177 | int pid = tcp->u_arg[1]; |
| 178 | tprintf(", %d, ", pid); |
Dmitry V. Levin | 90cfe8f | 2015-07-15 00:36:20 +0000 | [diff] [blame] | 179 | } else { |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 180 | /* siginfo */ |
Dmitry V. Levin | e2fb0bb | 2015-09-15 21:51:15 +0000 | [diff] [blame] | 181 | printsiginfo_at(tcp, tcp->u_arg[2]); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 182 | /* options */ |
| 183 | tprints(", "); |
| 184 | printflags(wait4_options, tcp->u_arg[3], "W???"); |
Dmitry V. Levin | d3f17c6 | 2016-02-11 02:20:18 +0000 | [diff] [blame] | 185 | /* usage */ |
| 186 | tprints(", "); |
| 187 | printrusage(tcp, tcp->u_arg[4]); |
Dmitry V. Levin | 7ccc144 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 188 | } |
| 189 | return 0; |
| 190 | } |