Create IRP

发布时间:2014-5-14 19:44
分类名称:Driver


IoBuildAsynchronousFsdRequest

builds an IRP on whose completion you don't plan to wait. This function and the next are appropriate for building only certain types of IRP.

IoBuildSynchronousFsdRequest

builds an IRP on whose completion you do plan to wait.

IoBuildDeviceIoControlRequest

builds a synchronous IRP_MJ_DE?VICE_CONTROL or IRP_MJ_INTERNAL_DEVICE_CONTROL request.

IoAllocateIrp

builds an asynchronous IRP of any type.

 

Synchronous IRPs

IoBuildSynchronousFsdRequest and IoBuildDeviceIoControlRequest create a so-called synchronous IRP.
The I/O Manager considers that a synchronous IRP belongs to the thread in whose context you create the IRP. This ownership concept has several consequences:

You must call these two functions at PASSIVE_LEVEL only. In particular, you must not be at APC_LEVEL (say, as a result of acquiring a fast mutex) because the I/O Manager won't then be able to deliver the special kernel asynchronous procedure call (APC) that does all the completion processing. In other words, you mustn't do this:

PIRP Irp = IoBuildSynchronousFsdRequest(...);
ExAcquireFastMutex(...);
NTSTATUS status = IoCallDriver(...);
if (status == STATUS_PENDING)
KeWaitForSingleObject(...); // <== don't do this
ExReleaseFastMutex(...);

KeWaitForSingleObject call will deadlock.

If you need to synchronize IRPs sent to another driver, consider the following alternatives:

Support Function

Types of IRP You Can Create

IoBuildSynchronousFsdRequest

IRP_MJ_READ

IRP_MJ_WRITE

IRP_MJ_FLUSH_BUFFERS

IRP_MJ_SHUTDOWN

IRP_MJ_PNP

IRP_MJ_POWER (but only for IRP_MN_POWER_SEQUENCE)

IoBuildDeviceIoControlRequest

IRP_MJ_DEVICE_CONTROL

IRP_MJ_INTERNAL_DEVICE_CONTROL

 

Asynchronous IRPs

IoBuildAsynchronousFsdRequest and IoAllocateIrp create an asynchronous IRP. Asynchronous IRPs don't belong to the creating thread, and the I/O Manager doesn't schedule an APC and doesn't clean up when the IRP completes. Consequently:

Support Function

Types of IRP You Can Create

IoBuildAsynchronousFsdRequest

IRP_MJ_READ

IRP_MJ_WRITE

IRP_MJ_FLUSH_BUFFERS

IRP_MJ_SHUTDOWN

IRP_MJ_PNP

IRP_MJ_POWER (but only for IRP_MN_POWER_SEQUENCE)

IoAllocateIrp

Any (but you must initialize the MajorFunction field of the first stack location)