ia64-fbsd.c revision 171055
1/*
2 * Copryight 1997 Sean Eric Fagan
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 *    notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 *    notice, this list of conditions and the following disclaimer in the
11 *    documentation and/or other materials provided with the distribution.
12 * 3. All advertising materials mentioning features or use of this software
13 *    must display the following acknowledgement:
14 *	This product includes software developed by Sean Eric Fagan
15 * 4. Neither the name of the author may be used to endorse or promote
16 *    products derived from this software without specific prior written
17 *    permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#ifndef lint
33static const char rcsid[] =
34  "$FreeBSD: head/usr.bin/truss/ia64-fbsd.c 171055 2007-06-26 22:42:37Z delphij $";
35#endif /* not lint */
36
37/*
38 * FreeBSD/ia64-specific system call handling.  This is probably the most
39 * complex part of the entire truss program, although I've got lots of
40 * it handled relatively cleanly now.  The system call names are generated
41 * automatically, thanks to /usr/src/sys/kern/syscalls.master.  The
42 * names used for the various structures are confusing, I sadly admit.
43 */
44
45#include <sys/types.h>
46#include <sys/ptrace.h>
47#include <sys/syscall.h>
48
49#include <machine/reg.h>
50
51#include <errno.h>
52#include <fcntl.h>
53#include <signal.h>
54#include <stdio.h>
55#include <stdlib.h>
56#include <string.h>
57#include <time.h>
58#include <unistd.h>
59
60#include "truss.h"
61#include "syscall.h"
62#include "extern.h"
63
64static int cpid = -1;
65
66#include "syscalls.h"
67
68static int nsyscalls = sizeof(syscallnames) / sizeof(syscallnames[0]);
69
70/*
71 * This is what this particular file uses to keep track of a system call.
72 * It is probably not quite sufficient -- I can probably use the same
73 * structure for the various syscall personalities, and I also probably
74 * need to nest system calls (for signal handlers).
75 *
76 * 'struct syscall' describes the system call; it may be NULL, however,
77 * if we don't know about this particular system call yet.
78 */
79static struct freebsd_syscall {
80	struct syscall *sc;
81	const char *name;
82	int number;
83	unsigned long *args;
84	int nargs;	/* number of arguments -- *not* number of words! */
85	char **s_args;	/* the printable arguments */
86} fsc;
87
88/* Clear up and free parts of the fsc structure. */
89static __inline void
90clear_fsc(void) {
91  if (fsc.args) {
92    free(fsc.args);
93  }
94  if (fsc.s_args) {
95    int i;
96    for (i = 0; i < fsc.nargs; i++)
97      if (fsc.s_args[i])
98	free(fsc.s_args[i]);
99    free(fsc.s_args);
100  }
101  memset(&fsc, 0, sizeof(fsc));
102}
103
104/*
105 * Called when a process has entered a system call.  nargs is the
106 * number of words, not number of arguments (a necessary distinction
107 * in some cases).  Note that if the STOPEVENT() code in ia64/ia64/trap.c
108 * is ever changed these functions need to keep up.
109 */
110
111void
112ia64_syscall_entry(struct trussinfo *trussinfo, int nargs) {
113  struct reg regs;
114  int syscall_num;
115  int i;
116  unsigned long *parm_offset;
117  struct syscall *sc;
118
119  cpid = trussinfo->curthread->tid;
120
121  clear_fsc();
122  if (ptrace(PT_GETREGS, cpid, (caddr_t)&regs, 0) < 0) {
123    fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
124    return;
125  }
126  parm_offset = &regs.r_scratch.gr16;
127
128  /*
129   * FreeBSD has two special kinds of system call redirctions --
130   * SYS_syscall, and SYS___syscall.  The former is the old syscall()
131   * routine, basicly; the latter is for quad-aligned arguments.
132   */
133  syscall_num = regs.r_scratch.gr15;		/* XXX double-check. */
134  if (syscall_num == SYS_syscall || syscall_num == SYS___syscall)
135    syscall_num = (int)*parm_offset++;
136
137  fsc.number = syscall_num;
138  fsc.name = (syscall_num < 0 || syscall_num > nsyscalls)
139      ? NULL : syscallnames[syscall_num];
140  if (!fsc.name) {
141    fprintf(trussinfo->outfile, "-- UNKNOWN SYSCALL %d --\n", syscall_num);
142  }
143
144  if (fsc.name && (trussinfo->flags & FOLLOWFORKS)
145   && ((!strcmp(fsc.name, "fork")
146    || !strcmp(fsc.name, "rfork")
147    || !strcmp(fsc.name, "vfork"))))
148  {
149    trussinfo->curthread->in_fork = 1;
150  }
151
152  if (nargs == 0)
153    return;
154
155  fsc.args = malloc((1+nargs) * sizeof(unsigned long));
156  memcpy(fsc.args, parm_offset, nargs * sizeof(long));
157
158  sc = get_syscall(fsc.name);
159  if (sc) {
160    fsc.nargs = sc->nargs;
161  } else {
162#if DEBUG
163    fprintf(trussinfo->outfile, "unknown syscall %s -- setting args to %d\n",
164	   fsc.name, nargs);
165#endif
166    fsc.nargs = nargs;
167  }
168
169  fsc.s_args = malloc((1+fsc.nargs) * sizeof(char*));
170  memset(fsc.s_args, 0, fsc.nargs * sizeof(char*));
171  fsc.sc = sc;
172
173  /*
174   * At this point, we set up the system call arguments.
175   * We ignore any OUT ones, however -- those are arguments that
176   * are set by the system call, and so are probably meaningless
177   * now.  This doesn't currently support arguments that are
178   * passed in *and* out, however.
179   */
180
181  if (fsc.name) {
182
183#if DEBUG
184    fprintf(stderr, "syscall %s(", fsc.name);
185#endif
186    for (i = 0; i < fsc.nargs; i++) {
187#if DEBUG
188      fprintf(stderr, "0x%x%s",
189	      sc
190	      ? fsc.args[sc->args[i].offset]
191	      : fsc.args[i],
192	      i < (fsc.nargs - 1) ? "," : "");
193#endif
194      if (sc && !(sc->args[i].type & OUT)) {
195	fsc.s_args[i] = print_arg(&sc->args[i], fsc.args, 0, trussinfo);
196      }
197    }
198#if DEBUG
199    fprintf(stderr, ")\n");
200#endif
201  }
202
203#if DEBUG
204  fprintf(trussinfo->outfile, "\n");
205#endif
206
207  if (fsc.name != NULL &&
208      (!strcmp(fsc.name, "execve") || !strcmp(fsc.name, "exit"))) {
209
210    /* XXX
211     * This could be done in a more general
212     * manner but it still wouldn't be very pretty.
213     */
214    if (!strcmp(fsc.name, "execve")) {
215        if ((trussinfo->flags & EXECVEARGS) == 0)
216          if (fsc.s_args[1]) {
217            free(fsc.s_args[1]);
218            fsc.s_args[1] = NULL;
219          }
220        if ((trussinfo->flags & EXECVEENVS) == 0)
221          if (fsc.s_args[2]) {
222            free(fsc.s_args[2]);
223            fsc.s_args[2] = NULL;
224          }
225    }
226  }
227
228  return;
229}
230
231/*
232 * And when the system call is done, we handle it here.
233 * Currently, no attempt is made to ensure that the system calls
234 * match -- this needs to be fixed (and is, in fact, why S_SCX includes
235 * the sytem call number instead of, say, an error status).
236 */
237
238long
239ia64_syscall_exit(struct trussinfo *trussinfo, int syscall_num __unused)
240{
241  struct reg regs;
242  long retval;
243  int i;
244  int errorp;
245  struct syscall *sc;
246
247  if (fsc.name == NULL)
248	return (-1);
249  cpid = trussinfo->curthread->tid;
250
251  if (ptrace(PT_GETREGS, cpid, (caddr_t)&regs, 0) < 0) {
252    fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
253    return (-1);
254  }
255  retval = regs.r_scratch.gr8;
256  errorp = (regs.r_scratch.gr10 != 0) ? 1 : 0;
257
258  /*
259   * This code, while simpler than the initial versions I used, could
260   * stand some significant cleaning.
261   */
262
263  sc = fsc.sc;
264  if (!sc) {
265    for (i = 0; i < fsc.nargs; i++)
266      asprintf(&fsc.s_args[i], "0x%lx", fsc.args[i]);
267  } else {
268    /*
269     * Here, we only look for arguments that have OUT masked in --
270     * otherwise, they were handled in the syscall_entry function.
271     */
272    for (i = 0; i < sc->nargs; i++) {
273      char *temp;
274      if (sc->args[i].type & OUT) {
275	/*
276	 * If an error occurred, than don't bothe getting the data;
277	 * it may not be valid.
278	 */
279	if (errorp)
280	  asprintf(&temp, "0x%lx", fsc.args[sc->args[i].offset]);
281	else
282	  temp = print_arg(&sc->args[i], fsc.args, retval, trussinfo);
283	fsc.s_args[i] = temp;
284      }
285    }
286  }
287
288  if (fsc.name != NULL &&
289      (!strcmp(fsc.name, "execve") || !strcmp(fsc.name, "exit"))) {
290	trussinfo->curthread->in_syscall = 1;
291  }
292  /*
293   * It would probably be a good idea to merge the error handling,
294   * but that complicates things considerably.
295   */
296
297  print_syscall_ret(trussinfo, fsc.name, fsc.nargs, fsc.s_args, errorp, retval);
298  clear_fsc();
299
300  return (retval);
301}
302