Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 1991, 1992 Paul Kranenburg <pk@cs.few.eur.nl> |
| 3 | * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl> |
| 4 | * Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <jrs@world.std.com> |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following conditions |
| 9 | * are met: |
| 10 | * 1. Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer in the |
| 14 | * documentation and/or other materials provided with the distribution. |
| 15 | * 3. The name of the author may not be used to endorse or promote products |
| 16 | * derived from this software without specific prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | * |
| 29 | * $Id$ |
| 30 | */ |
| 31 | |
Roland McGrath | 795edb1 | 2005-02-02 04:44:57 +0000 | [diff] [blame] | 32 | #ifdef HAVE_CONFIG_H |
| 33 | #include "config.h" |
| 34 | #endif |
| 35 | |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 36 | #ifdef MIPS |
| 37 | #include <sgidefs.h> |
| 38 | #endif |
| 39 | |
Wichert Akkerman | b859bea | 1999-04-18 22:50:50 +0000 | [diff] [blame] | 40 | #ifdef linux |
| 41 | #include <features.h> |
| 42 | #endif |
| 43 | |
Roland McGrath | e6d3a29 | 2003-01-14 09:46:18 +0000 | [diff] [blame] | 44 | #ifdef _LARGEFILE64_SOURCE |
| 45 | /* This is the macro everything checks before using foo64 names. */ |
| 46 | # ifndef _LFS64_LARGEFILE |
| 47 | # define _LFS64_LARGEFILE 1 |
| 48 | # endif |
| 49 | #endif |
| 50 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 51 | /* configuration section */ |
| 52 | #ifndef MAX_QUALS |
Roland McGrath | 63d0146 | 2002-12-30 00:25:36 +0000 | [diff] [blame] | 53 | #if defined(LINUX) && defined(MIPS) |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 54 | #define MAX_QUALS 7000 /* maximum number of syscalls, signals, etc. */ |
Wichert Akkerman | fd89ced | 2000-04-13 17:06:09 +0000 | [diff] [blame] | 55 | #else |
Wichert Akkerman | 8b1b40c | 2000-02-03 21:58:30 +0000 | [diff] [blame] | 56 | #define MAX_QUALS 2048 /* maximum number of syscalls, signals, etc. */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 57 | #endif |
Wichert Akkerman | 5ae21ea | 2000-05-01 01:53:59 +0000 | [diff] [blame] | 58 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 59 | #ifndef DEFAULT_STRLEN |
| 60 | #define DEFAULT_STRLEN 32 /* default maximum # of bytes printed in |
| 61 | `printstr', change with `-s' switch */ |
| 62 | #endif |
| 63 | #ifndef DEFAULT_ACOLUMN |
| 64 | #define DEFAULT_ACOLUMN 40 /* default alignment column for results */ |
| 65 | #endif |
| 66 | #ifndef MAX_ARGS |
| 67 | #define MAX_ARGS 32 /* maximum number of args to a syscall */ |
| 68 | #endif |
| 69 | #ifndef DEFAULT_SORTBY |
| 70 | #define DEFAULT_SORTBY "time" /* default sorting method for call profiling */ |
| 71 | #endif |
| 72 | |
| 73 | #include <sys/types.h> |
| 74 | #include <unistd.h> |
| 75 | #include <stdlib.h> |
| 76 | #include <stdio.h> |
| 77 | #include <ctype.h> |
| 78 | #include <string.h> |
Wichert Akkerman | 8c7122c | 2001-02-16 19:59:55 +0000 | [diff] [blame] | 79 | #include <time.h> |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 80 | #include <sys/time.h> |
| 81 | #include <errno.h> |
| 82 | |
Roland McGrath | 639658b | 2008-08-01 01:06:31 +0000 | [diff] [blame] | 83 | #ifdef HAVE_STDBOOL_H |
| 84 | #include <stdbool.h> |
| 85 | #endif |
| 86 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 87 | #ifdef STDC_HEADERS |
| 88 | #include <stddef.h> |
| 89 | #endif /* STDC_HEADERS */ |
| 90 | |
John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 91 | #ifdef HAVE_SIGINFO_T |
| 92 | #include <signal.h> |
| 93 | #endif |
| 94 | |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 95 | #if defined(LINUX) |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 96 | # if defined(SPARC) || defined(SPARC64) |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 97 | # define LINUXSPARC |
| 98 | # endif |
| 99 | # if defined(ALPHA) |
| 100 | # define LINUX_64BIT |
| 101 | # endif |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 102 | # if defined(X86_64) |
| 103 | # define LINUX_X86_64 |
| 104 | # endif |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 105 | # if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_ABI32 |
| 106 | # define LINUX_MIPSO32 |
| 107 | # endif |
| 108 | # if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_NABI32 |
| 109 | # define LINUX_MIPSN32 |
| 110 | # define LINUX_MIPS64 |
| 111 | # endif |
| 112 | # if defined(MIPS) && _MIPS_SIM == _MIPS_SIM_ABI64 |
| 113 | # define LINUX_MIPSN64 |
| 114 | # define LINUX_MIPS64 |
| 115 | # endif |
Denys Vlasenko | 8ba1cd7 | 2008-12-30 17:50:46 +0000 | [diff] [blame^] | 116 | # if defined(ARM) |
| 117 | # define LINUX_ARM |
| 118 | # endif |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 119 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 120 | |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 121 | #if defined(SVR4) || defined(FREEBSD) |
| 122 | #define USE_PROCFS |
| 123 | #else |
| 124 | #undef USE_PROCFS |
| 125 | #endif |
| 126 | |
| 127 | #ifdef FREEBSD |
| 128 | #ifndef I386 |
| 129 | #error "FreeBSD support is only for i386 arch right now." |
| 130 | #endif |
| 131 | #include <machine/psl.h> |
| 132 | #include <machine/reg.h> |
| 133 | #include <sys/syscall.h> |
| 134 | #endif |
| 135 | |
| 136 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 137 | #include <sys/procfs.h> |
Wichert Akkerman | ea78f0f | 1999-11-29 15:34:02 +0000 | [diff] [blame] | 138 | #ifdef HAVE_MP_PROCFS |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 139 | #include <sys/uio.h> |
| 140 | #endif |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 141 | #ifdef FREEBSD |
| 142 | #include <sys/pioctl.h> |
| 143 | #endif /* FREEBSD */ |
| 144 | #else /* !USE_PROCFS */ |
Denys Vlasenko | 8ba1cd7 | 2008-12-30 17:50:46 +0000 | [diff] [blame^] | 145 | #if (defined(LINUXSPARC) || defined(LINUX_X86_64) || defined(LINUX_ARM)) && defined(__GLIBC__) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 146 | #include <sys/ptrace.h> |
| 147 | #else |
| 148 | /* Work around awkward prototype in ptrace.h. */ |
| 149 | #define ptrace xptrace |
| 150 | #include <sys/ptrace.h> |
| 151 | #undef ptrace |
| 152 | #ifdef POWERPC |
| 153 | #define __KERNEL__ |
| 154 | #include <asm/ptrace.h> |
| 155 | #undef __KERNEL__ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 156 | #endif |
| 157 | #ifdef __STDC__ |
| 158 | #ifdef LINUX |
| 159 | extern long ptrace(int, int, char *, long); |
| 160 | #else /* !LINUX */ |
| 161 | extern int ptrace(int, int, char *, int, ...); |
| 162 | #endif /* !LINUX */ |
| 163 | #else /* !__STDC__ */ |
| 164 | extern int ptrace(); |
| 165 | #endif /* !__STDC__ */ |
| 166 | #endif /* !LINUXSPARC */ |
| 167 | #endif /* !SVR4 */ |
| 168 | |
| 169 | #ifdef LINUX |
Wichert Akkerman | b859bea | 1999-04-18 22:50:50 +0000 | [diff] [blame] | 170 | #if !defined(__GLIBC__) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 171 | #define PTRACE_PEEKUSER PTRACE_PEEKUSR |
| 172 | #define PTRACE_POKEUSER PTRACE_POKEUSR |
| 173 | #endif |
| 174 | #ifdef ALPHA |
Wichert Akkerman | f90da01 | 1999-10-31 21:15:38 +0000 | [diff] [blame] | 175 | # define REG_R0 0 |
| 176 | # define REG_A0 16 |
| 177 | # define REG_A3 19 |
| 178 | # define REG_FP 30 |
| 179 | # define REG_PC 64 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 180 | #endif /* ALPHA */ |
Wichert Akkerman | f90da01 | 1999-10-31 21:15:38 +0000 | [diff] [blame] | 181 | #ifdef MIPS |
| 182 | # define REG_V0 2 |
| 183 | # define REG_A0 4 |
| 184 | # define REG_A3 7 |
| 185 | # define REG_SP 29 |
| 186 | # define REG_EPC 64 |
| 187 | #endif /* MIPS */ |
Wichert Akkerman | c1652e2 | 2001-03-27 12:17:16 +0000 | [diff] [blame] | 188 | #ifdef HPPA |
| 189 | # define PT_GR20 (20*4) |
| 190 | # define PT_GR26 (26*4) |
| 191 | # define PT_GR28 (28*4) |
| 192 | # define PT_IAOQ0 (106*4) |
| 193 | # define PT_IAOQ1 (107*4) |
| 194 | #endif /* HPPA */ |
Roland McGrath | f5a4777 | 2003-06-26 22:40:42 +0000 | [diff] [blame] | 195 | #ifdef SH64 |
| 196 | /* SH64 Linux - this code assumes the following kernel API for system calls: |
Roland McGrath | e1e584b | 2003-06-02 19:18:58 +0000 | [diff] [blame] | 197 | PC Offset 0 |
| 198 | System Call Offset 16 (actually, (syscall no.) | (0x1n << 16), |
| 199 | where n = no. of parameters. |
| 200 | Other regs Offset 24+ |
| 201 | |
| 202 | On entry: R2-7 = parameters 1-6 (as many as necessary) |
| 203 | On return: R9 = result. */ |
| 204 | |
| 205 | /* Offset for peeks of registers */ |
| 206 | # define REG_OFFSET (24) |
| 207 | # define REG_GENERAL(x) (8*(x)+REG_OFFSET) |
| 208 | # define REG_PC (0*8) |
| 209 | # define REG_SYSCALL (2*8) |
Roland McGrath | f5a4777 | 2003-06-26 22:40:42 +0000 | [diff] [blame] | 210 | #endif /* SH64 */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 211 | #endif /* LINUX */ |
| 212 | |
| 213 | #define SUPPORTED_PERSONALITIES 1 |
| 214 | #define DEFAULT_PERSONALITY 0 |
| 215 | |
| 216 | #ifdef LINUXSPARC |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 217 | #define PERSONALITY0_WORDSIZE 4 |
| 218 | #define PERSONALITY1_WORDSIZE 4 |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 219 | #undef SUPPORTED_PERSONALITIES |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 220 | #if defined(SPARC64) |
Roland McGrath | 5aa0434 | 2007-09-12 01:26:26 +0000 | [diff] [blame] | 221 | #include <asm/psrcompat.h> |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 222 | #define SUPPORTED_PERSONALITIES 3 |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 223 | #define PERSONALITY2_WORDSIZE 8 |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 224 | #else |
Roland McGrath | 5aa0434 | 2007-09-12 01:26:26 +0000 | [diff] [blame] | 225 | #include <asm/psr.h> |
Wichert Akkerman | b859bea | 1999-04-18 22:50:50 +0000 | [diff] [blame] | 226 | #define SUPPORTED_PERSONALITIES 2 |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 227 | #endif /* SPARC64 */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 228 | #endif /* LINUXSPARC */ |
| 229 | |
Michal Ludvig | 0e03550 | 2002-09-23 15:41:01 +0000 | [diff] [blame] | 230 | #ifdef X86_64 |
| 231 | #undef SUPPORTED_PERSONALITIES |
| 232 | #define SUPPORTED_PERSONALITIES 2 |
Roland McGrath | 4b2dcca | 2006-01-12 10:18:53 +0000 | [diff] [blame] | 233 | #define PERSONALITY0_WORDSIZE 8 |
| 234 | #define PERSONALITY1_WORDSIZE 4 |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 235 | #endif |
| 236 | |
Roland McGrath | 5670331 | 2008-05-20 01:35:55 +0000 | [diff] [blame] | 237 | #ifdef ARM |
| 238 | #undef SUPPORTED_PERSONALITIES |
| 239 | #define SUPPORTED_PERSONALITIES 2 |
| 240 | #define PERSONALITY0_WORDSIZE 4 |
| 241 | #define PERSONALITY1_WORDSIZE 4 |
| 242 | #endif |
| 243 | |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 244 | #ifdef SVR4 |
Wichert Akkerman | ea78f0f | 1999-11-29 15:34:02 +0000 | [diff] [blame] | 245 | #ifdef HAVE_MP_PROCFS |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 246 | extern int mp_ioctl (int f, int c, void *a, int s); |
| 247 | #define IOCTL(f,c,a) mp_ioctl (f, c, a, sizeof *a) |
| 248 | #define IOCTL_STATUS(t) \ |
| 249 | pread (t->pfd_stat, &t->status, sizeof t->status, 0) |
| 250 | #define IOCTL_WSTOP(t) \ |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 251 | (IOCTL (t->pfd, PCWSTOP, (char *)NULL) < 0 ? -1 : \ |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 252 | IOCTL_STATUS (t)) |
| 253 | #define PR_WHY pr_lwp.pr_why |
| 254 | #define PR_WHAT pr_lwp.pr_what |
| 255 | #define PR_REG pr_lwp.pr_context.uc_mcontext.gregs |
| 256 | #define PR_FLAGS pr_lwp.pr_flags |
John Hughes | 2529971 | 2001-03-06 10:10:06 +0000 | [diff] [blame] | 257 | #define PR_SYSCALL pr_lwp.pr_syscall |
John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 258 | #define PR_INFO pr_lwp.pr_info |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 259 | #define PIOCSTIP PCSTOP |
| 260 | #define PIOCSET PCSET |
| 261 | #define PIOCRESET PCRESET |
| 262 | #define PIOCSTRACE PCSTRACE |
| 263 | #define PIOCSFAULT PCSFAULT |
| 264 | #define PIOCWSTOP PCWSTOP |
| 265 | #define PIOCSTOP PCSTOP |
| 266 | #define PIOCSENTRY PCSENTRY |
| 267 | #define PIOCSEXIT PCSEXIT |
| 268 | #define PIOCRUN PCRUN |
| 269 | #else |
| 270 | #define IOCTL ioctl |
| 271 | #define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status) |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 272 | #define IOCTL_WSTOP(t) ioctl (t->pfd, PIOCWSTOP, &t->status) |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 273 | #define PR_WHY pr_why |
| 274 | #define PR_WHAT pr_what |
| 275 | #define PR_REG pr_reg |
| 276 | #define PR_FLAGS pr_flags |
John Hughes | 2529971 | 2001-03-06 10:10:06 +0000 | [diff] [blame] | 277 | #define PR_SYSCALL pr_syscall |
John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 278 | #define PR_INFO pr_info |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 279 | #endif |
| 280 | #endif |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 281 | #ifdef FREEBSD |
| 282 | #define IOCTL ioctl |
| 283 | #define IOCTL_STATUS(t) ioctl (t->pfd, PIOCSTATUS, &t->status) |
| 284 | #define IOCTL_WSTOP(t) ioctl (t->pfd, PIOCWAIT, &t->status) |
| 285 | #define PIOCRUN PIOCCONT |
| 286 | #define PIOCWSTOP PIOCWAIT |
| 287 | #define PR_WHY why |
| 288 | #define PR_WHAT val |
Wichert Akkerman | 2e4ffe5 | 2000-09-03 23:57:48 +0000 | [diff] [blame] | 289 | #define PR_FLAGS state |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 290 | /* from /usr/src/sys/miscfs/procfs/procfs_vnops.c, |
| 291 | status.state = 0 for running, 1 for stopped */ |
Wichert Akkerman | 2e4ffe5 | 2000-09-03 23:57:48 +0000 | [diff] [blame] | 292 | #define PR_ASLEEP 1 |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 293 | #define PR_SYSENTRY S_SCE |
| 294 | #define PR_SYSEXIT S_SCX |
| 295 | #define PR_SIGNALLED S_SIG |
| 296 | #define PR_FAULTED S_CORE |
| 297 | #endif |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 298 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 299 | /* Trace Control Block */ |
| 300 | struct tcb { |
| 301 | short flags; /* See below for TCB_ values */ |
| 302 | int pid; /* Process Id of this entry */ |
| 303 | long scno; /* System call number */ |
| 304 | int u_nargs; /* System call arguments */ |
| 305 | long u_arg[MAX_ARGS]; /* System call arguments */ |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 306 | #if defined (LINUX_MIPSN32) |
| 307 | long long ext_arg[MAX_ARGS]; /* System call arguments */ |
| 308 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 309 | int u_error; /* Error code */ |
| 310 | long u_rval; /* (first) return value */ |
Wichert Akkerman | 16a03d2 | 2000-08-10 02:14:04 +0000 | [diff] [blame] | 311 | #ifdef HAVE_LONG_LONG |
| 312 | long long u_lrval; /* long long return value */ |
| 313 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 314 | FILE *outf; /* Output file for this process */ |
Wichert Akkerman | 43a7482 | 2000-06-27 17:33:32 +0000 | [diff] [blame] | 315 | const char *auxstr; /* Auxiliary info from syscall (see RVAL_STR) */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 316 | struct timeval stime; /* System time usage as of last process wait */ |
| 317 | struct timeval dtime; /* Delta for system time usage */ |
| 318 | struct timeval etime; /* Syscall entry time */ |
| 319 | /* Support for tracing forked processes */ |
| 320 | struct tcb *parent; /* Parent of this process */ |
| 321 | int nchildren; /* # of traced children */ |
| 322 | int waitpid; /* pid(s) this process is waiting for */ |
Roland McGrath | 0962345 | 2003-05-23 02:27:13 +0000 | [diff] [blame] | 323 | int nzombies; /* # of formerly traced children now dead */ |
Roland McGrath | 923f750 | 2003-01-09 06:53:27 +0000 | [diff] [blame] | 324 | #ifdef LINUX |
| 325 | int nclone_threads; /* # of nchildren with CLONE_THREAD */ |
| 326 | int nclone_detached; /* # of nchildren with CLONE_DETACHED */ |
| 327 | int nclone_waiting; /* clone threads in wait4 (TCB_SUSPENDED) */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 328 | /* (1st arg of wait4()) */ |
Denys Vlasenko | 1e3ce32 | 2008-12-22 19:14:47 +0000 | [diff] [blame] | 329 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 330 | long baddr; /* `Breakpoint' address */ |
| 331 | long inst[2]; /* Instructions on above */ |
| 332 | int pfd; /* proc file descriptor */ |
| 333 | #ifdef SVR4 |
Wichert Akkerman | ea78f0f | 1999-11-29 15:34:02 +0000 | [diff] [blame] | 334 | #ifdef HAVE_MP_PROCFS |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 335 | int pfd_stat; |
| 336 | int pfd_as; |
| 337 | pstatus_t status; |
| 338 | #else |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 339 | prstatus_t status; /* procfs status structure */ |
| 340 | #endif |
Wichert Akkerman | 9ce1a63 | 1999-08-29 23:15:07 +0000 | [diff] [blame] | 341 | #endif |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 342 | int ptrace_errno; |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 343 | #ifdef FREEBSD |
| 344 | struct procfs_status status; |
| 345 | int pfd_reg; |
| 346 | int pfd_status; |
| 347 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 348 | }; |
| 349 | |
| 350 | /* TCB flags */ |
| 351 | #define TCB_STARTUP 00001 /* We have just begun ptracing this process */ |
| 352 | #define TCB_INUSE 00002 /* This table entry is in use */ |
| 353 | #define TCB_INSYSCALL 00004 /* A system call is in progress */ |
| 354 | #define TCB_ATTACHED 00010 /* Process is not our own child */ |
| 355 | #define TCB_EXITING 00020 /* As far as we know, this process is exiting */ |
| 356 | #define TCB_SUSPENDED 00040 /* Process has done a wait(4), that can |
| 357 | not be allowed to complete just now */ |
| 358 | #define TCB_BPTSET 00100 /* "Breakpoint" set after fork(2) */ |
| 359 | #define TCB_SIGTRAPPED 00200 /* Process wanted to block SIGTRAP */ |
| 360 | #define TCB_FOLLOWFORK 00400 /* Process should have forks followed */ |
| 361 | #define TCB_REPRINT 01000 /* We should reprint this syscall on exit */ |
| 362 | #ifdef LINUX |
Dmitry V. Levin | 87ea1f4 | 2008-11-10 22:21:41 +0000 | [diff] [blame] | 363 | # if defined(ALPHA) || defined(SPARC) || defined(SPARC64) || defined(POWERPC) || defined(IA64) || defined(HPPA) || defined(SH) || defined(SH64) || defined(S390) || defined(S390X) || defined(ARM) || defined(MIPS) || defined(BFIN) |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 364 | # define TCB_WAITEXECVE 02000 /* ignore SIGTRAP after exceve */ |
| 365 | # endif |
Roland McGrath | 923f750 | 2003-01-09 06:53:27 +0000 | [diff] [blame] | 366 | # define TCB_CLONE_DETACHED 04000 /* CLONE_DETACHED set in creating syscall */ |
| 367 | # define TCB_CLONE_THREAD 010000 /* CLONE_THREAD set in creating syscall */ |
| 368 | # define TCB_GROUP_EXITING 020000 /* TCB_EXITING was exit_group, not _exit */ |
| 369 | # include <sys/syscall.h> |
| 370 | # ifndef __NR_exit_group |
| 371 | # /* Hack: Most headers around are too old to have __NR_exit_group. */ |
| 372 | # ifdef ALPHA |
| 373 | # define __NR_exit_group 405 |
| 374 | # elif defined I386 |
| 375 | # define __NR_exit_group 252 |
Dmitry V. Levin | aca9a74 | 2006-10-11 22:56:49 +0000 | [diff] [blame] | 376 | # elif defined X86_64 |
| 377 | # define __NR_exit_group 231 |
Roland McGrath | 923f750 | 2003-01-09 06:53:27 +0000 | [diff] [blame] | 378 | # elif defined IA64 |
| 379 | # define __NR_exit_group 1236 |
| 380 | # elif defined POWERPC |
| 381 | # define __NR_exit_group 234 |
| 382 | # elif defined S390 || defined S390X |
| 383 | # define __NR_exit_group 248 |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 384 | # elif defined SPARC || defined SPARC64 |
Roland McGrath | 923f750 | 2003-01-09 06:53:27 +0000 | [diff] [blame] | 385 | # define __NR_exit_group 188 |
Roland McGrath | 165155a | 2005-07-19 07:42:17 +0000 | [diff] [blame] | 386 | # elif defined M68K |
| 387 | # define __NR_exit_group 247 |
Roland McGrath | 923f750 | 2003-01-09 06:53:27 +0000 | [diff] [blame] | 388 | # endif /* ALPHA et al */ |
| 389 | # endif /* !__NR_exit_group */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 390 | #endif /* LINUX */ |
| 391 | |
| 392 | /* qualifier flags */ |
| 393 | #define QUAL_TRACE 0001 /* this system call should be traced */ |
| 394 | #define QUAL_ABBREV 0002 /* abbreviate the structures of this syscall */ |
| 395 | #define QUAL_VERBOSE 0004 /* decode the structures of this syscall */ |
| 396 | #define QUAL_RAW 0010 /* print all args in hex for this syscall */ |
| 397 | #define QUAL_SIGNAL 0020 /* report events with this signal */ |
| 398 | #define QUAL_FAULT 0040 /* report events with this fault */ |
| 399 | #define QUAL_READ 0100 /* dump data read on this file descriptor */ |
| 400 | #define QUAL_WRITE 0200 /* dump data written to this file descriptor */ |
| 401 | |
| 402 | #define entering(tcp) (!((tcp)->flags & TCB_INSYSCALL)) |
| 403 | #define exiting(tcp) ((tcp)->flags & TCB_INSYSCALL) |
| 404 | #define syserror(tcp) ((tcp)->u_error != 0) |
| 405 | #define verbose(tcp) (qual_flags[(tcp)->scno] & QUAL_VERBOSE) |
| 406 | #define abbrev(tcp) (qual_flags[(tcp)->scno] & QUAL_ABBREV) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 407 | |
| 408 | struct xlat { |
| 409 | int val; |
| 410 | char *str; |
| 411 | }; |
| 412 | |
| 413 | /* Format of syscall return values */ |
| 414 | #define RVAL_DECIMAL 000 /* decimal format */ |
| 415 | #define RVAL_HEX 001 /* hex format */ |
| 416 | #define RVAL_OCTAL 002 /* octal format */ |
| 417 | #define RVAL_UDECIMAL 003 /* unsigned decimal format */ |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 418 | #define RVAL_LDECIMAL 004 /* long decimal format */ |
| 419 | #define RVAL_LHEX 005 /* long hex format */ |
| 420 | #define RVAL_LOCTAL 006 /* long octal format */ |
| 421 | #define RVAL_LUDECIMAL 007 /* long unsigned decimal format */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 422 | #define RVAL_MASK 007 /* mask for these values */ |
| 423 | |
| 424 | #define RVAL_STR 010 /* Print `auxstr' field after return val */ |
| 425 | #define RVAL_NONE 020 /* Print nothing */ |
| 426 | |
| 427 | #ifndef offsetof |
| 428 | #define offsetof(type, member) (((char *) &(((type *) NULL)->member)) - \ |
| 429 | ((char *) (type *) NULL)) |
| 430 | #endif /* !offsetof */ |
| 431 | |
| 432 | /* get offset of member within a user struct */ |
| 433 | #define uoff(member) offsetof(struct user, member) |
| 434 | |
| 435 | #define TRACE_FILE 001 /* Trace file-related syscalls. */ |
| 436 | #define TRACE_IPC 002 /* Trace IPC-related syscalls. */ |
| 437 | #define TRACE_NETWORK 004 /* Trace network-related syscalls. */ |
| 438 | #define TRACE_PROCESS 010 /* Trace process-related syscalls. */ |
| 439 | #define TRACE_SIGNAL 020 /* Trace signal-related syscalls. */ |
Roland McGrath | 2fe7b13 | 2005-07-05 03:25:35 +0000 | [diff] [blame] | 440 | #define TRACE_DESC 040 /* Trace file descriptor-related syscalls. */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 441 | |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 442 | extern struct tcb **tcbtab; |
Roland McGrath | 138c6a3 | 2006-01-12 09:50:49 +0000 | [diff] [blame] | 443 | extern int *qual_flags; |
Roland McGrath | 41c4822 | 2008-07-18 00:25:10 +0000 | [diff] [blame] | 444 | extern int debug, followfork; |
Dmitry V. Levin | b9fe011 | 2006-12-13 16:59:44 +0000 | [diff] [blame] | 445 | extern int dtime, cflag, xflag, qflag; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 446 | extern int acolumn; |
Roland McGrath | ee9d435 | 2002-12-18 04:16:10 +0000 | [diff] [blame] | 447 | extern unsigned int nprocs, tcbtabsize; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 448 | extern int max_strlen; |
| 449 | extern struct tcb *tcp_last; |
| 450 | |
| 451 | #ifdef __STDC__ |
| 452 | #define P(args) args |
| 453 | #else |
| 454 | #define P(args) () |
| 455 | #endif |
| 456 | |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 457 | enum bitness_t { BITNESS_CURRENT = 0, BITNESS_32 }; |
| 458 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 459 | extern int set_personality P((int personality)); |
Dmitry V. Levin | ab9008b | 2007-01-11 22:05:04 +0000 | [diff] [blame] | 460 | extern const char *xlookup P((const struct xlat *, int)); |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 461 | extern struct tcb *alloc_tcb P((int, int)); |
Roland McGrath | 923f750 | 2003-01-09 06:53:27 +0000 | [diff] [blame] | 462 | extern struct tcb *pid2tcb P((int)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 463 | extern void droptcb P((struct tcb *)); |
Roland McGrath | 7b54a7a | 2004-06-04 01:50:45 +0000 | [diff] [blame] | 464 | extern int expand_tcbtab P((void)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 465 | |
Dmitry V. Levin | 10de62b | 2006-12-13 21:45:31 +0000 | [diff] [blame] | 466 | #define alloctcb(pid) alloc_tcb((pid), 1) |
| 467 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 468 | extern void set_sortby P((char *)); |
| 469 | extern void set_overhead P((int)); |
| 470 | extern void qualify P((char *)); |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 471 | extern int get_scno P((struct tcb *)); |
Roland McGrath | 76989d7 | 2005-06-07 23:21:31 +0000 | [diff] [blame] | 472 | extern long known_scno P((struct tcb *)); |
Denys Vlasenko | 732d1bf | 2008-12-17 19:21:59 +0000 | [diff] [blame] | 473 | extern long do_ptrace P((int request, struct tcb *tcp, void *addr, void *data)); |
| 474 | extern int ptrace_restart P((int request, struct tcb *tcp, int sig)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 475 | extern int trace_syscall P((struct tcb *)); |
Dmitry V. Levin | 7d61ff1 | 2006-12-21 21:15:04 +0000 | [diff] [blame] | 476 | extern int count_syscall P((struct tcb *, struct timeval *)); |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 477 | extern void printxval P((const struct xlat *, int, const char *)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 478 | extern int printargs P((struct tcb *)); |
Roland McGrath | d9f816f | 2004-09-04 03:39:20 +0000 | [diff] [blame] | 479 | extern int addflags P((const struct xlat *, int)); |
Roland McGrath | b2dee13 | 2005-06-01 19:02:36 +0000 | [diff] [blame] | 480 | extern int printflags P((const struct xlat *, int, const char *)); |
Roland McGrath | a6c0d8c | 2007-11-01 21:46:22 +0000 | [diff] [blame] | 481 | extern const char *sprintflags P((const char *, const struct xlat *, int)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 482 | extern int umoven P((struct tcb *, long, int, char *)); |
| 483 | extern int umovestr P((struct tcb *, long, int, char *)); |
Denys Vlasenko | 932fc7d | 2008-12-16 18:18:40 +0000 | [diff] [blame] | 484 | extern int upeek P((struct tcb *, long, long *)); |
John Hughes | 1d08dcf | 2001-07-10 13:48:44 +0000 | [diff] [blame] | 485 | extern void dumpiov P((struct tcb *, int, long)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 486 | extern void dumpstr P((struct tcb *, long, int)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 487 | extern void printstr P((struct tcb *, long, int)); |
| 488 | extern void printnum P((struct tcb *, long, char *)); |
Roland McGrath | 9814a94 | 2005-07-04 23:28:10 +0000 | [diff] [blame] | 489 | extern void printnum_int P((struct tcb *, long, char *)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 490 | extern void printpath P((struct tcb *, long)); |
| 491 | extern void printpathn P((struct tcb *, long, int)); |
Roland McGrath | 6afc565 | 2007-07-24 01:57:11 +0000 | [diff] [blame] | 492 | extern void printtv_bitness P((struct tcb *, long, enum bitness_t, int)); |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 493 | extern void sprinttv P((struct tcb *, long, enum bitness_t, char *)); |
Roland McGrath | 6bc09da | 2007-11-01 21:50:54 +0000 | [diff] [blame] | 494 | extern void print_timespec P((struct tcb *, long)); |
| 495 | extern void sprint_timespec P((char *, struct tcb *, long)); |
John Hughes | 5826589 | 2001-10-18 15:13:53 +0000 | [diff] [blame] | 496 | #ifdef HAVE_SIGINFO_T |
| 497 | extern void printsiginfo P((siginfo_t *, int)); |
| 498 | #endif |
Wichert Akkerman | f5eeabb | 1999-11-18 17:09:47 +0000 | [diff] [blame] | 499 | extern void printsock P((struct tcb *, long, int)); |
John Hughes | 38ae88d | 2002-05-23 11:48:58 +0000 | [diff] [blame] | 500 | extern void print_sock_optmgmt P((struct tcb *, long, int)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 501 | extern void printrusage P((struct tcb *, long)); |
Roland McGrath | 6bc1220 | 2003-11-13 22:32:27 +0000 | [diff] [blame] | 502 | extern void printuid P((const char *, unsigned long)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 503 | extern int clearbpt P((struct tcb *)); |
| 504 | extern int setbpt P((struct tcb *)); |
| 505 | extern int sigishandled P((struct tcb *, int)); |
| 506 | extern void printcall P((struct tcb *)); |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 507 | extern const char *signame P((int)); |
Dmitry V. Levin | 95ebf5a | 2006-10-13 20:25:12 +0000 | [diff] [blame] | 508 | extern void print_sigset P((struct tcb *, long, int)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 509 | extern void printsignal P((int)); |
| 510 | extern void printleader P((struct tcb *)); |
| 511 | extern void printtrailer P((struct tcb *)); |
| 512 | extern void tabto P((int)); |
| 513 | extern void call_summary P((FILE *)); |
Roland McGrath | aa524c8 | 2005-06-01 19:22:06 +0000 | [diff] [blame] | 514 | extern void tprint_iov P((struct tcb *, unsigned long, unsigned long)); |
Dmitry V. Levin | 9b5b67e | 2007-01-11 23:19:55 +0000 | [diff] [blame] | 515 | extern void tprint_open_modes P((struct tcb *, mode_t)); |
Dmitry V. Levin | 2e55ff4 | 2008-09-03 01:02:46 +0000 | [diff] [blame] | 516 | extern int is_restart_error P((struct tcb *)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 517 | |
Wichert Akkerman | 7a0b649 | 1999-12-23 15:08:17 +0000 | [diff] [blame] | 518 | #ifdef LINUX |
| 519 | extern int internal_clone P((struct tcb *)); |
| 520 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 521 | extern int internal_fork P((struct tcb *)); |
| 522 | extern int internal_exec P((struct tcb *)); |
Roland McGrath | c74c0b7 | 2004-09-01 19:39:46 +0000 | [diff] [blame] | 523 | extern int internal_wait P((struct tcb *, int)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 524 | extern int internal_exit P((struct tcb *)); |
| 525 | |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 526 | extern const struct ioctlent *ioctl_lookup P((long)); |
| 527 | extern const struct ioctlent *ioctl_next_match P((const struct ioctlent *)); |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 528 | extern int ioctl_decode P((struct tcb *, long, long)); |
| 529 | extern int term_ioctl P((struct tcb *, long, long)); |
| 530 | extern int sock_ioctl P((struct tcb *, long, long)); |
| 531 | extern int proc_ioctl P((struct tcb *, int, int)); |
| 532 | extern int stream_ioctl P((struct tcb *, int, int)); |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 533 | #ifdef LINUX |
| 534 | extern int rtc_ioctl P((struct tcb *, long, long)); |
Dmitry V. Levin | b011af5 | 2007-06-30 11:37:09 +0000 | [diff] [blame] | 535 | extern int scsi_ioctl P((struct tcb *, long, long)); |
Roland McGrath | d83c50b | 2004-10-06 22:27:43 +0000 | [diff] [blame] | 536 | #endif |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 537 | |
| 538 | extern void tv_tv P((struct timeval *, int, int)); |
| 539 | extern int tv_nz P((struct timeval *)); |
| 540 | extern int tv_cmp P((struct timeval *, struct timeval *)); |
| 541 | extern double tv_float P((struct timeval *)); |
| 542 | extern void tv_add P((struct timeval *, struct timeval *, struct timeval *)); |
| 543 | extern void tv_sub P((struct timeval *, struct timeval *, struct timeval *)); |
| 544 | extern void tv_mul P((struct timeval *, struct timeval *, int)); |
| 545 | extern void tv_div P((struct timeval *, struct timeval *, int)); |
| 546 | |
| 547 | #ifdef SUNOS4 |
| 548 | extern int fixvfork P((struct tcb *)); |
| 549 | #endif |
Roland McGrath | 6d1a65c | 2004-07-12 07:44:08 +0000 | [diff] [blame] | 550 | #if !(defined(LINUX) && !defined(SPARC) && !defined(SPARC64) && !defined(IA64)) |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 551 | extern long getrval2 P((struct tcb *)); |
| 552 | #endif |
Wichert Akkerman | bf79f2e | 2000-09-01 21:03:06 +0000 | [diff] [blame] | 553 | #ifdef USE_PROCFS |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 554 | extern int proc_open P((struct tcb *tcp, int attaching)); |
| 555 | #endif |
| 556 | |
| 557 | #define umove(pid, addr, objp) \ |
| 558 | umoven((pid), (addr), sizeof *(objp), (char *) (objp)) |
| 559 | |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 560 | #define printtv(tcp, addr) \ |
Roland McGrath | 6afc565 | 2007-07-24 01:57:11 +0000 | [diff] [blame] | 561 | printtv_bitness((tcp), (addr), BITNESS_CURRENT, 0) |
| 562 | #define printtv_special(tcp, addr) \ |
| 563 | printtv_bitness((tcp), (addr), BITNESS_CURRENT, 1) |
Dmitry V. Levin | a7945a3 | 2006-12-13 17:10:11 +0000 | [diff] [blame] | 564 | |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 565 | #ifdef __STDC__ |
| 566 | #ifdef __GNUC__ |
| 567 | extern void tprintf(const char *fmt, ...) |
| 568 | __attribute__ ((format (printf, 1, 2))); |
| 569 | #else |
| 570 | extern void tprintf(const char *fmt, ...); |
| 571 | #endif |
| 572 | #else |
| 573 | extern void tprintf(); |
| 574 | #endif |
| 575 | |
| 576 | #ifndef HAVE_STRERROR |
| 577 | const char *strerror P((int)); |
| 578 | #endif |
| 579 | #ifndef HAVE_STRSIGNAL |
| 580 | const char *strsignal P((int)); |
| 581 | #endif |
| 582 | |
| 583 | extern int current_personality; |
Dmitry V. Levin | 4ebb4e3 | 2006-12-13 17:08:08 +0000 | [diff] [blame] | 584 | extern const int personality_wordsize[]; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 585 | |
| 586 | struct sysent { |
| 587 | int nargs; |
| 588 | int sys_flags; |
| 589 | int (*sys_func)(); |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 590 | const char *sys_name; |
Roland McGrath | 76989d7 | 2005-06-07 23:21:31 +0000 | [diff] [blame] | 591 | long native_scno; /* Match against SYS_* constants. */ |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 592 | }; |
| 593 | |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 594 | extern const struct sysent *sysent; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 595 | extern int nsyscalls; |
| 596 | |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 597 | extern const char *const *errnoent; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 598 | extern int nerrnos; |
| 599 | |
| 600 | struct ioctlent { |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 601 | const char *doth; |
| 602 | const char *symbol; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 603 | unsigned long code; |
| 604 | }; |
| 605 | |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 606 | extern const struct ioctlent *ioctlent; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 607 | extern int nioctlents; |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 608 | |
| 609 | extern const char *const *signalent; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 610 | extern int nsignals; |
| 611 | |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 612 | extern const struct ioctlent ioctlent0[]; |
| 613 | extern const int nioctlents0; |
| 614 | extern const char *const signalent0[]; |
| 615 | extern const int nsignals0; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 616 | |
| 617 | #if SUPPORTED_PERSONALITIES >= 2 |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 618 | extern const struct ioctlent ioctlent1[]; |
Michal Ludvig | 51d1ebc | 2004-09-07 14:06:03 +0000 | [diff] [blame] | 619 | extern const int nioctlents1; |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 620 | extern const char *const signalent1[]; |
| 621 | extern const int nsignals1; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 622 | #endif /* SUPPORTED_PERSONALITIES >= 2 */ |
| 623 | |
| 624 | #if SUPPORTED_PERSONALITIES >= 3 |
Roland McGrath | ee36ce1 | 2004-09-04 03:53:10 +0000 | [diff] [blame] | 625 | extern const struct ioctlent ioctlent2[]; |
| 626 | extern const int nioctlents2; |
| 627 | extern const char *const signalent2[]; |
Michal Ludvig | 51d1ebc | 2004-09-07 14:06:03 +0000 | [diff] [blame] | 628 | extern const int nsignals2; |
Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 629 | #endif /* SUPPORTED_PERSONALITIES >= 3 */ |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 630 | |
Roland McGrath | e6d3a29 | 2003-01-14 09:46:18 +0000 | [diff] [blame] | 631 | #if defined(FREEBSD) || (defined(LINUX) \ |
Roland McGrath | c0f8bbd | 2003-08-21 09:58:00 +0000 | [diff] [blame] | 632 | && defined(POWERPC) && !defined(__powerpc64__)) \ |
Roland McGrath | 542c2c6 | 2008-05-20 01:11:56 +0000 | [diff] [blame] | 633 | || defined (LINUX_MIPSO32) |
John Hughes | 5a826b8 | 2001-03-07 13:21:24 +0000 | [diff] [blame] | 634 | /* ARRGH! off_t args are aligned on 64 bit boundaries! */ |
| 635 | #define ALIGN64(tcp,arg) \ |
| 636 | do { \ |
| 637 | if (arg % 2) \ |
| 638 | memmove (&tcp->u_arg[arg], &tcp->u_arg[arg + 1], \ |
| 639 | (tcp->u_nargs - arg - 1) * sizeof tcp->u_arg[0]); \ |
| 640 | } while (0) |
| 641 | #else |
| 642 | #define ALIGN64(tcp,arg) do { } while (0) |
| 643 | #endif |
| 644 | |
John Hughes | 0c79e01 | 2001-03-08 14:40:06 +0000 | [diff] [blame] | 645 | #if HAVE_LONG_LONG |
John Hughes | 5a826b8 | 2001-03-07 13:21:24 +0000 | [diff] [blame] | 646 | |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 647 | /* _l refers to the lower numbered u_arg, |
| 648 | * _h refers to the higher numbered u_arg |
| 649 | */ |
John Hughes | 5a826b8 | 2001-03-07 13:21:24 +0000 | [diff] [blame] | 650 | |
John Hughes | b8a85a4 | 2001-03-28 08:05:27 +0000 | [diff] [blame] | 651 | #if HAVE_LITTLE_ENDIAN_LONG_LONG |
John Hughes | 0c79e01 | 2001-03-08 14:40:06 +0000 | [diff] [blame] | 652 | #define LONG_LONG(_l,_h) \ |
Wichert Akkerman | 7ab47b6 | 2002-03-31 19:00:02 +0000 | [diff] [blame] | 653 | ((long long)((unsigned long long)(unsigned)(_l) | ((unsigned long long)(_h)<<32))) |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 654 | #else |
John Hughes | 0c79e01 | 2001-03-08 14:40:06 +0000 | [diff] [blame] | 655 | #define LONG_LONG(_l,_h) \ |
Wichert Akkerman | 7ab47b6 | 2002-03-31 19:00:02 +0000 | [diff] [blame] | 656 | ((long long)((unsigned long long)(unsigned)(_h) | ((unsigned long long)(_l)<<32))) |
John Hughes | bdf48f5 | 2001-03-06 15:08:09 +0000 | [diff] [blame] | 657 | #endif |
| 658 | #endif |
Wichert Akkerman | 7b3346b | 2001-10-09 23:47:38 +0000 | [diff] [blame] | 659 | |
| 660 | #ifdef IA64 |
| 661 | extern long ia32; |
| 662 | #endif |
Michal Ludvig | 17f8fb3 | 2002-11-06 13:17:21 +0000 | [diff] [blame] | 663 | |
| 664 | extern int not_failing_only; |