mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
bf1b3cb175
The source code is licensed under MS-PL license, taken from Windows Driver Samples repository (https://github.com/microsoft/Windows-driver-samples/tree/master/storage/class/classpnp/) Synched with commit 88541f70c4273ecd30c8c7c72135bc038a00fd88 The driver is written for Windows 8+, so we compile it with ntoskrnl_vista statically linked and with NTDDI_WIN8 defined CORE-17129
133 lines
3.3 KiB
C
133 lines
3.3 KiB
C
/*++
|
||
|
||
Copyright (C) Microsoft Corporation, 1991 - 2005
|
||
|
||
Module Name:
|
||
|
||
dispatch.c
|
||
|
||
Abstract:
|
||
|
||
Code to support multiple dispatch tables.
|
||
|
||
Environment:
|
||
|
||
kernel mode only
|
||
|
||
Notes:
|
||
|
||
|
||
Revision History:
|
||
|
||
--*/
|
||
|
||
#include "classp.h"
|
||
|
||
#ifdef ALLOC_PRAGMA
|
||
#pragma alloc_text(PAGE, ClassInitializeDispatchTables)
|
||
#endif
|
||
|
||
DRIVER_DISPATCH ClassDispatchUnimplemented;
|
||
|
||
//
|
||
// Routines start
|
||
//
|
||
|
||
|
||
VOID
|
||
ClassInitializeDispatchTables(
|
||
PCLASS_DRIVER_EXTENSION DriverExtension
|
||
)
|
||
{
|
||
ULONG idx;
|
||
|
||
PAGED_CODE();
|
||
|
||
//
|
||
// Initialize the standard device dispatch table
|
||
//
|
||
|
||
for (idx = 0; idx <= IRP_MJ_MAXIMUM_FUNCTION; idx++) {
|
||
DriverExtension->DeviceMajorFunctionTable[idx] = ClassDispatchUnimplemented;
|
||
}
|
||
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_CREATE] = ClassCreateClose;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_CLOSE] = ClassCreateClose;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_READ] = ClassReadWrite;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_WRITE] = ClassReadWrite;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_DEVICE_CONTROL] = ClassDeviceControlDispatch;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_SCSI] = ClassInternalIoControl;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_SHUTDOWN] = ClassShutdownFlush;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_FLUSH_BUFFERS] = ClassShutdownFlush;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_PNP] = ClassDispatchPnp;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_POWER] = ClassDispatchPower;
|
||
DriverExtension->DeviceMajorFunctionTable[IRP_MJ_SYSTEM_CONTROL] = ClassSystemControl;
|
||
|
||
|
||
return;
|
||
}
|
||
|
||
|
||
NTSTATUS
|
||
NTAPI /* ReactOS Change: GCC Does not support STDCALL by default */
|
||
ClassGlobalDispatch(
|
||
IN PDEVICE_OBJECT DeviceObject,
|
||
IN PIRP Irp
|
||
)
|
||
|
||
{
|
||
PCOMMON_DEVICE_EXTENSION commonExtension = DeviceObject->DeviceExtension;
|
||
PIO_STACK_LOCATION irpStack = IoGetCurrentIrpStackLocation(Irp);
|
||
// Code Analysis cannot analyze the code paths specific to clients.
|
||
_Analysis_assume_(FALSE);
|
||
return (commonExtension->DispatchTable[irpStack->MajorFunction])(DeviceObject, Irp);
|
||
|
||
}
|
||
|
||
NTSTATUS
|
||
NTAPI /* ReactOS Change: GCC Does not support STDCALL by default */
|
||
ClassDispatchUnimplemented(
|
||
IN PDEVICE_OBJECT DeviceObject,
|
||
IN PIRP Irp
|
||
)
|
||
/*++
|
||
|
||
Routine Description:
|
||
|
||
This function is the default dispatch routine. Its
|
||
responsibility is simply to set the status in the packet to indicate
|
||
that the operation requested is invalid for this device type, and then
|
||
complete the packet.
|
||
|
||
Arguments:
|
||
|
||
DeviceObject - Specifies the device object for which this request is
|
||
bound. Ignored by this routine.
|
||
|
||
Irp - Specifies the address of the I/O Request Packet (IRP) for this
|
||
request.
|
||
|
||
Return Value:
|
||
|
||
The final status is always STATUS_INVALID_DEVICE_REQUEST.
|
||
|
||
|
||
--*/
|
||
|
||
{
|
||
UNREFERENCED_PARAMETER( DeviceObject );
|
||
|
||
//
|
||
// Simply store the appropriate status, complete the request, and return
|
||
// the same status stored in the packet.
|
||
//
|
||
|
||
if ((IoGetCurrentIrpStackLocation(Irp))->MajorFunction == IRP_MJ_POWER) {
|
||
PoStartNextPowerIrp(Irp);
|
||
}
|
||
Irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST;
|
||
IoCompleteRequest( Irp, IO_NO_INCREMENT );
|
||
return STATUS_INVALID_DEVICE_REQUEST;
|
||
}
|
||
|
||
|