]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/truss/sparc64-freebsd.c
Add two missing eventhandler.h headers
[FreeBSD/FreeBSD.git] / usr.bin / truss / sparc64-freebsd.c
1 /*-
2  * SPDX-License-Identifier: BSD-4-Clause
3  *
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  * 3. All advertising materials mentioning features or use of this software
15  *    must display the following acknowledgement:
16  *      This product includes software developed by Sean Eric Fagan
17  * 4. Neither the name of the author may be used to endorse or promote
18  *    products derived from this software without specific prior written
19  *    permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 /* FreeBSD/sparc64-specific system call handling. */
38
39 #include <sys/ptrace.h>
40 #include <sys/syscall.h>
41
42 #include <machine/frame.h>
43 #include <machine/reg.h>
44 #include <machine/tstate.h>
45
46 #include <stdbool.h>
47 #include <stddef.h>
48 #include <stdio.h>
49 #include <sysdecode.h>
50
51 #include "truss.h"
52
53 static int
54 sparc64_fetch_args(struct trussinfo *trussinfo, u_int narg)
55 {
56         struct ptrace_io_desc iorequest;
57         struct reg regs;
58         struct current_syscall *cs;
59         lwpid_t tid;
60         u_int i, reg;
61
62         tid = trussinfo->curthread->tid;
63         cs = &trussinfo->curthread->cs;
64         if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
65                 fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
66                 return (-1);
67         }
68
69         /*
70          * FreeBSD has two special kinds of system call redirections --
71          * SYS_syscall, and SYS___syscall.  The former is the old syscall()
72          * routine, basically; the latter is for quad-aligned arguments.
73          *
74          * The system call argument count and code from ptrace() already
75          * account for these, but we need to skip over the first argument.
76          */
77         reg = 0;
78         switch (regs.r_global[1]) {
79         case SYS_syscall:
80         case SYS___syscall:
81                 reg = 1;
82                 break;
83         }
84
85         for (i = 0; i < narg && reg < 6; i++, reg++)
86                 cs->args[i] = regs.r_out[reg];
87         if (narg > i) {
88                 iorequest.piod_op = PIOD_READ_D;
89                 iorequest.piod_offs = (void *)(regs.r_out[6] + SPOFF +
90                     offsetof(struct frame, fr_pad[6]));
91                 iorequest.piod_addr = &cs->args[i];
92                 iorequest.piod_len = (narg - i) * sizeof(cs->args[0]);
93                 ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
94                 if (iorequest.piod_len == 0)
95                         return (-1);
96         }
97
98         return (0);
99 }
100
101 static int
102 sparc64_fetch_retval(struct trussinfo *trussinfo, long *retval, int *errorp)
103 {
104         struct reg regs;
105         lwpid_t tid;
106
107         tid = trussinfo->curthread->tid;
108         if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
109                 fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
110                 return (-1);
111         }
112
113         retval[0] = regs.r_out[0];
114         retval[1] = regs.r_out[1];
115         *errorp = !!(regs.r_tstate & TSTATE_XCC_C);
116         return (0);
117 }
118
119 static struct procabi sparc64_freebsd = {
120         "FreeBSD ELF64",
121         SYSDECODE_ABI_FREEBSD,
122         sparc64_fetch_args,
123         sparc64_fetch_retval,
124         STAILQ_HEAD_INITIALIZER(sparc64_freebsd.extra_syscalls),
125         { NULL }
126 };
127
128 PROCABI(sparc64_freebsd);