blob: 1e19eb554d6d069637320c95bc28da4c1782eb9a [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +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, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com>
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00005 * 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 Akkerman76baf7c1999-02-19 00:21:36 +00009 * 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 Akkerman76baf7c1999-02-19 00:21:36 +000032 */
33
34#include "defs.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000035#include <sys/param.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000036
Dmitry V. Levin5503dd22015-02-13 02:12:14 +000037/* for struct iovec */
38#include <sys/uio.h>
Maarten ter Huurne40c174b2014-10-20 01:02:48 +020039
Dmitry V. Levin7211dbc2015-02-28 12:20:21 +000040#include "regs.h"
Dmitry V. Levinfadf3792015-02-13 00:26:38 +000041#include "ptrace.h"
Wichert Akkerman15dea971999-10-06 13:06:34 +000042
Denys Vlasenko84703742012-02-25 02:38:52 +010043#if defined(SPARC64)
Roland McGrath6d1a65c2004-07-12 07:44:08 +000044# undef PTRACE_GETREGS
45# define PTRACE_GETREGS PTRACE_GETREGS64
46# undef PTRACE_SETREGS
47# define PTRACE_SETREGS PTRACE_SETREGS64
Denys Vlasenko84703742012-02-25 02:38:52 +010048#endif
Roland McGrath6d1a65c2004-07-12 07:44:08 +000049
Dmitry V. Levin5503dd22015-02-13 02:12:14 +000050#if defined SPARC64
51# include <asm/psrcompat.h>
52#elif defined SPARC
53# include <asm/psr.h>
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +010054#endif
55
Dmitry V. Levin48f08902015-03-05 23:30:02 +000056#ifdef IA64
57# include <asm/rse.h>
58#endif
59
Dmitry V. Levin4c3f2ae2015-02-13 22:53:00 +000060#ifndef NT_PRSTATUS
61# define NT_PRSTATUS 1
62#endif
63
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000064#ifndef NSIG
Denys Vlasenko523635f2012-02-25 02:44:25 +010065# warning: NSIG is not defined, using 32
66# define NSIG 32
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000067#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000068
69#include "syscall.h"
70
71/* Define these shorthand notations to simplify the syscallent files. */
Roland McGrath2fe7b132005-07-05 03:25:35 +000072#define TD TRACE_DESC
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000073#define TF TRACE_FILE
74#define TI TRACE_IPC
75#define TN TRACE_NETWORK
76#define TP TRACE_PROCESS
77#define TS TRACE_SIGNAL
Namhyung Kim96792962012-10-24 11:41:57 +090078#define TM TRACE_MEMORY
Dmitry V. Levin50a218d2011-01-18 17:36:20 +000079#define NF SYSCALL_NEVER_FAILS
Denys Vlasenkoac1ce772011-08-23 13:24:17 +020080#define MA MAX_ARGS
Masatake YAMATO1d78d222014-04-16 15:33:11 +090081#define SI STACKTRACE_INVALIDATE_CACHE
82#define SE STACKTRACE_CAPTURE_ON_ENTER
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000083
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +010084const struct_sysent sysent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000085#include "syscallent.h"
86};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000087
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +010088#if SUPPORTED_PERSONALITIES > 1
89static const struct_sysent sysent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +010090# include "syscallent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091};
Denys Vlasenko39fca622011-08-20 02:12:33 +020092#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000093
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +010094#if SUPPORTED_PERSONALITIES > 2
95static const struct_sysent sysent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +010096# include "syscallent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000097};
Denys Vlasenko39fca622011-08-20 02:12:33 +020098#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000099
100/* Now undef them since short defines cause wicked namespace pollution. */
Roland McGrath2fe7b132005-07-05 03:25:35 +0000101#undef TD
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000102#undef TF
103#undef TI
104#undef TN
105#undef TP
106#undef TS
Namhyung Kim96792962012-10-24 11:41:57 +0900107#undef TM
Dmitry V. Levin50a218d2011-01-18 17:36:20 +0000108#undef NF
Denys Vlasenkoac1ce772011-08-23 13:24:17 +0200109#undef MA
Masatake YAMATO1d78d222014-04-16 15:33:11 +0900110#undef SI
111#undef SE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000112
Denys Vlasenko39fca622011-08-20 02:12:33 +0200113/*
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000114 * `ioctlent[012].h' files are automatically generated by the auxiliary
Denys Vlasenko39fca622011-08-20 02:12:33 +0200115 * program `ioctlsort', such that the list is sorted by the `code' field.
116 * This has the side-effect of resolving the _IO.. macros into
117 * plain integers, eliminating the need to include here everything
118 * in "/usr/include".
119 */
120
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100121const char *const errnoent0[] = {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000122#include "errnoent.h"
123};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100124const char *const signalent0[] = {
Denys Vlasenko39fca622011-08-20 02:12:33 +0200125#include "signalent.h"
126};
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100127const struct_ioctlent ioctlent0[] = {
Dmitry V. Levindf7aa2b2015-01-19 17:02:16 +0000128#include "ioctlent0.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200129};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000130
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100131#if SUPPORTED_PERSONALITIES > 1
Roland McGrathee36ce12004-09-04 03:53:10 +0000132static const char *const errnoent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100133# include "errnoent1.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000134};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200135static const char *const signalent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100136# include "signalent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200137};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100138static const struct_ioctlent ioctlent1[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100139# include "ioctlent1.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200140};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200141#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000142
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100143#if SUPPORTED_PERSONALITIES > 2
Roland McGrathee36ce12004-09-04 03:53:10 +0000144static const char *const errnoent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100145# include "errnoent2.h"
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000146};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200147static const char *const signalent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100148# include "signalent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200149};
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100150static const struct_ioctlent ioctlent2[] = {
Denys Vlasenko523635f2012-02-25 02:44:25 +0100151# include "ioctlent2.h"
Denys Vlasenko39fca622011-08-20 02:12:33 +0200152};
Denys Vlasenko39fca622011-08-20 02:12:33 +0200153#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000154
Dmitry V. Levine6f55242013-02-26 22:02:30 +0000155enum {
156 nsyscalls0 = ARRAY_SIZE(sysent0)
157#if SUPPORTED_PERSONALITIES > 1
158 , nsyscalls1 = ARRAY_SIZE(sysent1)
159# if SUPPORTED_PERSONALITIES > 2
160 , nsyscalls2 = ARRAY_SIZE(sysent2)
161# endif
162#endif
163};
164
165enum {
166 nerrnos0 = ARRAY_SIZE(errnoent0)
167#if SUPPORTED_PERSONALITIES > 1
168 , nerrnos1 = ARRAY_SIZE(errnoent1)
169# if SUPPORTED_PERSONALITIES > 2
170 , nerrnos2 = ARRAY_SIZE(errnoent2)
171# endif
172#endif
173};
174
175enum {
176 nsignals0 = ARRAY_SIZE(signalent0)
177#if SUPPORTED_PERSONALITIES > 1
178 , nsignals1 = ARRAY_SIZE(signalent1)
179# if SUPPORTED_PERSONALITIES > 2
180 , nsignals2 = ARRAY_SIZE(signalent2)
181# endif
182#endif
183};
184
185enum {
186 nioctlents0 = ARRAY_SIZE(ioctlent0)
187#if SUPPORTED_PERSONALITIES > 1
188 , nioctlents1 = ARRAY_SIZE(ioctlent1)
189# if SUPPORTED_PERSONALITIES > 2
190 , nioctlents2 = ARRAY_SIZE(ioctlent2)
191# endif
192#endif
193};
194
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100195#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100196const struct_sysent *sysent = sysent0;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100197const char *const *errnoent = errnoent0;
198const char *const *signalent = signalent0;
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100199const struct_ioctlent *ioctlent = ioctlent0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100200#endif
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100201unsigned nsyscalls = nsyscalls0;
202unsigned nerrnos = nerrnos0;
203unsigned nsignals = nsignals0;
204unsigned nioctlents = nioctlents0;
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100205
206unsigned num_quals;
207qualbits_t *qual_vec[SUPPORTED_PERSONALITIES];
208
209static const unsigned nsyscall_vec[SUPPORTED_PERSONALITIES] = {
210 nsyscalls0,
211#if SUPPORTED_PERSONALITIES > 1
212 nsyscalls1,
213#endif
214#if SUPPORTED_PERSONALITIES > 2
215 nsyscalls2,
216#endif
217};
218static const struct_sysent *const sysent_vec[SUPPORTED_PERSONALITIES] = {
219 sysent0,
220#if SUPPORTED_PERSONALITIES > 1
221 sysent1,
222#endif
223#if SUPPORTED_PERSONALITIES > 2
224 sysent2,
225#endif
226};
227
228enum {
229 MAX_NSYSCALLS1 = (nsyscalls0
230#if SUPPORTED_PERSONALITIES > 1
231 > nsyscalls1 ? nsyscalls0 : nsyscalls1
232#endif
233 ),
234 MAX_NSYSCALLS2 = (MAX_NSYSCALLS1
235#if SUPPORTED_PERSONALITIES > 2
236 > nsyscalls2 ? MAX_NSYSCALLS1 : nsyscalls2
237#endif
238 ),
239 MAX_NSYSCALLS = MAX_NSYSCALLS2,
240 /* We are ready for arches with up to 255 signals,
241 * even though the largest known signo is on MIPS and it is 128.
242 * The number of existing syscalls on all arches is
243 * larger that 255 anyway, so it is just a pedantic matter.
244 */
245 MIN_QUALS = MAX_NSYSCALLS > 255 ? MAX_NSYSCALLS : 255
246};
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000247
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100248#if SUPPORTED_PERSONALITIES > 1
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100249unsigned current_personality;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000250
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100251# ifndef current_wordsize
252unsigned current_wordsize;
253static const int personality_wordsize[SUPPORTED_PERSONALITIES] = {
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000254 PERSONALITY0_WORDSIZE,
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000255 PERSONALITY1_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100256# if SUPPORTED_PERSONALITIES > 2
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000257 PERSONALITY2_WORDSIZE,
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100258# endif
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200259};
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100260# endif
Roland McGrath4b2dcca2006-01-12 10:18:53 +0000261
Denys Vlasenko5c774b22011-08-20 01:50:09 +0200262void
Dmitry V. Levin3abe8b22006-12-20 22:37:21 +0000263set_personality(int personality)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000264{
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100265 nsyscalls = nsyscall_vec[personality];
266 sysent = sysent_vec[personality];
267
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000268 switch (personality) {
269 case 0:
270 errnoent = errnoent0;
271 nerrnos = nerrnos0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000272 ioctlent = ioctlent0;
273 nioctlents = nioctlents0;
274 signalent = signalent0;
275 nsignals = nsignals0;
276 break;
277
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000278 case 1:
279 errnoent = errnoent1;
280 nerrnos = nerrnos1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000281 ioctlent = ioctlent1;
282 nioctlents = nioctlents1;
283 signalent = signalent1;
284 nsignals = nsignals1;
285 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000286
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +0100287# if SUPPORTED_PERSONALITIES > 2
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000288 case 2:
289 errnoent = errnoent2;
290 nerrnos = nerrnos2;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000291 ioctlent = ioctlent2;
292 nioctlents = nioctlents2;
293 signalent = signalent2;
294 nsignals = nsignals2;
295 break;
Denys Vlasenko9fd4f962012-03-19 09:36:42 +0100296# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000297 }
298
299 current_personality = personality;
Denys Vlasenkoae8643e2013-02-15 14:55:14 +0100300# ifndef current_wordsize
301 current_wordsize = personality_wordsize[personality];
302# endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000303}
304
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000305static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000306update_personality(struct tcb *tcp, unsigned int personality)
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000307{
308 if (personality == current_personality)
309 return;
310 set_personality(personality);
311
312 if (personality == tcp->currpers)
313 return;
314 tcp->currpers = personality;
315
H.J. Lu35be5812012-04-16 13:00:01 +0200316# if defined(POWERPC64)
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000317 if (!qflag) {
318 static const char *const names[] = {"64 bit", "32 bit"};
319 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
320 tcp->pid, names[personality]);
321 }
H.J. Lu35be5812012-04-16 13:00:01 +0200322# elif defined(X86_64)
323 if (!qflag) {
324 static const char *const names[] = {"64 bit", "32 bit", "x32"};
325 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
326 tcp->pid, names[personality]);
327 }
H.J. Lu085e4282012-04-17 11:05:04 -0700328# elif defined(X32)
329 if (!qflag) {
330 static const char *const names[] = {"x32", "32 bit"};
331 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
332 tcp->pid, names[personality]);
333 }
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000334# elif defined(AARCH64)
335 if (!qflag) {
Denys Vlasenko28ac68f2013-02-08 12:38:51 +0100336 static const char *const names[] = {"32-bit", "AArch64"};
Steve McIntyre890a5ca2012-11-10 11:24:48 +0000337 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
338 tcp->pid, names[personality]);
339 }
Chris Metcalf0b99a8a2013-02-05 17:48:33 +0100340# elif defined(TILE)
341 if (!qflag) {
342 static const char *const names[] = {"64-bit", "32-bit"};
343 fprintf(stderr, "[ Process PID=%d runs in %s mode. ]\n",
344 tcp->pid, names[personality]);
345 }
Denys Vlasenko523635f2012-02-25 02:44:25 +0100346# endif
Dmitry V. Levina5a839a2011-12-23 00:50:49 +0000347}
348#endif
Roland McGrathe10e62a2004-09-04 04:20:43 +0000349
Denys Vlasenkoc1540fe2013-02-21 16:17:08 +0100350static int qual_syscall(), qual_signal(), qual_desc();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000351
Roland McGrathe10e62a2004-09-04 04:20:43 +0000352static const struct qual_options {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000353 unsigned int bitflag;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000354 const char *option_name;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000355 int (*qualify)(const char *, int, int);
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000356 const char *argument_name;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000357} qual_options[] = {
Roland McGrath9797ceb2002-12-30 10:23:00 +0000358 { QUAL_TRACE, "trace", qual_syscall, "system call" },
359 { QUAL_TRACE, "t", qual_syscall, "system call" },
360 { QUAL_ABBREV, "abbrev", qual_syscall, "system call" },
361 { QUAL_ABBREV, "a", qual_syscall, "system call" },
362 { QUAL_VERBOSE, "verbose", qual_syscall, "system call" },
363 { QUAL_VERBOSE, "v", qual_syscall, "system call" },
364 { QUAL_RAW, "raw", qual_syscall, "system call" },
365 { QUAL_RAW, "x", qual_syscall, "system call" },
366 { QUAL_SIGNAL, "signal", qual_signal, "signal" },
367 { QUAL_SIGNAL, "signals", qual_signal, "signal" },
368 { QUAL_SIGNAL, "s", qual_signal, "signal" },
Roland McGrath9797ceb2002-12-30 10:23:00 +0000369 { QUAL_READ, "read", qual_desc, "descriptor" },
370 { QUAL_READ, "reads", qual_desc, "descriptor" },
371 { QUAL_READ, "r", qual_desc, "descriptor" },
372 { QUAL_WRITE, "write", qual_desc, "descriptor" },
373 { QUAL_WRITE, "writes", qual_desc, "descriptor" },
374 { QUAL_WRITE, "w", qual_desc, "descriptor" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000375 { 0, NULL, NULL, NULL },
376};
377
Roland McGrath9797ceb2002-12-30 10:23:00 +0000378static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000379reallocate_qual(const unsigned int n)
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100380{
381 unsigned p;
382 qualbits_t *qp;
383 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
384 qp = qual_vec[p] = realloc(qual_vec[p], n * sizeof(qualbits_t));
385 if (!qp)
386 die_out_of_memory();
387 memset(&qp[num_quals], 0, (n - num_quals) * sizeof(qualbits_t));
388 }
389 num_quals = n;
390}
391
392static void
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000393qualify_one(const unsigned int n, unsigned int bitflag, const int not, const int pers)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000394{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000395 int p;
Roland McGrath138c6a32006-01-12 09:50:49 +0000396
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100397 if (num_quals <= n)
398 reallocate_qual(n + 1);
Roland McGrath138c6a32006-01-12 09:50:49 +0000399
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100400 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
401 if (pers == p || pers < 0) {
402 if (not)
403 qual_vec[p][n] &= ~bitflag;
404 else
405 qual_vec[p][n] |= bitflag;
406 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000407 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000408}
409
410static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000411qual_syscall(const char *s, const unsigned int bitflag, const int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000412{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000413 int p;
414 unsigned int i;
Roland McGrathfe6b3522005-02-02 04:40:11 +0000415 int rc = -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000416
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100417 if (*s >= '0' && *s <= '9') {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100418 i = string_to_uint(s);
Denys Vlasenkob43dacd2013-02-23 18:19:28 +0100419 if (i >= MAX_NSYSCALLS)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000420 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000421 qualify_one(i, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000422 return 0;
Roland McGrath48a035f2006-01-12 09:45:56 +0000423 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000424
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100425 for (p = 0; p < SUPPORTED_PERSONALITIES; p++) {
426 for (i = 0; i < nsyscall_vec[p]; i++) {
427 if (sysent_vec[p][i].sys_name
428 && strcmp(s, sysent_vec[p][i].sys_name) == 0
429 ) {
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000430 qualify_one(i, bitflag, not, p);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100431 rc = 0;
432 }
Roland McGrath138c6a32006-01-12 09:50:49 +0000433 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100434 }
Dmitry V. Levinc18c7032007-08-22 21:43:30 +0000435
Roland McGrathfe6b3522005-02-02 04:40:11 +0000436 return rc;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000437}
438
439static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000440qual_signal(const char *s, const unsigned int bitflag, const int not)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000441{
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000442 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000443
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100444 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000445 int signo = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100446 if (signo < 0 || signo > 255)
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000447 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000448 qualify_one(signo, bitflag, not, -1);
Denys Vlasenko5ae2b7c2009-02-27 20:32:52 +0000449 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000450 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000451 if (strncasecmp(s, "SIG", 3) == 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000452 s += 3;
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100453 for (i = 0; i <= NSIG; i++) {
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000454 if (strcasecmp(s, signame(i) + 3) == 0) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000455 qualify_one(i, bitflag, not, -1);
Roland McGrath76421df2005-02-02 03:51:18 +0000456 return 0;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000457 }
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100458 }
Roland McGrath76421df2005-02-02 03:51:18 +0000459 return -1;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000460}
461
462static int
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000463qual_desc(const char *s, const unsigned int bitflag, const int not)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000464{
Denys Vlasenkoe4cc7c52012-03-23 11:29:01 +0100465 if (*s >= '0' && *s <= '9') {
Dmitry V. Levinccee1692012-03-25 21:49:48 +0000466 int desc = string_to_uint(s);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100467 if (desc < 0 || desc > 0x7fff) /* paranoia */
Roland McGrathfe6b3522005-02-02 04:40:11 +0000468 return -1;
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000469 qualify_one(desc, bitflag, not, -1);
Roland McGrath2b619022003-04-10 18:58:20 +0000470 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000471 }
472 return -1;
473}
474
475static int
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000476lookup_class(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000477{
478 if (strcmp(s, "file") == 0)
479 return TRACE_FILE;
480 if (strcmp(s, "ipc") == 0)
481 return TRACE_IPC;
482 if (strcmp(s, "network") == 0)
483 return TRACE_NETWORK;
484 if (strcmp(s, "process") == 0)
485 return TRACE_PROCESS;
486 if (strcmp(s, "signal") == 0)
487 return TRACE_SIGNAL;
Roland McGrath2fe7b132005-07-05 03:25:35 +0000488 if (strcmp(s, "desc") == 0)
489 return TRACE_DESC;
Namhyung Kim96792962012-10-24 11:41:57 +0900490 if (strcmp(s, "memory") == 0)
491 return TRACE_MEMORY;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000492 return -1;
493}
494
495void
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000496qualify(const char *s)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000497{
Roland McGrathe10e62a2004-09-04 04:20:43 +0000498 const struct qual_options *opt;
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000499 char *copy;
500 const char *p;
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000501 int not;
502 unsigned int i;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000503
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100504 if (num_quals == 0)
505 reallocate_qual(MIN_QUALS);
506
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000507 opt = &qual_options[0];
508 for (i = 0; (p = qual_options[i].option_name); i++) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000509 unsigned int len = strlen(p);
510 if (strncmp(s, p, len) == 0 && s[len] == '=') {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000511 opt = &qual_options[i];
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000512 s += len + 1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000513 break;
514 }
515 }
516 not = 0;
517 if (*s == '!') {
518 not = 1;
519 s++;
520 }
521 if (strcmp(s, "none") == 0) {
522 not = 1 - not;
523 s = "all";
524 }
525 if (strcmp(s, "all") == 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100526 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000527 qualify_one(i, opt->bitflag, not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000528 }
529 return;
530 }
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100531 for (i = 0; i < num_quals; i++) {
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000532 qualify_one(i, opt->bitflag, !not, -1);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000533 }
Denys Vlasenko5d645812011-08-20 12:48:18 +0200534 copy = strdup(s);
Denys Vlasenko1d46ba52011-08-31 14:00:02 +0200535 if (!copy)
536 die_out_of_memory();
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000537 for (p = strtok(copy, ","); p; p = strtok(NULL, ",")) {
Dmitry V. Levin3ed5d022014-09-10 13:46:04 +0000538 int n;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000539 if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) {
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100540 unsigned pers;
541 for (pers = 0; pers < SUPPORTED_PERSONALITIES; pers++) {
542 for (i = 0; i < nsyscall_vec[pers]; i++)
543 if (sysent_vec[pers][i].sys_flags & n)
Dmitry V. Levin7b9e45e2013-03-01 15:50:22 +0000544 qualify_one(i, opt->bitflag, not, pers);
Denys Vlasenko9cbc15b2013-02-22 13:37:36 +0100545 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000546 continue;
547 }
Dmitry V. Levin35d05722010-09-15 16:18:20 +0000548 if (opt->qualify(p, opt->bitflag, not)) {
Denys Vlasenko4c65c442012-03-08 11:54:10 +0100549 error_msg_and_die("invalid %s '%s'",
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000550 opt->argument_name, p);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000551 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000552 }
Dmitry V. Levin30145dd2010-09-06 22:08:24 +0000553 free(copy);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000554 return;
555}
556
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000557#ifdef SYS_socket_subcall
Roland McGratha4d48532005-06-08 20:45:28 +0000558static void
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000559decode_socket_subcall(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000560{
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000561 unsigned long addr;
Dmitry V. Levinc2155692015-03-22 15:52:40 +0000562 unsigned int n;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000563
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000564 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_socket_nsubcalls)
565 return;
566
567 tcp->scno = SYS_socket_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100568 tcp->qual_flg = qual_flags[tcp->scno];
569 tcp->s_ent = &sysent[tcp->scno];
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000570 addr = tcp->u_arg[1];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100571 n = tcp->s_ent->nargs;
Dmitry V. Levinc2155692015-03-22 15:52:40 +0000572 if (sizeof(tcp->u_arg[0]) == current_wordsize) {
573 memset(tcp->u_arg, 0, n * sizeof(tcp->u_arg[0]));
574 (void) umoven(tcp, addr, n * sizeof(tcp->u_arg[0]), tcp->u_arg);
575 } else {
576 unsigned int args[n];
577 unsigned int i;
578
579 memset(args, 0, sizeof(args));
580 (void) umove(tcp, addr, &args);
581 for (i = 0; i < n; ++i)
582 tcp->u_arg[i] = args[i];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000583 }
584}
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000585#endif
Mike Frysinger3362e892012-03-15 01:09:19 -0400586
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000587#ifdef SYS_ipc_subcall
588static void
589decode_ipc_subcall(struct tcb *tcp)
590{
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100591 unsigned int i, n;
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000592
593 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= SYS_ipc_nsubcalls)
594 return;
595
596 tcp->scno = SYS_ipc_subcall + tcp->u_arg[0];
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100597 tcp->qual_flg = qual_flags[tcp->scno];
598 tcp->s_ent = &sysent[tcp->scno];
599 n = tcp->s_ent->nargs;
600 for (i = 0; i < n; i++)
Dmitry V. Levin648c22c2012-03-15 22:08:55 +0000601 tcp->u_arg[i] = tcp->u_arg[i + 1];
602}
603#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000604
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200605int
606printargs(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000607{
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200608 if (entering(tcp)) {
609 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100610 int n = tcp->s_ent->nargs;
611 for (i = 0; i < n; i++)
Denys Vlasenkoa6146922011-08-24 18:07:22 +0200612 tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]);
613 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000614 return 0;
615}
616
Denys Vlasenko72879c62012-02-27 14:18:02 +0100617int
618printargs_lu(struct tcb *tcp)
619{
620 if (entering(tcp)) {
621 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100622 int n = tcp->s_ent->nargs;
623 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100624 tprintf("%s%lu", i ? ", " : "", tcp->u_arg[i]);
625 }
626 return 0;
627}
628
629int
630printargs_ld(struct tcb *tcp)
631{
632 if (entering(tcp)) {
633 int i;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +0100634 int n = tcp->s_ent->nargs;
635 for (i = 0; i < n; i++)
Denys Vlasenko72879c62012-02-27 14:18:02 +0100636 tprintf("%s%ld", i ? ", " : "", tcp->u_arg[i]);
637 }
638 return 0;
639}
640
Dmitry V. Levin1b786072015-03-22 18:09:55 +0000641static void
642dumpio(struct tcb *tcp)
643{
644 int (*func)();
645
646 if (syserror(tcp))
647 return;
648 if ((unsigned long) tcp->u_arg[0] >= num_quals)
649 return;
650 func = tcp->s_ent->sys_func;
651 if (func == printargs)
652 return;
653 if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
654 if (func == sys_read ||
655 func == sys_pread ||
656 func == sys_recv ||
657 func == sys_recvfrom) {
658 dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
659 return;
660 } else if (func == sys_readv) {
661 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
662 return;
663#if HAVE_SENDMSG
664 } else if (func == sys_recvmsg) {
665 dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
666 return;
667 } else if (func == sys_recvmmsg) {
668 dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
669 return;
670#endif
671 }
672 }
673 if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
674 if (func == sys_write ||
675 func == sys_pwrite ||
676 func == sys_send ||
677 func == sys_sendto)
678 dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
679 else if (func == sys_writev)
680 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
681#if HAVE_SENDMSG
682 else if (func == sys_sendmsg)
683 dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
684 else if (func == sys_sendmmsg)
685 dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
686#endif
687 }
688}
689
690/*
691 * Shuffle syscall numbers so that we don't have huge gaps in syscall table.
692 * The shuffling should be an involution: shuffle_scno(shuffle_scno(n)) == n.
693 */
694#if defined(ARM) || defined(AARCH64) /* So far only 32-bit ARM needs this */
695static long
696shuffle_scno(unsigned long scno)
697{
698 if (scno < ARM_FIRST_SHUFFLED_SYSCALL)
699 return scno;
700
701 /* __ARM_NR_cmpxchg? Swap with LAST_ORDINARY+1 */
702 if (scno == ARM_FIRST_SHUFFLED_SYSCALL)
703 return 0x000ffff0;
704 if (scno == 0x000ffff0)
705 return ARM_FIRST_SHUFFLED_SYSCALL;
706
707#define ARM_SECOND_SHUFFLED_SYSCALL (ARM_FIRST_SHUFFLED_SYSCALL + 1)
708 /*
709 * Is it ARM specific syscall?
710 * Swap [0x000f0000, 0x000f0000 + LAST_SPECIAL] range
711 * with [SECOND_SHUFFLED, SECOND_SHUFFLED + LAST_SPECIAL] range.
712 */
713 if (scno >= 0x000f0000 &&
714 scno <= 0x000f0000 + ARM_LAST_SPECIAL_SYSCALL) {
715 return scno - 0x000f0000 + ARM_SECOND_SHUFFLED_SYSCALL;
716 }
717 if (scno <= ARM_SECOND_SHUFFLED_SYSCALL + ARM_LAST_SPECIAL_SYSCALL) {
718 return scno + 0x000f0000 - ARM_SECOND_SHUFFLED_SYSCALL;
719 }
720
721 return scno;
722}
723#else
724# define shuffle_scno(scno) ((long)(scno))
725#endif
726
727static char*
728undefined_scno_name(struct tcb *tcp)
729{
730 static char buf[sizeof("syscall_%lu") + sizeof(long)*3];
731
732 sprintf(buf, "syscall_%lu", shuffle_scno(tcp->scno));
733 return buf;
734}
735
736static long get_regs_error;
737
738void
739clear_regs(void)
740{
741 get_regs_error = -1;
742}
743
744static int get_syscall_args(struct tcb *);
745static int get_syscall_result(struct tcb *);
746
747static int
748trace_syscall_entering(struct tcb *tcp)
749{
750 int res, scno_good;
751
752 scno_good = res = get_scno(tcp);
753 if (res == 0)
754 return res;
755 if (res == 1)
756 res = get_syscall_args(tcp);
757
758 if (res != 1) {
759 printleader(tcp);
760 if (scno_good != 1)
761 tprints("????" /* anti-trigraph gap */ "(");
762 else if (tcp->qual_flg & UNDEFINED_SCNO)
763 tprintf("%s(", undefined_scno_name(tcp));
764 else
765 tprintf("%s(", tcp->s_ent->sys_name);
766 /*
767 * " <unavailable>" will be added later by the code which
768 * detects ptrace errors.
769 */
770 goto ret;
771 }
772
773 if ( sys_execve == tcp->s_ent->sys_func
774# if defined(SPARC) || defined(SPARC64)
775 || sys_execv == tcp->s_ent->sys_func
776# endif
777 ) {
778 hide_log_until_execve = 0;
779 }
780
781#if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
782 while (1) {
783# ifdef SYS_socket_subcall
784 if (tcp->s_ent->sys_func == sys_socketcall) {
785 decode_socket_subcall(tcp);
786 break;
787 }
788# endif
789# ifdef SYS_ipc_subcall
790 if (tcp->s_ent->sys_func == sys_ipc) {
791 decode_ipc_subcall(tcp);
792 break;
793 }
794# endif
795 break;
796 }
797#endif
798
799 if (!(tcp->qual_flg & QUAL_TRACE)
800 || (tracing_paths && !pathtrace_match(tcp))
801 ) {
802 tcp->flags |= TCB_INSYSCALL | TCB_FILTERED;
803 return 0;
804 }
805
806 tcp->flags &= ~TCB_FILTERED;
807
808 if (cflag == CFLAG_ONLY_STATS || hide_log_until_execve) {
809 res = 0;
810 goto ret;
811 }
812
813#ifdef USE_LIBUNWIND
814 if (stack_trace_enabled) {
815 if (tcp->s_ent->sys_flags & STACKTRACE_CAPTURE_ON_ENTER)
816 unwind_capture_stacktrace(tcp);
817 }
818#endif
819
820 printleader(tcp);
821 if (tcp->qual_flg & UNDEFINED_SCNO)
822 tprintf("%s(", undefined_scno_name(tcp));
823 else
824 tprintf("%s(", tcp->s_ent->sys_name);
825 if ((tcp->qual_flg & QUAL_RAW) && tcp->s_ent->sys_func != sys_exit)
826 res = printargs(tcp);
827 else
828 res = tcp->s_ent->sys_func(tcp);
829
830 fflush(tcp->outf);
831 ret:
832 tcp->flags |= TCB_INSYSCALL;
833 /* Measure the entrance time as late as possible to avoid errors. */
834 if (Tflag || cflag)
835 gettimeofday(&tcp->etime, NULL);
836 return res;
837}
838
839static int
840trace_syscall_exiting(struct tcb *tcp)
841{
842 int sys_res;
843 struct timeval tv;
844 int res;
845 long u_error;
846
847 /* Measure the exit time as early as possible to avoid errors. */
848 if (Tflag || cflag)
849 gettimeofday(&tv, NULL);
850
851#ifdef USE_LIBUNWIND
852 if (stack_trace_enabled) {
853 if (tcp->s_ent->sys_flags & STACKTRACE_INVALIDATE_CACHE)
854 unwind_cache_invalidate(tcp);
855 }
856#endif
857
858#if SUPPORTED_PERSONALITIES > 1
859 update_personality(tcp, tcp->currpers);
860#endif
861 res = (get_regs_error ? -1 : get_syscall_result(tcp));
862 if (res == 1) {
863 if (filtered(tcp) || hide_log_until_execve)
864 goto ret;
865 }
866
867 if (cflag) {
868 count_syscall(tcp, &tv);
869 if (cflag == CFLAG_ONLY_STATS) {
870 goto ret;
871 }
872 }
873
874 /* If not in -ff mode, and printing_tcp != tcp,
875 * then the log currently does not end with output
876 * of _our syscall entry_, but with something else.
877 * We need to say which syscall's return is this.
878 *
879 * Forced reprinting via TCB_REPRINT is used only by
880 * "strace -ff -oLOG test/threaded_execve" corner case.
881 * It's the only case when -ff mode needs reprinting.
882 */
883 if ((followfork < 2 && printing_tcp != tcp) || (tcp->flags & TCB_REPRINT)) {
884 tcp->flags &= ~TCB_REPRINT;
885 printleader(tcp);
886 if (tcp->qual_flg & UNDEFINED_SCNO)
887 tprintf("<... %s resumed> ", undefined_scno_name(tcp));
888 else
889 tprintf("<... %s resumed> ", tcp->s_ent->sys_name);
890 }
891 printing_tcp = tcp;
892
893 tcp->s_prev_ent = NULL;
894 if (res != 1) {
895 /* There was error in one of prior ptrace ops */
896 tprints(") ");
897 tabto();
898 tprints("= ? <unavailable>\n");
899 line_ended();
900 tcp->flags &= ~TCB_INSYSCALL;
901 return res;
902 }
903 tcp->s_prev_ent = tcp->s_ent;
904
905 sys_res = 0;
906 if (tcp->qual_flg & QUAL_RAW) {
907 /* sys_res = printargs(tcp); - but it's nop on sysexit */
908 } else {
909 /* FIXME: not_failing_only (IOW, option -z) is broken:
910 * failure of syscall is known only after syscall return.
911 * Thus we end up with something like this on, say, ENOENT:
912 * open("doesnt_exist", O_RDONLY <unfinished ...>
913 * {next syscall decode}
914 * whereas the intended result is that open(...) line
915 * is not shown at all.
916 */
917 if (not_failing_only && tcp->u_error)
918 goto ret; /* ignore failed syscalls */
919 sys_res = tcp->s_ent->sys_func(tcp);
920 }
921
922 tprints(") ");
923 tabto();
924 u_error = tcp->u_error;
925 if (tcp->qual_flg & QUAL_RAW) {
926 if (u_error)
927 tprintf("= -1 (errno %ld)", u_error);
928 else
929 tprintf("= %#lx", tcp->u_rval);
930 }
931 else if (!(sys_res & RVAL_NONE) && u_error) {
932 switch (u_error) {
933 /* Blocked signals do not interrupt any syscalls.
934 * In this case syscalls don't return ERESTARTfoo codes.
935 *
936 * Deadly signals set to SIG_DFL interrupt syscalls
937 * and kill the process regardless of which of the codes below
938 * is returned by the interrupted syscall.
939 * In some cases, kernel forces a kernel-generated deadly
940 * signal to be unblocked and set to SIG_DFL (and thus cause
941 * death) if it is blocked or SIG_IGNed: for example, SIGSEGV
942 * or SIGILL. (The alternative is to leave process spinning
943 * forever on the faulty instruction - not useful).
944 *
945 * SIG_IGNed signals and non-deadly signals set to SIG_DFL
946 * (for example, SIGCHLD, SIGWINCH) interrupt syscalls,
947 * but kernel will always restart them.
948 */
949 case ERESTARTSYS:
950 /* Most common type of signal-interrupted syscall exit code.
951 * The system call will be restarted with the same arguments
952 * if SA_RESTART is set; otherwise, it will fail with EINTR.
953 */
954 tprints("= ? ERESTARTSYS (To be restarted if SA_RESTART is set)");
955 break;
956 case ERESTARTNOINTR:
957 /* Rare. For example, fork() returns this if interrupted.
958 * SA_RESTART is ignored (assumed set): the restart is unconditional.
959 */
960 tprints("= ? ERESTARTNOINTR (To be restarted)");
961 break;
962 case ERESTARTNOHAND:
963 /* pause(), rt_sigsuspend() etc use this code.
964 * SA_RESTART is ignored (assumed not set):
965 * syscall won't restart (will return EINTR instead)
966 * even after signal with SA_RESTART set. However,
967 * after SIG_IGN or SIG_DFL signal it will restart
968 * (thus the name "restart only if has no handler").
969 */
970 tprints("= ? ERESTARTNOHAND (To be restarted if no handler)");
971 break;
972 case ERESTART_RESTARTBLOCK:
973 /* Syscalls like nanosleep(), poll() which can't be
974 * restarted with their original arguments use this
975 * code. Kernel will execute restart_syscall() instead,
976 * which changes arguments before restarting syscall.
977 * SA_RESTART is ignored (assumed not set) similarly
978 * to ERESTARTNOHAND. (Kernel can't honor SA_RESTART
979 * since restart data is saved in "restart block"
980 * in task struct, and if signal handler uses a syscall
981 * which in turn saves another such restart block,
982 * old data is lost and restart becomes impossible)
983 */
984 tprints("= ? ERESTART_RESTARTBLOCK (Interrupted by signal)");
985 break;
986 default:
987 if ((unsigned long) u_error < nerrnos
988 && errnoent[u_error])
989 tprintf("= -1 %s (%s)", errnoent[u_error],
990 strerror(u_error));
991 else
992 tprintf("= -1 ERRNO_%lu (%s)", u_error,
993 strerror(u_error));
994 break;
995 }
996 if ((sys_res & RVAL_STR) && tcp->auxstr)
997 tprintf(" (%s)", tcp->auxstr);
998 }
999 else {
1000 if (sys_res & RVAL_NONE)
1001 tprints("= ?");
1002 else {
1003 switch (sys_res & RVAL_MASK) {
1004 case RVAL_HEX:
1005#if SUPPORTED_PERSONALITIES > 1
1006 if (current_wordsize < sizeof(long))
1007 tprintf("= %#x",
1008 (unsigned int) tcp->u_rval);
1009 else
1010#endif
1011 tprintf("= %#lx", tcp->u_rval);
1012 break;
1013 case RVAL_OCTAL:
1014 tprintf("= %#lo", tcp->u_rval);
1015 break;
1016 case RVAL_UDECIMAL:
1017 tprintf("= %lu", tcp->u_rval);
1018 break;
1019 case RVAL_DECIMAL:
1020 tprintf("= %ld", tcp->u_rval);
1021 break;
1022 case RVAL_FD:
1023 if (show_fd_path) {
1024 tprints("= ");
1025 printfd(tcp, tcp->u_rval);
1026 }
1027 else
1028 tprintf("= %ld", tcp->u_rval);
1029 break;
1030#if defined(LINUX_MIPSN32) || defined(X32)
1031 /*
1032 case RVAL_LHEX:
1033 tprintf("= %#llx", tcp->u_lrval);
1034 break;
1035 case RVAL_LOCTAL:
1036 tprintf("= %#llo", tcp->u_lrval);
1037 break;
1038 */
1039 case RVAL_LUDECIMAL:
1040 tprintf("= %llu", tcp->u_lrval);
1041 break;
1042 /*
1043 case RVAL_LDECIMAL:
1044 tprintf("= %lld", tcp->u_lrval);
1045 break;
1046 */
1047#endif
1048 default:
1049 fprintf(stderr,
1050 "invalid rval format\n");
1051 break;
1052 }
1053 }
1054 if ((sys_res & RVAL_STR) && tcp->auxstr)
1055 tprintf(" (%s)", tcp->auxstr);
1056 }
1057 if (Tflag) {
1058 tv_sub(&tv, &tv, &tcp->etime);
1059 tprintf(" <%ld.%06ld>",
1060 (long) tv.tv_sec, (long) tv.tv_usec);
1061 }
1062 tprints("\n");
1063 dumpio(tcp);
1064 line_ended();
1065
1066#ifdef USE_LIBUNWIND
1067 if (stack_trace_enabled)
1068 unwind_print_stacktrace(tcp);
1069#endif
1070
1071 ret:
1072 tcp->flags &= ~TCB_INSYSCALL;
1073 return 0;
1074}
1075
1076int
1077trace_syscall(struct tcb *tcp)
1078{
1079 return exiting(tcp) ?
1080 trace_syscall_exiting(tcp) : trace_syscall_entering(tcp);
1081}
1082
1083/*
1084 * Cannot rely on __kernel_[u]long_t being defined,
1085 * it is quite a recent feature of <asm/posix_types.h>.
1086 */
1087#ifdef __kernel_long_t
1088typedef __kernel_long_t kernel_long_t;
1089typedef __kernel_ulong_t kernel_ulong_t;
1090#else
1091# ifdef X32
1092typedef long long kernel_long_t;
1093typedef unsigned long long kernel_ulong_t;
1094# else
1095typedef long kernel_long_t;
1096typedef unsigned long kernel_ulong_t;
1097# endif
1098#endif
1099
1100/*
1101 * Check the syscall return value register value for whether it is
1102 * a negated errno code indicating an error, or a success return value.
1103 */
1104static inline bool
1105is_negated_errno(kernel_ulong_t val)
1106{
1107 /* Linux kernel defines MAX_ERRNO to 4095. */
1108 kernel_ulong_t max = -(kernel_long_t) 4095;
1109
1110#if SUPPORTED_PERSONALITIES > 1 && SIZEOF_LONG > 4
1111 if (current_wordsize < sizeof(val)) {
1112 val = (uint32_t) val;
1113 max = (uint32_t) max;
1114 }
1115#elif defined X32
1116 /*
1117 * current_wordsize is 4 even in personality 0 (native X32)
1118 * but truncation _must not_ be done in it.
1119 * can't check current_wordsize here!
1120 */
1121 if (current_personality != 0) {
1122 val = (uint32_t) val;
1123 max = (uint32_t) max;
1124 }
1125#endif
1126
1127 return val >= max;
1128}
1129
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001130#include "arch_regs.c"
Wichert Akkermanc7926982000-04-10 22:22:31 +00001131
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +00001132#ifdef HAVE_GETRVAL2
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001133# include "arch_getrval2.c"
Dmitry V. Levin48f08902015-03-05 23:30:02 +00001134#endif
1135
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001136void
Denys Vlasenko5a2483b2013-07-01 12:49:14 +02001137print_pc(struct tcb *tcp)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001138{
Dmitry V. Levine96cb622015-02-15 15:52:02 +00001139 const char *fmt;
1140 const char *bad;
1141
Dmitry V. Levinb2d9ff22015-02-23 13:43:20 +00001142#ifdef current_wordsize
Dmitry V. Levine96cb622015-02-15 15:52:02 +00001143# define pc_wordsize current_wordsize
Dmitry V. Levinb2d9ff22015-02-23 13:43:20 +00001144#else
1145# define pc_wordsize personality_wordsize[tcp->currpers]
Dmitry V. Levine96cb622015-02-15 15:52:02 +00001146#endif
1147
1148 if (pc_wordsize == 4) {
1149 fmt = "[%08lx] ";
1150 bad = "[????????] ";
1151 } else {
1152 fmt = "[%016lx] ";
1153 bad = "[????????????????] ";
1154 }
1155
1156#undef pc_wordsize
1157#define PRINTBADPC tprints(bad)
1158
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001159 if (get_regs_error) {
1160 PRINTBADPC;
1161 return;
1162 }
Dmitry V. Levine96cb622015-02-15 15:52:02 +00001163
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001164#include "print_pc.c"
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001165}
1166
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001167#if defined X86_64 || defined POWERPC
1168# include "getregs_old.c"
Anton Blanchard14d51a62013-06-26 14:42:37 +10001169#endif
1170
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001171#if defined ARCH_REGS_FOR_GETREGSET
1172static long
1173get_regset(pid_t pid)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001174{
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001175# ifdef ARCH_IOVEC_FOR_GETREGSET
1176 /* variable iovec */
1177 ARCH_IOVEC_FOR_GETREGSET.iov_len = sizeof(ARCH_REGS_FOR_GETREGSET);
1178 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS,
1179 &ARCH_IOVEC_FOR_GETREGSET);
1180# else
1181 /* constant iovec */
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001182 static struct iovec io = {
1183 .iov_base = &ARCH_REGS_FOR_GETREGSET,
1184 .iov_len = sizeof(ARCH_REGS_FOR_GETREGSET)
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001185 };
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001186 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001187
Dmitry V. Levinfaa177e2013-03-17 23:48:45 +00001188# endif
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001189}
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001190#endif /* ARCH_REGS_FOR_GETREGSET */
Dmitry V. Levinb787b102013-03-18 10:17:14 +00001191
Denys Vlasenko48e4c1b2013-02-16 08:23:40 +01001192void
1193get_regs(pid_t pid)
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001194{
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001195#ifdef ARCH_REGS_FOR_GETREGSET
1196# ifdef X86_64
1197 /* Try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS. */
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001198 static int getregset_support;
1199
1200 if (getregset_support >= 0) {
Dmitry V. Levind6db1db2015-02-13 23:41:04 +00001201 get_regs_error = get_regset(pid);
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001202 if (getregset_support > 0)
1203 return;
1204 if (get_regs_error >= 0) {
1205 getregset_support = 1;
1206 return;
Denys Vlasenkoeec8d5d2013-02-14 03:29:48 +01001207 }
Dmitry V. Levin27e3ae92013-03-17 23:18:35 +00001208 if (errno == EPERM || errno == ESRCH)
1209 return;
1210 getregset_support = -1;
1211 }
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001212 getregs_old(pid);
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001213# else /* !X86_64 */
1214 /* Assume that PTRACE_GETREGSET works. */
1215 get_regs_error = get_regset(pid);
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001216# endif
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001217#elif defined ARCH_REGS_FOR_GETREGS
1218# if defined SPARC || defined SPARC64
1219 /* SPARC systems have the meaning of data and addr reversed */
1220 get_regs_error = ptrace(PTRACE_GETREGS, pid, (char *)&ARCH_REGS_FOR_GETREGS, 0);
1221# elif defined POWERPC
1222 static bool old_kernel = 0;
1223 if (old_kernel)
1224 goto old;
1225 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1226 if (get_regs_error && errno == EIO) {
1227 old_kernel = 1;
1228 old:
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001229 get_regs_error = getregs_old(pid);
Dmitry V. Levin7abf2e82015-02-13 23:56:54 +00001230 }
1231# else
1232 /* Assume that PTRACE_GETREGS works. */
1233 get_regs_error = ptrace(PTRACE_GETREGS, pid, NULL, &ARCH_REGS_FOR_GETREGS);
1234# endif
1235
1236#else /* !ARCH_REGS_FOR_GETREGSET && !ARCH_REGS_FOR_GETREGS */
1237# warning get_regs is not implemented for this architecture yet
1238 get_regs_error = 0;
1239#endif
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001240}
Denys Vlasenkoce7d9532013-02-05 16:36:13 +01001241
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001242/* Returns:
Denys Vlasenko907735a2012-03-21 00:23:16 +01001243 * 0: "ignore this ptrace stop", bail out of trace_syscall_entering() silently.
1244 * 1: ok, continue in trace_syscall_entering().
1245 * other: error, trace_syscall_entering() should print error indicator
Denys Vlasenkob88f9612011-08-21 18:03:23 +02001246 * ("????" etc) and bail out.
1247 */
Denys Vlasenko8497b622015-03-21 17:51:52 +01001248int
Denys Vlasenko06602d92011-08-24 17:53:52 +02001249get_scno(struct tcb *tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001250{
Dmitry V. Levin144cda22015-03-23 18:48:32 +00001251 if (get_regs_error)
1252 return -1;
1253
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001254 long scno = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001255
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001256#include "get_scno.c"
Denys Vlasenkoea0e6e82009-02-25 17:08:40 +00001257
Denys Vlasenko8cd1acd2011-08-24 16:52:57 +02001258 tcp->scno = scno;
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001259 if (SCNO_IS_VALID(tcp->scno)) {
1260 tcp->s_ent = &sysent[scno];
1261 tcp->qual_flg = qual_flags[scno];
1262 } else {
Denys Vlasenkoa9fe13c2013-02-22 13:26:10 +01001263 static const struct_sysent unknown = {
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001264 .nargs = MAX_ARGS,
1265 .sys_flags = 0,
1266 .sys_func = printargs,
Denys Vlasenkocc59f142015-04-07 12:46:59 +02001267 .sys_name = "system call",
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001268 };
1269 tcp->s_ent = &unknown;
1270 tcp->qual_flg = UNDEFINED_SCNO | QUAL_RAW | DEFAULT_QUAL_FLAGS;
Dmitry V. Levinea009002015-03-24 01:59:07 +00001271 if (debug_flag)
1272 fprintf(stderr, "pid %d invalid syscall %ld\n",
1273 tcp->pid, scno);
Denys Vlasenko74ec14f2013-02-21 16:13:47 +01001274 }
Pavel Machek4dc3b142000-02-01 17:58:41 +00001275 return 1;
1276}
1277
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001278/* Return -1 on error or 1 on success (never 0!) */
Roland McGratha4d48532005-06-08 20:45:28 +00001279static int
Denys Vlasenkobb6bb5c2012-03-20 17:10:35 +01001280get_syscall_args(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001281{
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001282#include "get_syscall_args.c"
Pavel Machek4dc3b142000-02-01 17:58:41 +00001283 return 1;
1284}
1285
Denys Vlasenkoc956ef02013-02-16 14:25:56 +01001286static void
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001287get_error(struct tcb *tcp)
1288{
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001289 const bool check_errno = !(tcp->s_ent->sys_flags & SYSCALL_NEVER_FAILS);
1290 tcp->u_error = 0;
Dmitry V. Levinf46ab5f2015-02-05 18:50:24 +00001291
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001292#include "get_error.c"
Denys Vlasenkoa6146922011-08-24 18:07:22 +02001293}
1294
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001295/* Returns:
1296 * 1: ok, continue in trace_syscall_exiting().
1297 * -1: error, trace_syscall_exiting() should print error indicator
1298 * ("????" etc) and bail out.
1299 */
Denys Vlasenkoed4f4f02011-08-22 11:54:06 +02001300static int
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001301get_syscall_result(struct tcb *tcp)
Pavel Machek4dc3b142000-02-01 17:58:41 +00001302{
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001303#if defined ARCH_REGS_FOR_GETREGSET || defined ARCH_REGS_FOR_GETREGS
1304 /* already done by get_regs */
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001305#else
Dmitry V. Levind70d1c42015-03-22 22:13:55 +00001306# include "get_syscall_result.c"
Masatake YAMATOed69fc22014-04-16 15:33:35 +09001307#endif
Dmitry V. Levin1b786072015-03-22 18:09:55 +00001308 get_error(tcp);
1309 return 1;
Dmitry V. Levin7d7c9632010-03-29 17:51:02 +00001310}