blob: 5455b153420da65a1945cc9579b476d676266228 [file] [log] [blame]
Dmitry V. Levin38a34c92015-12-17 17:56:48 +00001/*
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 Hughes39bac052017-05-25 16:56:11 -07009 * Copyright (c) 2014-2017 The strace developers.
Dmitry V. Levin38a34c92015-12-17 17:56:48 +000010 * 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. Levin7be23182014-12-11 19:25:02 +000035#include "defs.h"
36
37static void
Elliott Hughesd35df492017-02-15 15:19:05 -080038printargv(struct tcb *const tcp, kernel_ulong_t addr)
Dmitry V. Levin7be23182014-12-11 19:25:02 +000039{
Dmitry V. Levin3c00e632016-02-07 14:38:45 +000040 if (!addr || !verbose(tcp)) {
41 printaddr(addr);
42 return;
Dmitry V. Levin7be23182014-12-11 19:25:02 +000043 }
Dmitry V. Levin3c00e632016-02-07 14:38:45 +000044
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 Hughesd35df492017-02-15 15:19:05 -080053 kernel_ulong_t p64;
54 char data[sizeof(kernel_ulong_t)];
Dmitry V. Levin3c00e632016-02-07 14:38:45 +000055 } cp;
56
57 if (umoven(tcp, addr, wordsize, cp.data)) {
58 if (sep == start_sep)
59 printaddr(addr);
60 else
61 tprints(", ???]");
62 return;
63 }
64 if (!(wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64)) {
65 if (sep == start_sep)
66 tprints(start_sep);
67 break;
68 }
69 if (abbrev(tcp) && n >= max_strlen) {
70 tprintf("%s...", sep);
71 break;
72 }
73 tprints(sep);
Elliott Hughesd35df492017-02-15 15:19:05 -080074 printstr(tcp, wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64);
Dmitry V. Levin3c00e632016-02-07 14:38:45 +000075 }
76 tprints("]");
Dmitry V. Levin7be23182014-12-11 19:25:02 +000077}
78
79static void
Elliott Hughesd35df492017-02-15 15:19:05 -080080printargc(struct tcb *const tcp, kernel_ulong_t addr)
Dmitry V. Levin7be23182014-12-11 19:25:02 +000081{
Elliott Hughes39bac052017-05-25 16:56:11 -070082 printaddr(addr);
83
84 if (!addr || !verbose(tcp))
Dmitry V. Levin3c00e632016-02-07 14:38:45 +000085 return;
Dmitry V. Levin3c00e632016-02-07 14:38:45 +000086
87 bool unterminated = false;
88 unsigned int count = 0;
Dmitry V. Levin4ff687b2015-07-27 10:02:33 +000089 char *cp = NULL;
Dmitry V. Levin7be23182014-12-11 19:25:02 +000090
Dmitry V. Levin3c00e632016-02-07 14:38:45 +000091 for (; addr; addr += current_wordsize, ++count) {
92 if (umoven(tcp, addr, current_wordsize, &cp)) {
Elliott Hughes39bac052017-05-25 16:56:11 -070093 if (!count)
94 return;
95
96 unterminated = true;
97 break;
Dmitry V. Levin3c00e632016-02-07 14:38:45 +000098 }
99 if (!cp)
100 break;
Dmitry V. Levin7be23182014-12-11 19:25:02 +0000101 }
Elliott Hughes39bac052017-05-25 16:56:11 -0700102 tprintf_comment("%u var%s%s",
Dmitry V. Levin3c00e632016-02-07 14:38:45 +0000103 count, count == 1 ? "" : "s",
104 unterminated ? ", unterminated" : "");
Dmitry V. Levin7be23182014-12-11 19:25:02 +0000105}
106
Dmitry V. Levin7c221012015-07-26 11:06:53 +0000107static void
108decode_execve(struct tcb *tcp, const unsigned int index)
109{
110 printpath(tcp, tcp->u_arg[index + 0]);
111 tprints(", ");
112
Dmitry V. Levin3c00e632016-02-07 14:38:45 +0000113 printargv(tcp, tcp->u_arg[index + 1]);
Dmitry V. Levin7c221012015-07-26 11:06:53 +0000114 tprints(", ");
115
Dmitry V. Levin3c00e632016-02-07 14:38:45 +0000116 (abbrev(tcp) ? printargc : printargv) (tcp, tcp->u_arg[index + 2]);
Dmitry V. Levin7c221012015-07-26 11:06:53 +0000117}
118
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000119SYS_FUNC(execve)
Dmitry V. Levin7be23182014-12-11 19:25:02 +0000120{
Dmitry V. Levin7c221012015-07-26 11:06:53 +0000121 decode_execve(tcp, 0);
Dmitry V. Levinad181322015-07-20 15:17:24 +0000122
Dmitry V. Levin7c221012015-07-26 11:06:53 +0000123 return RVAL_DECODED;
124}
Dmitry V. Levin7e56b4e2015-07-20 15:20:46 +0000125
Dmitry V. Levin7c221012015-07-26 11:06:53 +0000126SYS_FUNC(execveat)
127{
128 print_dirfd(tcp, tcp->u_arg[0]);
129 decode_execve(tcp, 1);
130 tprints(", ");
131 printflags(at_flags, tcp->u_arg[4], "AT_???");
Dmitry V. Levin7e56b4e2015-07-20 15:20:46 +0000132
133 return RVAL_DECODED;
Dmitry V. Levin7be23182014-12-11 19:25:02 +0000134}
135
136#if defined(SPARC) || defined(SPARC64)
Dmitry V. Levina0bd3742015-04-07 01:36:50 +0000137SYS_FUNC(execv)
Dmitry V. Levin7be23182014-12-11 19:25:02 +0000138{
Dmitry V. Levin7e56b4e2015-07-20 15:20:46 +0000139 printpath(tcp, tcp->u_arg[0]);
140 tprints(", ");
Dmitry V. Levin3c00e632016-02-07 14:38:45 +0000141 printargv(tcp, tcp->u_arg[1]);
Dmitry V. Levin7e56b4e2015-07-20 15:20:46 +0000142
143 return RVAL_DECODED;
Dmitry V. Levin7be23182014-12-11 19:25:02 +0000144}
145#endif /* SPARC || SPARC64 */