scsi: target: core: Change ASCQ for residual write
authorAnastasia Kovaleva <a.kovaleva@yadro.com>
Thu, 3 Dec 2020 08:20:35 +0000 (11:20 +0300)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 27 Jan 2021 04:12:18 +0000 (23:12 -0500)
According to FCP-4 (9.4.2):

  If the command requested that data beyond the length specified by the
  FCP_DL field be transferred, then the device server shall set the
  FCP_RESID_OVER bit (see 9.5.8) to one in the FCP_RSP IU and:

  a) process the command normally except that data beyond the FCP_DL count
  shall not be requested or transferred;

  b) transfer no data and return CHECK CONDITION status with the sense key
  set to ILLEGAL REQUEST and the additional sense code set to INVALID FIELD
  IN COMMAND INFORMATION UNIT; or

  c) may transfer data and return CHECK CONDITION status with the sense key
  set to ABORTED COMMAND and the additional sense code set to INVALID FIELD
  IN COMMAND INFORMATION UNIT.

TCM follows b) and transfers no data for residual writes but returns
INVALID FIELD IN CDB instead of INVALID FIELD IN COMMAND INFORMATION UNIT.

Change the ASCQ to INVALID FIELD IN COMMAND INFORMATION UNIT to meet the
standard.

Link: https://lore.kernel.org/r/20201203082035.54566-4-a.kovaleva@yadro.com
Signed-off-by: Anastasia Kovaleva <a.kovaleva@yadro.com>
Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/target/target_core_transport.c
include/target/target_core_base.h

index bc565c2..93ea17c 100644 (file)
@@ -1338,7 +1338,7 @@ target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
                        if (cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) {
                                pr_err_ratelimited("Rejecting underflow/overflow"
                                                   " for WRITE data CDB\n");
-                               return TCM_INVALID_CDB_FIELD;
+                               return TCM_INVALID_FIELD_IN_COMMAND_IU;
                        }
                        /*
                         * Some fabric drivers like iscsi-target still expect to
@@ -1877,6 +1877,7 @@ void transport_generic_request_failure(struct se_cmd *cmd,
        case TCM_UNSUPPORTED_TARGET_DESC_TYPE_CODE:
        case TCM_TOO_MANY_SEGMENT_DESCS:
        case TCM_UNSUPPORTED_SEGMENT_DESC_TYPE_CODE:
+       case TCM_INVALID_FIELD_IN_COMMAND_IU:
                break;
        case TCM_OUT_OF_RESOURCES:
                cmd->scsi_status = SAM_STAT_TASK_SET_FULL;
@@ -3203,6 +3204,11 @@ static const struct sense_detail sense_detail_table[] = {
                .asc = 0x55,
                .ascq = 0x04, /* INSUFFICIENT REGISTRATION RESOURCES */
        },
+       [TCM_INVALID_FIELD_IN_COMMAND_IU] = {
+               .key = ILLEGAL_REQUEST,
+               .asc = 0x0e,
+               .ascq = 0x03, /* INVALID FIELD IN COMMAND INFORMATION UNIT */
+       },
 };
 
 /**
index 63dd121..54dcc0e 100644 (file)
@@ -187,6 +187,7 @@ enum tcm_sense_reason_table {
        TCM_UNSUPPORTED_SEGMENT_DESC_TYPE_CODE  = R(0x1c),
        TCM_INSUFFICIENT_REGISTRATION_RESOURCES = R(0x1d),
        TCM_LUN_BUSY                            = R(0x1e),
+       TCM_INVALID_FIELD_IN_COMMAND_IU         = R(0x1f),
 #undef R
 };