linux-user: Fix llseek with high bit of offset_low set
commit9fea273c8511dd6e34138d028db774b031c0f70c
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 11 Aug 2016 17:59:39 +0000 (11 18:59 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 16 Aug 2016 15:42:03 +0000 (16 16:42 +0100)
tree3d1950f07bfdb30eda3257cbbd7056ed52c51eb7
parent9c37146782e7850877d452da47dc451ba73aa62d
linux-user: Fix llseek with high bit of offset_low set

The llseek syscall takes two 32-bit arguments, offset_high
and offset_low, which must be combined to form a single
64-bit offset. Unfortunately we were combining them with
   (uint64_t)arg2 << 32) | arg3
and arg3 is a signed type; this meant that when promoting
arg3 to a 64-bit type it would be sign-extended. The effect
was that if the offset happened to have bit 31 set then
this bit would get sign-extended into all of bits 63..32.
Explicitly cast arg3 to abi_ulong to avoid the erroneous
sign extension.

Reported-by: Chanho Park <parkch98@gmail.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Tested-by: Chanho Park <parkch98@gmail.com>
Message-id: 1470938379-1133-1-git-send-email-peter.maydell@linaro.org
linux-user/syscall.c