| 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) 2007 Roland McGrath <roland@redhat.com> |
| 7 | * Copyright (c) 2011-2012 Denys Vlasenko <vda.linux@googlemail.com> |
| 8 | * Copyright (c) 2010-2015 Dmitry V. Levin <ldv@altlinux.org> |
| Elliott Hughes | 03a418e | 2018-06-15 13:11:40 -0700 | [diff] [blame] | 9 | * Copyright (c) 2014-2018 The strace developers. |
| Dmitry V. Levin | 38a34c9 | 2015-12-17 17:56:48 +0000 | [diff] [blame] | 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 | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 35 | #include "defs.h" |
| 36 | |
| 37 | static void |
| Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 38 | printargv(struct tcb *const tcp, kernel_ulong_t addr) |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 39 | { |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 40 | if (!addr || !verbose(tcp)) { |
| 41 | printaddr(addr); |
| 42 | return; |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 43 | } |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 44 | |
| 45 | const char *const start_sep = "["; |
| 46 | const char *sep = start_sep; |
| 47 | const unsigned int wordsize = current_wordsize; |
| 48 | unsigned int n; |
| 49 | |
| 50 | for (n = 0; addr; sep = ", ", addr += wordsize, ++n) { |
| 51 | union { |
| 52 | unsigned int p32; |
| Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 53 | kernel_ulong_t p64; |
| 54 | char data[sizeof(kernel_ulong_t)]; |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 55 | } cp; |
| 56 | |
| 57 | if (umoven(tcp, addr, wordsize, cp.data)) { |
| 58 | if (sep == start_sep) |
| 59 | printaddr(addr); |
| Elliott Hughes | 03a418e | 2018-06-15 13:11:40 -0700 | [diff] [blame] | 60 | else { |
| 61 | tprints(", ..."); |
| 62 | printaddr_comment(addr); |
| 63 | tprints("]"); |
| 64 | } |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 65 | return; |
| 66 | } |
| 67 | if (!(wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64)) { |
| 68 | if (sep == start_sep) |
| 69 | tprints(start_sep); |
| 70 | break; |
| 71 | } |
| 72 | if (abbrev(tcp) && n >= max_strlen) { |
| 73 | tprintf("%s...", sep); |
| 74 | break; |
| 75 | } |
| 76 | tprints(sep); |
| Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 77 | printstr(tcp, wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64); |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 78 | } |
| 79 | tprints("]"); |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | static void |
| Elliott Hughes | d35df49 | 2017-02-15 15:19:05 -0800 | [diff] [blame] | 83 | printargc(struct tcb *const tcp, kernel_ulong_t addr) |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 84 | { |
| Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 85 | printaddr(addr); |
| 86 | |
| 87 | if (!addr || !verbose(tcp)) |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 88 | return; |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 89 | |
| 90 | bool unterminated = false; |
| 91 | unsigned int count = 0; |
| Dmitry V. Levin | 4ff687b | 2015-07-27 10:02:33 +0000 | [diff] [blame] | 92 | char *cp = NULL; |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 93 | |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 94 | for (; addr; addr += current_wordsize, ++count) { |
| 95 | if (umoven(tcp, addr, current_wordsize, &cp)) { |
| Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 96 | if (!count) |
| 97 | return; |
| 98 | |
| 99 | unterminated = true; |
| 100 | break; |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 101 | } |
| 102 | if (!cp) |
| 103 | break; |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 104 | } |
| Elliott Hughes | 39bac05 | 2017-05-25 16:56:11 -0700 | [diff] [blame] | 105 | tprintf_comment("%u var%s%s", |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 106 | count, count == 1 ? "" : "s", |
| 107 | unterminated ? ", unterminated" : ""); |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| Dmitry V. Levin | 7c22101 | 2015-07-26 11:06:53 +0000 | [diff] [blame] | 110 | static void |
| 111 | decode_execve(struct tcb *tcp, const unsigned int index) |
| 112 | { |
| 113 | printpath(tcp, tcp->u_arg[index + 0]); |
| 114 | tprints(", "); |
| 115 | |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 116 | printargv(tcp, tcp->u_arg[index + 1]); |
| Dmitry V. Levin | 7c22101 | 2015-07-26 11:06:53 +0000 | [diff] [blame] | 117 | tprints(", "); |
| 118 | |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 119 | (abbrev(tcp) ? printargc : printargv) (tcp, tcp->u_arg[index + 2]); |
| Dmitry V. Levin | 7c22101 | 2015-07-26 11:06:53 +0000 | [diff] [blame] | 120 | } |
| 121 | |
| Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 122 | SYS_FUNC(execve) |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 123 | { |
| Dmitry V. Levin | 7c22101 | 2015-07-26 11:06:53 +0000 | [diff] [blame] | 124 | decode_execve(tcp, 0); |
| Dmitry V. Levin | ad18132 | 2015-07-20 15:17:24 +0000 | [diff] [blame] | 125 | |
| Dmitry V. Levin | 7c22101 | 2015-07-26 11:06:53 +0000 | [diff] [blame] | 126 | return RVAL_DECODED; |
| 127 | } |
| Dmitry V. Levin | 7e56b4e | 2015-07-20 15:20:46 +0000 | [diff] [blame] | 128 | |
| Dmitry V. Levin | 7c22101 | 2015-07-26 11:06:53 +0000 | [diff] [blame] | 129 | SYS_FUNC(execveat) |
| 130 | { |
| 131 | print_dirfd(tcp, tcp->u_arg[0]); |
| 132 | decode_execve(tcp, 1); |
| 133 | tprints(", "); |
| 134 | printflags(at_flags, tcp->u_arg[4], "AT_???"); |
| Dmitry V. Levin | 7e56b4e | 2015-07-20 15:20:46 +0000 | [diff] [blame] | 135 | |
| 136 | return RVAL_DECODED; |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | #if defined(SPARC) || defined(SPARC64) |
| Dmitry V. Levin | a0bd374 | 2015-04-07 01:36:50 +0000 | [diff] [blame] | 140 | SYS_FUNC(execv) |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 141 | { |
| Dmitry V. Levin | 7e56b4e | 2015-07-20 15:20:46 +0000 | [diff] [blame] | 142 | printpath(tcp, tcp->u_arg[0]); |
| 143 | tprints(", "); |
| Dmitry V. Levin | 3c00e63 | 2016-02-07 14:38:45 +0000 | [diff] [blame] | 144 | printargv(tcp, tcp->u_arg[1]); |
| Dmitry V. Levin | 7e56b4e | 2015-07-20 15:20:46 +0000 | [diff] [blame] | 145 | |
| 146 | return RVAL_DECODED; |
| Dmitry V. Levin | 7be2318 | 2014-12-11 19:25:02 +0000 | [diff] [blame] | 147 | } |
| 148 | #endif /* SPARC || SPARC64 */ |