From: Paul Mackerras <paulus@samba.org>
To: Andreas Schwab <schwab@suse.de>
Cc: linuxppc-dev@ozlabs.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Fix msr check in compat_sys_swapcontext
Date: Thu, 6 Nov 2008 11:52:13 +1100 [thread overview]
Message-ID: <18706.16317.759662.855430@cargo.ozlabs.ibm.com> (raw)
In-Reply-To: <jeprlabbi6.fsf@sykes.suse.de>
Andreas Schwab writes:
> The new context may not be 16-byte aligned, so the real address of the
> mcontext structure should be read from the uc_regs pointer instead of
> directly using the (unaligned) uc_mcontext field.
Good catch, but...
> @@ -941,9 +941,17 @@ long sys_swapcontext(struct ucontext __user *old_ctx,
> #ifdef CONFIG_PPC64
> unsigned long new_msr = 0;
>
> - if (new_ctx &&
> - get_user(new_msr, &new_ctx->uc_mcontext.mc_gregs[PT_MSR]))
> - return -EFAULT;
> + if (new_ctx) {
> + struct mcontext __user *mcp;
> + u32 cmcp;
> +
> + /* Get pointer to the real mcontext. */
> + if (__get_user(cmcp, &new_ctx->uc_regs))
we need to use get_user, not __get_user, since we haven't done an
access_ok() check on the address.
> + return -EFAULT;
> + mcp = (struct mcontext __user *)(u64)cmcp;
> + if (__get_user(new_msr, &mcp->mc_gregs[PT_MSR]))
ditto here.
Paul.
next prev parent reply other threads:[~2008-11-06 0:52 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-05 12:30 [PATCH] Fix msr check in compat_sys_swapcontext Andreas Schwab
2008-11-06 0:52 ` Paul Mackerras [this message]
2008-11-06 9:23 ` Andreas Schwab
2008-11-06 10:36 ` Paul Mackerras
2008-11-06 10:49 ` Andreas Schwab
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=18706.16317.759662.855430@cargo.ozlabs.ibm.com \
--to=paulus@samba.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=schwab@suse.de \
/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