linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Namhyung Kim <namhyung@gmail.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>,
	linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
	Jeff Moyer <jmoyer@redhat.com>,
	Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [PATCH] compat: fix use of an uninitialized variable in compat_sys_io_setup()
Date: Mon, 3 Jan 2011 13:19:11 -0800	[thread overview]
Message-ID: <20110103131911.c1c2adf6.akpm@linux-foundation.org> (raw)
In-Reply-To: <1293182186-23462-1-git-send-email-namhyung@gmail.com>

On Fri, 24 Dec 2010 18:16:26 +0900
Namhyung Kim <namhyung@gmail.com> wrote:

> The upper bytes of ctx64 might contain garbages because it was
> set by get_user() which copied only lower 4 bytes as its second
> argument points to. Since sys_io_setup() requires its argumet
> is properly initialized to 0 we should set it explicitly.
> 
> On x86, this was not a problem since its implementation of
> get_user() does a C assignment so that it can fill upper bytes
> with 0's. But other archs that use __get_user_asm() or something
> might have a problem.
> 
> Signed-off-by: Namhyung Kim <namhyung@gmail.com>
> Cc: Jeff Moyer <jmoyer@redhat.com>
> ---
>  fs/compat.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/fs/compat.c b/fs/compat.c
> index 4376e07febbb..b074e9f79148 100644
> --- a/fs/compat.c
> +++ b/fs/compat.c
> @@ -526,7 +526,7 @@ asmlinkage long
>  compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p)
>  {
>  	long ret;
> -	aio_context_t ctx64;
> +	aio_context_t ctx64 = 0;
>  
>  	mm_segment_t oldfs = get_fs();
>  	if (unlikely(get_user(ctx64, ctx32p)))

Well.  What _should_ a get_user(some_u64, some_u32*) do to `some_u64'?

I don't recall it coming up before but I'd say that the sane, expected
and certainly *safe* behaviour would be for the implementation to zero
out the upper 32 bits of `some_u64'.

If that's the rule then those architectures need fixing.  Did you have
any architectures in mind?

  reply	other threads:[~2011-01-03 21:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-24  9:16 [PATCH] compat: fix use of an uninitialized variable in compat_sys_io_setup() Namhyung Kim
2011-01-03 21:19 ` Andrew Morton [this message]
2011-01-03 21:46   ` Linus Torvalds

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=20110103131911.c1c2adf6.akpm@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=jmoyer@redhat.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=namhyung@gmail.com \
    --cc=torvalds@linux-foundation.org \
    --cc=viro@zeniv.linux.org.uk \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).