compat_ioctl: add compat_ptr_ioctl()
authorArnd Bergmann <arnd@arndb.de>
Tue, 11 Sep 2018 14:55:03 +0000 (16:55 +0200)
committerArnd Bergmann <arnd@arndb.de>
Wed, 23 Oct 2019 15:15:56 +0000 (17:15 +0200)
commit2952db0fd51b0890f728df94ac563c21407f4f43
treeb10f660fd77eff2ac5d55731c4ed414d71c77b29
parentda0c9ea146cbe92b832f1b0f694840ea8eb33cce
compat_ioctl: add compat_ptr_ioctl()

Many drivers have ioctl() handlers that are completely compatible between
32-bit and 64-bit architectures, except for the argument that is passed
down from user space and may have to be passed through compat_ptr()
in order to become a valid 64-bit pointer.

Using ".compat_ptr = compat_ptr_ioctl" in file operations should let
us simplify a lot of those drivers to avoid #ifdef checks, and convert
additional drivers that don't have proper compat handling yet.

On most architectures, the compat_ptr_ioctl() just passes all arguments
to the corresponding ->ioctl handler. The exception is arch/s390, where
compat_ptr() clears the top bit of a 32-bit pointer value, so user space
pointers to the second 2GB alias the first 2GB, as is the case for native
32-bit s390 user space.

The compat_ptr_ioctl() function must therefore be used only with
ioctl functions that either ignore the argument or pass a pointer to a
compatible data type.

If any ioctl command handled by fops->unlocked_ioctl passes a plain
integer instead of a pointer, or any of the passed data types is
incompatible between 32-bit and 64-bit architectures, a proper handler
is required instead of compat_ptr_ioctl.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
v3: add a better description
v2: use compat_ptr_ioctl instead of generic_compat_ioctl_ptrarg,
as suggested by Al Viro
fs/ioctl.c
include/linux/fs.h