📄 control.cpp
字号:
// Control.cpp -- IOCTL handlers for ioctl driver
// Copyright (C) 1999 by Walter Oney
// All rights reserved
#include "stddcls.h"
#include "driver.h"
#include "ioctls.h"
///////////////////////////////////////////////////////////////////////////////
#pragma PAGEDCODE
NTSTATUS DispatchControl(PDEVICE_OBJECT fdo, PIRP Irp)
{ // DispatchControl
PAGED_CODE();
PDEVICE_EXTENSION pdx = (PDEVICE_EXTENSION) fdo->DeviceExtension;
NTSTATUS status = IoAcquireRemoveLock(&pdx->RemoveLock, Irp);
if (!NT_SUCCESS(status))
return CompleteRequest(Irp, status, 0);
ULONG info = 0;
PIO_STACK_LOCATION stack = IoGetCurrentIrpStackLocation(Irp);
ULONG cbin = stack->Parameters.DeviceIoControl.InputBufferLength;
ULONG cbout = stack->Parameters.DeviceIoControl.OutputBufferLength;
ULONG code = stack->Parameters.DeviceIoControl.IoControlCode;
(void) cbin; // get rid of compiler warning 4189
switch (code)
{ // process request
case IOCTL_GET_VERSION_BUFFERED: // code == 0x800
{ // IOCTL_GET_VERSION_BUFFERED
if (cbout < sizeof(ULONG))
{ // not enough output data
status = STATUS_INVALID_BUFFER_SIZE;
break;
} // not enough output data
PULONG pversion = (PULONG) Irp->AssociatedIrp.SystemBuffer;
info = sizeof(ULONG);
*pversion = 0x04000A;
break;
} // IOCTL_GET_VERSION_BUFFERED
case IOCTL_GET_VERSION_DIRECT: // code == 0x801
{ // IOCTL_GET_VERSION_DIRECT
if (cbout < sizeof(ULONG))
{ // not enough output data
status = STATUS_INVALID_BUFFER_SIZE;
break;
} // not enough output data
// If the system is low on memory, MmGetSystemAddressForMdl will
// bug-check unless the MDL_MAPPING_CAN_FAIL flag is set in MdlFlags.
// Win2K has a new function named MmGetSystemAddressForMdlSafe that
// returns NULL instead, but Win98 doesn't export it. Since this
// driver uses GENERIC, we call GenericGetSystemAddressForMdl, which
// performs the "safe" version of this operation in a platform
// independent way. If you weren't using GENERIC, you could temporarily
// set the MDL_MAPPING_CAN_FAIL flag across a call to MmGetSystemAddressForMdl.
// You would also need to suppress the deprecation warning you would get.
// Rest assured that your driver would pass the WHQL verifier tests either way.
PULONG pversion = (PULONG) GenericGetSystemAddressForMdl(Irp->MdlAddress);
if (pversion)
{
*pversion = 0x0004000B;
info = sizeof(ULONG);
}
else
{
KdPrint((DRIVERNAME " - MmMapLockedPages failed\n"));
status = STATUS_INSUFFICIENT_RESOURCES;
}
break;
} // IOCTL_GET_VERSION_DIRECT
case IOCTL_GET_VERSION_NEITHER: // code == 0x802
{ // IOCTL_GET_VERSION_NEITHER
if (cbout < sizeof(ULONG))
{ // not enough output data
status = STATUS_INVALID_BUFFER_SIZE;
break;
} // not enough output data
PULONG pversion = (PULONG) Irp->UserBuffer;
if (Irp->RequestorMode != KernelMode)
{ // untrusted caller
__try
{
ProbeForWrite(pversion, sizeof(ULONG), 1);
*pversion = 0x0004000C;
}
__except(EXCEPTION_EXECUTE_HANDLER)
{
status = GetExceptionCode();
break;
}
} // untrusted caller
else
*pversion = 0x0004000C; // trusted caller
info = sizeof(ULONG);
break;
} // IOCTL_GET_VERSION_NEITHER
default:
status = STATUS_INVALID_DEVICE_REQUEST;
break;
} // process request
IoReleaseRemoveLock(&pdx->RemoveLock, Irp);
return CompleteRequest(Irp, status, info);
} // DispatchControl
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -