BUG: Calling IoDeleteDevice May Unexpectedly Unload Driver

ID: Q216308


The information in this article applies to:


SYMPTOMS

If a Windows 98 WDM driver's AddDevice routine calls IoCreateDevice followed by IoDeleteDevice, the driver may be unloaded unexpectedly and the memory freed, all before the AddDevice routine finishes execution. This could theoretically allow another thread to prematurely overwrite the driver's memory, causing potential system instability.


CAUSE

Calling IoDeleteDevice results in Ntkern.vxd unloading the driver if the driver's reference count is 0 (zero) and no other threads are in the process of unloading it.


RESOLUTION

As a workaround, it may be possible to restructure the driver's AddDevice routine so that it does not create the Device Object unnecessarily, thereby avoiding the IoDeleteDevice call.
Rather than calling IoDeleteDevice, the AddDevice routine can return a failure code if necessary. Device Manager will show the device as having an error, but this should not cause a memory leak.
Also, it is safe for the driver to call IoDeleteDevice within an IRP_MN_REMOVE_DEVICE handler.


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed for future versions of Windows 98.


REFERENCES

See the Windows 98 DDK for more information on IoCreateDevice, IoDeleteDevice, and WDM drivers.


Keywords          : kbDDK kbWinOS98bug 
Version           : Win98:
Platform          : Win98 
Issue type        : kbbug 

Last Reviewed: March 6, 1999