aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/misc
diff options
context:
space:
mode:
authorRicky Liang <jcliang@chromium.org>2016-05-20 13:58:59 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2016-05-20 14:00:43 -0400
commitaffa80bd97f7ca282d1faa91667b3ee9e4c590e6 (patch)
tree41cf16417f60394ebc527ca37e142c3f73b240a5 /drivers/input/misc
parent23ea5967d6bd30ed59480edbc5fe21eec81682a3 (diff)
Input: uinput - handle compat ioctl for UI_SET_PHYS
When running a 32-bit userspace on a 64-bit kernel, the UI_SET_PHYS ioctl needs to be treated with special care, as it has the pointer size encoded in the command. Signed-off-by: Ricky Liang <jcliang@chromium.org> Cc: stable@vger.kernel.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/misc')
-rw-r--r--drivers/input/misc/uinput.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c
index 4eb9e4d94f46..79338f4bdecb 100644
--- a/drivers/input/misc/uinput.c
+++ b/drivers/input/misc/uinput.c
@@ -981,9 +981,15 @@ static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
981} 981}
982 982
983#ifdef CONFIG_COMPAT 983#ifdef CONFIG_COMPAT
984
985#define UI_SET_PHYS_COMPAT _IOW(UINPUT_IOCTL_BASE, 108, compat_uptr_t)
986
984static long uinput_compat_ioctl(struct file *file, 987static long uinput_compat_ioctl(struct file *file,
985 unsigned int cmd, unsigned long arg) 988 unsigned int cmd, unsigned long arg)
986{ 989{
990 if (cmd == UI_SET_PHYS_COMPAT)
991 cmd = UI_SET_PHYS;
992
987 return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg)); 993 return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg));
988} 994}
989#endif 995#endif