From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43835) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bO42S-0005qm-JZ for qemu-devel@nongnu.org; Fri, 15 Jul 2016 10:24:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bO42O-0005Sq-KF for qemu-devel@nongnu.org; Fri, 15 Jul 2016 10:24:24 -0400 Received: from orth.archaic.org.uk ([2001:8b0:1d0::2]:58310) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bO42O-0005Sm-CT for qemu-devel@nongnu.org; Fri, 15 Jul 2016 10:24:20 -0400 From: Peter Maydell Date: Fri, 15 Jul 2016 14:57:26 +0100 Message-Id: <1468591048-30230-2-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1468591048-30230-1-git-send-email-peter.maydell@linaro.org> References: <1468591048-30230-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 1/3] linux-user: Fix handling of iovec counts List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: patches@linaro.org, Riku Voipio In the kernel the length of an iovec is generally handled as an unsigned long, not an integer; fix the parameter to lock_iovec() accordingly. Signed-off-by: Peter Maydell --- linux-user/syscall.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 9dbd711..8d36d6c 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -2647,7 +2647,7 @@ static abi_long do_getsockopt(int sockfd, int level, int optname, } static struct iovec *lock_iovec(int type, abi_ulong target_addr, - int count, int copy) + abi_ulong count, int copy) { struct target_iovec *target_vec; struct iovec *vec; @@ -2660,7 +2660,7 @@ static struct iovec *lock_iovec(int type, abi_ulong target_addr, errno = 0; return NULL; } - if (count < 0 || count > IOV_MAX) { + if (count > IOV_MAX) { errno = EINVAL; return NULL; } @@ -2735,7 +2735,7 @@ static struct iovec *lock_iovec(int type, abi_ulong target_addr, } static void unlock_iovec(struct iovec *vec, abi_ulong target_addr, - int count, int copy) + abi_ulong count, int copy) { struct target_iovec *target_vec; int i; @@ -2962,7 +2962,7 @@ static abi_long do_sendrecvmsg_locked(int fd, struct target_msghdr *msgp, { abi_long ret, len; struct msghdr msg; - int count; + abi_ulong count; struct iovec *vec; abi_ulong target_vec; -- 1.9.1