From: Peter Maydell Date: Fri, 8 Feb 2013 07:58:41 +0000 (+0000) Subject: linux-user: make bogus negative iovec lengths fail EINVAL X-Git-Tag: v1.5.0-rc0~473^2~3 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=dfae8e00f8ddeedcda24bd28f71d4fd2a9f988b8;p=qemu.git linux-user: make bogus negative iovec lengths fail EINVAL If the guest passes us a bogus negative length for an iovec, fail EINVAL rather than proceeding blindly forward. This fixes some of the error cases tests for readv and writev in the LTP. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Signed-off-by: Riku Voipio --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 172944684..bab9ab58a 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -1776,7 +1776,7 @@ static struct iovec *lock_iovec(int type, abi_ulong target_addr, errno = 0; return NULL; } - if (count > IOV_MAX) { + if (count < 0 || count > IOV_MAX) { errno = EINVAL; return NULL; }