]>
Commit | Line | Data |
---|---|---|
88dae46d SB |
1 | /* |
2 | * System call tracing and debugging | |
3 | * | |
4 | * | |
5 | * This program is free software; you can redistribute it and/or modify | |
6 | * it under the terms of the GNU General Public License as published by | |
7 | * the Free Software Foundation; either version 2 of the License, or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program; if not, see <http://www.gnu.org/licenses/>. | |
17 | */ | |
18 | ||
2231197c | 19 | #include "qemu/osdep.h" |
84778508 | 20 | #include <sys/select.h> |
84778508 | 21 | #include <sys/syscall.h> |
88dae46d | 22 | #include <sys/ioccom.h> |
84778508 | 23 | |
88dae46d | 24 | #include "qemu.h" |
84778508 | 25 | |
88dae46d | 26 | int do_strace; |
84778508 BS |
27 | |
28 | /* | |
29 | * Utility functions | |
30 | */ | |
31 | ||
80b34604 SB |
32 | static void print_sysctl(const struct syscallname *name, abi_long arg1, |
33 | abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, | |
34 | abi_long arg6) | |
35 | { | |
36 | uint32_t i; | |
37 | int32_t *namep; | |
38 | ||
39 | gemu_log("%s({ ", name->name); | |
40 | namep = lock_user(VERIFY_READ, arg1, sizeof(int32_t) * arg2, 1); | |
41 | if (namep) { | |
42 | int32_t *p = namep; | |
43 | ||
44 | for (i = 0; i < (uint32_t)arg2; i++) { | |
45 | gemu_log("%d ", tswap32(*p++)); | |
46 | } | |
47 | unlock_user(namep, arg1, 0); | |
48 | } | |
49 | gemu_log("}, %u, 0x" TARGET_ABI_FMT_lx ", 0x" TARGET_ABI_FMT_lx ", 0x" | |
50 | TARGET_ABI_FMT_lx ", 0x" TARGET_ABI_FMT_lx ")", | |
51 | (uint32_t)arg2, arg3, arg4, arg5, arg6); | |
52 | } | |
53 | ||
88dae46d SB |
54 | static void print_execve(const struct syscallname *name, abi_long arg1, |
55 | abi_long arg2, abi_long arg3, abi_long arg4, abi_long arg5, | |
56 | abi_long arg6) | |
84778508 BS |
57 | { |
58 | abi_ulong arg_ptr_addr; | |
59 | char *s; | |
60 | ||
88dae46d SB |
61 | s = lock_user_string(arg1); |
62 | if (s == NULL) { | |
84778508 | 63 | return; |
88dae46d | 64 | } |
84778508 BS |
65 | gemu_log("%s(\"%s\",{", name->name, s); |
66 | unlock_user(s, arg1, 0); | |
67 | ||
68 | for (arg_ptr_addr = arg2; ; arg_ptr_addr += sizeof(abi_ulong)) { | |
18c9a9c3 | 69 | abi_ulong *arg_ptr, arg_addr; |
84778508 BS |
70 | |
71 | arg_ptr = lock_user(VERIFY_READ, arg_ptr_addr, sizeof(abi_ulong), 1); | |
88dae46d | 72 | if (!arg_ptr) { |
84778508 | 73 | return; |
88dae46d | 74 | } |
84778508 BS |
75 | arg_addr = tswapl(*arg_ptr); |
76 | unlock_user(arg_ptr, arg_ptr_addr, 0); | |
88dae46d | 77 | if (!arg_addr) { |
84778508 | 78 | break; |
88dae46d | 79 | } |
84778508 BS |
80 | if ((s = lock_user_string(arg_addr))) { |
81 | gemu_log("\"%s\",", s); | |
18c9a9c3 | 82 | unlock_user(s, arg_addr, 0); |
84778508 BS |
83 | } |
84 | } | |
84778508 BS |
85 | gemu_log("NULL})"); |
86 | } | |
87 | ||
b85159a3 SB |
88 | static void print_ioctl(const struct syscallname *name, |
89 | abi_long arg1, abi_long arg2, abi_long arg3, abi_long arg4, | |
90 | abi_long arg5, abi_long arg6) | |
91 | { | |
92 | /* Decode the ioctl request */ | |
93 | gemu_log("%s(%d, 0x%0lx { IO%s%s GRP:0x%x('%c') CMD:%d LEN:%d }, 0x" | |
94 | TARGET_ABI_FMT_lx ", ...)", | |
95 | name->name, | |
96 | (int)arg1, | |
97 | (unsigned long)arg2, | |
98 | arg2 & IOC_OUT ? "R" : "", | |
99 | arg2 & IOC_IN ? "W" : "", | |
100 | (unsigned)IOCGROUP(arg2), | |
101 | isprint(IOCGROUP(arg2)) ? (char)IOCGROUP(arg2) : '?', | |
102 | (int)arg2 & 0xFF, | |
103 | (int)IOCPARM_LEN(arg2), | |
104 | arg3); | |
105 | } | |
106 | ||
84778508 BS |
107 | /* |
108 | * Variants for the return value output function | |
109 | */ | |
110 | ||
88dae46d | 111 | static void print_syscall_ret_addr(const struct syscallname *name, abi_long ret) |
84778508 | 112 | { |
88dae46d | 113 | if (ret == -1) { |
84778508 BS |
114 | gemu_log(" = -1 errno=%d (%s)\n", errno, strerror(errno)); |
115 | } else { | |
116 | gemu_log(" = 0x" TARGET_ABI_FMT_lx "\n", ret); | |
117 | } | |
118 | } | |
119 | ||
120 | #if 0 /* currently unused */ | |
121 | static void | |
122 | print_syscall_ret_raw(struct syscallname *name, abi_long ret) | |
123 | { | |
124 | gemu_log(" = 0x" TARGET_ABI_FMT_lx "\n", ret); | |
125 | } | |
126 | #endif | |
127 | ||
128 | /* | |
129 | * An array of all of the syscalls we know about | |
130 | */ | |
131 | ||
132 | static const struct syscallname freebsd_scnames[] = { | |
133 | #include "freebsd/strace.list" | |
134 | }; | |
135 | static const struct syscallname netbsd_scnames[] = { | |
136 | #include "netbsd/strace.list" | |
137 | }; | |
138 | static const struct syscallname openbsd_scnames[] = { | |
139 | #include "openbsd/strace.list" | |
140 | }; | |
141 | ||
88dae46d SB |
142 | static void print_syscall(int num, const struct syscallname *scnames, |
143 | unsigned int nscnames, abi_long arg1, abi_long arg2, abi_long arg3, | |
144 | abi_long arg4, abi_long arg5, abi_long arg6) | |
84778508 BS |
145 | { |
146 | unsigned int i; | |
147 | const char *format="%s(" TARGET_ABI_FMT_ld "," TARGET_ABI_FMT_ld "," | |
148 | TARGET_ABI_FMT_ld "," TARGET_ABI_FMT_ld "," TARGET_ABI_FMT_ld "," | |
149 | TARGET_ABI_FMT_ld ")"; | |
150 | ||
151 | gemu_log("%d ", getpid() ); | |
152 | ||
88dae46d | 153 | for (i = 0; i < nscnames; i++) { |
84778508 BS |
154 | if (scnames[i].nr == num) { |
155 | if (scnames[i].call != NULL) { | |
156 | scnames[i].call(&scnames[i], arg1, arg2, arg3, arg4, arg5, | |
88dae46d | 157 | arg6); |
84778508 BS |
158 | } else { |
159 | /* XXX: this format system is broken because it uses | |
160 | host types and host pointers for strings */ | |
88dae46d | 161 | if (scnames[i].format != NULL) { |
84778508 | 162 | format = scnames[i].format; |
88dae46d SB |
163 | } |
164 | gemu_log(format, scnames[i].name, arg1, arg2, arg3, arg4, arg5, | |
165 | arg6); | |
84778508 BS |
166 | } |
167 | return; | |
168 | } | |
88dae46d | 169 | } |
84778508 BS |
170 | gemu_log("Unknown syscall %d\n", num); |
171 | } | |
172 | ||
88dae46d SB |
173 | static void print_syscall_ret(int num, abi_long ret, |
174 | const struct syscallname *scnames, unsigned int nscnames) | |
84778508 BS |
175 | { |
176 | unsigned int i; | |
177 | ||
88dae46d | 178 | for (i = 0; i < nscnames; i++) { |
84778508 BS |
179 | if (scnames[i].nr == num) { |
180 | if (scnames[i].result != NULL) { | |
181 | scnames[i].result(&scnames[i], ret); | |
182 | } else { | |
88dae46d | 183 | if (ret < 0) { |
84778508 BS |
184 | gemu_log(" = -1 errno=" TARGET_ABI_FMT_ld " (%s)\n", -ret, |
185 | strerror(-ret)); | |
186 | } else { | |
187 | gemu_log(" = " TARGET_ABI_FMT_ld "\n", ret); | |
188 | } | |
189 | } | |
190 | break; | |
191 | } | |
88dae46d | 192 | } |
84778508 BS |
193 | } |
194 | ||
195 | /* | |
196 | * The public interface to this module. | |
197 | */ | |
88dae46d SB |
198 | void print_freebsd_syscall(int num, abi_long arg1, abi_long arg2, abi_long arg3, |
199 | abi_long arg4, abi_long arg5, abi_long arg6) | |
84778508 | 200 | { |
88dae46d SB |
201 | |
202 | print_syscall(num, freebsd_scnames, ARRAY_SIZE(freebsd_scnames), arg1, arg2, | |
203 | arg3, arg4, arg5, arg6); | |
84778508 BS |
204 | } |
205 | ||
88dae46d | 206 | void print_freebsd_syscall_ret(int num, abi_long ret) |
84778508 | 207 | { |
88dae46d | 208 | |
84778508 BS |
209 | print_syscall_ret(num, ret, freebsd_scnames, ARRAY_SIZE(freebsd_scnames)); |
210 | } | |
211 | ||
88dae46d SB |
212 | void print_netbsd_syscall(int num, abi_long arg1, abi_long arg2, abi_long arg3, |
213 | abi_long arg4, abi_long arg5, abi_long arg6) | |
84778508 | 214 | { |
88dae46d | 215 | |
84778508 BS |
216 | print_syscall(num, netbsd_scnames, ARRAY_SIZE(netbsd_scnames), |
217 | arg1, arg2, arg3, arg4, arg5, arg6); | |
218 | } | |
219 | ||
88dae46d | 220 | void print_netbsd_syscall_ret(int num, abi_long ret) |
84778508 | 221 | { |
88dae46d | 222 | |
84778508 BS |
223 | print_syscall_ret(num, ret, netbsd_scnames, ARRAY_SIZE(netbsd_scnames)); |
224 | } | |
225 | ||
88dae46d SB |
226 | void print_openbsd_syscall(int num, abi_long arg1, abi_long arg2, abi_long arg3, |
227 | abi_long arg4, abi_long arg5, abi_long arg6) | |
84778508 | 228 | { |
88dae46d SB |
229 | |
230 | print_syscall(num, openbsd_scnames, ARRAY_SIZE(openbsd_scnames), arg1, arg2, | |
231 | arg3, arg4, arg5, arg6); | |
84778508 BS |
232 | } |
233 | ||
88dae46d | 234 | void print_openbsd_syscall_ret(int num, abi_long ret) |
84778508 | 235 | { |
88dae46d | 236 | |
84778508 BS |
237 | print_syscall_ret(num, ret, openbsd_scnames, ARRAY_SIZE(openbsd_scnames)); |
238 | } |