diff options
author | Laurent Vivier <laurent@vivier.eu> | 2016-06-11 02:19:46 +0200 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2016-06-26 13:17:21 +0300 |
commit | 8997d1bd180ac268fe4bacfa5f0a38ed75809498 (patch) | |
tree | 77f8cabd5512b38aed82e784691d3f549c30b696 | |
parent | fb3aabf3844cd3d6f2f49cc89288634ce1e48bd5 (diff) |
linux-user: add socket() strace
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | linux-user/strace.c | 23 | ||||
-rw-r--r-- | linux-user/strace.list | 2 |
2 files changed, 24 insertions, 1 deletions
diff --git a/linux-user/strace.c b/linux-user/strace.c index c8df76f4ef..95f4338a9c 100644 --- a/linux-user/strace.c +++ b/linux-user/strace.c @@ -1227,6 +1227,29 @@ print__llseek(const struct syscallname *name, } #endif +#if defined(TARGET_NR_socket) +static void +print_socket(const struct syscallname *name, + abi_long arg0, abi_long arg1, abi_long arg2, + abi_long arg3, abi_long arg4, abi_long arg5) +{ + abi_ulong domain = arg0, type = arg1, protocol = arg2; + + print_syscall_prologue(name); + print_socket_domain(domain); + gemu_log(","); + print_socket_type(type); + gemu_log(","); + if (domain == AF_PACKET || + (domain == AF_INET && type == TARGET_SOCK_PACKET)) { + protocol = tswap16(protocol); + } + print_socket_protocol(domain, type, protocol); + print_syscall_epilogue(name); +} + +#endif + #if defined(TARGET_NR_socketcall) #define get_user_ualx(x, gaddr, idx) \ diff --git a/linux-user/strace.list b/linux-user/strace.list index b379497540..7c54dc667f 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -1291,7 +1291,7 @@ { TARGET_NR_sigsuspend, "sigsuspend" , NULL, NULL, NULL }, #endif #ifdef TARGET_NR_socket -{ TARGET_NR_socket, "socket" , NULL, NULL, NULL }, +{ TARGET_NR_socket, "socket" , NULL, print_socket, NULL }, #endif #ifdef TARGET_NR_socketcall { TARGET_NR_socketcall, "socketcall" , NULL, print_socketcall, NULL }, |