// ntddscsi.h
// CTL_CODE(0x0004, 0x406, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_SCSI_GET_ADDRESS 0x00041018
View the official Windows Driver Kit DDI referenceNo description available.
Returns the address information, such as the target ID (TID) and the logical unit number (LUN) of a particular SCSI target. A legacy class driver can issue this request to the port driver to obtain the address of its device. On Windows 10 version 1809 and later versions, a legacy class driver can issue this request to obtain the address of its adapter.
This request is not relevant to storage class drivers that support Plug and Play because the port driver supplies the address information on behalf of the class driver.
This request must be directed to a class driver or to a PDO created by the port driver.
[!NOTE] The SCSI port driver and SCSI miniport driver models may be altered or unavailable in the future. Instead, we recommend using the Storport driver and Storport miniport driver models.
None.
None.
Updated SCSI_ADDRESS information is returned to the buffer at Irp->AssociatedIrp.SystemBuffer.
Parameters.DeviceIoControl.OutputBufferLength in the I/O stack location indicates the size, in bytes, of the buffer, which must be >= sizeof(SCSI_ADDRESS).
The Information field contains the number of bytes returned in the output buffer. The Status field indicates the results of the operation.