From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50958) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eeKgW-0003BN-Gq for qemu-devel@nongnu.org; Wed, 24 Jan 2018 08:01:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eeKgV-0005WD-Nl for qemu-devel@nongnu.org; Wed, 24 Jan 2018 08:01:48 -0500 Received: from mail-qt0-x242.google.com ([2607:f8b0:400d:c0d::242]:36107) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eeKgV-0005W7-Jn for qemu-devel@nongnu.org; Wed, 24 Jan 2018 08:01:47 -0500 Received: by mail-qt0-x242.google.com with SMTP id z11so10023847qtm.3 for ; Wed, 24 Jan 2018 05:01:47 -0800 (PST) Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Wed, 24 Jan 2018 10:01:22 -0300 Message-Id: <20180124130126.20871-8-f4bug@amsat.org> In-Reply-To: <20180124130126.20871-1-f4bug@amsat.org> References: <20180124130126.20871-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 07/11] linux-user/strace: improve bind() output List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Riku Voipio , Laurent Vivier Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-devel@nongnu.org, =?UTF-8?q?Guido=20G=C3=BCnther?= Signed-off-by: Philippe Mathieu-Daudé --- linux-user/strace.c | 13 +++++++++++++ linux-user/strace.list | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/linux-user/strace.c b/linux-user/strace.c index 70ecb1fc98..4b8ab6bcfb 100644 --- a/linux-user/strace.c +++ b/linux-user/strace.c @@ -1935,6 +1935,19 @@ print_socketcall(const struct syscallname *name, } #endif +#if defined(TARGET_NR_bind) +static void +print_bind(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_raw_param(TARGET_ABI_FMT_ld, arg0, 0); + print_sockaddr(arg1, arg2); + print_syscall_epilogue(name); +} +#endif + #if defined(TARGET_NR_getsockname) static void print_getsockname(const struct syscallname *name, diff --git a/linux-user/strace.list b/linux-user/strace.list index ae6dc8fecf..958d10d48f 100644 --- a/linux-user/strace.list +++ b/linux-user/strace.list @@ -41,7 +41,7 @@ { TARGET_NR_bdflush, "bdflush" , NULL, NULL, NULL }, #endif #ifdef TARGET_NR_bind -{ TARGET_NR_bind, "bind" , NULL, NULL, NULL }, +{ TARGET_NR_bind, "bind" , NULL, print_bind, NULL }, #endif #ifdef TARGET_NR_bpf { TARGET_NR_bpf, "bpf" , NULL, NULL, NULL }, -- 2.15.1