@@ -384,6 +384,7 @@ ACPI WMI DRIVER
L: platform-driver-x86@vger.kernel.org
S: Orphan
F: drivers/platform/x86/wmi.c
+F: include/uapi/linux/wmi.h
AD1889 ALSA SOUND DRIVER
M: Thibaut Varene <T-Bone@parisc-linux.org>
@@ -38,12 +38,15 @@
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/list.h>
+#include <linux/miscdevice.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/types.h>
+#include <linux/uaccess.h>
#include <linux/uuid.h>
#include <linux/wmi.h>
+#include <uapi/linux/wmi.h>
ACPI_MODULE_NAME("wmi");
MODULE_AUTHOR("Carlos Corbacho");
@@ -69,6 +72,7 @@ struct wmi_block {
struct wmi_device dev;
struct list_head list;
struct guid_block gblock;
+ struct miscdevice misc_dev;
struct acpi_device *acpi_device;
wmi_notify_handler handler;
void *handler_data;
@@ -796,12 +800,123 @@ static int wmi_dev_match(struct device *dev, struct device_driver *driver)
return 0;
}
+static long match_ioctl(struct file *filp, unsigned int cmd, unsigned long arg,
+ int compat)
+{
+ struct wmi_ioctl_buffer __user *input =
+ (struct wmi_ioctl_buffer __user *) arg;
+ struct wmi_driver *wdriver = NULL;
+ struct wmi_block *wblock = NULL;
+ struct wmi_block *next = NULL;
+ const char *driver_name;
+ u64 size;
+ int ret;
+
+ if (_IOC_TYPE(cmd) != WMI_IOC)
+ return -ENOTTY;
+
+ driver_name = filp->f_path.dentry->d_iname;
+
+ list_for_each_entry_safe(wblock, next, &wmi_block_list, list) {
+ wdriver = container_of(wblock->dev.dev.driver,
+ struct wmi_driver, driver);
+ if (!wdriver)
+ continue;
+ if (strcmp(driver_name, wdriver->driver.name) == 0)
+ break;
+ }
+
+ if (!wdriver)
+ return -ENODEV;
+
+ /* make sure we're not calling a higher instance than exists*/
+ if (_IOC_NR(cmd) >= wblock->gblock.instance_count)
+ return -EINVAL;
+
+ /* check that required buffer size was declared by driver */
+ if (!wblock->req_buf_size) {
+ dev_err(&wblock->dev.dev, "Required buffer size not set\n");
+ return -EINVAL;
+ }
+ if (get_user(size, &input->length)) {
+ dev_dbg(&wblock->dev.dev, "Read length from user failed\n");
+ return -EFAULT;
+ }
+ /* if it's too small, abort */
+ if (size < wblock->req_buf_size) {
+ dev_err(&wblock->dev.dev,
+ "Buffer %lld too small, need at least %lld\n",
+ size, wblock->req_buf_size);
+ return -EINVAL;
+ }
+ /* if it's too big, warn, driver will only use what is needed */
+ if (size > wblock->req_buf_size)
+ dev_warn(&wblock->dev.dev,
+ "Buffer %lld is bigger than required %lld\n",
+ size, wblock->req_buf_size);
+
+ if (!try_module_get(wdriver->driver.owner))
+ return -EBUSY;
+ if (compat) {
+#ifdef CONFIG_COMPAT
+ if (wdriver->compat_ioctl)
+ ret = wdriver->compat_ioctl(&wblock->dev, cmd, arg);
+ else
+#endif
+ ret = -ENODEV;
+ } else
+ ret = wdriver->unlocked_ioctl(&wblock->dev, cmd, arg);
+ module_put(wdriver->driver.owner);
+
+ return ret;
+}
+static long wmi_unlocked_ioctl(struct file *filp, unsigned int cmd,
+ unsigned long arg)
+{
+ return match_ioctl(filp, cmd, arg, 0);
+}
+
+#ifdef CONFIG_COMPAT
+static long wmi_compat_ioctl(struct file *filp, unsigned int cmd,
+ unsigned long arg)
+{
+ return match_ioctl(filp, cmd, arg, 1);
+}
+#endif
+
+static const struct file_operations wmi_fops = {
+ .owner = THIS_MODULE,
+ .unlocked_ioctl = wmi_unlocked_ioctl,
+#ifdef CONFIG_COMPAT
+ .compat_ioctl = wmi_compat_ioctl,
+#endif
+};
+
static int wmi_dev_probe(struct device *dev)
{
struct wmi_block *wblock = dev_to_wblock(dev);
struct wmi_driver *wdriver =
container_of(dev->driver, struct wmi_driver, driver);
int ret = 0;
+ char *buf;
+
+ /* driver wants a character device made */
+ if (wdriver->unlocked_ioctl) {
+ buf = kmalloc(strlen(wdriver->driver.name) + 4, GFP_KERNEL);
+ if (!buf)
+ return -ENOMEM;
+ sprintf(buf, "wmi/%s", wdriver->driver.name);
+ wblock->misc_dev.minor = MISC_DYNAMIC_MINOR;
+ wblock->misc_dev.name = buf;
+ wblock->misc_dev.fops = &wmi_fops;
+ wblock->misc_dev.mode = 0444;
+ ret = misc_register(&wblock->misc_dev);
+ if (ret) {
+ dev_warn(dev, "failed to register char dev: %d", ret);
+ kfree(buf);
+ return -ENOMEM;
+ }
+ }
if (ACPI_FAILURE(wmi_method_enable(wblock, 1)))
dev_warn(dev, "failed to enable device -- probing anyway\n");
@@ -822,6 +937,11 @@ static int wmi_dev_remove(struct device *dev)
container_of(dev->driver, struct wmi_driver, driver);
int ret = 0;
+ if (wdriver->unlocked_ioctl) {
+ misc_deregister(&wblock->misc_dev);
+ kfree(wblock->misc_dev.name);
+ }
+
if (wdriver->remove)
ret = wdriver->remove(dev_to_wdev(dev));
@@ -50,6 +50,12 @@ struct wmi_driver {
int (*probe)(struct wmi_device *wdev);
int (*remove)(struct wmi_device *wdev);
void (*notify)(struct wmi_device *device, union acpi_object *data);
+ long (*unlocked_ioctl)(struct wmi_device *wdev, unsigned int cmd,
+ unsigned long arg);
+#ifdef CONFIG_COMPAT
+ long (*compat_ioctl)(struct wmi_device *wdev, unsigned int cmd,
+ unsigned long arg);
+#endif
};
extern int __must_check __wmi_driver_register(struct wmi_driver *driver,
new file mode 100644
@@ -0,0 +1,26 @@
+/*
+ * User API methods for ACPI-WMI mapping driver
+ *
+ * Copyright (C) 2017 Dell, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+#ifndef _UAPI_LINUX_WMI_H
+#define _UAPI_LINUX_WMI_H
+
+#include <linux/types.h>
+
+/* WMI bus will filter all WMI vendor driver requests through this IOC */
+#define WMI_IOC 'W'
+
+/* All ioctl requests through WMI should declare their size followed by
+ * relevant data objects
+ */
+struct wmi_ioctl_buffer {
+ __u64 length;
+ __u8 data[];
+};
+
+#endif