blob: 666b9be41ac4caab9dc1da1b66cc3f9bb7b9ced0 [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.
32 *
33 * $Id$
34 */
35
36#include "defs.h"
37
38#include <signal.h>
39#include <time.h>
40#include <errno.h>
41#include <sys/user.h>
42#include <sys/syscall.h>
43#include <sys/param.h>
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000044
Wichert Akkerman15dea971999-10-06 13:06:34 +000045#if HAVE_ASM_REG_H
Roland McGrath6d1a65c2004-07-12 07:44:08 +000046#if defined (SPARC) || defined (SPARC64)
Wichert Akkerman00a82ee2001-03-28 20:29:17 +000047# define fpq kernel_fpq
48# define fq kernel_fq
49# define fpu kernel_fpu
50#endif
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000051#include <asm/reg.h>
Roland McGrath6d1a65c2004-07-12 07:44:08 +000052#if defined (SPARC) || defined (SPARC64)
Wichert Akkerman00a82ee2001-03-28 20:29:17 +000053# undef fpq
54# undef fq
Roland McGrath761b5d72002-12-15 23:58:31 +000055# undef fpu
Wichert Akkerman00a82ee2001-03-28 20:29:17 +000056#endif
Wichert Akkerman9ce1a631999-08-29 23:15:07 +000057#endif
58
Wichert Akkerman15dea971999-10-06 13:06:34 +000059#ifdef HAVE_SYS_REG_H
60#include <sys/reg.h>
61#ifndef PTRACE_PEEKUSR
62# define PTRACE_PEEKUSR PTRACE_PEEKUSER
63#endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000064#elif defined(HAVE_LINUX_PTRACE_H)
65#undef PTRACE_SYSCALL
Roland McGrathce9f0742004-03-01 21:29:22 +000066# ifdef HAVE_STRUCT_IA64_FPREG
67# define ia64_fpreg XXX_ia64_fpreg
68# endif
69# ifdef HAVE_STRUCT_PT_ALL_USER_REGS
70# define pt_all_user_regs XXX_pt_all_user_regs
71# endif
Wichert Akkermanfaf72222000-02-19 23:59:03 +000072#include <linux/ptrace.h>
Roland McGrathce9f0742004-03-01 21:29:22 +000073# undef ia64_fpreg
74# undef pt_all_user_regs
Wichert Akkerman15dea971999-10-06 13:06:34 +000075#endif
76
Roland McGrath6d1a65c2004-07-12 07:44:08 +000077#if defined (LINUX) && defined (SPARC64)
78# define r_pc r_tpc
79# undef PTRACE_GETREGS
80# define PTRACE_GETREGS PTRACE_GETREGS64
81# undef PTRACE_SETREGS
82# define PTRACE_SETREGS PTRACE_SETREGS64
83#endif /* LINUX && SPARC64 */
84
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +000085#if defined(LINUX) && defined(IA64)
86# include <asm/ptrace_offsets.h>
87# include <asm/rse.h>
88#endif
89
Pavel Machekd8ae7e32000-02-01 17:17:25 +000090#define NR_SYSCALL_BASE 0
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091#ifdef LINUX
92#ifndef ERESTARTSYS
93#define ERESTARTSYS 512
94#endif
95#ifndef ERESTARTNOINTR
96#define ERESTARTNOINTR 513
97#endif
98#ifndef ERESTARTNOHAND
99#define ERESTARTNOHAND 514 /* restart if no handler.. */
100#endif
101#ifndef ENOIOCTLCMD
102#define ENOIOCTLCMD 515 /* No ioctl command */
103#endif
Roland McGrath9c555e72003-07-09 09:47:59 +0000104#ifndef ERESTART_RESTARTBLOCK
105#define ERESTART_RESTARTBLOCK 516 /* restart by calling sys_restart_syscall */
106#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000107#ifndef NSIG
108#define NSIG 32
109#endif
110#ifdef ARM
111#undef NSIG
112#define NSIG 32
Pavel Machekd8ae7e32000-02-01 17:17:25 +0000113#undef NR_SYSCALL_BASE
114#define NR_SYSCALL_BASE __NR_SYSCALL_BASE
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000115#endif
116#endif /* LINUX */
117
118#include "syscall.h"
119
120/* Define these shorthand notations to simplify the syscallent files. */
121#define TF TRACE_FILE
122#define TI TRACE_IPC
123#define TN TRACE_NETWORK
124#define TP TRACE_PROCESS
125#define TS TRACE_SIGNAL
126
127struct sysent sysent0[] = {
128#include "syscallent.h"
129};
130int nsyscalls0 = sizeof sysent0 / sizeof sysent0[0];
131
132#if SUPPORTED_PERSONALITIES >= 2
133struct sysent sysent1[] = {
134#include "syscallent1.h"
135};
136int nsyscalls1 = sizeof sysent1 / sizeof sysent1[0];
137#endif /* SUPPORTED_PERSONALITIES >= 2 */
138
139#if SUPPORTED_PERSONALITIES >= 3
140struct sysent sysent2[] = {
141#include "syscallent2.h"
142};
143int nsyscalls2 = sizeof sysent2 / sizeof sysent2[0];
144#endif /* SUPPORTED_PERSONALITIES >= 3 */
145
146struct sysent *sysent;
147int nsyscalls;
148
149/* Now undef them since short defines cause wicked namespace pollution. */
150#undef TF
151#undef TI
152#undef TN
153#undef TP
154#undef TS
155
156char *errnoent0[] = {
157#include "errnoent.h"
158};
159int nerrnos0 = sizeof errnoent0 / sizeof errnoent0[0];
160
161#if SUPPORTED_PERSONALITIES >= 2
162char *errnoent1[] = {
163#include "errnoent1.h"
164};
165int nerrnos1 = sizeof errnoent1 / sizeof errnoent1[0];
166#endif /* SUPPORTED_PERSONALITIES >= 2 */
167
168#if SUPPORTED_PERSONALITIES >= 3
169char *errnoent2[] = {
170#include "errnoent2.h"
171};
172int nerrnos2 = sizeof errnoent2 / sizeof errnoent2[0];
173#endif /* SUPPORTED_PERSONALITIES >= 3 */
174
175char **errnoent;
176int nerrnos;
177
178int current_personality;
179
180int
Wichert Akkermane6f876c1999-06-22 15:28:30 +0000181set_personality(personality)
182int personality;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000183{
184 switch (personality) {
185 case 0:
186 errnoent = errnoent0;
187 nerrnos = nerrnos0;
188 sysent = sysent0;
189 nsyscalls = nsyscalls0;
190 ioctlent = ioctlent0;
191 nioctlents = nioctlents0;
192 signalent = signalent0;
193 nsignals = nsignals0;
194 break;
195
196#if SUPPORTED_PERSONALITIES >= 2
197 case 1:
198 errnoent = errnoent1;
199 nerrnos = nerrnos1;
200 sysent = sysent1;
201 nsyscalls = nsyscalls1;
202 ioctlent = ioctlent1;
203 nioctlents = nioctlents1;
204 signalent = signalent1;
205 nsignals = nsignals1;
206 break;
207#endif /* SUPPORTED_PERSONALITIES >= 2 */
208
209#if SUPPORTED_PERSONALITIES >= 3
210 case 2:
211 errnoent = errnoent2;
212 nerrnos = nerrnos2;
213 sysent = sysent2;
214 nsyscalls = nsyscalls2;
215 ioctlent = ioctlent2;
216 nioctlents = nioctlents2;
217 signalent = signalent2;
218 nsignals = nsignals2;
219 break;
220#endif /* SUPPORTED_PERSONALITIES >= 3 */
221
222 default:
223 return -1;
224 }
225
226 current_personality = personality;
227 return 0;
228}
229
230int qual_flags[MAX_QUALS];
231
232static int call_count[MAX_QUALS];
233static int error_count[MAX_QUALS];
234static struct timeval tv_count[MAX_QUALS];
235static int sorted_count[MAX_QUALS];
236
237static struct timeval shortest = { 1000000, 0 };
238
Roland McGrath9797ceb2002-12-30 10:23:00 +0000239static int qual_syscall(), qual_signal(), qual_fault(), qual_desc();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000240
241static struct qual_options {
242 int bitflag;
243 char *option_name;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000244 int (*qualify)();
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000245 char *argument_name;
246} qual_options[] = {
Roland McGrath9797ceb2002-12-30 10:23:00 +0000247 { QUAL_TRACE, "trace", qual_syscall, "system call" },
248 { QUAL_TRACE, "t", qual_syscall, "system call" },
249 { QUAL_ABBREV, "abbrev", qual_syscall, "system call" },
250 { QUAL_ABBREV, "a", qual_syscall, "system call" },
251 { QUAL_VERBOSE, "verbose", qual_syscall, "system call" },
252 { QUAL_VERBOSE, "v", qual_syscall, "system call" },
253 { QUAL_RAW, "raw", qual_syscall, "system call" },
254 { QUAL_RAW, "x", qual_syscall, "system call" },
255 { QUAL_SIGNAL, "signal", qual_signal, "signal" },
256 { QUAL_SIGNAL, "signals", qual_signal, "signal" },
257 { QUAL_SIGNAL, "s", qual_signal, "signal" },
258 { QUAL_FAULT, "fault", qual_fault, "fault" },
259 { QUAL_FAULT, "faults", qual_fault, "fault" },
260 { QUAL_FAULT, "m", qual_fault, "fault" },
261 { QUAL_READ, "read", qual_desc, "descriptor" },
262 { QUAL_READ, "reads", qual_desc, "descriptor" },
263 { QUAL_READ, "r", qual_desc, "descriptor" },
264 { QUAL_WRITE, "write", qual_desc, "descriptor" },
265 { QUAL_WRITE, "writes", qual_desc, "descriptor" },
266 { QUAL_WRITE, "w", qual_desc, "descriptor" },
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000267 { 0, NULL, NULL, NULL },
268};
269
Roland McGrath9797ceb2002-12-30 10:23:00 +0000270static void
271qualify_one(n, opt, not)
272 int n;
273 struct qual_options *opt;
274 int not;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000275{
Roland McGrath9797ceb2002-12-30 10:23:00 +0000276 if (not)
277 qual_flags[n] &= ~opt->bitflag;
278 else
279 qual_flags[n] |= opt->bitflag;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000280}
281
282static int
Roland McGrath9797ceb2002-12-30 10:23:00 +0000283qual_syscall(s, opt, not)
284 char *s;
285 struct qual_options *opt;
286 int not;
287{
288 int i;
289 int any = 0;
290
291 for (i = 0; i < nsyscalls; i++) {
292 if (strcmp(s, sysent[i].sys_name) == 0) {
293 qualify_one(i, opt, not);
294 any = 1;
295 }
296 }
297 return !any;
298}
299
300static int
301qual_signal(s, opt, not)
302 char *s;
303 struct qual_options *opt;
304 int not;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000305{
306 int i;
307 char buf[32];
308
Roland McGrath9797ceb2002-12-30 10:23:00 +0000309 if (s && *s && isdigit((unsigned char)*s)) {
310 qualify_one(atoi(s), opt, not);
311 return 1;
312 }
Roland McGrathd62b6712004-03-02 06:52:01 +0000313 if (strlen(s) >= sizeof buf)
314 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000315 strcpy(buf, s);
316 s = buf;
317 for (i = 0; s[i]; i++)
Wichert Akkerman2ee6e452000-02-18 15:36:12 +0000318 s[i] = toupper((unsigned char)(s[i]));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000319 if (strncmp(s, "SIG", 3) == 0)
320 s += 3;
Roland McGrath9797ceb2002-12-30 10:23:00 +0000321 for (i = 0; i <= NSIG; i++)
322 if (strcmp(s, signame(i) + 3) == 0) {
323 qualify_one(atoi(s), opt, not);
324 return 1;
325 }
326 return 0;
327}
328
329static int
330qual_fault(s, opt, not)
331 char *s;
332 struct qual_options *opt;
333 int not;
334{
335 return -1;
336}
337
338static int
339qual_desc(s, opt, not)
340 char *s;
341 struct qual_options *opt;
342 int not;
343{
344 if (s && *s && isdigit((unsigned char)*s)) {
345 qualify_one(atoi(s), opt, not);
Roland McGrath2b619022003-04-10 18:58:20 +0000346 return 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000347 }
348 return -1;
349}
350
351static int
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000352lookup_class(s)
Roland McGrath9797ceb2002-12-30 10:23:00 +0000353 char *s;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000354{
355 if (strcmp(s, "file") == 0)
356 return TRACE_FILE;
357 if (strcmp(s, "ipc") == 0)
358 return TRACE_IPC;
359 if (strcmp(s, "network") == 0)
360 return TRACE_NETWORK;
361 if (strcmp(s, "process") == 0)
362 return TRACE_PROCESS;
363 if (strcmp(s, "signal") == 0)
364 return TRACE_SIGNAL;
365 return -1;
366}
367
368void
369qualify(s)
370char *s;
371{
372 struct qual_options *opt;
373 int not;
374 char *p;
375 int i, n;
376
377 opt = &qual_options[0];
378 for (i = 0; (p = qual_options[i].option_name); i++) {
379 n = strlen(p);
380 if (strncmp(s, p, n) == 0 && s[n] == '=') {
381 opt = &qual_options[i];
382 s += n + 1;
383 break;
384 }
385 }
386 not = 0;
387 if (*s == '!') {
388 not = 1;
389 s++;
390 }
391 if (strcmp(s, "none") == 0) {
392 not = 1 - not;
393 s = "all";
394 }
395 if (strcmp(s, "all") == 0) {
396 for (i = 0; i < MAX_QUALS; i++) {
397 if (not)
398 qual_flags[i] &= ~opt->bitflag;
399 else
400 qual_flags[i] |= opt->bitflag;
401 }
402 return;
403 }
404 for (i = 0; i < MAX_QUALS; i++) {
405 if (not)
406 qual_flags[i] |= opt->bitflag;
407 else
408 qual_flags[i] &= ~opt->bitflag;
409 }
410 for (p = strtok(s, ","); p; p = strtok(NULL, ",")) {
411 if (opt->bitflag == QUAL_TRACE && (n = lookup_class(p)) > 0) {
412 for (i = 0; i < MAX_QUALS; i++) {
413 if (sysent[i].sys_flags & n) {
414 if (not)
415 qual_flags[i] &= ~opt->bitflag;
416 else
417 qual_flags[i] |= opt->bitflag;
418 }
419 }
420 continue;
421 }
Roland McGrath9797ceb2002-12-30 10:23:00 +0000422 if (opt->qualify(p, opt, not)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000423 fprintf(stderr, "strace: invalid %s `%s'\n",
424 opt->argument_name, p);
425 exit(1);
426 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000427 }
428 return;
429}
430
431static void
432dumpio(tcp)
433struct tcb *tcp;
434{
435 if (syserror(tcp))
436 return;
437 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= MAX_QUALS)
438 return;
Pavel Machekd8ae7e32000-02-01 17:17:25 +0000439 switch (tcp->scno + NR_SYSCALL_BASE) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000440 case SYS_read:
Roland McGrathaa510622004-08-31 07:47:45 +0000441#ifdef SYS_pread64
442 case SYS_pread64:
443#endif
444#if defined SYS_pread && SYS_pread64 != SYS_pread
445 case SYS_pread:
446#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000447#ifdef SYS_recv
448 case SYS_recv:
449#endif
450#ifdef SYS_recvfrom
451 case SYS_recvfrom:
452#endif
453 if (qual_flags[tcp->u_arg[0]] & QUAL_READ)
454 dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
455 break;
456 case SYS_write:
Roland McGrathaa510622004-08-31 07:47:45 +0000457#ifdef SYS_pwrite64
458 case SYS_pwrite64:
459#endif
460#if defined SYS_pwrite && SYS_pwrite64 != SYS_pwrite
461 case SYS_pwrite:
462#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000463#ifdef SYS_send
464 case SYS_send:
465#endif
466#ifdef SYS_sendto
467 case SYS_sendto:
468#endif
469 if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE)
470 dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
471 break;
John Hughes1d08dcf2001-07-10 13:48:44 +0000472#ifdef SYS_readv
473 case SYS_readv:
474 if (qual_flags[tcp->u_arg[0]] & QUAL_READ)
475 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
476 break;
477#endif
478#ifdef SYS_writev
479 case SYS_writev:
480
481 if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE)
482 dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
483 break;
484#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000485 }
486}
487
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000488#ifndef FREEBSD
Wichert Akkerman8829a551999-06-11 13:18:40 +0000489enum subcall_style { shift_style, deref_style, mask_style, door_style };
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000490#else /* FREEBSD */
491enum subcall_style { shift_style, deref_style, mask_style, door_style, table_style };
492
493struct subcall {
494 int call;
495 int nsubcalls;
496 int subcalls[5];
497};
498
499const struct subcall subcalls_table[] = {
500 { SYS_shmsys, 5, { SYS_shmat, SYS_shmctl, SYS_shmdt, SYS_shmget, SYS_shmctl } },
John Hughes61eeb552001-03-06 15:51:53 +0000501#ifdef SYS_semconfig
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000502 { SYS_semsys, 4, { SYS___semctl, SYS_semget, SYS_semop, SYS_semconfig } },
John Hughes61eeb552001-03-06 15:51:53 +0000503#else
504 { SYS_semsys, 3, { SYS___semctl, SYS_semget, SYS_semop } },
505#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000506 { SYS_msgsys, 4, { SYS_msgctl, SYS_msgget, SYS_msgsnd, SYS_msgrcv } },
507};
508#endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000509
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000510#if !(defined(LINUX) && ( defined(ALPHA) || defined(MIPS) ))
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000511
512const int socket_map [] = {
513 /* SYS_SOCKET */ 97,
514 /* SYS_BIND */ 104,
515 /* SYS_CONNECT */ 98,
516 /* SYS_LISTEN */ 106,
517 /* SYS_ACCEPT */ 99,
518 /* SYS_GETSOCKNAME */ 150,
519 /* SYS_GETPEERNAME */ 141,
520 /* SYS_SOCKETPAIR */ 135,
521 /* SYS_SEND */ 101,
522 /* SYS_RECV */ 102,
523 /* SYS_SENDTO */ 133,
524 /* SYS_RECVFROM */ 125,
525 /* SYS_SHUTDOWN */ 134,
526 /* SYS_SETSOCKOPT */ 105,
527 /* SYS_GETSOCKOPT */ 118,
528 /* SYS_SENDMSG */ 114,
529 /* SYS_RECVMSG */ 113
530};
531
532void
Wichert Akkermane6f876c1999-06-22 15:28:30 +0000533sparc_socket_decode (tcp)
534struct tcb *tcp;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000535{
536 volatile long addr;
537 volatile int i, n;
538
539 if (tcp->u_arg [0] < 1 || tcp->u_arg [0] > sizeof(socket_map)/sizeof(int)+1){
540 return;
541 }
542 tcp->scno = socket_map [tcp->u_arg [0]-1];
543 n = tcp->u_nargs = sysent [tcp->scno].nargs;
544 addr = tcp->u_arg [1];
545 for (i = 0; i < n; i++){
546 int arg;
547 if (umoven (tcp, addr, sizeof (arg), (void *) &arg) < 0)
548 arg = 0;
549 tcp->u_arg [i] = arg;
550 addr += sizeof (arg);
551 }
552}
553
Michal Ludvig0e035502002-09-23 15:41:01 +0000554void
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000555decode_subcall(tcp, subcall, nsubcalls, style)
556struct tcb *tcp;
557int subcall;
558int nsubcalls;
559enum subcall_style style;
560{
Michal Ludvig10a88d02002-10-07 14:31:00 +0000561 long addr, mask, arg;
562 int i;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000563
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000564 switch (style) {
565 case shift_style:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000566 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= nsubcalls)
567 return;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000568 tcp->scno = subcall + tcp->u_arg[0];
569 if (sysent[tcp->scno].nargs != -1)
570 tcp->u_nargs = sysent[tcp->scno].nargs;
571 else
572 tcp->u_nargs--;
573 for (i = 0; i < tcp->u_nargs; i++)
574 tcp->u_arg[i] = tcp->u_arg[i + 1];
575 break;
576 case deref_style:
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000577 if (tcp->u_arg[0] < 0 || tcp->u_arg[0] >= nsubcalls)
578 return;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000579 tcp->scno = subcall + tcp->u_arg[0];
580 addr = tcp->u_arg[1];
581 for (i = 0; i < sysent[tcp->scno].nargs; i++) {
582 if (umove(tcp, addr, &arg) < 0)
583 arg = 0;
584 tcp->u_arg[i] = arg;
585 addr += sizeof(arg);
586 }
587 tcp->u_nargs = sysent[tcp->scno].nargs;
588 break;
589 case mask_style:
590 mask = (tcp->u_arg[0] >> 8) & 0xff;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000591 for (i = 0; mask; i++)
592 mask >>= 1;
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000593 if (i >= nsubcalls)
594 return;
595 tcp->u_arg[0] &= 0xff;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000596 tcp->scno = subcall + i;
597 if (sysent[tcp->scno].nargs != -1)
598 tcp->u_nargs = sysent[tcp->scno].nargs;
599 break;
Wichert Akkerman8829a551999-06-11 13:18:40 +0000600 case door_style:
601 /*
602 * Oh, yuck. The call code is the *sixth* argument.
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000603 * (don't you mean the *last* argument? - JH)
Wichert Akkerman8829a551999-06-11 13:18:40 +0000604 */
Wichert Akkerman16a03d22000-08-10 02:14:04 +0000605 if (tcp->u_arg[5] < 0 || tcp->u_arg[5] >= nsubcalls)
606 return;
Wichert Akkerman8829a551999-06-11 13:18:40 +0000607 tcp->scno = subcall + tcp->u_arg[5];
608 if (sysent[tcp->scno].nargs != -1)
609 tcp->u_nargs = sysent[tcp->scno].nargs;
610 else
611 tcp->u_nargs--;
612 break;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000613#ifdef FREEBSD
614 case table_style:
615 for (i = 0; i < sizeof(subcalls_table) / sizeof(struct subcall); i++)
616 if (subcalls_table[i].call == tcp->scno) break;
617 if (i < sizeof(subcalls_table) / sizeof(struct subcall) &&
618 tcp->u_arg[0] >= 0 && tcp->u_arg[0] < subcalls_table[i].nsubcalls) {
619 tcp->scno = subcalls_table[i].subcalls[tcp->u_arg[0]];
620 for (i = 0; i < tcp->u_nargs; i++)
621 tcp->u_arg[i] = tcp->u_arg[i + 1];
622 }
623 break;
624#endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000625 }
626}
627#endif
628
629struct tcb *tcp_last = NULL;
630
631static int
632internal_syscall(tcp)
633struct tcb *tcp;
634{
635 /*
636 * We must always trace a few critical system calls in order to
637 * correctly support following forks in the presence of tracing
638 * qualifiers.
639 */
Pavel Machekd8ae7e32000-02-01 17:17:25 +0000640 switch (tcp->scno + NR_SYSCALL_BASE) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000641#ifdef SYS_fork
642 case SYS_fork:
643#endif
644#ifdef SYS_vfork
645 case SYS_vfork:
646#endif
John Hughes4e36a812001-04-18 15:11:51 +0000647#ifdef SYS_fork1
648 case SYS_fork1:
649#endif
650#ifdef SYS_forkall
651 case SYS_forkall:
652#endif
653#ifdef SYS_rfork1
654 case SYS_rfork1:
655#endif
656#ifdef SYS_rforkall
657 case SYS_rforkall:
658#endif
Roland McGrathf3a0e1b2003-02-20 02:45:22 +0000659#ifdef SYS_rfork
660 case SYS_rfork:
661#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000662 internal_fork(tcp);
663 break;
Wichert Akkerman7a0b6491999-12-23 15:08:17 +0000664#ifdef SYS_clone
665 case SYS_clone:
666 internal_clone(tcp);
667 break;
668#endif
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000669#ifdef SYS_clone2
670 case SYS_clone2:
671 internal_clone(tcp);
672 break;
673#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000674#ifdef SYS_execv
675 case SYS_execv:
676#endif
677#ifdef SYS_execve
678 case SYS_execve:
679#endif
John Hughes4e36a812001-04-18 15:11:51 +0000680#ifdef SYS_rexecve
681 case SYS_rexecve:
682#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000683 internal_exec(tcp);
684 break;
685
686#ifdef SYS_wait
687 case SYS_wait:
688#endif
689#ifdef SYS_wait4
690 case SYS_wait4:
691#endif
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000692#ifdef SYS32_wait4
693 case SYS32_wait4:
694#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000695#ifdef SYS_waitpid
696 case SYS_waitpid:
697#endif
698#ifdef SYS_waitsys
699 case SYS_waitsys:
700#endif
701 internal_wait(tcp);
702 break;
703
704#ifdef SYS_exit
705 case SYS_exit:
706#endif
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000707#ifdef SYS32_exit
708 case SYS32_exit:
709#endif
Roland McGrath923f7502003-01-09 06:53:27 +0000710#ifdef __NR_exit_group
711 case __NR_exit_group:
712#endif
Roland McGrath08267b82004-02-20 22:56:43 +0000713#ifdef IA64
714 case 252: /* IA-32 __NR_exit_group */
715#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000716 internal_exit(tcp);
717 break;
718 }
719 return 0;
720}
721
Wichert Akkermanc7926982000-04-10 22:22:31 +0000722
723#ifdef LINUX
724#if defined (I386)
725 static long eax;
726#elif defined (IA64)
727 long r8, r10, psr;
728 long ia32 = 0;
729#elif defined (POWERPC)
730 static long result,flags;
731#elif defined (M68K)
732 static int d0;
733#elif defined (ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000734 static struct pt_regs regs;
Wichert Akkermanc7926982000-04-10 22:22:31 +0000735#elif defined (ALPHA)
736 static long r0;
737 static long a3;
Roland McGrath6d1a65c2004-07-12 07:44:08 +0000738#elif defined (SPARC) || defined (SPARC64)
Wichert Akkerman00a82ee2001-03-28 20:29:17 +0000739 static struct regs regs;
Wichert Akkermanc7926982000-04-10 22:22:31 +0000740 static unsigned long trap;
741#elif defined(MIPS)
742 static long a3;
743 static long r2;
Michal Ludvig10a88d02002-10-07 14:31:00 +0000744#elif defined(S390) || defined(S390X)
Wichert Akkermanc7926982000-04-10 22:22:31 +0000745 static long gpr2;
746 static long pc;
Michal Ludvig882eda82002-11-11 12:50:47 +0000747 static long syscall_mode;
Wichert Akkermanc1652e22001-03-27 12:17:16 +0000748#elif defined(HPPA)
749 static long r28;
Wichert Akkermanccef6372002-05-01 16:39:22 +0000750#elif defined(SH)
751 static long r0;
Roland McGrathf5a47772003-06-26 22:40:42 +0000752#elif defined(SH64)
Roland McGrath0f87c492003-06-03 23:29:04 +0000753 static long r9;
Michal Ludvig0e035502002-09-23 15:41:01 +0000754#elif defined(X86_64)
755 static long rax;
Roland McGrath761b5d72002-12-15 23:58:31 +0000756#endif
Wichert Akkermanc7926982000-04-10 22:22:31 +0000757#endif /* LINUX */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000758#ifdef FREEBSD
759 struct reg regs;
Roland McGrath761b5d72002-12-15 23:58:31 +0000760#endif /* FREEBSD */
Wichert Akkermanc7926982000-04-10 22:22:31 +0000761
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000762int
Pavel Machek4dc3b142000-02-01 17:58:41 +0000763get_scno(tcp)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000764struct tcb *tcp;
765{
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000766 long scno = 0;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +0000767#ifndef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000768 int pid = tcp->pid;
Roland McGrath761b5d72002-12-15 23:58:31 +0000769#endif /* !PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000770
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000771#ifdef LINUX
Michal Ludvig10a88d02002-10-07 14:31:00 +0000772#if defined(S390) || defined(S390X)
Roland McGrath96dc5142003-01-20 10:23:04 +0000773 if (tcp->flags & TCB_WAITEXECVE) {
774 /*
775 * When the execve system call completes successfully, the
776 * new process still has -ENOSYS (old style) or __NR_execve
777 * (new style) in gpr2. We cannot recover the scno again
778 * by disassembly, because the image that executed the
779 * syscall is gone now. Fortunately, we don't want it. We
780 * leave the flag set so that syscall_fixup can fake the
781 * result.
782 */
783 if (tcp->flags & TCB_INSYSCALL)
784 return 1;
785 /*
786 * This is the SIGTRAP after execve. We cannot try to read
787 * the system call here either.
788 */
789 tcp->flags &= ~TCB_WAITEXECVE;
790 return 0;
791 }
Roland McGrath2f924ca2003-06-26 22:23:28 +0000792
793 if (upeek(pid, PT_GPR2, &syscall_mode) < 0)
794 return -1;
795
796 if (syscall_mode != -ENOSYS) {
797 /*
798 * Since kernel version 2.5.44 the scno gets passed in gpr2.
799 */
800 scno = syscall_mode;
801 } else {
Michal Ludvig882eda82002-11-11 12:50:47 +0000802 /*
803 * Old style of "passing" the scno via the SVC instruction.
804 */
805
806 long opcode, offset_reg, tmp;
807 void * svc_addr;
808 int gpr_offset[16] = {PT_GPR0, PT_GPR1, PT_ORIGGPR2, PT_GPR3,
809 PT_GPR4, PT_GPR5, PT_GPR6, PT_GPR7,
810 PT_GPR8, PT_GPR9, PT_GPR10, PT_GPR11,
811 PT_GPR12, PT_GPR13, PT_GPR14, PT_GPR15};
Roland McGrath761b5d72002-12-15 23:58:31 +0000812
Michal Ludvig882eda82002-11-11 12:50:47 +0000813 if (upeek(pid, PT_PSWADDR, &pc) < 0)
814 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +0000815 errno = 0;
Michal Ludvig882eda82002-11-11 12:50:47 +0000816 opcode = ptrace(PTRACE_PEEKTEXT, pid, (char *)(pc-sizeof(long)), 0);
Roland McGrath96dc5142003-01-20 10:23:04 +0000817 if (errno) {
818 perror("peektext(pc-oneword)");
Michal Ludvig882eda82002-11-11 12:50:47 +0000819 return -1;
Roland McGrath96dc5142003-01-20 10:23:04 +0000820 }
Michal Ludvig882eda82002-11-11 12:50:47 +0000821
822 /*
823 * We have to check if the SVC got executed directly or via an
824 * EXECUTE instruction. In case of EXECUTE it is necessary to do
825 * instruction decoding to derive the system call number.
826 * Unfortunately the opcode sizes of EXECUTE and SVC are differently,
827 * so that this doesn't work if a SVC opcode is part of an EXECUTE
828 * opcode. Since there is no way to find out the opcode size this
829 * is the best we can do...
830 */
831
832 if ((opcode & 0xff00) == 0x0a00) {
833 /* SVC opcode */
834 scno = opcode & 0xff;
Roland McGrath761b5d72002-12-15 23:58:31 +0000835 }
Michal Ludvig882eda82002-11-11 12:50:47 +0000836 else {
837 /* SVC got executed by EXECUTE instruction */
838
839 /*
840 * Do instruction decoding of EXECUTE. If you really want to
841 * understand this, read the Principles of Operations.
842 */
843 svc_addr = (void *) (opcode & 0xfff);
844
845 tmp = 0;
846 offset_reg = (opcode & 0x000f0000) >> 16;
847 if (offset_reg && (upeek(pid, gpr_offset[offset_reg], &tmp) < 0))
848 return -1;
849 svc_addr += tmp;
850
851 tmp = 0;
852 offset_reg = (opcode & 0x0000f000) >> 12;
853 if (offset_reg && (upeek(pid, gpr_offset[offset_reg], &tmp) < 0))
854 return -1;
855 svc_addr += tmp;
856
857 scno = ptrace(PTRACE_PEEKTEXT, pid, svc_addr, 0);
858 if (errno)
859 return -1;
860#if defined(S390X)
861 scno >>= 48;
862#else
863 scno >>= 16;
864#endif
865 tmp = 0;
866 offset_reg = (opcode & 0x00f00000) >> 20;
867 if (offset_reg && (upeek(pid, gpr_offset[offset_reg], &tmp) < 0))
868 return -1;
869
870 scno = (scno | tmp) & 0xff;
871 }
872 }
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +0000873#elif defined (POWERPC)
Roland McGratheb285352003-01-14 09:59:00 +0000874 if (upeek(pid, sizeof(unsigned long)*PT_R0, &scno) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000875 return -1;
876 if (!(tcp->flags & TCB_INSYSCALL)) {
877 /* Check if we return from execve. */
878 if (scno == 0 && (tcp->flags & TCB_WAITEXECVE)) {
879 tcp->flags &= ~TCB_WAITEXECVE;
880 return 0;
881 }
882 }
883#elif defined (I386)
884 if (upeek(pid, 4*ORIG_EAX, &scno) < 0)
885 return -1;
Michal Ludvig0e035502002-09-23 15:41:01 +0000886#elif defined (X86_64)
887 if (upeek(pid, 8*ORIG_RAX, &scno) < 0)
888 return -1;
889
Roland McGrath761b5d72002-12-15 23:58:31 +0000890 if (!(tcp->flags & TCB_INSYSCALL)) {
891 static int currpers=-1;
Michal Ludvig0e035502002-09-23 15:41:01 +0000892 long val;
893
894 /* Check CS register value. On x86-64 linux it is:
895 * 0x33 for long mode (64 bit)
896 * 0x23 for compatibility mode (32 bit)
Roland McGrath761b5d72002-12-15 23:58:31 +0000897 * It takes only one ptrace and thus doesn't need
Michal Ludvig0e035502002-09-23 15:41:01 +0000898 * to be cached.
899 */
900 if (upeek(pid, 8*CS, &val) < 0)
901 return -1;
902 switch(val)
903 {
904 case 0x23: currpers = 1; break;
905 case 0x33: currpers = 0; break;
906 default:
907 fprintf(stderr, "Unknown value CS=0x%02X while "
908 "detecting personality of process "
909 "PID=%d\n", (int)val, pid);
910 currpers = current_personality;
911 break;
912 }
913#if 0
914 /* This version analyzes the opcode of a syscall instruction.
915 * (int 0x80 on i386 vs. syscall on x86-64)
916 * It works, but is too complicated.
917 */
918 unsigned long val, rip, i;
919
920 if(upeek(pid, 8*RIP, &rip)<0)
921 perror("upeek(RIP)");
Roland McGrath761b5d72002-12-15 23:58:31 +0000922
Michal Ludvig0e035502002-09-23 15:41:01 +0000923 /* sizeof(syscall) == sizeof(int 0x80) == 2 */
924 rip-=2;
925 errno = 0;
926
Roland McGrath761b5d72002-12-15 23:58:31 +0000927 call = ptrace(PTRACE_PEEKTEXT,pid,(char *)rip,0);
928 if (errno)
929 printf("ptrace_peektext failed: %s\n",
Michal Ludvig0e035502002-09-23 15:41:01 +0000930 strerror(errno));
931 switch (call & 0xffff)
932 {
933 /* x86-64: syscall = 0x0f 0x05 */
934 case 0x050f: currpers = 0; break;
935 /* i386: int 0x80 = 0xcd 0x80 */
936 case 0x80cd: currpers = 1; break;
937 default:
938 currpers = current_personality;
Roland McGrath761b5d72002-12-15 23:58:31 +0000939 fprintf(stderr,
Michal Ludvig0e035502002-09-23 15:41:01 +0000940 "Unknown syscall opcode (0x%04X) while "
941 "detecting personality of process "
942 "PID=%d\n", (int)call, pid);
943 break;
944 }
945#endif
946 if(currpers != current_personality)
947 {
948 char *names[]={"64 bit", "32 bit"};
949 set_personality(currpers);
Roland McGrath761b5d72002-12-15 23:58:31 +0000950 printf("[ Process PID=%d runs in %s mode. ]\n",
Michal Ludvig0e035502002-09-23 15:41:01 +0000951 pid, names[current_personality]);
952 }
Roland McGrath761b5d72002-12-15 23:58:31 +0000953 }
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000954#elif defined(IA64)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000955# define IA64_PSR_IS ((long)1 << 34)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000956 if (upeek (pid, PT_CR_IPSR, &psr) >= 0)
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000957 ia32 = (psr & IA64_PSR_IS) != 0;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000958 if (!(tcp->flags & TCB_INSYSCALL)) {
959 if (ia32) {
Wichert Akkerman7b3346b2001-10-09 23:47:38 +0000960 if (upeek(pid, PT_R1, &scno) < 0) /* orig eax */
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000961 return -1;
962 } else {
963 if (upeek (pid, PT_R15, &scno) < 0)
964 return -1;
965 }
Roland McGrathba954762003-03-05 06:29:06 +0000966 /* Check if we return from execve. */
967 if (tcp->flags & TCB_WAITEXECVE) {
968 tcp->flags &= ~TCB_WAITEXECVE;
969 return 0;
970 }
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +0000971 } else {
972 /* syscall in progress */
973 if (upeek (pid, PT_R8, &r8) < 0)
974 return -1;
975 if (upeek (pid, PT_R10, &r10) < 0)
976 return -1;
977 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000978#elif defined (ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +0000979 /*
980 * Read complete register set in one go.
981 */
982 if (ptrace(PTRACE_GETREGS, pid, NULL, (void *)&regs) == -1)
983 return -1;
984
985 /*
986 * We only need to grab the syscall number on syscall entry.
987 */
988 if (regs.ARM_ip == 0) {
989 /*
990 * Note: we only deal with only 32-bit CPUs here.
991 */
992 if (regs.ARM_cpsr & 0x20) {
993 /*
994 * Get the Thumb-mode system call number
995 */
996 scno = regs.ARM_r7;
997 } else {
998 /*
999 * Get the ARM-mode system call number
1000 */
1001 errno = 0;
1002 scno = ptrace(PTRACE_PEEKTEXT, pid, (void *)(regs.ARM_pc - 4), NULL);
1003 if (errno)
1004 return -1;
1005
1006 if (scno == 0 && (tcp->flags & TCB_WAITEXECVE)) {
1007 tcp->flags &= ~TCB_WAITEXECVE;
1008 return 0;
1009 }
1010
1011 if ((scno & 0x0ff00000) != 0x0f900000) {
1012 fprintf(stderr, "syscall: unknown syscall trap 0x%08lx\n",
1013 scno);
1014 return -1;
1015 }
1016
1017 /*
1018 * Fixup the syscall number
1019 */
1020 scno &= 0x000fffff;
1021 }
1022
1023 if (tcp->flags & TCB_INSYSCALL) {
1024 fprintf(stderr, "pid %d stray syscall entry\n", tcp->pid);
1025 tcp->flags &= ~TCB_INSYSCALL;
1026 }
1027 } else {
1028 if (!(tcp->flags & TCB_INSYSCALL)) {
1029 fprintf(stderr, "pid %d stray syscall exit\n", tcp->pid);
1030 tcp->flags |= TCB_INSYSCALL;
1031 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001032 }
1033#elif defined (M68K)
1034 if (upeek(pid, 4*PT_ORIG_D0, &scno) < 0)
1035 return -1;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001036#elif defined (MIPS)
1037 if (upeek(pid, REG_A3, &a3) < 0)
1038 return -1;
1039
1040 if(!(tcp->flags & TCB_INSYSCALL)) {
1041 if (upeek(pid, REG_V0, &scno) < 0)
1042 return -1;
1043
1044 if (scno < 0 || scno > nsyscalls) {
1045 if(a3 == 0 || a3 == -1) {
1046 if(debug)
1047 fprintf (stderr, "stray syscall exit: v0 = %ld\n", scno);
1048 return 0;
1049 }
1050 }
1051 } else {
1052 if (upeek(pid, REG_V0, &r2) < 0)
1053 return -1;
1054 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001055#elif defined (ALPHA)
1056 if (upeek(pid, REG_A3, &a3) < 0)
1057 return -1;
1058
1059 if (!(tcp->flags & TCB_INSYSCALL)) {
1060 if (upeek(pid, REG_R0, &scno) < 0)
1061 return -1;
1062
1063 /* Check if we return from execve. */
1064 if (scno == 0 && tcp->flags & TCB_WAITEXECVE) {
1065 tcp->flags &= ~TCB_WAITEXECVE;
1066 return 0;
1067 }
1068
1069 /*
1070 * Do some sanity checks to figure out if it's
1071 * really a syscall entry
1072 */
1073 if (scno < 0 || scno > nsyscalls) {
1074 if (a3 == 0 || a3 == -1) {
1075 if (debug)
1076 fprintf (stderr, "stray syscall exit: r0 = %ld\n", scno);
1077 return 0;
1078 }
1079 }
1080 }
1081 else {
1082 if (upeek(pid, REG_R0, &r0) < 0)
1083 return -1;
1084 }
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001085#elif defined (SPARC) || defined (SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001086 /* Everything we need is in the current register set. */
1087 if (ptrace(PTRACE_GETREGS,pid,(char *)&regs,0) < 0)
1088 return -1;
1089
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001090 /* If we are entering, then disassemble the syscall trap. */
1091 if (!(tcp->flags & TCB_INSYSCALL)) {
1092 /* Retrieve the syscall trap instruction. */
1093 errno = 0;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001094 trap = ptrace(PTRACE_PEEKTEXT,pid,(char *)regs.r_pc,0);
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001095#if defined(SPARC64)
1096 trap >>= 32;
1097#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001098 if (errno)
1099 return -1;
1100
1101 /* Disassemble the trap to see what personality to use. */
1102 switch (trap) {
1103 case 0x91d02010:
1104 /* Linux/SPARC syscall trap. */
1105 set_personality(0);
1106 break;
Wichert Akkermandacfb6e1999-06-03 14:21:07 +00001107 case 0x91d0206d:
1108 /* Linux/SPARC64 syscall trap. */
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001109 set_personality(2);
1110 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001111 case 0x91d02000:
1112 /* SunOS syscall trap. (pers 1) */
1113 fprintf(stderr,"syscall: SunOS no support\n");
1114 return -1;
1115 case 0x91d02008:
1116 /* Solaris 2.x syscall trap. (per 2) */
1117 set_personality(1);
Roland McGrath761b5d72002-12-15 23:58:31 +00001118 break;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001119 case 0x91d02009:
1120 /* NetBSD/FreeBSD syscall trap. */
1121 fprintf(stderr,"syscall: NetBSD/FreeBSD not supported\n");
1122 return -1;
1123 case 0x91d02027:
1124 /* Solaris 2.x gettimeofday */
1125 set_personality(1);
1126 break;
1127 default:
1128 /* Unknown syscall trap. */
1129 if(tcp->flags & TCB_WAITEXECVE) {
1130 tcp->flags &= ~TCB_WAITEXECVE;
1131 return 0;
1132 }
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001133#if defined (SPARC64)
1134 fprintf(stderr,"syscall: unknown syscall trap %08lx %016lx\n", trap, regs.r_tpc);
1135#else
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001136 fprintf(stderr,"syscall: unknown syscall trap %08x %08x\n", trap, regs.r_pc);
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001137#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001138 return -1;
1139 }
1140
1141 /* Extract the system call number from the registers. */
1142 if (trap == 0x91d02027)
1143 scno = 156;
1144 else
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001145 scno = regs.r_g1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001146 if (scno == 0) {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001147 scno = regs.r_o0;
1148 memmove (&regs.r_o0, &regs.r_o1, 7*sizeof(regs.r_o0));
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001149 }
1150 }
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001151#elif defined(HPPA)
1152 if (upeek(pid, PT_GR20, &scno) < 0)
1153 return -1;
1154 if (!(tcp->flags & TCB_INSYSCALL)) {
1155 /* Check if we return from execve. */
1156 if ((tcp->flags & TCB_WAITEXECVE)) {
1157 tcp->flags &= ~TCB_WAITEXECVE;
1158 return 0;
1159 }
1160 }
Wichert Akkermanccef6372002-05-01 16:39:22 +00001161#elif defined(SH)
1162 /*
1163 * In the new syscall ABI, the system call number is in R3.
1164 */
1165 if (upeek(pid, 4*(REG_REG0+3), &scno) < 0)
1166 return -1;
1167
1168 if (scno < 0) {
1169 /* Odd as it may seem, a glibc bug has been known to cause
1170 glibc to issue bogus negative syscall numbers. So for
1171 our purposes, make strace print what it *should* have been */
1172 long correct_scno = (scno & 0xff);
1173 if (debug)
1174 fprintf(stderr,
Michal Ludvig53b320f2002-09-23 13:30:09 +00001175 "Detected glibc bug: bogus system call number = %ld, "
1176 "correcting to %ld\n",
Wichert Akkermanccef6372002-05-01 16:39:22 +00001177 scno,
1178 correct_scno);
1179 scno = correct_scno;
1180 }
1181
1182
1183 if (!(tcp->flags & TCB_INSYSCALL)) {
1184 /* Check if we return from execve. */
1185 if (scno == 0 && tcp->flags & TCB_WAITEXECVE) {
1186 tcp->flags &= ~TCB_WAITEXECVE;
1187 return 0;
1188 }
1189 }
Roland McGrathf5a47772003-06-26 22:40:42 +00001190#elif defined(SH64)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001191 if (upeek(pid, REG_SYSCALL, &scno) < 0)
1192 return -1;
1193 scno &= 0xFFFF;
1194
1195 if (!(tcp->flags & TCB_INSYSCALL)) {
1196 /* Check if we return from execve. */
1197 if (tcp->flags & TCB_WAITEXECVE) {
1198 tcp->flags &= ~TCB_WAITEXECVE;
1199 return 0;
1200 }
1201 }
Roland McGrathf5a47772003-06-26 22:40:42 +00001202#endif /* SH64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001203#endif /* LINUX */
1204#ifdef SUNOS4
1205 if (upeek(pid, uoff(u_arg[7]), &scno) < 0)
1206 return -1;
Wichert Akkermanccef6372002-05-01 16:39:22 +00001207#elif defined(SH)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001208 /* new syscall ABI returns result in R0 */
1209 if (upeek(pid, 4*REG_REG0, (long *)&r0) < 0)
1210 return -1;
Roland McGrathf5a47772003-06-26 22:40:42 +00001211#elif defined(SH64)
Roland McGrathe1e584b2003-06-02 19:18:58 +00001212 /* ABI defines result returned in r9 */
1213 if (upeek(pid, REG_GENERAL(9), (long *)&r9) < 0)
1214 return -1;
1215
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001216#endif
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001217#ifdef USE_PROCFS
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001218#ifdef HAVE_PR_SYSCALL
John Hughes25299712001-03-06 10:10:06 +00001219 scno = tcp->status.PR_SYSCALL;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001220#else /* !HAVE_PR_SYSCALL */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001221#ifndef FREEBSD
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001222 scno = tcp->status.PR_WHAT;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001223#else /* FREEBSD */
1224 if (pread(tcp->pfd_reg, &regs, sizeof(regs), 0) < 0) {
1225 perror("pread");
1226 return -1;
1227 }
1228 switch (regs.r_eax) {
1229 case SYS_syscall:
1230 case SYS___syscall:
1231 pread(tcp->pfd, &scno, sizeof(scno), regs.r_esp + sizeof(int));
1232 break;
1233 default:
1234 scno = regs.r_eax;
1235 break;
1236 }
1237#endif /* FREEBSD */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001238#endif /* !HAVE_PR_SYSCALL */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001239#endif /* USE_PROCFS */
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +00001240 if (!(tcp->flags & TCB_INSYSCALL))
1241 tcp->scno = scno;
Pavel Machek4dc3b142000-02-01 17:58:41 +00001242 return 1;
1243}
1244
Pavel Machek4dc3b142000-02-01 17:58:41 +00001245
1246int
1247syscall_fixup(tcp)
1248struct tcb *tcp;
1249{
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001250#ifndef USE_PROCFS
Pavel Machek4dc3b142000-02-01 17:58:41 +00001251 int pid = tcp->pid;
Roland McGrath761b5d72002-12-15 23:58:31 +00001252#else /* USE_PROCFS */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001253 int scno = tcp->scno;
Pavel Machek4dc3b142000-02-01 17:58:41 +00001254
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001255 if (!(tcp->flags & TCB_INSYSCALL)) {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001256 if (tcp->status.PR_WHY != PR_SYSENTRY) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001257 if (
1258 scno == SYS_fork
1259#ifdef SYS_vfork
1260 || scno == SYS_vfork
1261#endif /* SYS_vfork */
John Hughes4e36a812001-04-18 15:11:51 +00001262#ifdef SYS_fork1
1263 || scno == SYS_fork1
1264#endif /* SYS_fork1 */
1265#ifdef SYS_forkall
1266 || scno == SYS_forkall
1267#endif /* SYS_forkall */
1268#ifdef SYS_rfork1
1269 || scno == SYS_rfork1
1270#endif /* SYS_fork1 */
1271#ifdef SYS_rforkall
1272 || scno == SYS_rforkall
1273#endif /* SYS_rforkall */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001274 ) {
1275 /* We are returning in the child, fake it. */
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001276 tcp->status.PR_WHY = PR_SYSENTRY;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001277 trace_syscall(tcp);
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001278 tcp->status.PR_WHY = PR_SYSEXIT;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001279 }
1280 else {
1281 fprintf(stderr, "syscall: missing entry\n");
1282 tcp->flags |= TCB_INSYSCALL;
1283 }
1284 }
1285 }
1286 else {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001287 if (tcp->status.PR_WHY != PR_SYSEXIT) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001288 fprintf(stderr, "syscall: missing exit\n");
1289 tcp->flags &= ~TCB_INSYSCALL;
1290 }
1291 }
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001292#endif /* USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001293#ifdef SUNOS4
1294 if (!(tcp->flags & TCB_INSYSCALL)) {
1295 if (scno == 0) {
1296 fprintf(stderr, "syscall: missing entry\n");
1297 tcp->flags |= TCB_INSYSCALL;
1298 }
1299 }
1300 else {
1301 if (scno != 0) {
1302 if (debug) {
1303 /*
1304 * This happens when a signal handler
1305 * for a signal which interrupted a
1306 * a system call makes another system call.
1307 */
1308 fprintf(stderr, "syscall: missing exit\n");
1309 }
1310 tcp->flags &= ~TCB_INSYSCALL;
1311 }
1312 }
1313#endif /* SUNOS4 */
1314#ifdef LINUX
1315#if defined (I386)
1316 if (upeek(pid, 4*EAX, &eax) < 0)
1317 return -1;
1318 if (eax != -ENOSYS && !(tcp->flags & TCB_INSYSCALL)) {
1319 if (debug)
1320 fprintf(stderr, "stray syscall exit: eax = %ld\n", eax);
1321 return 0;
1322 }
Michal Ludvig0e035502002-09-23 15:41:01 +00001323#elif defined (X86_64)
1324 if (upeek(pid, 8*RAX, &rax) < 0)
1325 return -1;
Roland McGrath998fac72004-06-23 01:40:45 +00001326 if (current_personality == 1)
1327 rax = (long int)(int)rax; /* sign extend from 32 bits */
Michal Ludvig0e035502002-09-23 15:41:01 +00001328 if (rax != -ENOSYS && !(tcp->flags & TCB_INSYSCALL)) {
1329 if (debug)
1330 fprintf(stderr, "stray syscall exit: rax = %ld\n", rax);
1331 return 0;
1332 }
Michal Ludvig10a88d02002-10-07 14:31:00 +00001333#elif defined (S390) || defined (S390X)
Wichert Akkerman12f75d12000-02-14 16:23:40 +00001334 if (upeek(pid, PT_GPR2, &gpr2) < 0)
1335 return -1;
Michal Ludvig882eda82002-11-11 12:50:47 +00001336 if (syscall_mode != -ENOSYS)
1337 syscall_mode = tcp->scno;
1338 if (gpr2 != syscall_mode && !(tcp->flags & TCB_INSYSCALL)) {
Wichert Akkerman12f75d12000-02-14 16:23:40 +00001339 if (debug)
1340 fprintf(stderr, "stray syscall exit: gpr2 = %ld\n", gpr2);
1341 return 0;
1342 }
Roland McGrath96dc5142003-01-20 10:23:04 +00001343 else if (((tcp->flags & (TCB_INSYSCALL|TCB_WAITEXECVE))
1344 == (TCB_INSYSCALL|TCB_WAITEXECVE))
1345 && (gpr2 == -ENOSYS || gpr2 == tcp->scno)) {
1346 /*
1347 * Fake a return value of zero. We leave the TCB_WAITEXECVE
1348 * flag set for the post-execve SIGTRAP to see and reset.
1349 */
1350 gpr2 = 0;
1351 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001352#elif defined (POWERPC)
1353# define SO_MASK 0x10000000
Roland McGratheb285352003-01-14 09:59:00 +00001354 if (upeek(pid, sizeof(unsigned long)*PT_CCR, &flags) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001355 return -1;
Roland McGratheb285352003-01-14 09:59:00 +00001356 if (upeek(pid, sizeof(unsigned long)*PT_R3, &result) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001357 return -1;
1358 if (flags & SO_MASK)
1359 result = -result;
1360#elif defined (M68K)
1361 if (upeek(pid, 4*PT_D0, &d0) < 0)
1362 return -1;
1363 if (d0 != -ENOSYS && !(tcp->flags & TCB_INSYSCALL)) {
1364 if (debug)
1365 fprintf(stderr, "stray syscall exit: d0 = %ld\n", d0);
1366 return 0;
1367 }
1368#elif defined (ARM)
Roland McGrath0f87c492003-06-03 23:29:04 +00001369 /*
1370 * Nothing required
1371 */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001372#elif defined (HPPA)
1373 if (upeek(pid, PT_GR28, &r28) < 0)
1374 return -1;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001375#elif defined(IA64)
1376 if (upeek(pid, PT_R10, &r10) < 0)
1377 return -1;
1378 if (upeek(pid, PT_R8, &r8) < 0)
1379 return -1;
1380 if (ia32 && r8 != -ENOSYS && !(tcp->flags & TCB_INSYSCALL)) {
1381 if (debug)
1382 fprintf(stderr, "stray syscall exit: r8 = %ld\n", r8);
1383 return 0;
1384 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001385#endif
1386#endif /* LINUX */
Pavel Machek4dc3b142000-02-01 17:58:41 +00001387 return 1;
1388}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001389
Pavel Machek4dc3b142000-02-01 17:58:41 +00001390int
1391get_error(tcp)
1392struct tcb *tcp;
1393{
1394 int u_error = 0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001395#ifdef LINUX
Michal Ludvig10a88d02002-10-07 14:31:00 +00001396#if defined(S390) || defined(S390X)
Wichert Akkerman12f75d12000-02-14 16:23:40 +00001397 if (gpr2 && (unsigned) -gpr2 < nerrnos) {
1398 tcp->u_rval = -1;
1399 u_error = -gpr2;
1400 }
1401 else {
1402 tcp->u_rval = gpr2;
1403 u_error = 0;
1404 }
Michal Ludvig10a88d02002-10-07 14:31:00 +00001405#else /* !S390 && !S390X */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001406#ifdef I386
1407 if (eax < 0 && -eax < nerrnos) {
1408 tcp->u_rval = -1;
1409 u_error = -eax;
1410 }
1411 else {
1412 tcp->u_rval = eax;
1413 u_error = 0;
1414 }
1415#else /* !I386 */
Michal Ludvig0e035502002-09-23 15:41:01 +00001416#ifdef X86_64
1417 if (rax < 0 && -rax < nerrnos) {
1418 tcp->u_rval = -1;
1419 u_error = -rax;
1420 }
1421 else {
1422 tcp->u_rval = rax;
1423 u_error = 0;
1424 }
1425#else
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001426#ifdef IA64
1427 if (ia32) {
1428 int err;
1429
1430 err = (int)r8;
1431 if (err < 0 && -err < nerrnos) {
1432 tcp->u_rval = -1;
1433 u_error = -err;
1434 }
1435 else {
1436 tcp->u_rval = err;
1437 u_error = 0;
1438 }
1439 } else {
1440 if (r10) {
1441 tcp->u_rval = -1;
1442 u_error = r8;
1443 } else {
1444 tcp->u_rval = r8;
1445 u_error = 0;
1446 }
1447 }
1448#else /* !IA64 */
Wichert Akkermanf90da011999-10-31 21:15:38 +00001449#ifdef MIPS
1450 if (a3) {
1451 tcp->u_rval = -1;
1452 u_error = r2;
1453 } else {
1454 tcp->u_rval = r2;
1455 u_error = 0;
1456 }
1457#else
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001458#ifdef POWERPC
Roland McGrath190f8dd2004-01-13 10:13:44 +00001459 if (result && (unsigned long) -result < nerrnos) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001460 tcp->u_rval = -1;
1461 u_error = -result;
1462 }
1463 else {
1464 tcp->u_rval = result;
1465 u_error = 0;
1466 }
1467#else /* !POWERPC */
1468#ifdef M68K
1469 if (d0 && (unsigned) -d0 < nerrnos) {
1470 tcp->u_rval = -1;
1471 u_error = -d0;
1472 }
1473 else {
1474 tcp->u_rval = d0;
1475 u_error = 0;
1476 }
1477#else /* !M68K */
1478#ifdef ARM
Roland McGrath0f87c492003-06-03 23:29:04 +00001479 if (regs.ARM_r0 && (unsigned) -regs.ARM_r0 < nerrnos) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001480 tcp->u_rval = -1;
Roland McGrath0f87c492003-06-03 23:29:04 +00001481 u_error = -regs.ARM_r0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001482 }
1483 else {
Roland McGrath0f87c492003-06-03 23:29:04 +00001484 tcp->u_rval = regs.ARM_r0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001485 u_error = 0;
1486 }
1487#else /* !ARM */
1488#ifdef ALPHA
1489 if (a3) {
1490 tcp->u_rval = -1;
1491 u_error = r0;
1492 }
1493 else {
1494 tcp->u_rval = r0;
1495 u_error = 0;
1496 }
1497#else /* !ALPHA */
1498#ifdef SPARC
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001499 if (regs.r_psr & PSR_C) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001500 tcp->u_rval = -1;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001501 u_error = regs.r_o0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001502 }
1503 else {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001504 tcp->u_rval = regs.r_o0;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001505 u_error = 0;
1506 }
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001507#else /* !SPARC */
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001508#ifdef SPARC64
1509 if (regs.r_tstate & 0x1100000000UL) {
1510 tcp->u_rval = -1;
1511 u_error = regs.r_o0;
1512 }
1513 else {
1514 tcp->u_rval = regs.r_o0;
1515 u_error = 0;
1516 }
1517#else /* !SPARC64 */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001518#ifdef HPPA
1519 if (r28 && (unsigned) -r28 < nerrnos) {
1520 tcp->u_rval = -1;
1521 u_error = -r28;
1522 }
1523 else {
1524 tcp->u_rval = r28;
1525 u_error = 0;
1526 }
Wichert Akkermanccef6372002-05-01 16:39:22 +00001527#else
1528#ifdef SH
1529 /* interpret R0 as return value or error number */
1530 if (r0 && (unsigned) -r0 < nerrnos) {
1531 tcp->u_rval = -1;
1532 u_error = -r0;
1533 }
1534 else {
1535 tcp->u_rval = r0;
1536 u_error = 0;
1537 }
Roland McGrathe1e584b2003-06-02 19:18:58 +00001538#else
Roland McGrathf5a47772003-06-26 22:40:42 +00001539#ifdef SH64
Roland McGrathe1e584b2003-06-02 19:18:58 +00001540 /* interpret result as return value or error number */
1541 if (r9 && (unsigned) -r9 < nerrnos) {
1542 tcp->u_rval = -1;
1543 u_error = -r9;
1544 }
1545 else {
1546 tcp->u_rval = r9;
1547 u_error = 0;
1548 }
Roland McGrathf5a47772003-06-26 22:40:42 +00001549#endif /* SH64 */
Wichert Akkermanccef6372002-05-01 16:39:22 +00001550#endif /* SH */
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001551#endif /* HPPA */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001552#endif /* SPARC */
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001553#endif /* SPARC64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001554#endif /* ALPHA */
1555#endif /* ARM */
1556#endif /* M68K */
1557#endif /* POWERPC */
Wichert Akkermanf90da011999-10-31 21:15:38 +00001558#endif /* MIPS */
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001559#endif /* IA64 */
Michal Ludvig0e035502002-09-23 15:41:01 +00001560#endif /* X86_64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001561#endif /* I386 */
Michal Ludvig10a88d02002-10-07 14:31:00 +00001562#endif /* S390 || S390X */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001563#endif /* LINUX */
1564#ifdef SUNOS4
1565 /* get error code from user struct */
1566 if (upeek(pid, uoff(u_error), &u_error) < 0)
1567 return -1;
1568 u_error >>= 24; /* u_error is a char */
1569
1570 /* get system call return value */
1571 if (upeek(pid, uoff(u_rval1), &tcp->u_rval) < 0)
1572 return -1;
1573#endif /* SUNOS4 */
1574#ifdef SVR4
1575#ifdef SPARC
1576 /* Judicious guessing goes a long way. */
1577 if (tcp->status.pr_reg[R_PSR] & 0x100000) {
1578 tcp->u_rval = -1;
1579 u_error = tcp->status.pr_reg[R_O0];
1580 }
1581 else {
1582 tcp->u_rval = tcp->status.pr_reg[R_O0];
1583 u_error = 0;
1584 }
1585#endif /* SPARC */
1586#ifdef I386
1587 /* Wanna know how to kill an hour single-stepping? */
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001588 if (tcp->status.PR_REG[EFL] & 0x1) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001589 tcp->u_rval = -1;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001590 u_error = tcp->status.PR_REG[EAX];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001591 }
1592 else {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001593 tcp->u_rval = tcp->status.PR_REG[EAX];
Wichert Akkerman16a03d22000-08-10 02:14:04 +00001594#ifdef HAVE_LONG_LONG
1595 tcp->u_lrval =
1596 ((unsigned long long) tcp->status.PR_REG[EDX] << 32) +
1597 tcp->status.PR_REG[EAX];
1598#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001599 u_error = 0;
1600 }
1601#endif /* I386 */
Michal Ludvig0e035502002-09-23 15:41:01 +00001602#ifdef X86_64
1603 /* Wanna know how to kill an hour single-stepping? */
1604 if (tcp->status.PR_REG[EFLAGS] & 0x1) {
1605 tcp->u_rval = -1;
1606 u_error = tcp->status.PR_REG[RAX];
1607 }
1608 else {
1609 tcp->u_rval = tcp->status.PR_REG[RAX];
1610 u_error = 0;
1611 }
1612#endif /* X86_64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001613#ifdef MIPS
1614 if (tcp->status.pr_reg[CTX_A3]) {
1615 tcp->u_rval = -1;
1616 u_error = tcp->status.pr_reg[CTX_V0];
1617 }
1618 else {
1619 tcp->u_rval = tcp->status.pr_reg[CTX_V0];
1620 u_error = 0;
1621 }
1622#endif /* MIPS */
1623#endif /* SVR4 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001624#ifdef FREEBSD
1625 if (regs.r_eflags & PSL_C) {
1626 tcp->u_rval = -1;
1627 u_error = regs.r_eax;
1628 } else {
1629 tcp->u_rval = regs.r_eax;
1630 tcp->u_lrval =
1631 ((unsigned long long) regs.r_edx << 32) + regs.r_eax;
1632 u_error = 0;
1633 }
Roland McGrath761b5d72002-12-15 23:58:31 +00001634#endif /* FREEBSD */
Pavel Machek4dc3b142000-02-01 17:58:41 +00001635 tcp->u_error = u_error;
1636 return 1;
1637}
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001638
Roland McGrathb69f81b2002-12-21 23:25:18 +00001639int
1640force_result(tcp, error, rval)
1641 struct tcb *tcp;
1642 int error;
1643 long rval;
1644{
1645#ifdef LINUX
1646#if defined(S390) || defined(S390X)
1647 gpr2 = error ? -error : rval;
Roland McGrathb69f81b2002-12-21 23:25:18 +00001648 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)PT_GPR2, gpr2) < 0)
1649 return -1;
1650#else /* !S390 && !S390X */
1651#ifdef I386
1652 eax = error ? -error : rval;
1653 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(EAX * 4), eax) < 0)
1654 return -1;
1655#else /* !I386 */
1656#ifdef X86_64
1657 rax = error ? -error : rval;
Roland McGrath998fac72004-06-23 01:40:45 +00001658 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(RAX * 8), rax) < 0)
Roland McGrathb69f81b2002-12-21 23:25:18 +00001659 return -1;
1660#else
1661#ifdef IA64
1662 if (ia32) {
1663 r8 = error ? -error : rval;
1664 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R8), r8) < 0)
1665 return -1;
1666 }
1667 else {
1668 if (error) {
1669 r8 = error;
1670 r10 = -1;
1671 }
1672 else {
1673 r8 = rval;
1674 r10 = 0;
1675 }
1676 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R8), r8) < 0 ||
1677 ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R10), r10) < 0)
1678 return -1;
1679 }
1680#else /* !IA64 */
1681#ifdef MIPS
1682 if (error) {
1683 r2 = error;
1684 a3 = -1;
1685 }
1686 else {
1687 r2 = rval;
1688 a3 = 0;
1689 }
1690 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_A3), a3) < 0 ||
1691 ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_V0), r2) < 0)
1692 return -1;
1693#else
1694#ifdef POWERPC
Roland McGratheb285352003-01-14 09:59:00 +00001695 if (upeek(tcp->pid, sizeof(unsigned long)*PT_CCR, &flags) < 0)
Roland McGrathb69f81b2002-12-21 23:25:18 +00001696 return -1;
1697 if (error) {
1698 flags |= SO_MASK;
1699 result = error;
1700 }
1701 else {
1702 flags &= ~SO_MASK;
1703 result = rval;
1704 }
Roland McGratheb285352003-01-14 09:59:00 +00001705 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(sizeof(unsigned long)*PT_CCR), flags) < 0 ||
1706 ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(sizeof(unsigned long)*PT_R3), result) < 0)
Roland McGrathb69f81b2002-12-21 23:25:18 +00001707 return -1;
1708#else /* !POWERPC */
1709#ifdef M68K
1710 d0 = error ? -error : rval;
1711 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_D0), d0) < 0)
1712 return -1;
1713#else /* !M68K */
1714#ifdef ARM
Roland McGrath7c051d22003-06-26 22:29:32 +00001715 regs.ARM_r0 = error ? -error : rval;
1716 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*0), regs.ARM_r0) < 0)
Roland McGrathb69f81b2002-12-21 23:25:18 +00001717 return -1;
1718#else /* !ARM */
1719#ifdef ALPHA
1720 if (error) {
1721 a3 = -1;
1722 r0 = error;
1723 }
1724 else {
1725 a3 = 0;
1726 r0 = rval;
1727 }
1728 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_A3), a3) < 0 ||
1729 ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_R0), r0) < 0)
1730 return -1;
1731#else /* !ALPHA */
1732#ifdef SPARC
1733 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0)
1734 return -1;
1735 if (error) {
1736 regs.r_psr |= PSR_C;
1737 regs.r_o0 = error;
1738 }
1739 else {
1740 regs.r_psr &= ~PSR_C;
1741 regs.r_o0 = rval;
1742 }
1743 if (ptrace(PTRACE_SETREGS, tcp->pid, (char *)&regs, 0) < 0)
1744 return -1;
1745#else /* !SPARC */
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001746#ifdef SPARC64
1747 if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)&regs, 0) < 0)
1748 return -1;
1749 if (error) {
1750 regs.r_tstate |= 0x1100000000UL;
1751 regs.r_o0 = error;
1752 }
1753 else {
1754 regs.r_tstate &= ~0x1100000000UL;
1755 regs.r_o0 = rval;
1756 }
1757 if (ptrace(PTRACE_SETREGS, tcp->pid, (char *)&regs, 0) < 0)
1758 return -1;
1759#else /* !SPARC64 */
Roland McGrathb69f81b2002-12-21 23:25:18 +00001760#ifdef HPPA
1761 r28 = error ? -error : rval;
1762 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GR28), r28) < 0)
1763 return -1;
1764#else
1765#ifdef SH
1766 r0 = error ? -error : rval;
1767 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*REG_REG0), r0) < 0)
1768 return -1;
Roland McGrathe1e584b2003-06-02 19:18:58 +00001769#else
Roland McGrathf5a47772003-06-26 22:40:42 +00001770#ifdef SH64
Roland McGrathe1e584b2003-06-02 19:18:58 +00001771 r9 = error ? -error : rval;
1772 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)REG_GENERAL(9), r9) < 0)
1773 return -1;
Roland McGrathf5a47772003-06-26 22:40:42 +00001774#endif /* SH64 */
Roland McGrathb69f81b2002-12-21 23:25:18 +00001775#endif /* SH */
1776#endif /* HPPA */
1777#endif /* SPARC */
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001778#endif /* SPARC64 */
Roland McGrathb69f81b2002-12-21 23:25:18 +00001779#endif /* ALPHA */
1780#endif /* ARM */
1781#endif /* M68K */
1782#endif /* POWERPC */
1783#endif /* MIPS */
1784#endif /* IA64 */
1785#endif /* X86_64 */
1786#endif /* I386 */
1787#endif /* S390 || S390X */
1788#endif /* LINUX */
1789#ifdef SUNOS4
1790 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)uoff(u_error),
1791 error << 24) < 0 ||
1792 ptrace(PTRACE_POKEUSER, tcp->pid, (char*)uoff(u_rval1), rval) < 0)
1793 return -1;
1794#endif /* SUNOS4 */
1795#ifdef SVR4
1796 /* XXX no clue */
1797 return -1;
1798#endif /* SVR4 */
1799#ifdef FREEBSD
1800 if (pread(tcp->pfd_reg, &regs, sizeof(regs), 0) < 0) {
1801 perror("pread");
1802 return -1;
1803 }
1804 if (error) {
1805 regs.r_eflags |= PSL_C;
1806 regs.r_eax = error;
1807 }
1808 else {
1809 regs.r_eflags &= ~PSL_C;
1810 regs.r_eax = rval;
1811 }
1812 if (pwrite(tcp->pfd_reg, &regs, sizeof(regs), 0) < 0) {
1813 perror("pwrite");
1814 return -1;
1815 }
1816#endif /* FREEBSD */
1817
1818 /* All branches reach here on success (only). */
1819 tcp->u_error = error;
1820 tcp->u_rval = rval;
1821 return 0;
1822}
1823
Pavel Machek4dc3b142000-02-01 17:58:41 +00001824int syscall_enter(tcp)
1825struct tcb *tcp;
1826{
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001827#ifndef USE_PROCFS
Pavel Machek4dc3b142000-02-01 17:58:41 +00001828 int pid = tcp->pid;
Roland McGrath761b5d72002-12-15 23:58:31 +00001829#endif /* !USE_PROCFS */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001830#ifdef LINUX
Michal Ludvig10a88d02002-10-07 14:31:00 +00001831#if defined(S390) || defined(S390X)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001832 {
1833 int i;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001834 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
1835 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00001836 else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001837 tcp->u_nargs = MAX_ARGS;
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001838 for (i = 0; i < tcp->u_nargs; i++) {
Michal Ludvig10a88d02002-10-07 14:31:00 +00001839 if (upeek(pid,i==0 ? PT_ORIGGPR2:PT_GPR2+i*sizeof(long), &tcp->u_arg[i]) < 0)
Wichert Akkerman4dc8a2a1999-12-23 14:20:14 +00001840 return -1;
1841 }
1842 }
1843#elif defined (ALPHA)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001844 {
1845 int i;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001846 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
1847 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00001848 else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001849 tcp->u_nargs = MAX_ARGS;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001850 for (i = 0; i < tcp->u_nargs; i++) {
Wichert Akkermanb859bea1999-04-18 22:50:50 +00001851 /* WTA: if scno is out-of-bounds this will bomb. Add range-check
1852 * for scno somewhere above here!
1853 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001854 if (upeek(pid, REG_A0+i, &tcp->u_arg[i]) < 0)
1855 return -1;
1856 }
1857 }
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001858#elif defined (IA64)
1859 {
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001860 if (!ia32) {
1861 unsigned long *out0, *rbs_end, cfm, sof, sol, i;
1862 /* be backwards compatible with kernel < 2.4.4... */
1863# ifndef PT_RBS_END
1864# define PT_RBS_END PT_AR_BSP
1865# endif
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001866
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001867 if (upeek(pid, PT_RBS_END, (long *) &rbs_end) < 0)
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001868 return -1;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00001869 if (upeek(pid, PT_CFM, (long *) &cfm) < 0)
1870 return -1;
1871
1872 sof = (cfm >> 0) & 0x7f;
1873 sol = (cfm >> 7) & 0x7f;
1874 out0 = ia64_rse_skip_regs(rbs_end, -sof + sol);
1875
1876 if (tcp->scno >= 0 && tcp->scno < nsyscalls
1877 && sysent[tcp->scno].nargs != -1)
1878 tcp->u_nargs = sysent[tcp->scno].nargs;
1879 else
1880 tcp->u_nargs = MAX_ARGS;
1881 for (i = 0; i < tcp->u_nargs; ++i) {
1882 if (umoven(tcp, (unsigned long) ia64_rse_skip_regs(out0, i),
1883 sizeof(long), (char *) &tcp->u_arg[i]) < 0)
1884 return -1;
1885 }
1886 } else {
1887 int i;
1888
1889 if (/* EBX = out0 */
1890 upeek(pid, PT_R11, (long *) &tcp->u_arg[0]) < 0
1891 /* ECX = out1 */
1892 || upeek(pid, PT_R9, (long *) &tcp->u_arg[1]) < 0
1893 /* EDX = out2 */
1894 || upeek(pid, PT_R10, (long *) &tcp->u_arg[2]) < 0
1895 /* ESI = out3 */
1896 || upeek(pid, PT_R14, (long *) &tcp->u_arg[3]) < 0
1897 /* EDI = out4 */
1898 || upeek(pid, PT_R15, (long *) &tcp->u_arg[4]) < 0
1899 /* EBP = out5 */
1900 || upeek(pid, PT_R13, (long *) &tcp->u_arg[5]) < 0)
1901 return -1;
1902
1903 for (i = 0; i < 6; ++i)
1904 /* truncate away IVE sign-extension */
1905 tcp->u_arg[i] &= 0xffffffff;
1906
1907 if (tcp->scno >= 0 && tcp->scno < nsyscalls
1908 && sysent[tcp->scno].nargs != -1)
1909 tcp->u_nargs = sysent[tcp->scno].nargs;
1910 else
1911 tcp->u_nargs = 5;
Wichert Akkerman8b1b40c2000-02-03 21:58:30 +00001912 }
1913 }
Wichert Akkermanf90da011999-10-31 21:15:38 +00001914#elif defined (MIPS)
1915 {
1916 long sp;
1917 int i, nargs;
1918
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001919 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
1920 nargs = tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00001921 else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001922 nargs = tcp->u_nargs = MAX_ARGS;
Wichert Akkermanf90da011999-10-31 21:15:38 +00001923 if(nargs > 4) {
1924 if(upeek(pid, REG_SP, &sp) < 0)
1925 return -1;
1926 for(i = 0; i < 4; i++) {
1927 if (upeek(pid, REG_A0 + i, &tcp->u_arg[i])<0)
1928 return -1;
1929 }
1930 umoven(tcp, sp+16, (nargs-4) * sizeof(tcp->u_arg[0]),
1931 (char *)(tcp->u_arg + 4));
1932 } else {
1933 for(i = 0; i < nargs; i++) {
1934 if (upeek(pid, REG_A0 + i, &tcp->u_arg[i]) < 0)
1935 return -1;
1936 }
1937 }
1938 }
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001939#elif defined (POWERPC)
Roland McGrath761b5d72002-12-15 23:58:31 +00001940#ifndef PT_ORIG_R3
1941#define PT_ORIG_R3 34
1942#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001943 {
1944 int i;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001945 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
1946 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00001947 else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001948 tcp->u_nargs = MAX_ARGS;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001949 for (i = 0; i < tcp->u_nargs; i++) {
Roland McGratheb285352003-01-14 09:59:00 +00001950 if (upeek(pid, (i==0) ?
1951 (sizeof(unsigned long)*PT_ORIG_R3) :
1952 ((i+PT_R3)*sizeof(unsigned long)),
1953 &tcp->u_arg[i]) < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001954 return -1;
1955 }
1956 }
Roland McGrath6d1a65c2004-07-12 07:44:08 +00001957#elif defined (SPARC) || defined (SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001958 {
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001959 int i;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001960
1961 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
1962 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00001963 else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00001964 tcp->u_nargs = MAX_ARGS;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001965 for (i = 0; i < tcp->u_nargs; i++)
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00001966 tcp->u_arg[i] = *((&regs.r_o0) + i);
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001967 }
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001968#elif defined (HPPA)
1969 {
1970 int i;
1971
1972 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
1973 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00001974 else
Wichert Akkermanc1652e22001-03-27 12:17:16 +00001975 tcp->u_nargs = MAX_ARGS;
1976 for (i = 0; i < tcp->u_nargs; i++) {
1977 if (upeek(pid, PT_GR26-4*i, &tcp->u_arg[i]) < 0)
1978 return -1;
1979 }
1980 }
Roland McGrath0f87c492003-06-03 23:29:04 +00001981#elif defined(ARM)
1982 {
1983 int i;
1984
1985 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
1986 tcp->u_nargs = sysent[tcp->scno].nargs;
1987 else
1988 tcp->u_nargs = MAX_ARGS;
1989 for (i = 0; i < tcp->u_nargs; i++)
1990 tcp->u_arg[i] = regs.uregs[i];
1991 }
Wichert Akkermanccef6372002-05-01 16:39:22 +00001992#elif defined(SH)
1993 {
Roland McGrath761b5d72002-12-15 23:58:31 +00001994 int i;
Wichert Akkermanccef6372002-05-01 16:39:22 +00001995 static int syscall_regs[] = {
1996 REG_REG0+4, REG_REG0+5, REG_REG0+6, REG_REG0+7,
1997 REG_REG0, REG_REG0+1, REG_REG0+2
1998 };
1999
2000 tcp->u_nargs = sysent[tcp->scno].nargs;
2001 for (i = 0; i < tcp->u_nargs; i++) {
2002 if (upeek(pid, 4*syscall_regs[i], &tcp->u_arg[i]) < 0)
2003 return -1;
2004 }
2005 }
Roland McGrathf5a47772003-06-26 22:40:42 +00002006#elif defined(SH64)
Roland McGrathe1e584b2003-06-02 19:18:58 +00002007 {
2008 int i;
2009 /* Registers used by SH5 Linux system calls for parameters */
2010 static int syscall_regs[] = { 2, 3, 4, 5, 6, 7 };
2011
2012 /*
2013 * TODO: should also check that the number of arguments encoded
2014 * in the trap number matches the number strace expects.
2015 */
2016 /*
2017 assert(sysent[tcp->scno].nargs <
2018 sizeof(syscall_regs)/sizeof(syscall_regs[0]));
2019 */
2020
2021 tcp->u_nargs = sysent[tcp->scno].nargs;
2022 for (i = 0; i < tcp->u_nargs; i++) {
2023 if (upeek(pid, REG_GENERAL(syscall_regs[i]), &tcp->u_arg[i]) < 0)
2024 return -1;
2025 }
2026 }
2027
Michal Ludvig0e035502002-09-23 15:41:01 +00002028#elif defined(X86_64)
2029 {
2030 int i;
2031 static int argreg[SUPPORTED_PERSONALITIES][MAX_ARGS] = {
2032 {RDI,RSI,RDX,R10,R8,R9}, /* x86-64 ABI */
2033 {RBX,RCX,RDX,RDX,RSI,RDI,RBP} /* i386 ABI */
2034 };
Roland McGrath761b5d72002-12-15 23:58:31 +00002035
Michal Ludvig0e035502002-09-23 15:41:01 +00002036 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
2037 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00002038 else
Michal Ludvig0e035502002-09-23 15:41:01 +00002039 tcp->u_nargs = MAX_ARGS;
2040 for (i = 0; i < tcp->u_nargs; i++) {
2041 if (upeek(pid, argreg[current_personality][i]*8, &tcp->u_arg[i]) < 0)
2042 return -1;
2043 }
2044 }
Wichert Akkermanfaf72222000-02-19 23:59:03 +00002045#else /* Other architecture (like i386) (32bits specific) */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002046 {
2047 int i;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002048 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
2049 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00002050 else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002051 tcp->u_nargs = MAX_ARGS;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002052 for (i = 0; i < tcp->u_nargs; i++) {
2053 if (upeek(pid, i*4, &tcp->u_arg[i]) < 0)
2054 return -1;
2055 }
2056 }
Roland McGrath761b5d72002-12-15 23:58:31 +00002057#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002058#endif /* LINUX */
2059#ifdef SUNOS4
2060 {
2061 int i;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002062 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
2063 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00002064 else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002065 tcp->u_nargs = MAX_ARGS;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002066 for (i = 0; i < tcp->u_nargs; i++) {
2067 struct user *u;
2068
2069 if (upeek(pid, uoff(u_arg[0]) +
2070 (i*sizeof(u->u_arg[0])), &tcp->u_arg[i]) < 0)
2071 return -1;
2072 }
2073 }
2074#endif /* SUNOS4 */
2075#ifdef SVR4
2076#ifdef MIPS
2077 /*
2078 * SGI is broken: even though it has pr_sysarg, it doesn't
2079 * set them on system call entry. Get a clue.
2080 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002081 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002082 tcp->u_nargs = sysent[tcp->scno].nargs;
2083 else
2084 tcp->u_nargs = tcp->status.pr_nsysarg;
2085 if (tcp->u_nargs > 4) {
2086 memcpy(tcp->u_arg, &tcp->status.pr_reg[CTX_A0],
2087 4*sizeof(tcp->u_arg[0]));
2088 umoven(tcp, tcp->status.pr_reg[CTX_SP] + 16,
2089 (tcp->u_nargs - 4)*sizeof(tcp->u_arg[0]), (char *) (tcp->u_arg + 4));
2090 }
2091 else {
2092 memcpy(tcp->u_arg, &tcp->status.pr_reg[CTX_A0],
2093 tcp->u_nargs*sizeof(tcp->u_arg[0]));
2094 }
John Hughes25299712001-03-06 10:10:06 +00002095#elif UNIXWARE >= 2
2096 /*
2097 * Like SGI, UnixWare doesn't set pr_sysarg until system call exit
2098 */
2099 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
2100 tcp->u_nargs = sysent[tcp->scno].nargs;
2101 else
2102 tcp->u_nargs = tcp->status.pr_lwp.pr_nsysarg;
2103 umoven(tcp, tcp->status.PR_REG[UESP] + 4,
2104 tcp->u_nargs*sizeof(tcp->u_arg[0]), (char *) tcp->u_arg);
2105#elif defined (HAVE_PR_SYSCALL)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002106 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002107 tcp->u_nargs = sysent[tcp->scno].nargs;
2108 else
2109 tcp->u_nargs = tcp->status.pr_nsysarg;
2110 {
2111 int i;
2112 for (i = 0; i < tcp->u_nargs; i++)
2113 tcp->u_arg[i] = tcp->status.pr_sysarg[i];
2114 }
John Hughes25299712001-03-06 10:10:06 +00002115#elif defined (I386)
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002116 if (tcp->scno >= 0 && tcp->scno < nsyscalls && sysent[tcp->scno].nargs != -1)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002117 tcp->u_nargs = sysent[tcp->scno].nargs;
2118 else
2119 tcp->u_nargs = 5;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00002120 umoven(tcp, tcp->status.PR_REG[UESP] + 4,
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002121 tcp->u_nargs*sizeof(tcp->u_arg[0]), (char *) tcp->u_arg);
John Hughes25299712001-03-06 10:10:06 +00002122#else
2123 I DONT KNOW WHAT TO DO
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002124#endif /* !HAVE_PR_SYSCALL */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002125#endif /* SVR4 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002126#ifdef FREEBSD
2127 if (tcp->scno >= 0 && tcp->scno < nsyscalls &&
2128 sysent[tcp->scno].nargs > tcp->status.val)
2129 tcp->u_nargs = sysent[tcp->scno].nargs;
Roland McGrath761b5d72002-12-15 23:58:31 +00002130 else
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002131 tcp->u_nargs = tcp->status.val;
2132 if (tcp->u_nargs < 0)
2133 tcp->u_nargs = 0;
2134 if (tcp->u_nargs > MAX_ARGS)
2135 tcp->u_nargs = MAX_ARGS;
2136 switch(regs.r_eax) {
2137 case SYS___syscall:
2138 pread(tcp->pfd, &tcp->u_arg, tcp->u_nargs * sizeof(unsigned long),
2139 regs.r_esp + sizeof(int) + sizeof(quad_t));
2140 break;
2141 case SYS_syscall:
2142 pread(tcp->pfd, &tcp->u_arg, tcp->u_nargs * sizeof(unsigned long),
2143 regs.r_esp + 2 * sizeof(int));
2144 break;
2145 default:
2146 pread(tcp->pfd, &tcp->u_arg, tcp->u_nargs * sizeof(unsigned long),
2147 regs.r_esp + sizeof(int));
2148 break;
2149 }
2150#endif /* FREEBSD */
Pavel Machek4dc3b142000-02-01 17:58:41 +00002151 return 1;
2152}
2153
2154int
2155trace_syscall(tcp)
2156struct tcb *tcp;
2157{
2158 int sys_res;
2159 struct timeval tv;
2160 int res;
2161
2162 /* Measure the exit time as early as possible to avoid errors. */
2163 if (dtime && (tcp->flags & TCB_INSYSCALL))
2164 gettimeofday(&tv, NULL);
2165
2166 res = get_scno(tcp);
2167 if (res != 1)
2168 return res;
2169
2170 res = syscall_fixup(tcp);
2171 if (res != 1)
2172 return res;
2173
2174 if (tcp->flags & TCB_INSYSCALL) {
2175 long u_error;
2176 res = get_error(tcp);
2177 if (res != 1)
2178 return res;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002179
2180 internal_syscall(tcp);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002181 if (tcp->scno >= 0 && tcp->scno < nsyscalls &&
2182 !(qual_flags[tcp->scno] & QUAL_TRACE)) {
Pavel Machek4dc3b142000-02-01 17:58:41 +00002183 tcp->flags &= ~TCB_INSYSCALL;
2184 return 0;
2185 }
2186
2187 if (tcp->flags & TCB_REPRINT) {
2188 printleader(tcp);
2189 tprintf("<... ");
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002190 if (tcp->scno >= nsyscalls || tcp->scno < 0)
Pavel Machek4dc3b142000-02-01 17:58:41 +00002191 tprintf("syscall_%lu", tcp->scno);
2192 else
2193 tprintf("%s", sysent[tcp->scno].sys_name);
2194 tprintf(" resumed> ");
2195 }
2196
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002197 if (cflag && tcp->scno < nsyscalls && tcp->scno >= 0) {
Pavel Machek4dc3b142000-02-01 17:58:41 +00002198 call_count[tcp->scno]++;
2199 if (tcp->u_error)
2200 error_count[tcp->scno]++;
2201 tv_sub(&tv, &tv, &tcp->etime);
2202#ifdef LINUX
2203 if (tv_cmp(&tv, &tcp->dtime) > 0) {
Roland McGrathee9c5b52003-11-01 22:11:22 +00002204 static struct timeval one_tick;
2205 if (one_tick.tv_usec == 0) {
2206 /* Initialize it. */
2207 struct itimerval it;
2208 memset(&it, 0, sizeof it);
2209 it.it_interval.tv_usec = 1;
2210 setitimer(ITIMER_REAL, &it, NULL);
2211 getitimer(ITIMER_REAL, &it);
2212 one_tick = it.it_interval;
2213 }
Pavel Machek4dc3b142000-02-01 17:58:41 +00002214
2215 if (tv_nz(&tcp->dtime))
2216 tv = tcp->dtime;
2217 else if (tv_cmp(&tv, &one_tick) > 0) {
2218 if (tv_cmp(&shortest, &one_tick) < 0)
2219 tv = shortest;
2220 else
2221 tv = one_tick;
2222 }
2223 }
2224#endif /* LINUX */
2225 if (tv_cmp(&tv, &shortest) < 0)
2226 shortest = tv;
2227 tv_add(&tv_count[tcp->scno],
2228 &tv_count[tcp->scno], &tv);
2229 tcp->flags &= ~TCB_INSYSCALL;
2230 return 0;
2231 }
2232
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002233 if (tcp->scno >= nsyscalls || tcp->scno < 0
Pavel Machek4dc3b142000-02-01 17:58:41 +00002234 || (qual_flags[tcp->scno] & QUAL_RAW))
2235 sys_res = printargs(tcp);
Michal Ludvig17f8fb32002-11-06 13:17:21 +00002236 else {
2237 if (not_failing_only && tcp->u_error)
Roland McGrath761b5d72002-12-15 23:58:31 +00002238 return 0; /* ignore failed syscalls */
Pavel Machek4dc3b142000-02-01 17:58:41 +00002239 sys_res = (*sysent[tcp->scno].sys_func)(tcp);
Roland McGrath761b5d72002-12-15 23:58:31 +00002240 }
Pavel Machek4dc3b142000-02-01 17:58:41 +00002241 u_error = tcp->u_error;
2242 tprintf(") ");
2243 tabto(acolumn);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002244 if (tcp->scno >= nsyscalls || tcp->scno < 0 ||
2245 qual_flags[tcp->scno] & QUAL_RAW) {
Pavel Machek4dc3b142000-02-01 17:58:41 +00002246 if (u_error)
2247 tprintf("= -1 (errno %ld)", u_error);
2248 else
2249 tprintf("= %#lx", tcp->u_rval);
2250 }
2251 else if (!(sys_res & RVAL_NONE) && u_error) {
2252 switch (u_error) {
2253#ifdef LINUX
2254 case ERESTARTSYS:
2255 tprintf("= ? ERESTARTSYS (To be restarted)");
2256 break;
2257 case ERESTARTNOINTR:
2258 tprintf("= ? ERESTARTNOINTR (To be restarted)");
2259 break;
2260 case ERESTARTNOHAND:
2261 tprintf("= ? ERESTARTNOHAND (To be restarted)");
2262 break;
Roland McGrath9c555e72003-07-09 09:47:59 +00002263 case ERESTART_RESTARTBLOCK:
2264 tprintf("= ? ERESTART_RESTARTBLOCK (To be restarted)");
2265 break;
Pavel Machek4dc3b142000-02-01 17:58:41 +00002266#endif /* LINUX */
2267 default:
2268 tprintf("= -1 ");
Wichert Akkerman4527dae2002-03-31 19:03:29 +00002269 if (u_error < 0)
2270 tprintf("E??? (errno %ld)", u_error);
Pavel Machek4dc3b142000-02-01 17:58:41 +00002271 else if (u_error < nerrnos)
Roland McGrath761b5d72002-12-15 23:58:31 +00002272 tprintf("%s (%s)", errnoent[u_error],
2273 strerror(u_error));
Pavel Machek4dc3b142000-02-01 17:58:41 +00002274 else
Roland McGrath761b5d72002-12-15 23:58:31 +00002275 tprintf("ERRNO_%ld (%s)", u_error,
2276 strerror(u_error));
Pavel Machek4dc3b142000-02-01 17:58:41 +00002277 break;
2278 }
2279 }
2280 else {
2281 if (sys_res & RVAL_NONE)
2282 tprintf("= ?");
2283 else {
2284 switch (sys_res & RVAL_MASK) {
2285 case RVAL_HEX:
2286 tprintf("= %#lx", tcp->u_rval);
2287 break;
2288 case RVAL_OCTAL:
2289 tprintf("= %#lo", tcp->u_rval);
2290 break;
2291 case RVAL_UDECIMAL:
2292 tprintf("= %lu", tcp->u_rval);
2293 break;
2294 case RVAL_DECIMAL:
2295 tprintf("= %ld", tcp->u_rval);
2296 break;
Wichert Akkerman16a03d22000-08-10 02:14:04 +00002297#ifdef HAVE_LONG_LONG
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002298 case RVAL_LHEX:
2299 tprintf("= %#llx", tcp->u_lrval);
Wichert Akkerman16a03d22000-08-10 02:14:04 +00002300 break;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002301 case RVAL_LOCTAL:
2302 tprintf("= %#llo", tcp->u_lrval);
2303 break;
2304 case RVAL_LUDECIMAL:
2305 tprintf("= %llu", tcp->u_lrval);
2306 break;
2307 case RVAL_LDECIMAL:
2308 tprintf("= %lld", tcp->u_lrval);
2309 break;
Wichert Akkerman16a03d22000-08-10 02:14:04 +00002310#endif
Pavel Machek4dc3b142000-02-01 17:58:41 +00002311 default:
2312 fprintf(stderr,
2313 "invalid rval format\n");
2314 break;
2315 }
2316 }
2317 if ((sys_res & RVAL_STR) && tcp->auxstr)
2318 tprintf(" (%s)", tcp->auxstr);
2319 }
2320 if (dtime) {
2321 tv_sub(&tv, &tv, &tcp->etime);
2322 tprintf(" <%ld.%06ld>",
2323 (long) tv.tv_sec, (long) tv.tv_usec);
2324 }
2325 printtrailer(tcp);
2326
2327 dumpio(tcp);
2328 if (fflush(tcp->outf) == EOF)
2329 return -1;
2330 tcp->flags &= ~TCB_INSYSCALL;
2331 return 0;
2332 }
2333
2334 /* Entering system call */
2335 res = syscall_enter(tcp);
2336 if (res != 1)
2337 return res;
2338
Pavel Machekd8ae7e32000-02-01 17:17:25 +00002339 switch (tcp->scno + NR_SYSCALL_BASE) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002340#ifdef LINUX
Roland McGrath6d1a65c2004-07-12 07:44:08 +00002341#if !defined (ALPHA) && !defined(SPARC) && !defined(SPARC64) && !defined(MIPS) && !defined(HPPA) && !defined(X86_64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002342 case SYS_socketcall:
2343 decode_subcall(tcp, SYS_socket_subcall,
2344 SYS_socket_nsubcalls, deref_style);
2345 break;
2346 case SYS_ipc:
2347 decode_subcall(tcp, SYS_ipc_subcall,
2348 SYS_ipc_nsubcalls, shift_style);
2349 break;
Roland McGrath6d1a65c2004-07-12 07:44:08 +00002350#endif /* !ALPHA && !MIPS && !SPARC && !SPARC64 && !HPPA && !X86_64 */
2351#if defined (SPARC) || defined (SPARC64)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002352 case SYS_socketcall:
2353 sparc_socket_decode (tcp);
2354 break;
2355#endif
2356#endif /* LINUX */
2357#ifdef SVR4
2358#ifdef SYS_pgrpsys_subcall
2359 case SYS_pgrpsys:
2360 decode_subcall(tcp, SYS_pgrpsys_subcall,
2361 SYS_pgrpsys_nsubcalls, shift_style);
2362 break;
2363#endif /* SYS_pgrpsys_subcall */
2364#ifdef SYS_sigcall_subcall
2365 case SYS_sigcall:
2366 decode_subcall(tcp, SYS_sigcall_subcall,
2367 SYS_sigcall_nsubcalls, mask_style);
2368 break;
2369#endif /* SYS_sigcall_subcall */
2370 case SYS_msgsys:
2371 decode_subcall(tcp, SYS_msgsys_subcall,
2372 SYS_msgsys_nsubcalls, shift_style);
2373 break;
2374 case SYS_shmsys:
2375 decode_subcall(tcp, SYS_shmsys_subcall,
2376 SYS_shmsys_nsubcalls, shift_style);
2377 break;
2378 case SYS_semsys:
2379 decode_subcall(tcp, SYS_semsys_subcall,
2380 SYS_semsys_nsubcalls, shift_style);
2381 break;
2382#if 0 /* broken */
2383 case SYS_utssys:
2384 decode_subcall(tcp, SYS_utssys_subcall,
2385 SYS_utssys_nsubcalls, shift_style);
2386 break;
2387#endif
2388 case SYS_sysfs:
2389 decode_subcall(tcp, SYS_sysfs_subcall,
2390 SYS_sysfs_nsubcalls, shift_style);
2391 break;
2392 case SYS_spcall:
2393 decode_subcall(tcp, SYS_spcall_subcall,
2394 SYS_spcall_nsubcalls, shift_style);
2395 break;
2396#ifdef SYS_context_subcall
2397 case SYS_context:
2398 decode_subcall(tcp, SYS_context_subcall,
2399 SYS_context_nsubcalls, shift_style);
2400 break;
2401#endif /* SYS_context_subcall */
Wichert Akkerman8829a551999-06-11 13:18:40 +00002402#ifdef SYS_door_subcall
2403 case SYS_door:
2404 decode_subcall(tcp, SYS_door_subcall,
2405 SYS_door_nsubcalls, door_style);
2406 break;
2407#endif /* SYS_door_subcall */
John Hughesbdf48f52001-03-06 15:08:09 +00002408#ifdef SYS_kaio_subcall
2409 case SYS_kaio:
2410 decode_subcall(tcp, SYS_kaio_subcall,
2411 SYS_kaio_nsubcalls, shift_style);
2412 break;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00002413#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002414#endif /* SVR4 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002415#ifdef FREEBSD
2416 case SYS_msgsys:
2417 case SYS_shmsys:
2418 case SYS_semsys:
2419 decode_subcall(tcp, 0, 0, table_style);
2420 break;
Wichert Akkerman7b3346b2001-10-09 23:47:38 +00002421#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002422#ifdef SUNOS4
2423 case SYS_semsys:
2424 decode_subcall(tcp, SYS_semsys_subcall,
2425 SYS_semsys_nsubcalls, shift_style);
2426 break;
2427 case SYS_msgsys:
2428 decode_subcall(tcp, SYS_msgsys_subcall,
2429 SYS_msgsys_nsubcalls, shift_style);
2430 break;
2431 case SYS_shmsys:
2432 decode_subcall(tcp, SYS_shmsys_subcall,
2433 SYS_shmsys_nsubcalls, shift_style);
2434 break;
2435#endif
2436 }
2437
2438 internal_syscall(tcp);
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002439 if (tcp->scno >=0 && tcp->scno < nsyscalls && !(qual_flags[tcp->scno] & QUAL_TRACE)) {
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002440 tcp->flags |= TCB_INSYSCALL;
2441 return 0;
2442 }
2443
2444 if (cflag) {
2445 gettimeofday(&tcp->etime, NULL);
2446 tcp->flags |= TCB_INSYSCALL;
2447 return 0;
2448 }
2449
2450 printleader(tcp);
2451 tcp->flags &= ~TCB_REPRINT;
2452 tcp_last = tcp;
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002453 if (tcp->scno >= nsyscalls || tcp->scno < 0)
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002454 tprintf("syscall_%lu(", tcp->scno);
2455 else
2456 tprintf("%s(", sysent[tcp->scno].sys_name);
Roland McGrath761b5d72002-12-15 23:58:31 +00002457 if (tcp->scno >= nsyscalls || tcp->scno < 0 ||
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002458 ((qual_flags[tcp->scno] & QUAL_RAW) && tcp->scno != SYS_exit))
2459 sys_res = printargs(tcp);
2460 else
2461 sys_res = (*sysent[tcp->scno].sys_func)(tcp);
2462 if (fflush(tcp->outf) == EOF)
2463 return -1;
2464 tcp->flags |= TCB_INSYSCALL;
2465 /* Measure the entrance time as late as possible to avoid errors. */
2466 if (dtime)
2467 gettimeofday(&tcp->etime, NULL);
2468 return sys_res;
2469}
2470
2471int
2472printargs(tcp)
2473struct tcb *tcp;
2474{
2475 if (entering(tcp)) {
2476 int i;
2477
2478 for (i = 0; i < tcp->u_nargs; i++)
2479 tprintf("%s%#lx", i ? ", " : "", tcp->u_arg[i]);
2480 }
2481 return 0;
2482}
2483
2484long
2485getrval2(tcp)
2486struct tcb *tcp;
2487{
2488 long val = -1;
2489
2490#ifdef LINUX
Roland McGrath6d1a65c2004-07-12 07:44:08 +00002491#if defined (SPARC) || defined (SPARC64)
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00002492 struct regs regs;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002493 if (ptrace(PTRACE_GETREGS,tcp->pid,(char *)&regs,0) < 0)
2494 return -1;
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00002495 val = regs.r_o1;
Roland McGrath6b1d43e2003-03-31 01:05:01 +00002496#elif defined(SH)
2497 if (upeek(tcp->pid, 4*(REG_REG0+1), &val) < 0)
2498 return -1;
Roland McGrath6d1a65c2004-07-12 07:44:08 +00002499#endif /* SPARC || SPARC64 */
Roland McGrathb4ce1762004-03-01 20:30:48 +00002500#elif defined(IA64)
2501 if (upeek(tcp->pid, PT_R9, &val) < 0)
2502 return -1;
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002503#endif /* LINUX */
2504
2505#ifdef SUNOS4
2506 if (upeek(tcp->pid, uoff(u_rval2), &val) < 0)
2507 return -1;
2508#endif /* SUNOS4 */
2509
2510#ifdef SVR4
2511#ifdef SPARC
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00002512 val = tcp->status.PR_REG[R_O1];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002513#endif /* SPARC */
2514#ifdef I386
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00002515 val = tcp->status.PR_REG[EDX];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002516#endif /* I386 */
Michal Ludvig0e035502002-09-23 15:41:01 +00002517#ifdef X86_64
2518 val = tcp->status.PR_REG[RDX];
2519#endif /* X86_64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002520#ifdef MIPS
Wichert Akkerman9ce1a631999-08-29 23:15:07 +00002521 val = tcp->status.PR_REG[CTX_V1];
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002522#endif /* MIPS */
2523#endif /* SVR4 */
Wichert Akkermanbf79f2e2000-09-01 21:03:06 +00002524#ifdef FREEBSD
2525 struct reg regs;
2526 pread(tcp->pfd_reg, &regs, sizeof(regs), 0);
2527 val = regs.r_edx;
Roland McGrath761b5d72002-12-15 23:58:31 +00002528#endif
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00002529 return val;
2530}
2531
2532/*
2533 * Apparently, indirect system calls have already be converted by ptrace(2),
2534 * so if you see "indir" this program has gone astray.
2535 */
2536int
2537sys_indir(tcp)
2538struct tcb *tcp;
2539{
2540 int i, scno, nargs;
2541
2542 if (entering(tcp)) {
2543 if ((scno = tcp->u_arg[0]) > nsyscalls) {
2544 fprintf(stderr, "Bogus syscall: %u\n", scno);
2545 return 0;
2546 }
2547 nargs = sysent[scno].nargs;
2548 tprintf("%s", sysent[scno].sys_name);
2549 for (i = 0; i < nargs; i++)
2550 tprintf(", %#lx", tcp->u_arg[i+1]);
2551 }
2552 return 0;
2553}
2554
2555static int
2556time_cmp(a, b)
2557void *a;
2558void *b;
2559{
2560 return -tv_cmp(&tv_count[*((int *) a)], &tv_count[*((int *) b)]);
2561}
2562
2563static int
2564syscall_cmp(a, b)
2565void *a;
2566void *b;
2567{
2568 return strcmp(sysent[*((int *) a)].sys_name,
2569 sysent[*((int *) b)].sys_name);
2570}
2571
2572static int
2573count_cmp(a, b)
2574void *a;
2575void *b;
2576{
2577 int m = call_count[*((int *) a)], n = call_count[*((int *) b)];
2578
2579 return (m < n) ? 1 : (m > n) ? -1 : 0;
2580}
2581
2582static int (*sortfun)();
2583static struct timeval overhead = { -1, -1 };
2584
2585void
2586set_sortby(sortby)
2587char *sortby;
2588{
2589 if (strcmp(sortby, "time") == 0)
2590 sortfun = time_cmp;
2591 else if (strcmp(sortby, "calls") == 0)
2592 sortfun = count_cmp;
2593 else if (strcmp(sortby, "name") == 0)
2594 sortfun = syscall_cmp;
2595 else if (strcmp(sortby, "nothing") == 0)
2596 sortfun = NULL;
2597 else {
2598 fprintf(stderr, "invalid sortby: `%s'\n", sortby);
2599 exit(1);
2600 }
2601}
2602
2603void set_overhead(n)
2604int n;
2605{
2606 overhead.tv_sec = n / 1000000;
2607 overhead.tv_usec = n % 1000000;
2608}
2609
2610void
2611call_summary(outf)
2612FILE *outf;
2613{
2614 int i, j;
2615 int call_cum, error_cum;
2616 struct timeval tv_cum, dtv;
2617 double percent;
2618 char *dashes = "-------------------------";
2619 char error_str[16];
2620
2621 call_cum = error_cum = tv_cum.tv_sec = tv_cum.tv_usec = 0;
2622 if (overhead.tv_sec == -1) {
2623 tv_mul(&overhead, &shortest, 8);
2624 tv_div(&overhead, &overhead, 10);
2625 }
2626 for (i = 0; i < nsyscalls; i++) {
2627 sorted_count[i] = i;
2628 if (call_count[i] == 0)
2629 continue;
2630 tv_mul(&dtv, &overhead, call_count[i]);
2631 tv_sub(&tv_count[i], &tv_count[i], &dtv);
2632 call_cum += call_count[i];
2633 error_cum += error_count[i];
2634 tv_add(&tv_cum, &tv_cum, &tv_count[i]);
2635 }
2636 if (sortfun)
2637 qsort((void *) sorted_count, nsyscalls, sizeof(int), sortfun);
2638 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %s\n",
2639 "% time", "seconds", "usecs/call",
2640 "calls", "errors", "syscall");
2641 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s\n",
2642 dashes, dashes, dashes, dashes, dashes, dashes);
2643 for (i = 0; i < nsyscalls; i++) {
2644 j = sorted_count[i];
2645 if (call_count[j] == 0)
2646 continue;
2647 tv_div(&dtv, &tv_count[j], call_count[j]);
2648 if (error_count[j])
2649 sprintf(error_str, "%d", error_count[j]);
2650 else
2651 error_str[0] = '\0';
2652 percent = 100.0*tv_float(&tv_count[j])/tv_float(&tv_cum);
2653 fprintf(outf, "%6.2f %4ld.%06ld %11ld %9d %9.9s %s\n",
2654 percent, (long) tv_count[j].tv_sec,
2655 (long) tv_count[j].tv_usec,
2656 (long) 1000000 * dtv.tv_sec + dtv.tv_usec,
2657 call_count[j], error_str, sysent[j].sys_name);
2658 }
2659 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s\n",
2660 dashes, dashes, dashes, dashes, dashes, dashes);
2661 if (error_cum)
2662 sprintf(error_str, "%d", error_cum);
2663 else
2664 error_str[0] = '\0';
2665 fprintf(outf, "%6.6s %4ld.%06ld %11.11s %9d %9.9s %s\n",
2666 "100.00", (long) tv_cum.tv_sec, (long) tv_cum.tv_usec, "",
2667 call_cum, error_str, "total");
2668}