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