OSDN Git Service

xtensa: fix {get,put}_user() for 64bit values
authorAl Viro <viro@zeniv.linux.org.uk>
Wed, 9 Oct 2019 19:21:05 +0000 (20:21 +0100)
committerMax Filippov <jcmvbkbc@gmail.com>
Mon, 14 Oct 2019 18:39:50 +0000 (11:39 -0700)
commit6595d144decec396bf2e2efee27e50634a4b627f
tree91dfc29dc79a7a8d7e33df00b784e36ac5597b0b
parent4f5cafb5cb8471e54afdc9054d973535614f7675
xtensa: fix {get,put}_user() for 64bit values

First of all, on short copies __copy_{to,from}_user() return the amount
of bytes left uncopied, *not* -EFAULT.  get_user() and put_user() are
expected to return -EFAULT on failure.

Another problem is get_user(v32, (__u64 __user *)p); that should
fetch 64bit value and the assign it to v32, truncating it in process.
Current code, OTOH, reads 8 bytes of data and stores them at the
address of v32, stomping on the 4 bytes that follow v32 itself.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/include/asm/uaccess.h