]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/truss/amd64-freebsd32.c
Remove spurious newline
[FreeBSD/FreeBSD.git] / usr.bin / truss / amd64-freebsd32.c
1 /*-
2  * SPDX-License-Identifier: BSD-4-Clause
3  *
4  * Copyright 1997 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/amd64-freebsd32-specific system call handling. */
38
39 #include <sys/ptrace.h>
40 #include <sys/syscall.h>
41
42 #include <machine/reg.h>
43 #include <machine/psl.h>
44
45 #include <stdbool.h>
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <sysdecode.h>
49
50 #include "truss.h"
51
52 static int
53 amd64_freebsd32_fetch_args(struct trussinfo *trussinfo, u_int narg)
54 {
55         struct ptrace_io_desc iorequest;
56         struct reg regs;
57         struct current_syscall *cs;
58         unsigned int args32[narg];
59         unsigned long parm_offset;
60         lwpid_t tid;
61         u_int i;
62
63         tid = trussinfo->curthread->tid;
64         cs = &trussinfo->curthread->cs;
65         if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
66                 fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
67                 return (-1);
68         }
69         parm_offset = regs.r_rsp + sizeof(int);
70
71         /*
72          * FreeBSD has two special kinds of system call redirections --
73          * SYS_syscall, and SYS___syscall.  The former is the old syscall()
74          * routine, basically; the latter is for quad-aligned arguments.
75          *
76          * The system call argument count and code from ptrace() already
77          * account for these, but we need to skip over the first argument.
78          */
79         switch (regs.r_rax) {
80         case SYS_syscall:
81                 parm_offset += sizeof(int);
82                 break;
83         case SYS___syscall:
84                 parm_offset += sizeof(quad_t);
85                 break;
86         }
87
88         iorequest.piod_op = PIOD_READ_D;
89         iorequest.piod_offs = (void *)parm_offset;
90         iorequest.piod_addr = args32;
91         iorequest.piod_len = sizeof(args32);
92         ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
93         if (iorequest.piod_len == 0) {
94                 return (-1);
95         }
96
97         for (i = 0; i < narg; i++)
98                  cs->args[i] = args32[i];
99         return (0);
100 }
101
102 static int
103 amd64_freebsd32_fetch_retval(struct trussinfo *trussinfo, long *retval,
104     int *errorp)
105 {
106         struct reg regs;
107         lwpid_t tid;
108
109         tid = trussinfo->curthread->tid;
110         if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
111                 fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
112                 return (-1);
113         }
114
115         retval[0] = regs.r_rax & 0xffffffff;
116         retval[1] = regs.r_rdx & 0xffffffff;
117         *errorp = !!(regs.r_rflags & PSL_C);
118         return (0);
119 }
120
121 static struct procabi amd64_freebsd32 = {
122         "FreeBSD ELF32",
123         SYSDECODE_ABI_FREEBSD32,
124         amd64_freebsd32_fetch_args,
125         amd64_freebsd32_fetch_retval,
126         STAILQ_HEAD_INITIALIZER(amd64_freebsd32.extra_syscalls),
127         { NULL }
128 };
129
130 PROCABI(amd64_freebsd32);
131
132 static struct procabi amd64_freebsd32_aout = {
133         "FreeBSD a.out",
134         SYSDECODE_ABI_FREEBSD32,
135         amd64_freebsd32_fetch_args,
136         amd64_freebsd32_fetch_retval,
137         STAILQ_HEAD_INITIALIZER(amd64_freebsd32.extra_syscalls),
138         { NULL }
139 };
140
141 PROCABI(amd64_freebsd32_aout);