summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include
diff options
context:
space:
mode:
authorSuraj Jitindar Singh <sjitindarsingh@gmail.com>2019-03-06 12:10:38 +1100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-09-19 09:09:35 +0200
commitd9e8b4ba039766141014e20490d33178c96feb10 (patch)
tree6a666f469ca304988519734236b20acbfb405844 /arch/powerpc/include
parenteb020b77b6461be9bfb36aef6e745f1f7084bf66 (diff)
downloadlinux-stable-d9e8b4ba039766141014e20490d33178c96feb10.tar.gz
linux-stable-d9e8b4ba039766141014e20490d33178c96feb10.tar.bz2
linux-stable-d9e8b4ba039766141014e20490d33178c96feb10.zip
powerpc: Add barrier_nospec to raw_copy_in_user()
commit 6fbcdd59094ade30db63f32316e9502425d7b256 upstream. Commit ddf35cf3764b ("powerpc: Use barrier_nospec in copy_from_user()") Added barrier_nospec before loading from user-controlled pointers. The intention was to order the load from the potentially user-controlled pointer vs a previous branch based on an access_ok() check or similar. In order to achieve the same result, add a barrier_nospec to the raw_copy_in_user() function before loading from such a user-controlled pointer. Fixes: ddf35cf3764b ("powerpc: Use barrier_nospec in copy_from_user()") Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r--arch/powerpc/include/asm/uaccess.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/uaccess.h b/arch/powerpc/include/asm/uaccess.h
index 23bea99bf8d5..1ca9e37f7cc9 100644
--- a/arch/powerpc/include/asm/uaccess.h
+++ b/arch/powerpc/include/asm/uaccess.h
@@ -306,6 +306,7 @@ extern unsigned long __copy_tofrom_user(void __user *to,
static inline unsigned long
raw_copy_in_user(void __user *to, const void __user *from, unsigned long n)
{
+ barrier_nospec();
return __copy_tofrom_user(to, from, n);
}
#endif /* __powerpc64__ */