From: Josh Poimboeuf <jpoimboe@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
"Kirill A. Shutemov" <kirill@shutemov.name>,
x86@kernel.org, Thomas Gleixner <tglx@linutronix.de>,
Borislav Petkov <bp@alien8.de>,
Peter Zijlstra <peterz@infradead.org>,
Pawan Gupta <pawan.kumar.gupta@linux.intel.com>,
Waiman Long <longman@redhat.com>,
Dave Hansen <dave.hansen@linux.intel.com>,
Ingo Molnar <mingo@redhat.com>,
Michael Ellerman <mpe@ellerman.id.au>,
linuxppc-dev@lists.ozlabs.org,
Mark Rutland <mark.rutland@arm.com>
Subject: Re: [PATCH] x86/uaccess: Avoid barrier_nospec() in copy_from_user()
Date: Sun, 20 Oct 2024 16:11:12 -0700 [thread overview]
Message-ID: <20241020231112.erso2jzqwkbin4kh@treble> (raw)
In-Reply-To: <CAHk-=wikKPKDECP=zBEEnxBB44n-uLsnMoOG=aCy6FwDNc9mxA@mail.gmail.com>
On Sun, Oct 20, 2024 at 03:59:25PM -0700, Linus Torvalds wrote:
> On Sun, 20 Oct 2024 at 15:44, Josh Poimboeuf <jpoimboe@kernel.org> wrote:
> >
> > Anyway, I'd really like to make forward progress on getting rid of the
> > LFENCEs in copy_from_user() and __get_user(), so until if/when we hear
> > back from both vendors, how about we avoid noncanonical exceptions
> > altogether (along with the edge cases mentioned above) and do something
> > like the below?
>
> That doesn't work for LAM at _all_.
Argh, ok.
> So at a minimum, you need to then say "for LAM enabled CPU's we do the
> 'shift sign bit' trick".
Something like below to wipe out the LAM bits beforehand?
I'm probably overlooking something else as there are a lot of annoying
details here...
> Hopefully any LAM-capable CPU doesn't have this issue?
>
> And I still think that clac/stac has to serialize with surrounding
> memory operations, making this all moot.
Until it's s/think/know/ can we please put something in place?
#define FORCE_CANONICAL \
ALTERNATIVE_2 \
"shl $(64 - 48), %rdx", \
"shl $(64 - 57), %rdx", X86_FEATURE_LA57, \
"", ALT_NOT(X86_FEATURE_LAM)
#ifdef CONFIG_X86_5LEVEL
#define LOAD_TASK_SIZE_MINUS_N(n) \
ALTERNATIVE __stringify(mov $((1 << 47) - 4096 - (n)),%rdx), \
__stringify(mov $((1 << 56) - 4096 - (n)),%rdx), X86_FEATURE_LA57
#else
#define LOAD_TASK_SIZE_MINUS_N(n) \
mov $(TASK_SIZE_MAX - (n)),%_ASM_DX
#endif
.macro check_range size
.if IS_ENABLED(CONFIG_X86_64)
FORCE_CANONICAL
/* If above TASK_SIZE_MAX, convert to all 1's */
LOAD_TASK_SIZE_MINUS_N(size-1)
cmp %rax, %rdx
sbb %rdx, %rdx
or %rdx, %rax
next prev parent reply other threads:[~2024-10-20 23:11 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-12 4:09 [PATCH] x86/uaccess: Avoid barrier_nospec() in copy_from_user() Josh Poimboeuf
2024-10-12 8:48 ` Andrew Cooper
2024-10-12 14:09 ` Josh Poimboeuf
2024-10-12 14:21 ` Borislav Petkov
2024-10-12 15:58 ` Linus Torvalds
2024-10-12 14:26 ` Andrew Cooper
2024-10-12 15:44 ` Linus Torvalds
2024-10-12 17:23 ` Andrew Cooper
2024-10-12 17:44 ` Linus Torvalds
2024-10-13 0:53 ` Linus Torvalds
2024-10-13 1:21 ` Linus Torvalds
2024-10-14 3:54 ` Josh Poimboeuf
2024-10-14 6:50 ` Linus Torvalds
2024-10-14 9:59 ` David Laight
2024-10-14 11:20 ` Linus Torvalds
2024-10-14 14:40 ` David Laight
2024-10-14 11:12 ` Andrew Cooper
2024-10-14 12:30 ` Kirill A. Shutemov
2024-10-14 15:39 ` Andrew Cooper
2024-10-15 10:00 ` Borislav Petkov
2024-10-20 22:44 ` Josh Poimboeuf
2024-10-20 22:59 ` Linus Torvalds
2024-10-20 23:11 ` Josh Poimboeuf [this message]
2024-10-20 23:14 ` Josh Poimboeuf
2024-10-20 23:35 ` Linus Torvalds
2024-10-23 9:44 ` Borislav Petkov
2024-10-23 19:17 ` Linus Torvalds
2024-10-23 20:07 ` Linus Torvalds
2024-10-23 23:32 ` Linus Torvalds
2024-10-24 2:00 ` Linus Torvalds
2024-10-24 9:21 ` David Laight
2024-10-24 16:53 ` Linus Torvalds
2024-10-25 8:56 ` David Laight
2024-10-25 16:35 ` Linus Torvalds
2024-10-21 10:48 ` Kirill A. Shutemov
2024-10-22 2:36 ` Linus Torvalds
2024-10-22 10:33 ` Kirill A. Shutemov
2024-10-22 8:16 ` Pawan Gupta
2024-10-22 10:44 ` Kirill A. Shutemov
2024-10-14 16:55 ` Linus Torvalds
2024-10-16 16:10 ` Linus Torvalds
2024-10-16 22:02 ` Andrew Cooper
2024-10-16 22:13 ` Kirill A. Shutemov
2024-10-16 22:34 ` Linus Torvalds
2024-10-28 11:29 ` Kirill A. Shutemov
2024-10-28 18:44 ` Linus Torvalds
2024-10-28 20:31 ` Kirill A. Shutemov
2024-10-28 20:49 ` Linus Torvalds
2024-10-16 22:32 ` Linus Torvalds
2024-10-17 11:00 ` Borislav Petkov
2024-10-14 11:56 ` Kirill A. Shutemov
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=20241020231112.erso2jzqwkbin4kh@treble \
--to=jpoimboe@kernel.org \
--cc=andrew.cooper3@citrix.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=kirill@shutemov.name \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=longman@redhat.com \
--cc=mark.rutland@arm.com \
--cc=mingo@redhat.com \
--cc=mpe@ellerman.id.au \
--cc=pawan.kumar.gupta@linux.intel.com \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.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;
as well as URLs for NNTP newsgroup(s).