MdeModulePkg: ScsiBusDxe: Refactor DiscoverScsiDevice()

Currently DiscoverScsiDevice() returns a boolean which cannot
distinguish a "not found" situation from a real problem like
memory allocation failures.

This patch changes the return value to an EFI_STATUS so that when
memory allocation fails, it will return EFI_OUT_OF_RESOURCES.

Without this change, any FALSE returned by DiscoverScsiDevice()
will result in EFI_OUT_OF_RESOURCES being returned by
ScsiScanCreateDevice(), which will cause a while loop in
SCSIBusDriverBindingStart() to abort before other possible Puns in
the SCSI channel are scanned, which means good devices may not have
a chance to be discovered.  If this good device is the boot device,
boot will fail.

Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Hao A Wu <hao.a.wu@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Sivaparvathi chellaiah <sivaparvathic@ami.com>

Signed-off-by: Yuan Yu <yuanyu@google.com>
Reviewed-by: Hao A Wu <hao.a.wu@intel.com>
This commit is contained in:
Yuan Yu 2023-01-31 14:03:47 +08:00 committed by mergify[bot]
parent bda715bf6d
commit d375273c89
2 changed files with 23 additions and 20 deletions

View File

@ -1105,7 +1105,8 @@ ScsiExecuteSCSICommand (
@retval EFI_SUCCESS Successfully to discover the device and attach @retval EFI_SUCCESS Successfully to discover the device and attach
ScsiIoProtocol to it. ScsiIoProtocol to it.
@retval EFI_OUT_OF_RESOURCES Fail to discover the device. @retval EFI_NOT_FOUND Fail to discover the device.
@retval EFI_OUT_OF_RESOURCES Fail to allocate memory resources.
**/ **/
EFI_STATUS EFI_STATUS
@ -1210,8 +1211,8 @@ ScsiScanCreateDevice (
ScsiBusDev->DevicePath ScsiBusDev->DevicePath
); );
if (!DiscoverScsiDevice (ScsiIoDevice)) { Status = DiscoverScsiDevice (ScsiIoDevice);
Status = EFI_OUT_OF_RESOURCES; if (EFI_ERROR (Status)) {
goto ErrorExit; goto ErrorExit;
} }
@ -1276,11 +1277,12 @@ ErrorExit:
@param ScsiIoDevice The pointer of SCSI_IO_DEV @param ScsiIoDevice The pointer of SCSI_IO_DEV
@retval TRUE Find SCSI Device and verify it. @retval EFI_SUCCESS Find SCSI Device and verify it.
@retval FALSE Unable to find SCSI Device. @retval EFI_NOT_FOUND Unable to find SCSI Device.
@retval EFI_OUT_OF_RESOURCES Fail to allocate memory resources.
**/ **/
BOOLEAN EFI_STATUS
DiscoverScsiDevice ( DiscoverScsiDevice (
IN OUT SCSI_IO_DEV *ScsiIoDevice IN OUT SCSI_IO_DEV *ScsiIoDevice
) )
@ -1294,7 +1296,6 @@ DiscoverScsiDevice (
EFI_SCSI_SENSE_DATA *SenseData; EFI_SCSI_SENSE_DATA *SenseData;
UINT8 MaxRetry; UINT8 MaxRetry;
UINT8 Index; UINT8 Index;
BOOLEAN ScsiDeviceFound;
HostAdapterStatus = 0; HostAdapterStatus = 0;
TargetStatus = 0; TargetStatus = 0;
@ -1302,7 +1303,7 @@ DiscoverScsiDevice (
InquiryData = AllocateAlignedBuffer (ScsiIoDevice, sizeof (EFI_SCSI_INQUIRY_DATA)); InquiryData = AllocateAlignedBuffer (ScsiIoDevice, sizeof (EFI_SCSI_INQUIRY_DATA));
if (InquiryData == NULL) { if (InquiryData == NULL) {
ScsiDeviceFound = FALSE; Status = EFI_OUT_OF_RESOURCES;
goto Done; goto Done;
} }
@ -1311,7 +1312,7 @@ DiscoverScsiDevice (
sizeof (EFI_SCSI_SENSE_DATA) sizeof (EFI_SCSI_SENSE_DATA)
); );
if (SenseData == NULL) { if (SenseData == NULL) {
ScsiDeviceFound = FALSE; Status = EFI_OUT_OF_RESOURCES;
goto Done; goto Done;
} }
@ -1342,7 +1343,7 @@ DiscoverScsiDevice (
(SenseData->Error_Code == 0x70) && (SenseData->Error_Code == 0x70) &&
(SenseData->Sense_Key == EFI_SCSI_SK_ILLEGAL_REQUEST)) (SenseData->Sense_Key == EFI_SCSI_SK_ILLEGAL_REQUEST))
{ {
ScsiDeviceFound = FALSE; Status = EFI_NOT_FOUND;
goto Done; goto Done;
} }
@ -1353,13 +1354,13 @@ DiscoverScsiDevice (
(Status == EFI_INVALID_PARAMETER) || (Status == EFI_INVALID_PARAMETER) ||
(Status == EFI_UNSUPPORTED)) (Status == EFI_UNSUPPORTED))
{ {
ScsiDeviceFound = FALSE; Status = EFI_NOT_FOUND;
goto Done; goto Done;
} }
} }
if (Index == MaxRetry) { if (Index == MaxRetry) {
ScsiDeviceFound = FALSE; Status = EFI_NOT_FOUND;
goto Done; goto Done;
} }
@ -1367,14 +1368,14 @@ DiscoverScsiDevice (
// Retrieved inquiry data successfully // Retrieved inquiry data successfully
// //
if (InquiryData->Peripheral_Qualifier != 0) { if (InquiryData->Peripheral_Qualifier != 0) {
ScsiDeviceFound = FALSE; Status = EFI_NOT_FOUND;
goto Done; goto Done;
} }
if ((InquiryData->Peripheral_Type >= EFI_SCSI_TYPE_RESERVED_LOW) && if ((InquiryData->Peripheral_Type >= EFI_SCSI_TYPE_RESERVED_LOW) &&
(InquiryData->Peripheral_Type <= EFI_SCSI_TYPE_RESERVED_HIGH)) (InquiryData->Peripheral_Type <= EFI_SCSI_TYPE_RESERVED_HIGH))
{ {
ScsiDeviceFound = FALSE; Status = EFI_NOT_FOUND;
goto Done; goto Done;
} }
@ -1392,13 +1393,13 @@ DiscoverScsiDevice (
ScsiIoDevice->ScsiVersion = (UINT8)(InquiryData->Version & 0x07); ScsiIoDevice->ScsiVersion = (UINT8)(InquiryData->Version & 0x07);
} }
ScsiDeviceFound = TRUE; Status = EFI_SUCCESS;
Done: Done:
FreeAlignedBuffer (SenseData, sizeof (EFI_SCSI_SENSE_DATA)); FreeAlignedBuffer (SenseData, sizeof (EFI_SCSI_SENSE_DATA));
FreeAlignedBuffer (InquiryData, sizeof (EFI_SCSI_INQUIRY_DATA)); FreeAlignedBuffer (InquiryData, sizeof (EFI_SCSI_INQUIRY_DATA));
return ScsiDeviceFound; return Status;
} }
/** /**

View File

@ -455,7 +455,8 @@ ScsiExecuteSCSICommand (
@retval EFI_SUCCESS Successfully to discover the device and attach @retval EFI_SUCCESS Successfully to discover the device and attach
ScsiIoProtocol to it. ScsiIoProtocol to it.
@retval EFI_OUT_OF_RESOURCES Fail to discover the device. @retval EFI_NOT_FOUND Fail to discover the device.
@retval EFI_OUT_OF_RESOURCES Fail to allocate memory resources.
**/ **/
EFI_STATUS EFI_STATUS
@ -473,11 +474,12 @@ ScsiScanCreateDevice (
@param ScsiIoDevice The pointer of SCSI_IO_DEV @param ScsiIoDevice The pointer of SCSI_IO_DEV
@retval TRUE Find SCSI Device and verify it. @retval EFI_SUCCESS Find SCSI Device and verify it.
@retval FALSE Unable to find SCSI Device. @retval EFI_NOT_FOUND Unable to find SCSI Device.
@retval EFI_OUT_OF_RESOURCES Fail to allocate memory resources.
**/ **/
BOOLEAN EFI_STATUS
DiscoverScsiDevice ( DiscoverScsiDevice (
IN OUT SCSI_IO_DEV *ScsiIoDevice IN OUT SCSI_IO_DEV *ScsiIoDevice
); );