2016-09-08 10:12:50 +02:00
|
|
|
/*
|
|
|
|
* Plug and Play support for hid devices found through udev
|
|
|
|
*
|
|
|
|
* Copyright 2016 CodeWeavers, Aric Stewart
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2016-09-13 11:13:26 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2016-09-08 10:12:50 +02:00
|
|
|
#include <stdarg.h>
|
2016-09-13 11:13:26 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2016-10-03 13:27:36 +02:00
|
|
|
#ifdef HAVE_POLL_H
|
|
|
|
# include <poll.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_POLL_H
|
|
|
|
# include <sys/poll.h>
|
|
|
|
#endif
|
2016-09-13 11:13:26 +02:00
|
|
|
#ifdef HAVE_LIBUDEV_H
|
|
|
|
# include <libudev.h>
|
|
|
|
#endif
|
2016-10-11 14:09:35 +02:00
|
|
|
#ifdef HAVE_LINUX_HIDRAW_H
|
|
|
|
# include <linux/hidraw.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
#endif
|
2016-09-08 10:12:50 +02:00
|
|
|
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
|
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2016-09-13 11:13:26 +02:00
|
|
|
#include "winnls.h"
|
2016-09-08 10:12:50 +02:00
|
|
|
#include "winternl.h"
|
|
|
|
#include "ddk/wdm.h"
|
2016-10-14 08:54:52 +02:00
|
|
|
#include "ddk/hidtypes.h"
|
2016-09-08 10:12:50 +02:00
|
|
|
#include "wine/debug.h"
|
2016-10-14 08:54:52 +02:00
|
|
|
#include "wine/unicode.h"
|
2016-09-08 10:12:50 +02:00
|
|
|
|
|
|
|
#include "bus.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(plugplay);
|
|
|
|
|
|
|
|
#ifdef HAVE_UDEV
|
|
|
|
|
2016-10-26 17:49:41 +02:00
|
|
|
WINE_DECLARE_DEBUG_CHANNEL(hid_report);
|
|
|
|
|
2016-09-13 11:13:26 +02:00
|
|
|
static struct udev *udev_context = NULL;
|
2016-09-08 10:12:50 +02:00
|
|
|
static DRIVER_OBJECT *udev_driver_obj = NULL;
|
|
|
|
|
2016-09-14 09:28:51 +02:00
|
|
|
static const WCHAR hidraw_busidW[] = {'H','I','D','R','A','W',0};
|
|
|
|
|
|
|
|
#include "initguid.h"
|
|
|
|
DEFINE_GUID(GUID_DEVCLASS_HIDRAW, 0x3def44ad,0x242e,0x46e5,0x82,0x6d,0x70,0x72,0x13,0xf3,0xaa,0x81);
|
|
|
|
|
2016-10-03 13:29:49 +02:00
|
|
|
struct platform_private
|
|
|
|
{
|
|
|
|
struct udev_device *udev_device;
|
2016-10-11 14:09:35 +02:00
|
|
|
int device_fd;
|
2016-10-26 17:49:41 +02:00
|
|
|
|
|
|
|
HANDLE report_thread;
|
|
|
|
int control_pipe[2];
|
2016-10-03 13:29:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct platform_private *impl_from_DEVICE_OBJECT(DEVICE_OBJECT *device)
|
|
|
|
{
|
|
|
|
return (struct platform_private *)get_platform_private(device);
|
|
|
|
}
|
|
|
|
|
2016-10-14 08:54:33 +02:00
|
|
|
static inline WCHAR *strdupAtoW(const char *src)
|
|
|
|
{
|
|
|
|
WCHAR *dst;
|
|
|
|
DWORD len;
|
|
|
|
if (!src) return NULL;
|
|
|
|
len = MultiByteToWideChar(CP_UNIXCP, 0, src, -1, NULL, 0);
|
|
|
|
if ((dst = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR))))
|
|
|
|
MultiByteToWideChar(CP_UNIXCP, 0, src, -1, dst, len);
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2016-09-13 11:13:26 +02:00
|
|
|
static DWORD get_sysattr_dword(struct udev_device *dev, const char *sysattr, int base)
|
|
|
|
{
|
|
|
|
const char *attr = udev_device_get_sysattr_value(dev, sysattr);
|
|
|
|
if (!attr)
|
|
|
|
{
|
|
|
|
WARN("Could not get %s from device\n", sysattr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return strtol(attr, NULL, base);
|
|
|
|
}
|
|
|
|
|
|
|
|
static WCHAR *get_sysattr_string(struct udev_device *dev, const char *sysattr)
|
|
|
|
{
|
|
|
|
const char *attr = udev_device_get_sysattr_value(dev, sysattr);
|
|
|
|
if (!attr)
|
|
|
|
{
|
|
|
|
WARN("Could not get %s from device\n", sysattr);
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-10-14 08:54:33 +02:00
|
|
|
return strdupAtoW(attr);
|
2016-09-13 11:13:26 +02:00
|
|
|
}
|
|
|
|
|
2016-10-03 13:29:49 +02:00
|
|
|
static int compare_platform_device(DEVICE_OBJECT *device, void *platform_dev)
|
|
|
|
{
|
|
|
|
struct udev_device *dev1 = impl_from_DEVICE_OBJECT(device)->udev_device;
|
|
|
|
struct udev_device *dev2 = platform_dev;
|
|
|
|
return strcmp(udev_device_get_syspath(dev1), udev_device_get_syspath(dev2));
|
|
|
|
}
|
|
|
|
|
2016-10-11 14:09:35 +02:00
|
|
|
static NTSTATUS hidraw_get_reportdescriptor(DEVICE_OBJECT *device, BYTE *buffer, DWORD length, DWORD *out_length)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LINUX_HIDRAW_H
|
|
|
|
struct hidraw_report_descriptor descriptor;
|
|
|
|
struct platform_private *private = impl_from_DEVICE_OBJECT(device);
|
|
|
|
|
|
|
|
if (ioctl(private->device_fd, HIDIOCGRDESCSIZE, &descriptor.size) == -1)
|
|
|
|
{
|
|
|
|
WARN("ioctl(HIDIOCGRDESCSIZE) failed: %d %s\n", errno, strerror(errno));
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out_length = descriptor.size;
|
|
|
|
|
|
|
|
if (length < descriptor.size)
|
|
|
|
return STATUS_BUFFER_TOO_SMALL;
|
|
|
|
if (!descriptor.size)
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
|
|
|
|
if (ioctl(private->device_fd, HIDIOCGRDESC, &descriptor) == -1)
|
|
|
|
{
|
|
|
|
WARN("ioctl(HIDIOCGRDESC) failed: %d %s\n", errno, strerror(errno));
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(buffer, descriptor.value, descriptor.size);
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
#else
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-10-14 08:54:52 +02:00
|
|
|
static NTSTATUS hidraw_get_string(DEVICE_OBJECT *device, DWORD index, WCHAR *buffer, DWORD length)
|
|
|
|
{
|
|
|
|
struct udev_device *usbdev;
|
|
|
|
struct platform_private *private = impl_from_DEVICE_OBJECT(device);
|
|
|
|
WCHAR *str = NULL;
|
|
|
|
|
|
|
|
usbdev = udev_device_get_parent_with_subsystem_devtype(private->udev_device, "usb", "usb_device");
|
|
|
|
if (usbdev)
|
|
|
|
{
|
|
|
|
switch (index)
|
|
|
|
{
|
|
|
|
case HID_STRING_ID_IPRODUCT:
|
|
|
|
str = get_sysattr_string(usbdev, "product");
|
|
|
|
break;
|
|
|
|
case HID_STRING_ID_IMANUFACTURER:
|
|
|
|
str = get_sysattr_string(usbdev, "manufacturer");
|
|
|
|
break;
|
|
|
|
case HID_STRING_ID_ISERIALNUMBER:
|
|
|
|
str = get_sysattr_string(usbdev, "serial");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("Unhandled string index %08x\n", index);
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LINUX_HIDRAW_H
|
|
|
|
switch (index)
|
|
|
|
{
|
|
|
|
case HID_STRING_ID_IPRODUCT:
|
|
|
|
{
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
if (ioctl(private->device_fd, HIDIOCGRAWNAME(MAX_PATH), buf) == -1)
|
|
|
|
WARN("ioctl(HIDIOCGRAWNAME) failed: %d %s\n", errno, strerror(errno));
|
|
|
|
else
|
|
|
|
str = strdupAtoW(buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case HID_STRING_ID_IMANUFACTURER:
|
|
|
|
break;
|
|
|
|
case HID_STRING_ID_ISERIALNUMBER:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR("Unhandled string index %08x\n", index);
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
{
|
|
|
|
if (!length) return STATUS_BUFFER_TOO_SMALL;
|
|
|
|
buffer[0] = 0;
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (length <= strlenW(str))
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, str);
|
|
|
|
return STATUS_BUFFER_TOO_SMALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpyW(buffer, str);
|
|
|
|
HeapFree(GetProcessHeap(), 0, str);
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2016-10-26 17:49:41 +02:00
|
|
|
static DWORD CALLBACK device_report_thread(void *args)
|
|
|
|
{
|
|
|
|
DEVICE_OBJECT *device = (DEVICE_OBJECT*)args;
|
|
|
|
struct platform_private *private = impl_from_DEVICE_OBJECT(device);
|
|
|
|
struct pollfd plfds[2];
|
|
|
|
|
|
|
|
plfds[0].fd = private->device_fd;
|
|
|
|
plfds[0].events = POLLIN;
|
|
|
|
plfds[0].revents = 0;
|
|
|
|
plfds[1].fd = private->control_pipe[0];
|
|
|
|
plfds[1].events = POLLIN;
|
|
|
|
plfds[1].revents = 0;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
int size;
|
|
|
|
BYTE report_buffer[1024];
|
|
|
|
|
|
|
|
if (poll(plfds, 2, -1) <= 0) continue;
|
|
|
|
if (plfds[1].revents)
|
|
|
|
break;
|
|
|
|
size = read(plfds[0].fd, report_buffer, sizeof(report_buffer));
|
|
|
|
if (size == -1)
|
|
|
|
TRACE_(hid_report)("Read failed. Likely an unplugged device\n");
|
|
|
|
else if (size == 0)
|
|
|
|
TRACE_(hid_report)("Failed to read report\n");
|
|
|
|
else
|
|
|
|
process_hid_report(device, report_buffer, size);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static NTSTATUS begin_report_processing(DEVICE_OBJECT *device)
|
|
|
|
{
|
|
|
|
struct platform_private *private = impl_from_DEVICE_OBJECT(device);
|
|
|
|
|
|
|
|
if (private->report_thread)
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
|
|
|
|
if (pipe(private->control_pipe) != 0)
|
|
|
|
{
|
|
|
|
ERR("Control pipe creation failed\n");
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
|
|
|
private->report_thread = CreateThread(NULL, 0, device_report_thread, device, 0, NULL);
|
|
|
|
if (!private->report_thread)
|
|
|
|
{
|
|
|
|
ERR("Unable to create device report thread\n");
|
|
|
|
close(private->control_pipe[0]);
|
|
|
|
close(private->control_pipe[1]);
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2016-10-27 15:37:41 +02:00
|
|
|
static NTSTATUS hidraw_set_output_report(DEVICE_OBJECT *device, UCHAR id, BYTE *report, DWORD length, ULONG_PTR *written)
|
|
|
|
{
|
|
|
|
struct platform_private* ext = impl_from_DEVICE_OBJECT(device);
|
|
|
|
ssize_t rc;
|
2016-11-29 14:58:27 +01:00
|
|
|
|
|
|
|
if (id != 0)
|
|
|
|
rc = write(ext->device_fd, report, length);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BYTE report_buffer[1024];
|
|
|
|
|
|
|
|
if (length + 1 > sizeof(report_buffer))
|
|
|
|
{
|
|
|
|
ERR("Output report buffer too small\n");
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
|
|
|
report_buffer[0] = 0;
|
|
|
|
memcpy(&report_buffer[1], report, length);
|
|
|
|
rc = write(ext->device_fd, report_buffer, length + 1);
|
|
|
|
}
|
2016-10-27 15:37:41 +02:00
|
|
|
if (rc > 0)
|
|
|
|
{
|
|
|
|
*written = rc;
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*written = 0;
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 14:12:24 +01:00
|
|
|
static NTSTATUS hidraw_get_feature_report(DEVICE_OBJECT *device, UCHAR id, BYTE *report, DWORD length, ULONG_PTR *read)
|
|
|
|
{
|
2016-12-06 20:09:27 +01:00
|
|
|
#if defined(HAVE_LINUX_HIDRAW_H) && defined(HIDIOCGFEATURE)
|
2016-11-02 14:12:24 +01:00
|
|
|
int rc;
|
|
|
|
struct platform_private* ext = impl_from_DEVICE_OBJECT(device);
|
2016-11-29 14:58:27 +01:00
|
|
|
report[0] = id;
|
2016-11-02 14:12:24 +01:00
|
|
|
length = min(length, 0x1fff);
|
|
|
|
rc = ioctl(ext->device_fd, HIDIOCGFEATURE(length), report);
|
|
|
|
if (rc >= 0)
|
|
|
|
{
|
|
|
|
*read = rc;
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*read = 0;
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
*read = 0;
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static NTSTATUS hidraw_set_feature_report(DEVICE_OBJECT *device, UCHAR id, BYTE *report, DWORD length, ULONG_PTR *written)
|
|
|
|
{
|
2016-12-06 20:09:27 +01:00
|
|
|
#if defined(HAVE_LINUX_HIDRAW_H) && defined(HIDIOCSFEATURE)
|
2016-11-02 14:12:24 +01:00
|
|
|
int rc;
|
|
|
|
struct platform_private* ext = impl_from_DEVICE_OBJECT(device);
|
2016-11-29 14:58:27 +01:00
|
|
|
BYTE *feature_buffer;
|
|
|
|
BYTE buffer[1024];
|
|
|
|
|
|
|
|
if (id == 0)
|
|
|
|
{
|
2017-01-17 18:28:16 +01:00
|
|
|
if (length + 1 > sizeof(buffer))
|
2016-11-29 14:58:27 +01:00
|
|
|
{
|
|
|
|
ERR("Output feature buffer too small\n");
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
buffer[0] = 0;
|
|
|
|
memcpy(&buffer[1], report, length);
|
|
|
|
feature_buffer = buffer;
|
|
|
|
length = length + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
feature_buffer = report;
|
2016-11-02 14:12:24 +01:00
|
|
|
length = min(length, 0x1fff);
|
2016-11-29 14:58:27 +01:00
|
|
|
rc = ioctl(ext->device_fd, HIDIOCSFEATURE(length), feature_buffer);
|
2016-11-02 14:12:24 +01:00
|
|
|
if (rc >= 0)
|
|
|
|
{
|
|
|
|
*written = rc;
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*written = 0;
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
*written = 0;
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-10-03 13:29:49 +02:00
|
|
|
static const platform_vtbl hidraw_vtbl =
|
|
|
|
{
|
|
|
|
compare_platform_device,
|
2016-10-11 14:09:35 +02:00
|
|
|
hidraw_get_reportdescriptor,
|
2016-10-14 08:54:52 +02:00
|
|
|
hidraw_get_string,
|
2016-10-26 17:49:41 +02:00
|
|
|
begin_report_processing,
|
2016-10-27 15:37:41 +02:00
|
|
|
hidraw_set_output_report,
|
2016-11-02 14:12:24 +01:00
|
|
|
hidraw_get_feature_report,
|
|
|
|
hidraw_set_feature_report,
|
2016-10-03 13:29:49 +02:00
|
|
|
};
|
|
|
|
|
2016-09-13 11:13:26 +02:00
|
|
|
static void try_add_device(struct udev_device *dev)
|
|
|
|
{
|
|
|
|
DWORD vid = 0, pid = 0, version = 0;
|
|
|
|
struct udev_device *usbdev;
|
2016-09-14 09:28:51 +02:00
|
|
|
DEVICE_OBJECT *device = NULL;
|
|
|
|
const char *subsystem;
|
2016-09-13 11:13:26 +02:00
|
|
|
const char *devnode;
|
|
|
|
WCHAR *serial = NULL;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if (!(devnode = udev_device_get_devnode(dev)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((fd = open(devnode, O_RDWR)) == -1)
|
|
|
|
{
|
|
|
|
WARN("Unable to open udev device %s: %s\n", debugstr_a(devnode), strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
usbdev = udev_device_get_parent_with_subsystem_devtype(dev, "usb", "usb_device");
|
|
|
|
if (usbdev)
|
|
|
|
{
|
|
|
|
vid = get_sysattr_dword(usbdev, "idVendor", 16);
|
|
|
|
pid = get_sysattr_dword(usbdev, "idProduct", 16);
|
|
|
|
version = get_sysattr_dword(usbdev, "version", 10);
|
|
|
|
serial = get_sysattr_string(usbdev, "serial");
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Found udev device %s (vid %04x, pid %04x, version %u, serial %s)\n",
|
|
|
|
debugstr_a(devnode), vid, pid, version, debugstr_w(serial));
|
|
|
|
|
2016-09-14 09:28:51 +02:00
|
|
|
subsystem = udev_device_get_subsystem(dev);
|
|
|
|
if (strcmp(subsystem, "hidraw") == 0)
|
|
|
|
{
|
2016-10-03 13:29:49 +02:00
|
|
|
device = bus_create_hid_device(udev_driver_obj, hidraw_busidW, vid, pid, version, 0, serial, FALSE,
|
|
|
|
&GUID_DEVCLASS_HIDRAW, &hidraw_vtbl, sizeof(struct platform_private));
|
2016-09-14 09:28:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (device)
|
2016-10-03 13:29:49 +02:00
|
|
|
{
|
2016-10-11 14:09:35 +02:00
|
|
|
struct platform_private *private = impl_from_DEVICE_OBJECT(device);
|
|
|
|
private->udev_device = udev_device_ref(dev);
|
|
|
|
private->device_fd = fd;
|
2016-10-03 13:29:49 +02:00
|
|
|
IoInvalidateDeviceRelations(device, BusRelations);
|
|
|
|
}
|
2016-09-14 09:28:51 +02:00
|
|
|
else
|
2016-10-11 14:09:35 +02:00
|
|
|
{
|
2016-09-14 09:28:51 +02:00
|
|
|
WARN("Ignoring device %s with subsystem %s\n", debugstr_a(devnode), subsystem);
|
2016-10-11 14:09:35 +02:00
|
|
|
close(fd);
|
|
|
|
}
|
2016-09-14 09:28:51 +02:00
|
|
|
|
2016-09-13 11:13:26 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, serial);
|
|
|
|
}
|
|
|
|
|
2016-10-03 13:27:36 +02:00
|
|
|
static void try_remove_device(struct udev_device *dev)
|
|
|
|
{
|
2016-10-03 13:29:49 +02:00
|
|
|
DEVICE_OBJECT *device = bus_find_hid_device(&hidraw_vtbl, dev);
|
2016-10-11 14:09:35 +02:00
|
|
|
struct platform_private *private;
|
2016-10-03 13:29:49 +02:00
|
|
|
if (!device) return;
|
|
|
|
|
2016-10-26 17:49:41 +02:00
|
|
|
IoInvalidateDeviceRelations(device, RemovalRelations);
|
|
|
|
|
2016-10-11 14:09:35 +02:00
|
|
|
private = impl_from_DEVICE_OBJECT(device);
|
2016-10-26 17:49:41 +02:00
|
|
|
|
|
|
|
if (private->report_thread)
|
|
|
|
{
|
|
|
|
write(private->control_pipe[1], "q", 1);
|
|
|
|
WaitForSingleObject(private->report_thread, INFINITE);
|
|
|
|
close(private->control_pipe[0]);
|
|
|
|
close(private->control_pipe[1]);
|
|
|
|
CloseHandle(private->report_thread);
|
|
|
|
}
|
|
|
|
|
2016-10-11 14:09:35 +02:00
|
|
|
dev = private->udev_device;
|
|
|
|
close(private->device_fd);
|
2016-10-03 13:29:49 +02:00
|
|
|
bus_remove_hid_device(device);
|
|
|
|
udev_device_unref(dev);
|
2016-10-03 13:27:36 +02:00
|
|
|
}
|
|
|
|
|
2016-09-13 11:13:26 +02:00
|
|
|
static void build_initial_deviceset(void)
|
|
|
|
{
|
|
|
|
struct udev_enumerate *enumerate;
|
|
|
|
struct udev_list_entry *devices, *dev_list_entry;
|
|
|
|
|
|
|
|
enumerate = udev_enumerate_new(udev_context);
|
|
|
|
if (!enumerate)
|
|
|
|
{
|
|
|
|
WARN("Unable to create udev enumeration object\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (udev_enumerate_add_match_subsystem(enumerate, "hidraw") < 0)
|
|
|
|
WARN("Failed to add subsystem 'hidraw' to enumeration\n");
|
|
|
|
|
|
|
|
if (udev_enumerate_scan_devices(enumerate) < 0)
|
|
|
|
WARN("Enumeration scan failed\n");
|
|
|
|
|
|
|
|
devices = udev_enumerate_get_list_entry(enumerate);
|
|
|
|
udev_list_entry_foreach(dev_list_entry, devices)
|
|
|
|
{
|
|
|
|
struct udev_device *dev;
|
|
|
|
const char *path;
|
|
|
|
|
|
|
|
path = udev_list_entry_get_name(dev_list_entry);
|
|
|
|
if ((dev = udev_device_new_from_syspath(udev_context, path)))
|
|
|
|
{
|
|
|
|
try_add_device(dev);
|
|
|
|
udev_device_unref(dev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
udev_enumerate_unref(enumerate);
|
|
|
|
}
|
|
|
|
|
2016-10-03 13:27:36 +02:00
|
|
|
static struct udev_monitor *create_monitor(struct pollfd *pfd)
|
|
|
|
{
|
|
|
|
struct udev_monitor *monitor;
|
|
|
|
|
|
|
|
monitor = udev_monitor_new_from_netlink(udev_context, "udev");
|
|
|
|
if (!monitor)
|
|
|
|
{
|
|
|
|
WARN("Unable to get udev monitor object\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (udev_monitor_filter_add_match_subsystem_devtype(monitor, "hidraw", NULL) < 0)
|
|
|
|
WARN("Failed to add subsystem 'hidraw' to monitor\n");
|
|
|
|
|
|
|
|
if (udev_monitor_enable_receiving(monitor) < 0)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if ((pfd->fd = udev_monitor_get_fd(monitor)) >= 0)
|
|
|
|
{
|
|
|
|
pfd->events = POLLIN;
|
|
|
|
return monitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
error:
|
|
|
|
WARN("Failed to start monitoring\n");
|
|
|
|
udev_monitor_unref(monitor);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void process_monitor_event(struct udev_monitor *monitor)
|
|
|
|
{
|
|
|
|
struct udev_device *dev;
|
|
|
|
const char *action;
|
|
|
|
|
|
|
|
dev = udev_monitor_receive_device(monitor);
|
|
|
|
if (!dev)
|
|
|
|
{
|
|
|
|
FIXME("Failed to get device that has changed\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
action = udev_device_get_action(dev);
|
|
|
|
TRACE("Received action %s for udev device %s\n", debugstr_a(action),
|
|
|
|
debugstr_a(udev_device_get_devnode(dev)));
|
|
|
|
|
|
|
|
if (!action)
|
|
|
|
WARN("No action received\n");
|
|
|
|
else if (strcmp(action, "add") == 0)
|
|
|
|
try_add_device(dev);
|
|
|
|
else if (strcmp(action, "remove") == 0)
|
|
|
|
try_remove_device(dev);
|
|
|
|
else
|
|
|
|
WARN("Unhandled action %s\n", debugstr_a(action));
|
|
|
|
|
|
|
|
udev_device_unref(dev);
|
|
|
|
}
|
|
|
|
|
2016-10-03 13:24:44 +02:00
|
|
|
static DWORD CALLBACK deviceloop_thread(void *args)
|
|
|
|
{
|
2016-10-03 13:27:36 +02:00
|
|
|
struct udev_monitor *monitor;
|
2016-10-03 13:24:44 +02:00
|
|
|
HANDLE init_done = args;
|
2016-10-03 13:27:36 +02:00
|
|
|
struct pollfd pfd;
|
2016-10-03 13:24:44 +02:00
|
|
|
|
2016-10-03 13:27:36 +02:00
|
|
|
monitor = create_monitor(&pfd);
|
2016-10-03 13:24:44 +02:00
|
|
|
build_initial_deviceset();
|
|
|
|
SetEvent(init_done);
|
|
|
|
|
2016-10-03 13:27:36 +02:00
|
|
|
while (monitor)
|
|
|
|
{
|
|
|
|
if (poll(&pfd, 1, -1) <= 0) continue;
|
|
|
|
process_monitor_event(monitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Monitor thread exiting\n");
|
|
|
|
if (monitor)
|
|
|
|
udev_monitor_unref(monitor);
|
2016-10-03 13:24:44 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-08 10:12:50 +02:00
|
|
|
NTSTATUS WINAPI udev_driver_init(DRIVER_OBJECT *driver, UNICODE_STRING *registry_path)
|
|
|
|
{
|
2016-10-03 13:24:44 +02:00
|
|
|
HANDLE events[2];
|
|
|
|
DWORD result;
|
|
|
|
|
2016-09-08 10:12:50 +02:00
|
|
|
TRACE("(%p, %s)\n", driver, debugstr_w(registry_path->Buffer));
|
|
|
|
|
2016-09-13 11:13:26 +02:00
|
|
|
if (!(udev_context = udev_new()))
|
|
|
|
{
|
|
|
|
ERR("Can't create udev object\n");
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
|
2016-09-08 10:12:50 +02:00
|
|
|
udev_driver_obj = driver;
|
|
|
|
driver->MajorFunction[IRP_MJ_PNP] = common_pnp_dispatch;
|
2016-10-06 14:19:27 +02:00
|
|
|
driver->MajorFunction[IRP_MJ_INTERNAL_DEVICE_CONTROL] = hid_internal_dispatch;
|
2016-09-08 10:12:50 +02:00
|
|
|
|
2016-10-03 13:24:44 +02:00
|
|
|
if (!(events[0] = CreateEventW(NULL, TRUE, FALSE, NULL)))
|
|
|
|
goto error;
|
|
|
|
if (!(events[1] = CreateThread(NULL, 0, deviceloop_thread, events[0], 0, NULL)))
|
|
|
|
{
|
|
|
|
CloseHandle(events[0]);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = WaitForMultipleObjects(2, events, FALSE, INFINITE);
|
|
|
|
CloseHandle(events[0]);
|
|
|
|
CloseHandle(events[1]);
|
|
|
|
if (result == WAIT_OBJECT_0)
|
|
|
|
{
|
|
|
|
TRACE("Initialization successful\n");
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
error:
|
|
|
|
ERR("Failed to initialize udev device thread\n");
|
|
|
|
udev_unref(udev_context);
|
|
|
|
udev_context = NULL;
|
|
|
|
udev_driver_obj = NULL;
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
2016-09-08 10:12:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
NTSTATUS WINAPI udev_driver_init(DRIVER_OBJECT *driver, UNICODE_STRING *registry_path)
|
|
|
|
{
|
|
|
|
WARN("Wine was compiled without UDEV support\n");
|
|
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAVE_UDEV */
|