From: Thomas Gleixner <tglx@linutronix.de>
To: Christoph Hellwig <hch@lst.de>
Cc: LKML <linux-kernel@vger.kernel.org>,
"H.J. Lu" <hjl.tools@gmail.com>,
x86@kernel.org, Christoph Hellwig <hch@lst.de>,
Josh Poimboeuf <jpoimboe@redhat.com>
Subject: Re: [PATCH] x86/dumpstack: Dump user space code correctly again
Date: Thu, 23 Jul 2020 13:05:43 +0200 [thread overview]
Message-ID: <87sgdixzi0.fsf@nanos.tec.linutronix.de> (raw)
In-Reply-To: <20200723081900.GA16138@lst.de>
Christoph Hellwig <hch@lst.de> writes:
> On Wed, Jul 22, 2020 at 07:54:15PM +0200, Thomas Gleixner wrote:
>> + /*
>> + * Make sure userspace isn't trying to trick us into dumping kernel
>> + * memory by pointing the userspace instruction pointer at it.
>> + */
>> + if (__chk_range_not_ok(src, nbytes, TASK_SIZE_MAX))
>> + return -EINVAL;
>> +
>> + return copy_from_user_nmi(buf, (void __user *)src, nbytes);
>
> copy_from_user_nmi already contains a:
>
> if (__range_not_ok(from, n, TASK_SIZE))
> return n;
>
> what is the reason it checks for TASK_SIZE vs TASK_SIZE_MAX, and why
> do we need both checks?
TBH, I just kept it because being lazy. But you are right, the check is
redundant and TASK_SIZE_MAX is inaccurate as it does not take compat
tasks into account. I'll rip that out.
Thanks,
tglx
prev parent reply other threads:[~2020-07-23 11:05 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <bug-208655-6666@https.bugzilla.kernel.org/>
[not found] ` <87h7tz306w.fsf@nanos.tec.linutronix.de>
2020-07-22 18:04 ` H.J. Lu
2020-07-22 19:47 ` Thomas Gleixner
2020-07-22 21:22 ` H.J. Lu
2020-07-22 21:55 ` [tip: x86/urgent] " tip-bot2 for Thomas Gleixner
2020-07-23 8:19 ` [PATCH] " Christoph Hellwig
2020-07-23 11:05 ` Thomas Gleixner [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=87sgdixzi0.fsf@nanos.tec.linutronix.de \
--to=tglx@linutronix.de \
--cc=hch@lst.de \
--cc=hjl.tools@gmail.com \
--cc=jpoimboe@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=x86@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome