forked from cezanne/usbip-win
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stub_dispatch.c
56 lines (51 loc) · 2.12 KB
/
stub_dispatch.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* libusb-win32, Generic Windows USB Library
* Copyright (c) 2002-2005 Stephan Meyer <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "stub_driver.h"
#include "stub_dbg.h"
#include "stub_irp.h"
NTSTATUS stub_dispatch_pnp(usbip_stub_dev_t *devstub, IRP *irp);
NTSTATUS stub_dispatch_power(usbip_stub_dev_t *devstub, IRP *irp);
NTSTATUS stub_dispatch_ioctl(usbip_stub_dev_t *devstub, IRP *irp);
NTSTATUS stub_dispatch_read(usbip_stub_dev_t *devstub, IRP *irp);
NTSTATUS stub_dispatch_write(usbip_stub_dev_t *devstub, IRP *irp);
NTSTATUS
stub_dispatch(PDEVICE_OBJECT devobj, IRP *irp)
{
usbip_stub_dev_t *devstub = (usbip_stub_dev_t *)devobj->DeviceExtension;
IO_STACK_LOCATION *irpstack = IoGetCurrentIrpStackLocation(irp);
DBGI(DBG_GENERAL | DBG_DISPATCH, "stub_dispatch: %s: Enter\n", dbg_dispatch_major(irpstack->MajorFunction));
switch (irpstack->MajorFunction) {
case IRP_MJ_PNP:
return stub_dispatch_pnp(devstub, irp);
case IRP_MJ_POWER:
// ID: 2960644 (farthen)
// You can't set the power state if the device is not handled at all
if (devstub->next_stack_dev == NULL) {
return complete_irp(irp, STATUS_INVALID_DEVICE_STATE, 0);
}
return stub_dispatch_power(devstub, irp);
case IRP_MJ_DEVICE_CONTROL:
return stub_dispatch_ioctl(devstub, irp);
case IRP_MJ_READ:
return stub_dispatch_read(devstub, irp);
case IRP_MJ_WRITE:
return stub_dispatch_write(devstub, irp);
default:
return pass_irp_down(devstub, irp, NULL, NULL);
}
}