TESTS: start abstracting away the error string handling from transports
Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
This commit is contained in:
@@ -113,7 +113,7 @@ static int check_result(const char *opcode, struct scsi_device *sdev,
|
|||||||
|
|
||||||
if (task == NULL) {
|
if (task == NULL) {
|
||||||
logging(LOG_NORMAL, "[FAILED] Failed to send %s command: "
|
logging(LOG_NORMAL, "[FAILED] Failed to send %s command: "
|
||||||
"%s", opcode, iscsi_get_error(sdev->iscsi_ctx));
|
"%s", opcode, sdev->error_str);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (task->status == SCSI_STATUS_CHECK_CONDITION
|
if (task->status == SCSI_STATUS_CHECK_CONDITION
|
||||||
@@ -125,7 +125,7 @@ static int check_result(const char *opcode, struct scsi_device *sdev,
|
|||||||
}
|
}
|
||||||
if (status == SCSI_STATUS_GOOD && task->status != SCSI_STATUS_GOOD) {
|
if (status == SCSI_STATUS_GOOD && task->status != SCSI_STATUS_GOOD) {
|
||||||
logging(LOG_NORMAL, "[FAILED] %s command failed with "
|
logging(LOG_NORMAL, "[FAILED] %s command failed with "
|
||||||
"sense. %s", opcode, iscsi_get_error(sdev->iscsi_ctx));
|
"sense. %s", opcode, sdev->error_str);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (status != SCSI_STATUS_GOOD && task->status == SCSI_STATUS_GOOD) {
|
if (status != SCSI_STATUS_GOOD && task->status == SCSI_STATUS_GOOD) {
|
||||||
@@ -158,7 +158,7 @@ static int check_result(const char *opcode, struct scsi_device *sdev,
|
|||||||
opcode,
|
opcode,
|
||||||
scsi_sense_key_str(key), key,
|
scsi_sense_key_str(key), key,
|
||||||
scsi_sense_ascq_str(ascq[0]), ascq[0],
|
scsi_sense_ascq_str(ascq[0]), ascq[0],
|
||||||
iscsi_get_error(sdev->iscsi_ctx));
|
sdev->error_str);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
logging(LOG_VERBOSE, "[OK] %s returned %s %s(0x%02x) %s(0x%04x)",
|
logging(LOG_VERBOSE, "[OK] %s returned %s %s(0x%02x) %s(0x%04x)",
|
||||||
@@ -168,6 +168,20 @@ static int check_result(const char *opcode, struct scsi_device *sdev,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct scsi_task *send_scsi_command(struct scsi_device *sdev, struct scsi_task *task, struct iscsi_data *d)
|
||||||
|
{
|
||||||
|
if (sdev->error_str != NULL) {
|
||||||
|
free(discard_const(sdev->error_str));
|
||||||
|
sdev->error_str = NULL;
|
||||||
|
}
|
||||||
|
task = iscsi_scsi_command_sync(sdev->iscsi_ctx, sdev->iscsi_lun, task, d);
|
||||||
|
if (task == NULL) {
|
||||||
|
sdev->error_str = strdup(iscsi_get_error(sdev->iscsi_ctx));
|
||||||
|
}
|
||||||
|
|
||||||
|
return task;
|
||||||
|
}
|
||||||
|
|
||||||
void logging(int level, const char *format, ...)
|
void logging(int level, const char *format, ...)
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
@@ -291,11 +305,6 @@ iscsi_queue_pdu(struct iscsi_context *iscsi, struct iscsi_pdu *pdu)
|
|||||||
return real_iscsi_queue_pdu(iscsi, pdu);
|
return real_iscsi_queue_pdu(iscsi, pdu);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct scsi_task *send_scsi_command(struct scsi_device *sdev, struct scsi_task *task, struct iscsi_data *d)
|
|
||||||
{
|
|
||||||
return iscsi_scsi_command_sync(sdev->iscsi_ctx, sdev->iscsi_lun, task, d);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
orwrite(struct scsi_device *sdev, uint64_t lba,
|
orwrite(struct scsi_device *sdev, uint64_t lba,
|
||||||
uint32_t datalen, int blocksize, int wrprotect,
|
uint32_t datalen, int blocksize, int wrprotect,
|
||||||
|
|||||||
@@ -26,6 +26,10 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#ifndef discard_const
|
||||||
|
#define discard_const(ptr) ((void *)((intptr_t)(ptr)))
|
||||||
|
#endif
|
||||||
|
|
||||||
extern const char *initiatorname1;
|
extern const char *initiatorname1;
|
||||||
extern const char *initiatorname2;
|
extern const char *initiatorname2;
|
||||||
|
|
||||||
@@ -184,9 +188,13 @@ extern int sbc3_support;
|
|||||||
extern int maximum_transfer_length;
|
extern int maximum_transfer_length;
|
||||||
|
|
||||||
struct scsi_device {
|
struct scsi_device {
|
||||||
|
const char *error_str;
|
||||||
|
|
||||||
struct iscsi_context *iscsi_ctx;
|
struct iscsi_context *iscsi_ctx;
|
||||||
int iscsi_lun;
|
int iscsi_lun;
|
||||||
const char *iscsi_url;
|
const char *iscsi_url;
|
||||||
|
|
||||||
|
const char *sgio_dev;
|
||||||
};
|
};
|
||||||
extern struct scsi_device *sd;
|
extern struct scsi_device *sd;
|
||||||
|
|
||||||
|
|||||||
@@ -40,12 +40,7 @@
|
|||||||
|
|
||||||
#include "iscsi-support.h"
|
#include "iscsi-support.h"
|
||||||
#include "iscsi-test-cu.h"
|
#include "iscsi-test-cu.h"
|
||||||
|
#include "iscsi-support.h"
|
||||||
|
|
||||||
|
|
||||||
#ifndef discard_const
|
|
||||||
#define discard_const(ptr) ((void *)((intptr_t)(ptr)))
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define PROG "iscsi-test-cu"
|
#define PROG "iscsi-test-cu"
|
||||||
|
|
||||||
@@ -866,7 +861,6 @@ int
|
|||||||
main(int argc, char *argv[])
|
main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
char *testname_re = NULL;
|
char *testname_re = NULL;
|
||||||
int lun;
|
|
||||||
CU_BasicRunMode mode = CU_BRM_VERBOSE;
|
CU_BasicRunMode mode = CU_BRM_VERBOSE;
|
||||||
CU_ErrorAction error_action = CUEA_IGNORE;
|
CU_ErrorAction error_action = CUEA_IGNORE;
|
||||||
int res;
|
int res;
|
||||||
@@ -984,7 +978,7 @@ main(int argc, char *argv[])
|
|||||||
return 10;
|
return 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
sd->iscsi_ctx = iscsi_context_login(initiatorname1, sd->iscsi_url, &lun);
|
sd->iscsi_ctx = iscsi_context_login(initiatorname1, sd->iscsi_url, &sd->iscsi_lun);
|
||||||
if (sd->iscsi_ctx == NULL) {
|
if (sd->iscsi_ctx == NULL) {
|
||||||
printf("Failed to login to target\n");
|
printf("Failed to login to target\n");
|
||||||
return -1;
|
return -1;
|
||||||
@@ -995,24 +989,21 @@ main(int argc, char *argv[])
|
|||||||
* All devices support readcapacity10 but only some support
|
* All devices support readcapacity10 but only some support
|
||||||
* readcapacity16
|
* readcapacity16
|
||||||
*/
|
*/
|
||||||
task = iscsi_readcapacity10_sync(sd->iscsi_ctx, lun, 0, 0);
|
task = iscsi_readcapacity10_sync(sd->iscsi_ctx, sd->iscsi_lun, 0, 0);
|
||||||
if (task == NULL) {
|
if (task == NULL) {
|
||||||
printf("Failed to send READCAPACITY10 command: %s\n",
|
printf("Failed to send READCAPACITY10 command: %s\n", sd->error_str);
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
iscsi_destroy_context(sd->iscsi_ctx);
|
iscsi_destroy_context(sd->iscsi_ctx);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (task->status != SCSI_STATUS_GOOD) {
|
if (task->status != SCSI_STATUS_GOOD) {
|
||||||
printf("READCAPACITY10 command: failed with sense. %s\n",
|
printf("READCAPACITY10 command: failed with sense. %s\n", sd->error_str);
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
scsi_free_scsi_task(task);
|
scsi_free_scsi_task(task);
|
||||||
iscsi_destroy_context(sd->iscsi_ctx);
|
iscsi_destroy_context(sd->iscsi_ctx);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
rc10 = scsi_datain_unmarshall(task);
|
rc10 = scsi_datain_unmarshall(task);
|
||||||
if (rc10 == NULL) {
|
if (rc10 == NULL) {
|
||||||
printf("failed to unmarshall READCAPACITY10 data. %s\n",
|
printf("failed to unmarshall READCAPACITY10 data.\n");
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
scsi_free_scsi_task(task);
|
scsi_free_scsi_task(task);
|
||||||
iscsi_destroy_context(sd->iscsi_ctx);
|
iscsi_destroy_context(sd->iscsi_ctx);
|
||||||
return -1;
|
return -1;
|
||||||
@@ -1021,18 +1012,16 @@ main(int argc, char *argv[])
|
|||||||
num_blocks = rc10->lba + 1;
|
num_blocks = rc10->lba + 1;
|
||||||
scsi_free_scsi_task(task);
|
scsi_free_scsi_task(task);
|
||||||
|
|
||||||
rc16_task = iscsi_readcapacity16_sync(sd->iscsi_ctx, lun);
|
rc16_task = iscsi_readcapacity16_sync(sd->iscsi_ctx, sd->iscsi_lun);
|
||||||
if (rc16_task == NULL) {
|
if (rc16_task == NULL) {
|
||||||
printf("Failed to send READCAPACITY16 command: %s\n",
|
printf("Failed to send READCAPACITY16 command: %s\n", sd->error_str);
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
iscsi_destroy_context(sd->iscsi_ctx);
|
iscsi_destroy_context(sd->iscsi_ctx);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (rc16_task->status == SCSI_STATUS_GOOD) {
|
if (rc16_task->status == SCSI_STATUS_GOOD) {
|
||||||
rc16 = scsi_datain_unmarshall(rc16_task);
|
rc16 = scsi_datain_unmarshall(rc16_task);
|
||||||
if (rc16 == NULL) {
|
if (rc16 == NULL) {
|
||||||
printf("failed to unmarshall READCAPACITY16 data. %s\n",
|
printf("failed to unmarshall READCAPACITY16 data. %s\n", sd->error_str);
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
scsi_free_scsi_task(rc16_task);
|
scsi_free_scsi_task(rc16_task);
|
||||||
iscsi_destroy_context(sd->iscsi_ctx);
|
iscsi_destroy_context(sd->iscsi_ctx);
|
||||||
return -1;
|
return -1;
|
||||||
@@ -1042,9 +1031,9 @@ main(int argc, char *argv[])
|
|||||||
lbppb = 1 << rc16->lbppbe;
|
lbppb = 1 << rc16->lbppbe;
|
||||||
}
|
}
|
||||||
|
|
||||||
inq_task = iscsi_inquiry_sync(sd->iscsi_ctx, lun, 0, 0, 64);
|
inq_task = iscsi_inquiry_sync(sd->iscsi_ctx, sd->iscsi_lun, 0, 0, 64);
|
||||||
if (inq_task == NULL || inq_task->status != SCSI_STATUS_GOOD) {
|
if (inq_task == NULL || inq_task->status != SCSI_STATUS_GOOD) {
|
||||||
printf("Inquiry command failed : %s\n", iscsi_get_error(sd->iscsi_ctx));
|
printf("Inquiry command failed : %s\n", sd->error_str);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
full_size = scsi_datain_getfullsize(inq_task);
|
full_size = scsi_datain_getfullsize(inq_task);
|
||||||
@@ -1052,10 +1041,9 @@ main(int argc, char *argv[])
|
|||||||
scsi_free_scsi_task(inq_task);
|
scsi_free_scsi_task(inq_task);
|
||||||
|
|
||||||
/* we need more data for the full list */
|
/* we need more data for the full list */
|
||||||
inq_task = iscsi_inquiry_sync(sd->iscsi_ctx, lun, 0, 0, full_size);
|
inq_task = iscsi_inquiry_sync(sd->iscsi_ctx, sd->iscsi_lun, 0, 0, full_size);
|
||||||
if (inq_task == NULL) {
|
if (inq_task == NULL) {
|
||||||
printf("Inquiry command failed : %s\n",
|
printf("Inquiry command failed : %s\n", sd->error_str);
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1074,7 +1062,7 @@ main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* try reading block limits vpd */
|
/* try reading block limits vpd */
|
||||||
inq_bl_task = iscsi_inquiry_sync(sd->iscsi_ctx, lun, 1, SCSI_INQUIRY_PAGECODE_BLOCK_LIMITS, 64);
|
inq_bl_task = iscsi_inquiry_sync(sd->iscsi_ctx, sd->iscsi_lun, 1, SCSI_INQUIRY_PAGECODE_BLOCK_LIMITS, 64);
|
||||||
if (inq_bl_task && inq_bl_task->status != SCSI_STATUS_GOOD) {
|
if (inq_bl_task && inq_bl_task->status != SCSI_STATUS_GOOD) {
|
||||||
scsi_free_scsi_task(inq_bl_task);
|
scsi_free_scsi_task(inq_bl_task);
|
||||||
inq_bl_task = NULL;
|
inq_bl_task = NULL;
|
||||||
@@ -1084,8 +1072,8 @@ main(int argc, char *argv[])
|
|||||||
if (full_size > inq_bl_task->datain.size) {
|
if (full_size > inq_bl_task->datain.size) {
|
||||||
scsi_free_scsi_task(inq_bl_task);
|
scsi_free_scsi_task(inq_bl_task);
|
||||||
|
|
||||||
if ((inq_bl_task = iscsi_inquiry_sync(sd->iscsi_ctx, lun, 1, SCSI_INQUIRY_PAGECODE_BLOCK_LIMITS, full_size)) == NULL) {
|
if ((inq_bl_task = iscsi_inquiry_sync(sd->iscsi_ctx, sd->iscsi_lun, 1, SCSI_INQUIRY_PAGECODE_BLOCK_LIMITS, full_size)) == NULL) {
|
||||||
printf("Inquiry command failed : %s\n", iscsi_get_error(sd->iscsi_ctx));
|
printf("Inquiry command failed : %s\n", sd->error_str);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1098,7 +1086,7 @@ main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* try reading block device characteristics vpd */
|
/* try reading block device characteristics vpd */
|
||||||
inq_bdc_task = iscsi_inquiry_sync(sd->iscsi_ctx, lun, 1, SCSI_INQUIRY_PAGECODE_BLOCK_DEVICE_CHARACTERISTICS, 255);
|
inq_bdc_task = iscsi_inquiry_sync(sd->iscsi_ctx, sd->iscsi_lun, 1, SCSI_INQUIRY_PAGECODE_BLOCK_DEVICE_CHARACTERISTICS, 255);
|
||||||
if (inq_bdc_task == NULL) {
|
if (inq_bdc_task == NULL) {
|
||||||
printf("Failed to read Block Device Characteristics page\n");
|
printf("Failed to read Block Device Characteristics page\n");
|
||||||
}
|
}
|
||||||
@@ -1112,9 +1100,9 @@ main(int argc, char *argv[])
|
|||||||
|
|
||||||
/* if thin provisioned we also need to read the VPD page for it */
|
/* if thin provisioned we also need to read the VPD page for it */
|
||||||
if (rc16 && rc16->lbpme != 0){
|
if (rc16 && rc16->lbpme != 0){
|
||||||
inq_lbp_task = iscsi_inquiry_sync(sd->iscsi_ctx, lun, 1, SCSI_INQUIRY_PAGECODE_LOGICAL_BLOCK_PROVISIONING, 64);
|
inq_lbp_task = iscsi_inquiry_sync(sd->iscsi_ctx, sd->iscsi_lun, 1, SCSI_INQUIRY_PAGECODE_LOGICAL_BLOCK_PROVISIONING, 64);
|
||||||
if (inq_lbp_task == NULL || inq_lbp_task->status != SCSI_STATUS_GOOD) {
|
if (inq_lbp_task == NULL || inq_lbp_task->status != SCSI_STATUS_GOOD) {
|
||||||
printf("Inquiry command failed : %s\n", iscsi_get_error(sd->iscsi_ctx));
|
printf("Inquiry command failed : %s\n", sd->error_str);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
full_size = scsi_datain_getfullsize(inq_lbp_task);
|
full_size = scsi_datain_getfullsize(inq_lbp_task);
|
||||||
@@ -1122,8 +1110,8 @@ main(int argc, char *argv[])
|
|||||||
scsi_free_scsi_task(inq_lbp_task);
|
scsi_free_scsi_task(inq_lbp_task);
|
||||||
|
|
||||||
/* we need more data for the full list */
|
/* we need more data for the full list */
|
||||||
if ((inq_lbp_task = iscsi_inquiry_sync(sd->iscsi_ctx, lun, 1, SCSI_INQUIRY_PAGECODE_LOGICAL_BLOCK_PROVISIONING, full_size)) == NULL) {
|
if ((inq_lbp_task = iscsi_inquiry_sync(sd->iscsi_ctx, sd->iscsi_lun, 1, SCSI_INQUIRY_PAGECODE_LOGICAL_BLOCK_PROVISIONING, full_size)) == NULL) {
|
||||||
printf("Inquiry command failed : %s\n", iscsi_get_error(sd->iscsi_ctx));
|
printf("Inquiry command failed : %s\n", sd->error_str);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1135,31 +1123,27 @@ main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rsop_task = iscsi_report_supported_opcodes_sync(sd->iscsi_ctx, lun,
|
rsop_task = iscsi_report_supported_opcodes_sync(sd->iscsi_ctx, sd->iscsi_lun,
|
||||||
1, SCSI_REPORT_SUPPORTING_OPS_ALL, 0, 0, 65535);
|
1, SCSI_REPORT_SUPPORTING_OPS_ALL, 0, 0, 65535);
|
||||||
if (rsop_task == NULL) {
|
if (rsop_task == NULL) {
|
||||||
printf("Failed to send REPORT_SUPPORTED_OPCODES command: %s\n",
|
printf("Failed to send REPORT_SUPPORTED_OPCODES command: %s\n", sd->error_str);
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
iscsi_destroy_context(sd->iscsi_ctx);
|
iscsi_destroy_context(sd->iscsi_ctx);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (rsop_task->status == SCSI_STATUS_GOOD) {
|
if (rsop_task->status == SCSI_STATUS_GOOD) {
|
||||||
rsop = scsi_datain_unmarshall(rsop_task);
|
rsop = scsi_datain_unmarshall(rsop_task);
|
||||||
if (rsop == NULL) {
|
if (rsop == NULL) {
|
||||||
printf("failed to unmarshall REPORT_SUPPORTED_OPCODES "
|
printf("failed to unmarshall REPORT_SUPPORTED_OPCODES data.\n");
|
||||||
"data. %s\n",
|
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
scsi_free_scsi_task(rsop_task);
|
scsi_free_scsi_task(rsop_task);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* check if the device is write protected or not */
|
/* check if the device is write protected or not */
|
||||||
task = iscsi_modesense6_sync(sd->iscsi_ctx, lun, 0, SCSI_MODESENSE_PC_CURRENT,
|
task = iscsi_modesense6_sync(sd->iscsi_ctx, sd->iscsi_lun, 0, SCSI_MODESENSE_PC_CURRENT,
|
||||||
SCSI_MODEPAGE_RETURN_ALL_PAGES,
|
SCSI_MODEPAGE_RETURN_ALL_PAGES,
|
||||||
0, 255);
|
0, 255);
|
||||||
if (task == NULL) {
|
if (task == NULL) {
|
||||||
printf("Failed to send MODE_SENSE6 command: %s\n",
|
printf("Failed to send MODE_SENSE6 command: %s\n", sd->error_str);
|
||||||
iscsi_get_error(sd->iscsi_ctx));
|
|
||||||
iscsi_destroy_context(sd->iscsi_ctx);
|
iscsi_destroy_context(sd->iscsi_ctx);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user