]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/truss/amd64-linux.c
MFV r306669:
[FreeBSD/FreeBSD.git] / usr.bin / truss / amd64-linux.c
1 /*
2  * Copyright 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 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 /* Linux/x86_64-specific system call handling. */
36
37 #include <sys/ptrace.h>
38
39 #include <machine/reg.h>
40 #include <machine/psl.h>
41
42 #include <stdio.h>
43 #include <sysdecode.h>
44
45 #include "truss.h"
46
47 static int
48 amd64_linux_fetch_args(struct trussinfo *trussinfo, u_int narg)
49 {
50         struct reg regs;
51         struct current_syscall *cs;
52         lwpid_t tid;
53
54         tid = trussinfo->curthread->tid;
55         cs = &trussinfo->curthread->cs;
56         if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
57                 fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
58                 return (-1);
59         }
60
61         switch (narg) {
62         default:
63                 cs->args[5] = regs.r_r9;
64         case 5:
65                 cs->args[4] = regs.r_r8;
66         case 4:
67                 cs->args[3] = regs.r_rcx;
68         case 3:
69                 cs->args[2] = regs.r_rdx;
70         case 2:
71                 cs->args[1] = regs.r_rsi;
72         case 1:
73                 cs->args[0] = regs.r_rdi;
74         }
75
76         return (0);
77 }
78
79 static int
80 amd64_linux_fetch_retval(struct trussinfo *trussinfo, long *retval, int *errorp)
81 {
82         struct reg regs;
83         lwpid_t tid;
84
85         tid = trussinfo->curthread->tid;
86         if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
87                 fprintf(trussinfo->outfile, "-- CANNOT READ REGISTERS --\n");
88                 return (-1);
89         }
90
91         retval[0] = regs.r_rax;
92         retval[1] = regs.r_rdx;
93         *errorp = !!(regs.r_rflags & PSL_C);
94         return (0);
95 }
96
97 static struct procabi amd64_linux = {
98         "Linux ELF64",
99         SYSDECODE_ABI_LINUX,
100         amd64_linux_fetch_args,
101         amd64_linux_fetch_retval
102 };
103
104 PROCABI(amd64_linux);