Restrictions on Miniport Drivers that Manage the Boot Drive

A storage miniport driver that manages an adapter for a boot device is subject to special restrictions during a system crash. While dumping the system's memory image to disk, the miniport driver must operate within a different environment. The usual communication between the miniport driver, the port driver, and disk class driver is interrupted. The kernel does disk I/O by direct calls to the disk dump port driver, diskdump.sys (dumpata.sys for ATA controllers), bypassing file systems, and the normal I/O stack. The disk dump driver, in turn, calls the boot device's miniport driver to handle all I/O operations, and the disk dump driver intercepts all of the miniport driver's calls to the port driver.

The disk dump driver provides the same set of support routines that the port driver provides, so the miniport driver should be able to use disk dump driver routines in the same way that it uses port routines.

However, miniport drivers that manage adapters in the disk dump path are subject to the following limitations while in dump mode:

Memory usage

Miniport drivers must make frugal use of memory during a system crash. The amount of noncached memory that the miniport driver can allocate for its device and driver extensions is extremely limited. The miniport driver should not attempt to allocate more than 32 kilobytes of memory.

Accessibility of the boot device

The boot device must be accessible before the miniport returns from initialization routine (HwStorInitialize for StorPort and HwScsiInitialize for SCSI Port). The operating system might send commands to the boot device at any point after the initialization routine completes.

Bus resets

Miniport drivers should disregard requests to reset the bus (HwStorResetBus for StorPort and HwScsiResetBus for SCSI Port ).

Deferred Procedure Calls (DPCs)

StorPort miniport drivers must not attempt to initialize a DPC routine (HwStorDpcRoutine) with StorPortInitializeDpc. Any processing normally queued for execution to a DPC routine during an interrupt request must, in this case, occur in the context of that request.

Multiple requests per logical unit

The disk dump port driver does not send multiple requests per logical unit. Therefore, it does not matter what value a miniport driver assigns to the MultipleRequestPerLu member of PORT_CONFIGURATION_INFORMATION.

Polling and time checking

Miniport drivers must not rely on time checking routines, such as ScsiPortQuerySystemTime or StorPortQuerySystemTime while running in dump mode. Best practices for miniport drivers exclude using the KeQuerySystemTime routine, at any time, because miniport drivers should always use port driver library routines to check the time.

Interrupt request level

The runtime port driver calls HwStorFindAdapter and HwScsiFindAdapter at PASSIVE IRQL. However, the dump driver calls all miniport routines at IRQL higher than PASSIVE. Therefore, miniport drivers in the dump path must avoid operations, such as registry accesses, that must be performed at PASSIVE IRQL.

Target IDs and logical unit numbers (LUNs)

Miniport drivers must not use a different target ID and LUN for the boot device during the dump process.

Storage miniport drivers in the boot or dump path must detect whether they are running in dump mode. There are two ways that the operating system signals a storage miniport driver that the miniport driver is running in dump mode or the operating system is changing to a hibernation state:

  • The operating system passes NULL arguments to the miniport driver's DriverEntry routine.

  • The disk dump port driver passes a string of "dump=1" in the ArgumentString parameter when it calls the HwStorFindAdapter or HwScsiFindAdapter routine.

When you look in the debugger for an image of a storage miniport driver in dump mode, the driver name will have a prefix of "dump_". If the miniport driver is in hibernation mode, the driver name will have a prefix of "hiber_".