All of lore.kernel.org
 help / color / mirror / Atom feed
From: Aurelien Jarno <aurelien@aurel32.net>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Eoghan Sherry <ejsherry@gmail.com>,
	qemu-devel@nongnu.org, patches@linaro.org
Subject: Re: [Qemu-devel] [PATCH] linux-user: Fix large seeks by 32 bit guest on 64 bit host
Date: Sun, 6 Mar 2011 19:07:38 +0100	[thread overview]
Message-ID: <20110306180738.GD32068@volta.aurel32.net> (raw)
In-Reply-To: <1298379746-18484-1-git-send-email-peter.maydell@linaro.org>

On Tue, Feb 22, 2011 at 01:02:26PM +0000, Peter Maydell wrote:
> When emulating a 32 bit Linux user-mode program on a 64 bit target
> we implement the llseek syscall in terms of lseek. Correct a bug
> which meant we were silently casting the result of host lseek()
> to a 32 bit integer as it passed through get_errno() and thus
> throwing away the top half.
> 
> We also don't try to store the result back to userspace unless
> the seek succeeded; this matches the kernel behaviour.
> 
> Thanks to Eoghan Sherry for identifying the problem and suggesting
> a solution.
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
>  linux-user/syscall.c |   16 ++++++++++------
>  1 files changed, 10 insertions(+), 6 deletions(-)

Thanks, applied.

> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index cf8a4c3..23d7a63 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -6127,16 +6127,20 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
>  #ifdef TARGET_NR__llseek /* Not on alpha */
>      case TARGET_NR__llseek:
>          {
> +            int64_t res;
>  #if !defined(__NR_llseek)
> -            ret = get_errno(lseek(arg1, ((uint64_t )arg2 << 32) | arg3, arg5));
> -            if (put_user_s64(ret, arg4))
> -                goto efault;
> +            res = lseek(arg1, ((uint64_t)arg2 << 32) | arg3, arg5);
> +            if (res == -1) {
> +                ret = get_errno(res);
> +            } else {
> +                ret = 0;
> +            }
>  #else
> -            int64_t res;
>              ret = get_errno(_llseek(arg1, arg2, arg3, &res, arg5));
> -            if (put_user_s64(res, arg4))
> -                goto efault;
>  #endif
> +            if ((ret == 0) && put_user_s64(res, arg4)) {
> +                goto efault;
> +            }
>          }
>          break;
>  #endif
> -- 
> 1.7.1
> 
> 
> 

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

      reply	other threads:[~2011-03-06 18:07 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-22 13:02 [Qemu-devel] [PATCH] linux-user: Fix large seeks by 32 bit guest on 64 bit host Peter Maydell
2011-03-06 18:07 ` Aurelien Jarno [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110306180738.GD32068@volta.aurel32.net \
    --to=aurelien@aurel32.net \
    --cc=ejsherry@gmail.com \
    --cc=patches@linaro.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.