blob: 97f3a5640289389a8328ac66da9e127c7a3ed6c6 [file] [log] [blame]
Dave Airlie8ca7c1d2005-07-07 21:51:26 +10001/**
2 * \file i915_ioc32.c
3 *
4 * 32-bit ioctl compatibility routines for the i915 DRM.
5 *
Dave Airlieb5e89ed2005-09-25 14:28:13 +10006 * \author Alan Hourihane <alanh@fairlite.demon.co.uk>
Dave Airlie8ca7c1d2005-07-07 21:51:26 +10007 *
8 *
9 * Copyright (C) Paul Mackerras 2005
10 * Copyright (C) Alan Hourihane 2005
11 * All Rights Reserved.
12 *
13 * Permission is hereby granted, free of charge, to any person obtaining a
14 * copy of this software and associated documentation files (the "Software"),
15 * to deal in the Software without restriction, including without limitation
16 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 * and/or sell copies of the Software, and to permit persons to whom the
18 * Software is furnished to do so, subject to the following conditions:
19 *
20 * The above copyright notice and this permission notice (including the next
21 * paragraph) shall be included in all copies or substantial portions of the
22 * Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 * THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
28 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30 * IN THE SOFTWARE.
31 */
32#include <linux/compat.h>
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100033
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/drmP.h>
35#include <drm/i915_drm.h>
Ben Widawskyc43b5632012-04-16 14:07:40 -070036#include "i915_drv.h"
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100037
Daniel Vetter346add72015-07-14 18:07:30 +020038struct drm_i915_getparam32 {
39 s32 param;
40 /*
41 * We screwed up the generic ioctl struct here and used a variable-sized
42 * pointer. Use u32 in the compat struct to match the 32bit pointer
43 * userspace expects.
44 */
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100045 u32 value;
Daniel Vetter346add72015-07-14 18:07:30 +020046};
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100047
48static int compat_i915_getparam(struct file *file, unsigned int cmd,
Dave Airlieb5e89ed2005-09-25 14:28:13 +100049 unsigned long arg)
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100050{
Daniel Vetter346add72015-07-14 18:07:30 +020051 struct drm_i915_getparam32 req32;
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100052 drm_i915_getparam_t __user *request;
53
Dave Airlieb5e89ed2005-09-25 14:28:13 +100054 if (copy_from_user(&req32, (void __user *)arg, sizeof(req32)))
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100055 return -EFAULT;
56
57 request = compat_alloc_user_space(sizeof(*request));
58 if (!access_ok(VERIFY_WRITE, request, sizeof(*request))
59 || __put_user(req32.param, &request->param)
60 || __put_user((void __user *)(unsigned long)req32.value,
61 &request->value))
62 return -EFAULT;
63
Arnd Bergmanned8b6702009-12-16 22:17:09 +000064 return drm_ioctl(file, DRM_IOCTL_I915_GETPARAM,
65 (unsigned long)request);
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100066}
67
Ben Widawskyc43b5632012-04-16 14:07:40 -070068static drm_ioctl_compat_t *i915_compat_ioctls[] = {
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100069 [DRM_I915_GETPARAM] = compat_i915_getparam,
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100070};
71
72/**
73 * Called whenever a 32-bit process running under a 64-bit kernel
74 * performs an ioctl on /dev/dri/card<n>.
75 *
76 * \param filp file pointer.
77 * \param cmd command.
78 * \param arg user argument.
79 * \return zero on success or negative number on failure.
80 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +100081long i915_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100082{
83 unsigned int nr = DRM_IOCTL_NR(cmd);
84 drm_ioctl_compat_t *fn = NULL;
85 int ret;
86
Tvrtko Ursulinac7e7ab2015-07-13 16:51:39 +010087 if (nr < DRM_COMMAND_BASE || nr >= DRM_COMMAND_END)
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100088 return drm_compat_ioctl(filp, cmd, arg);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100089
Damien Lespiauf95aeb12014-06-09 14:39:49 +010090 if (nr < DRM_COMMAND_BASE + ARRAY_SIZE(i915_compat_ioctls))
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100091 fn = i915_compat_ioctls[nr - DRM_COMMAND_BASE];
92
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100093 if (fn != NULL)
Dave Airlieb5e89ed2005-09-25 14:28:13 +100094 ret = (*fn) (filp, cmd, arg);
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100095 else
Arnd Bergmanned8b6702009-12-16 22:17:09 +000096 ret = drm_ioctl(filp, cmd, arg);
Dave Airlie8ca7c1d2005-07-07 21:51:26 +100097
98 return ret;
99}