7 #include <sys/select.h>
18 void (*call
)(const struct syscallname
*,
19 abi_long
, abi_long
, abi_long
,
20 abi_long
, abi_long
, abi_long
);
21 void (*result
)(const struct syscallname
*, abi_long
);
28 print_ipc_cmd(int cmd
)
30 #define output_cmd(val) \
38 /* General IPC commands */
39 output_cmd( IPC_RMID
);
40 output_cmd( IPC_SET
);
41 output_cmd( IPC_STAT
);
42 output_cmd( IPC_INFO
);
43 /* msgctl() commands */
45 output_cmd( MSG_STAT
);
46 output_cmd( MSG_INFO
);
48 /* shmctl() commands */
49 output_cmd( SHM_LOCK
);
50 output_cmd( SHM_UNLOCK
);
51 output_cmd( SHM_STAT
);
52 output_cmd( SHM_INFO
);
53 /* semctl() commands */
57 output_cmd( GETNCNT
);
58 output_cmd( GETZCNT
);
61 output_cmd( SEM_STAT
);
62 output_cmd( SEM_INFO
);
63 output_cmd( IPC_RMID
);
64 output_cmd( IPC_RMID
);
65 output_cmd( IPC_RMID
);
66 output_cmd( IPC_RMID
);
67 output_cmd( IPC_RMID
);
68 output_cmd( IPC_RMID
);
69 output_cmd( IPC_RMID
);
70 output_cmd( IPC_RMID
);
71 output_cmd( IPC_RMID
);
73 /* Some value we don't recognize */
77 #ifdef TARGET_NR__newselect
79 print_fdset(int n
, abi_ulong target_fds_addr
)
84 if( target_fds_addr
) {
87 target_fds
= lock_user(VERIFY_READ
,
89 sizeof(*target_fds
)*(n
/ TARGET_ABI_BITS
+ 1),
95 for (i
=n
; i
>=0; i
--) {
96 if ((tswapl(target_fds
[i
/ TARGET_ABI_BITS
]) >> (i
& (TARGET_ABI_BITS
- 1))) & 1)
99 unlock_user(target_fds
, target_fds_addr
, 0);
105 print_timeval(abi_ulong tv_addr
)
108 struct target_timeval
*tv
;
110 tv
= lock_user(VERIFY_READ
, tv_addr
, sizeof(*tv
), 1);
113 gemu_log("{" TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
"}",
114 tv
->tv_sec
, tv
->tv_usec
);
115 unlock_user(tv
, tv_addr
, 0);
122 * Sysycall specific output functions
126 #ifdef TARGET_NR__newselect
127 static long newselect_arg1
= 0;
128 static long newselect_arg2
= 0;
129 static long newselect_arg3
= 0;
130 static long newselect_arg4
= 0;
131 static long newselect_arg5
= 0;
134 print_newselect(const struct syscallname
*name
,
135 abi_long arg1
, abi_long arg2
, abi_long arg3
,
136 abi_long arg4
, abi_long arg5
, abi_long arg6
)
138 gemu_log("%s(" TARGET_ABI_FMT_ld
",", name
->name
, arg1
);
139 print_fdset(arg1
, arg2
);
141 print_fdset(arg1
, arg3
);
143 print_fdset(arg1
, arg4
);
148 /* save for use in the return output function below */
157 #ifdef TARGET_NR_semctl
159 print_semctl(const struct syscallname
*name
,
160 abi_long arg1
, abi_long arg2
, abi_long arg3
,
161 abi_long arg4
, abi_long arg5
, abi_long arg6
)
163 gemu_log("%s(" TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
",", name
->name
, arg1
, arg2
);
165 gemu_log(",0x" TARGET_ABI_FMT_lx
")", arg4
);
170 print_execve(const struct syscallname
*name
,
171 abi_long arg1
, abi_long arg2
, abi_long arg3
,
172 abi_long arg4
, abi_long arg5
, abi_long arg6
)
174 abi_ulong arg_ptr_addr
;
177 if (!(s
= lock_user_string(arg1
)))
179 gemu_log("%s(\"%s\",{", name
->name
, s
);
180 unlock_user(s
, arg1
, 0);
182 for (arg_ptr_addr
= arg2
; ; arg_ptr_addr
+= sizeof(abi_ulong
)) {
183 abi_ulong
*arg_ptr
, arg_addr
;
185 arg_ptr
= lock_user(VERIFY_READ
, arg_ptr_addr
, sizeof(abi_ulong
), 1);
188 arg_addr
= tswapl(*arg_ptr
);
189 unlock_user(arg_ptr
, arg_ptr_addr
, 0);
192 if ((s
= lock_user_string(arg_addr
))) {
193 gemu_log("\"%s\",", s
);
194 unlock_user(s
, arg_addr
, 0);
203 print_ipc(const struct syscallname
*name
,
204 abi_long arg1
, abi_long arg2
, abi_long arg3
,
205 abi_long arg4
, abi_long arg5
, abi_long arg6
)
209 gemu_log("semctl(" TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
",", arg1
, arg2
);
211 gemu_log(",0x" TARGET_ABI_FMT_lx
")", arg4
);
214 gemu_log("%s(" TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
")",
215 name
->name
, arg1
, arg2
, arg3
, arg4
);
221 * Variants for the return value output function
225 print_syscall_ret_addr(const struct syscallname
*name
, abi_long ret
)
228 gemu_log(" = -1 errno=%d (%s)\n", errno
, target_strerror(errno
));
230 gemu_log(" = 0x" TARGET_ABI_FMT_lx
"\n", ret
);
234 #if 0 /* currently unused */
236 print_syscall_ret_raw(struct syscallname
*name
, abi_long ret
)
238 gemu_log(" = 0x" TARGET_ABI_FMT_lx
"\n", ret
);
242 #ifdef TARGET_NR__newselect
244 print_syscall_ret_newselect(const struct syscallname
*name
, abi_long ret
)
246 gemu_log(" = 0x" TARGET_ABI_FMT_lx
" (", ret
);
247 print_fdset(newselect_arg1
,newselect_arg2
);
249 print_fdset(newselect_arg1
,newselect_arg3
);
251 print_fdset(newselect_arg1
,newselect_arg4
);
253 print_timeval(newselect_arg5
);
259 * An array of all of the syscalls we know about
262 static const struct syscallname scnames
[] = {
263 #include "strace.list"
266 static int nsyscalls
= ARRAY_SIZE(scnames
);
269 * The public interface to this module.
272 print_syscall(int num
,
273 abi_long arg1
, abi_long arg2
, abi_long arg3
,
274 abi_long arg4
, abi_long arg5
, abi_long arg6
)
277 const char *format
="%s(" TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
"," TARGET_ABI_FMT_ld
")";
279 gemu_log("%d ", getpid() );
281 for(i
=0;i
<nsyscalls
;i
++)
282 if( scnames
[i
].nr
== num
) {
283 if( scnames
[i
].call
!= NULL
) {
284 scnames
[i
].call(&scnames
[i
],arg1
,arg2
,arg3
,arg4
,arg5
,arg6
);
286 /* XXX: this format system is broken because it uses
287 host types and host pointers for strings */
288 if( scnames
[i
].format
!= NULL
)
289 format
= scnames
[i
].format
;
290 gemu_log(format
,scnames
[i
].name
, arg1
,arg2
,arg3
,arg4
,arg5
,arg6
);
294 gemu_log("Unknown syscall %d\n", num
);
299 print_syscall_ret(int num
, abi_long ret
)
303 for(i
=0;i
<nsyscalls
;i
++)
304 if( scnames
[i
].nr
== num
) {
305 if( scnames
[i
].result
!= NULL
) {
306 scnames
[i
].result(&scnames
[i
],ret
);
309 gemu_log(" = -1 errno=" TARGET_ABI_FMT_ld
" (%s)\n", -ret
, target_strerror(-ret
));
311 gemu_log(" = " TARGET_ABI_FMT_ld
"\n", ret
);