📄 intwmi.c
字号:
/*++
Module Name:
intwmi.c
Abstract:
Environment:
Kernel mode
Notes:
--*/
#include "intusb.h"
#include "intpwr.h"
#include "intpnp.h"
#include "intdev.h"
#include "intrwr.h"
#include "intwmi.h"
#include "intusr.h"
#define MOFRESOURCENAME L"MofResourceName"
#define WMI_INTUSB_DRIVER_INFORMATION 0
DEFINE_GUID (INTUSB_WMI_STD_DATA_GUID,
0xBBA21300, 0x6DD3, 0x11d2, 0xB8, 0x44, 0x00, 0xC0, 0x4F, 0xAD, 0x51, 0x71);
WMIGUIDREGINFO IntWmiGuidList[1] = { {
&INTUSB_WMI_STD_DATA_GUID, 1, 0 // driver information
}
};
NTSTATUS
IntUsb_WmiRegistration(
IN OUT PDEVICE_EXTENSION DeviceExtension
)
/*++
Routine Description:
Registers with WMI as a data provider for this
instance of the device
Arguments:
Return Value:
--*/
{
NTSTATUS ntStatus;
PAGED_CODE();
DeviceExtension->WmiLibInfo.GuidCount =
sizeof (IntWmiGuidList) / sizeof (WMIGUIDREGINFO);
DeviceExtension->WmiLibInfo.GuidList = IntWmiGuidList;
DeviceExtension->WmiLibInfo.QueryWmiRegInfo = IntUsb_QueryWmiRegInfo;
DeviceExtension->WmiLibInfo.QueryWmiDataBlock = IntUsb_QueryWmiDataBlock;
DeviceExtension->WmiLibInfo.SetWmiDataBlock = IntUsb_SetWmiDataBlock;
DeviceExtension->WmiLibInfo.SetWmiDataItem = IntUsb_SetWmiDataItem;
DeviceExtension->WmiLibInfo.ExecuteWmiMethod = NULL;
DeviceExtension->WmiLibInfo.WmiFunctionControl = NULL;
//
// Register with WMI
//
ntStatus = IoWMIRegistrationControl(DeviceExtension->FunctionalDeviceObject,
WMIREG_ACTION_REGISTER);
return ntStatus;
}
NTSTATUS
IntUsb_WmiDeRegistration(
IN OUT PDEVICE_EXTENSION DeviceExtension
)
/*++
Routine Description:
Inform WMI to remove this DeviceObject from its
list of providers. This function also
decrements the reference count of the deviceobject.
Arguments:
Return Value:
--*/
{
PAGED_CODE();
return IoWMIRegistrationControl(DeviceExtension->FunctionalDeviceObject,
WMIREG_ACTION_DEREGISTER);
}
NTSTATUS
IntUsb_DispatchSysCtrl(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp
)
/*++
Routine Description:
Arguments:
Return Value:
--*/
{
PDEVICE_EXTENSION deviceExtension;
SYSCTL_IRP_DISPOSITION disposition;
NTSTATUS ntStatus;
PIO_STACK_LOCATION irpStack;
PAGED_CODE();
irpStack = IoGetCurrentIrpStackLocation (Irp);
deviceExtension = (PDEVICE_EXTENSION) DeviceObject->DeviceExtension;
KdPrint( (WMIMinorFunctionString(irpStack->MinorFunction)));
if(Removed == deviceExtension->DeviceState) {
ntStatus = STATUS_DELETE_PENDING;
Irp->IoStatus.Status = ntStatus;
Irp->IoStatus.Information = 0;
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return ntStatus;
}
KdPrint( ("IntUsb_DispatchSysCtrl::"));
IntUsb_IoIncrement(deviceExtension);
ntStatus = WmiSystemControl(&deviceExtension->WmiLibInfo,
DeviceObject,
Irp,
&disposition);
switch(disposition) {
case IrpProcessed:
{
//
// This irp has been processed and may be completed or pending.
//
break;
}
case IrpNotCompleted:
{
//
// This irp has not been completed, but has been fully processed.
// we will complete it now
//
IoCompleteRequest(Irp, IO_NO_INCREMENT);
break;
}
case IrpForward:
case IrpNotWmi:
{
//
// This irp is either not a WMI irp or is a WMI irp targeted
// at a device lower in the stack.
//
IoSkipCurrentIrpStackLocation (Irp);
ntStatus = IoCallDriver(deviceExtension->TopOfStackDeviceObject,
Irp);
break;
}
default:
{
//
// We really should never get here, but if we do just forward....
//
ASSERT(FALSE);
IoSkipCurrentIrpStackLocation (Irp);
ntStatus = IoCallDriver(deviceExtension->TopOfStackDeviceObject,
Irp);
break;
}
}
KdPrint( ("IntUsb_DispatchSysCtrl::"));
IntUsb_IoDecrement(deviceExtension);
return ntStatus;
}
NTSTATUS
IntUsb_QueryWmiRegInfo(
IN PDEVICE_OBJECT DeviceObject,
OUT ULONG *RegFlags,
OUT PUNICODE_STRING InstanceName,
OUT PUNICODE_STRING *RegistryPath,
OUT PUNICODE_STRING MofResourceName,
OUT PDEVICE_OBJECT *Pdo
)
/*++
Routine Description:
This routine is a callback into the driver to retrieve the list of
guids or data blocks that the driver wants to register with WMI. This
routine may not pend or block. Driver should NOT call
WmiCompleteRequest.
Arguments:
DeviceObject is the device whose data block is being queried
*RegFlags returns with a set of flags that describe the guids being
registered for this device. If the device wants enable and disable
collection callbacks before receiving queries for the registered
guids then it should return the WMIREG_FLAG_EXPENSIVE flag. Also the
returned flags may specify WMIREG_FLAG_INSTANCE_PDO in which case
the instance name is determined from the PDO associated with the
device object. Note that the PDO must have an associated devnode. If
WMIREG_FLAG_INSTANCE_PDO is not set then Name must return a unique
name for the device.
InstanceName returns with the instance name for the guids if
WMIREG_FLAG_INSTANCE_PDO is not set in the returned *RegFlags. The
caller will call ExFreePool with the buffer returned.
*RegistryPath returns with the registry path of the driver
*MofResourceName returns with the name of the MOF resource attached to
the binary file. If the driver does not have a mof resource attached
then this can be returned as NULL.
*Pdo returns with the device object for the PDO associated with this
device if the WMIREG_FLAG_INSTANCE_PDO flag is returned in
*RegFlags.
Return Value:
status
--*/
{
PDEVICE_EXTENSION deviceExtension;
PAGED_CODE();
KdPrint( ("IntUsb_QueryWmiRegInfo - begins\n"));
deviceExtension = DeviceObject->DeviceExtension;
*RegFlags = WMIREG_FLAG_INSTANCE_PDO;
*RegistryPath = &Globals.IntUsb_RegistryPath;
*Pdo = deviceExtension->PhysicalDeviceObject;
RtlInitUnicodeString(MofResourceName, MOFRESOURCENAME);
KdPrint( ("IntUsb_QueryWmiRegInfo - ends\n"));
return STATUS_SUCCESS;
}
NTSTATUS
IntUsb_QueryWmiDataBlock(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN ULONG GuidIndex,
IN ULONG InstanceIndex,
IN ULONG InstanceCount,
IN OUT PULONG InstanceLengthArray,
IN ULONG OutBufferSize,
OUT PUCHAR Buffer
)
/*++
Routine Description:
This routine is a callback into the driver to query for the contents of
a data block. When the driver has finished filling the data block it
must call WmiCompleteRequest to complete the irp. The driver can
return STATUS_PENDING if the irp cannot be completed immediately.
Arguments:
DeviceObject is the device whose data block is being queried
Irp is the Irp that makes this request
GuidIndex is the index into the list of guids provided when the
device registered
InstanceIndex is the index that denotes which instance of the data block
is being queried.
InstanceCount is the number of instances expected to be returned for
the data block.
InstanceLengthArray is a pointer to an array of ULONG that returns the
lengths of each instance of the data block. If this is NULL then
there was not enough space in the output buffer to fulfill the request
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -