diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-08-07 14:43:05 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-10-08 06:31:36 -0700 |
commit | ff54bcd541ff8cbbefab7b6779b77444fefce8b0 (patch) | |
tree | d28c1012184eff70b0af775e8675bae40beeb0c6 | |
parent | 57fbc9b987ea63ccab955520276dd04e41eea4f0 (diff) | |
download | qemu-ff54bcd541ff8cbbefab7b6779b77444fefce8b0.zip qemu-ff54bcd541ff8cbbefab7b6779b77444fefce8b0.tar.gz qemu-ff54bcd541ff8cbbefab7b6779b77444fefce8b0.tar.bz2 |
linux-user: Add strace for sendto()
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Ilya Leoshkevich <iii@linux.ibm.com>
Message-ID: <20240807124306.52903-5-philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | linux-user/strace.c | 15 | ||||
-rw-r--r-- | linux-user/strace.list | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/linux-user/strace.c b/linux-user/strace.c index 245153c..0263e6a 100644 --- a/linux-user/strace.c +++ b/linux-user/strace.c @@ -3142,6 +3142,21 @@ print_bind(CPUArchState *cpu_env, const struct syscallname *name, } #endif +#ifdef TARGET_NR_sendto +static void +print_sendto(CPUArchState *cpu_env, const struct syscallname *name, + abi_long arg0, abi_long arg1, abi_long arg2, + abi_long arg3, abi_long arg4, abi_long arg5) +{ + print_syscall_prologue(name); + print_sockfd(arg0, 0); + print_buf_len(arg1, arg2, 0); + print_flags(msg_flags, arg3, 0); + print_sockaddr(arg4, arg5, 1); + print_syscall_epilogue(name); +} +#endif + #if defined(TARGET_NR_stat) || defined(TARGET_NR_stat64) || \ defined(TARGET_NR_lstat) || defined(TARGET_NR_lstat64) static void diff --git a/linux-user/strace.list b/linux-user/strace.list index f889971..64d24e1 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -1288,7 +1288,7 @@ { TARGET_NR_sendmsg, "sendmsg" , NULL, NULL, NULL }, #endif #ifdef TARGET_NR_sendto -{ TARGET_NR_sendto, "sendto" , NULL, NULL, NULL }, +{ TARGET_NR_sendto, "sendto" , NULL, print_sendto, NULL }, #endif #ifdef TARGET_NR_setdomainname { TARGET_NR_setdomainname, "setdomainname" , NULL, NULL, NULL }, |