]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/truss/mips-freebsd.c
Copy libevent sources to contrib
[FreeBSD/FreeBSD.git] / usr.bin / truss / mips-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/mips-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
45 #include <stdbool.h>
46 #include <stdio.h>
47 #include <sysdecode.h>
48
49 #include "truss.h"
50
51 static int
52 mips_fetch_args(struct trussinfo *trussinfo, u_int narg)
53 {
54         struct ptrace_io_desc iorequest;
55         struct reg regs;
56         struct current_syscall *cs;
57         lwpid_t tid;
58         u_int i, reg;
59
60         tid = trussinfo->curthread->tid;
61         cs = &trussinfo->curthread->cs;
62         if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
63                 fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
64                 return (-1);
65         }
66
67         /*
68          * FreeBSD has two special kinds of system call redirections --
69          * SYS_syscall, and SYS___syscall.  The former is the old syscall()
70          * routine, basically; the latter is for quad-aligned arguments.
71          *
72          * The system call argument count and code from ptrace() already
73          * account for these, but we need to skip over the first argument.
74          */
75         reg = A0;
76         switch (regs.r_regs[V0]) {
77         case SYS_syscall:
78                 reg = A1;
79                 break;
80         case SYS___syscall:
81 #if defined(__mips_n32) || defined(__mips_n64)
82                 reg = A1;
83 #else
84                 reg = A2;
85 #endif
86                 break;
87         }
88
89 #if defined(__mips_n32) || defined(__mips_n64)
90 #define MAXREG          A7
91 #else
92 #define MAXREG          A3
93 #endif
94
95         for (i = 0; i < narg && reg <= MAXREG; i++, reg++)
96                 cs->args[i] = regs.r_regs[reg];
97         if (narg > i) {
98                 iorequest.piod_op = PIOD_READ_D;
99                 iorequest.piod_offs = (void *)((uintptr_t)regs.r_regs[SP] +
100                     4 * sizeof(cs->args[0]));
101                 iorequest.piod_addr = &cs->args[i];
102                 iorequest.piod_len = (narg - i) * sizeof(cs->args[0]);
103                 ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
104                 if (iorequest.piod_len == 0)
105                         return (-1);
106         }
107
108         return (0);
109 }
110
111 static int
112 mips_fetch_retval(struct trussinfo *trussinfo, long *retval, int *errorp)
113 {
114         struct reg regs;
115         lwpid_t tid;
116
117         tid = trussinfo->curthread->tid;
118         if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
119                 fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
120                 return (-1);
121         }
122
123         /* XXX: Does not have special handling for __syscall(). */
124         retval[0] = regs.r_regs[V0];
125         retval[1] = regs.r_regs[V1];
126         *errorp = !!regs.r_regs[A3];
127         return (0);
128 }
129
130
131 static struct procabi mips_freebsd = {
132 #ifdef __mips_n64
133         "FreeBSD ELF64",
134 #else
135         "FreeBSD ELF32",
136 #endif
137         SYSDECODE_ABI_FREEBSD,
138         mips_fetch_args,
139         mips_fetch_retval,
140         STAILQ_HEAD_INITIALIZER(mips_freebsd.extra_syscalls),
141         { NULL }
142 };
143
144 PROCABI(mips_freebsd);