Chris Wilson | cc32909 | 2018-02-14 16:07:20 +0000 | [diff] [blame] | 1 | /* |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 2 | * 32-bit ioctl compatibility routines for the i915 DRM. |
| 3 | * |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 4 | * Copyright (C) Paul Mackerras 2005 |
| 5 | * Copyright (C) Alan Hourihane 2005 |
| 6 | * All Rights Reserved. |
| 7 | * |
| 8 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 9 | * copy of this software and associated documentation files (the "Software"), |
| 10 | * to deal in the Software without restriction, including without limitation |
| 11 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 12 | * and/or sell copies of the Software, and to permit persons to whom the |
| 13 | * Software is furnished to do so, subject to the following conditions: |
| 14 | * |
| 15 | * The above copyright notice and this permission notice (including the next |
| 16 | * paragraph) shall be included in all copies or substantial portions of the |
| 17 | * Software. |
| 18 | * |
| 19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 20 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 22 | * THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
| 23 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 24 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 25 | * IN THE SOFTWARE. |
Chris Wilson | cc32909 | 2018-02-14 16:07:20 +0000 | [diff] [blame] | 26 | * |
| 27 | * Author: Alan Hourihane <alanh@fairlite.demon.co.uk> |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 28 | */ |
| 29 | #include <linux/compat.h> |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 30 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 31 | #include <drm/drmP.h> |
| 32 | #include <drm/i915_drm.h> |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 33 | #include "i915_drv.h" |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 34 | |
Daniel Vetter | 346add7 | 2015-07-14 18:07:30 +0200 | [diff] [blame] | 35 | struct drm_i915_getparam32 { |
| 36 | s32 param; |
| 37 | /* |
| 38 | * We screwed up the generic ioctl struct here and used a variable-sized |
| 39 | * pointer. Use u32 in the compat struct to match the 32bit pointer |
| 40 | * userspace expects. |
| 41 | */ |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 42 | u32 value; |
Daniel Vetter | 346add7 | 2015-07-14 18:07:30 +0200 | [diff] [blame] | 43 | }; |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 44 | |
| 45 | static int compat_i915_getparam(struct file *file, unsigned int cmd, |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 46 | unsigned long arg) |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 47 | { |
Daniel Vetter | 346add7 | 2015-07-14 18:07:30 +0200 | [diff] [blame] | 48 | struct drm_i915_getparam32 req32; |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 49 | drm_i915_getparam_t __user *request; |
| 50 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 51 | if (copy_from_user(&req32, (void __user *)arg, sizeof(req32))) |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 52 | return -EFAULT; |
| 53 | |
| 54 | request = compat_alloc_user_space(sizeof(*request)); |
Chris Wilson | cc32909 | 2018-02-14 16:07:20 +0000 | [diff] [blame] | 55 | if (!access_ok(VERIFY_WRITE, request, sizeof(*request)) || |
| 56 | __put_user(req32.param, &request->param) || |
| 57 | __put_user((void __user *)(unsigned long)req32.value, |
| 58 | &request->value)) |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 59 | return -EFAULT; |
| 60 | |
Arnd Bergmann | ed8b670 | 2009-12-16 22:17:09 +0000 | [diff] [blame] | 61 | return drm_ioctl(file, DRM_IOCTL_I915_GETPARAM, |
| 62 | (unsigned long)request); |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 63 | } |
| 64 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 65 | static drm_ioctl_compat_t *i915_compat_ioctls[] = { |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 66 | [DRM_I915_GETPARAM] = compat_i915_getparam, |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | /** |
Chris Wilson | cc32909 | 2018-02-14 16:07:20 +0000 | [diff] [blame] | 70 | * i915_compat_ioctl - handle the mistakes of the past |
| 71 | * @filp: the file pointer |
| 72 | * @cmd: the ioctl command (and encoded flags) |
| 73 | * @arg: the ioctl argument (from userspace) |
| 74 | * |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 75 | * Called whenever a 32-bit process running under a 64-bit kernel |
| 76 | * performs an ioctl on /dev/dri/card<n>. |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 77 | */ |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 78 | long i915_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 79 | { |
| 80 | unsigned int nr = DRM_IOCTL_NR(cmd); |
| 81 | drm_ioctl_compat_t *fn = NULL; |
| 82 | int ret; |
| 83 | |
Tvrtko Ursulin | ac7e7ab | 2015-07-13 16:51:39 +0100 | [diff] [blame] | 84 | if (nr < DRM_COMMAND_BASE || nr >= DRM_COMMAND_END) |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 85 | return drm_compat_ioctl(filp, cmd, arg); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 86 | |
Damien Lespiau | f95aeb1 | 2014-06-09 14:39:49 +0100 | [diff] [blame] | 87 | if (nr < DRM_COMMAND_BASE + ARRAY_SIZE(i915_compat_ioctls)) |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 88 | fn = i915_compat_ioctls[nr - DRM_COMMAND_BASE]; |
| 89 | |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 90 | if (fn != NULL) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 91 | ret = (*fn) (filp, cmd, arg); |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 92 | else |
Arnd Bergmann | ed8b670 | 2009-12-16 22:17:09 +0000 | [diff] [blame] | 93 | ret = drm_ioctl(filp, cmd, arg); |
Dave Airlie | 8ca7c1d | 2005-07-07 21:51:26 +1000 | [diff] [blame] | 94 | |
| 95 | return ret; |
| 96 | } |