2015-07-06 20:09:14 +02:00
|
|
|
/*
|
|
|
|
* WINE Hid device services
|
|
|
|
*
|
|
|
|
* Copyright 2015 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "hid.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "wine/list.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(hid);
|
|
|
|
|
|
|
|
static struct list minidriver_list = LIST_INIT(minidriver_list);
|
|
|
|
|
2015-09-09 17:20:11 +02:00
|
|
|
minidriver* find_minidriver(DRIVER_OBJECT *driver)
|
2015-07-06 20:09:14 +02:00
|
|
|
{
|
|
|
|
minidriver *md;
|
|
|
|
LIST_FOR_EACH_ENTRY(md, &minidriver_list, minidriver, entry)
|
|
|
|
{
|
|
|
|
if (md->minidriver.DriverObject == driver)
|
|
|
|
return md;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VOID WINAPI UnloadDriver(DRIVER_OBJECT *driver)
|
|
|
|
{
|
|
|
|
minidriver *md;
|
|
|
|
|
|
|
|
TRACE("Driver Unload\n");
|
|
|
|
md = find_minidriver(driver);
|
|
|
|
if (md)
|
|
|
|
{
|
|
|
|
if (md->DriverUnload)
|
|
|
|
md->DriverUnload(md->minidriver.DriverObject);
|
|
|
|
list_remove(&md->entry);
|
|
|
|
HeapFree( GetProcessHeap(), 0, md );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NTSTATUS WINAPI HidRegisterMinidriver(HID_MINIDRIVER_REGISTRATION *registration)
|
|
|
|
{
|
|
|
|
minidriver *driver;
|
|
|
|
driver = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*driver));
|
|
|
|
|
|
|
|
if (!driver)
|
|
|
|
return STATUS_NO_MEMORY;
|
|
|
|
|
|
|
|
driver->DriverUnload = registration->DriverObject->DriverUnload;
|
|
|
|
registration->DriverObject->DriverUnload = UnloadDriver;
|
|
|
|
|
2015-09-14 16:58:35 +02:00
|
|
|
registration->DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = HID_Device_ioctl;
|
2015-09-14 16:58:44 +02:00
|
|
|
registration->DriverObject->MajorFunction[IRP_MJ_READ] = HID_Device_read;
|
2015-10-08 21:34:49 +02:00
|
|
|
registration->DriverObject->MajorFunction[IRP_MJ_WRITE] = HID_Device_write;
|
2015-09-14 16:58:39 +02:00
|
|
|
registration->DriverObject->MajorFunction[IRP_MJ_CREATE] = HID_Device_create;
|
|
|
|
registration->DriverObject->MajorFunction[IRP_MJ_CLOSE] = HID_Device_close;
|
2015-09-14 16:58:35 +02:00
|
|
|
|
2016-04-05 15:45:34 +02:00
|
|
|
driver->PNPDispatch = registration->DriverObject->MajorFunction[IRP_MJ_PNP];
|
|
|
|
registration->DriverObject->MajorFunction[IRP_MJ_PNP] = HID_PNP_Dispatch;
|
|
|
|
|
2015-09-09 17:20:11 +02:00
|
|
|
driver->AddDevice = registration->DriverObject->DriverExtension->AddDevice;
|
|
|
|
registration->DriverObject->DriverExtension->AddDevice = PNP_AddDevice;
|
|
|
|
|
2015-07-06 20:09:14 +02:00
|
|
|
driver->minidriver = *registration;
|
|
|
|
list_add_tail(&minidriver_list, &driver->entry);
|
|
|
|
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
2015-09-09 17:20:11 +02:00
|
|
|
|
|
|
|
static NTSTATUS WINAPI internalComplete(DEVICE_OBJECT *deviceObject, IRP *irp,
|
2016-10-18 17:07:59 +02:00
|
|
|
void *context)
|
2015-09-09 17:20:11 +02:00
|
|
|
{
|
2016-10-18 17:07:59 +02:00
|
|
|
HANDLE event = context;
|
|
|
|
SetEvent(event);
|
2015-09-09 17:20:11 +02:00
|
|
|
return STATUS_MORE_PROCESSING_REQUIRED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NTSTATUS call_minidriver(ULONG code, DEVICE_OBJECT *device, void *in_buff, ULONG in_size, void *out_buff, ULONG out_size)
|
|
|
|
{
|
|
|
|
IRP *irp;
|
|
|
|
IO_STATUS_BLOCK irp_status;
|
|
|
|
NTSTATUS status;
|
|
|
|
HANDLE event = CreateEventA(NULL, FALSE, FALSE, NULL);
|
|
|
|
|
|
|
|
irp = IoBuildDeviceIoControlRequest(code, device, in_buff, in_size,
|
2016-10-26 21:53:20 +02:00
|
|
|
out_buff, out_size, TRUE, NULL, &irp_status);
|
2015-09-09 17:20:11 +02:00
|
|
|
|
2016-10-18 17:07:59 +02:00
|
|
|
IoSetCompletionRoutine(irp, internalComplete, event, TRUE, TRUE, TRUE);
|
2016-10-21 05:58:47 +02:00
|
|
|
status = IoCallDriver(device, irp);
|
2015-09-09 17:20:11 +02:00
|
|
|
|
2016-10-21 05:58:47 +02:00
|
|
|
if (status == STATUS_PENDING)
|
2015-09-09 17:20:11 +02:00
|
|
|
WaitForSingleObject(event, INFINITE);
|
|
|
|
|
|
|
|
status = irp->IoStatus.u.Status;
|
|
|
|
|
|
|
|
IoCompleteRequest(irp, IO_NO_INCREMENT );
|
|
|
|
CloseHandle(event);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|