Dont call READCAPACITY from every single test. Remove two arguments from the test signatures and turn them into globals. remove the ret++ silliness. Tests return 0 : all ok, -2, skipped or -1 : test failed
267 lines
7.2 KiB
C
267 lines
7.2 KiB
C
/*
|
|
Copyright (C) 2012 by Ronnie Sahlberg <ronniesahlberg@gmail.com>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <arpa/inet.h>
|
|
#include "iscsi.h"
|
|
#include "iscsi-private.h"
|
|
#include "scsi-lowlevel.h"
|
|
#include "iscsi-test.h"
|
|
|
|
static int clamp_datasn;
|
|
|
|
static int my_iscsi_queue_pdu(struct iscsi_context *iscsi _U_, struct iscsi_pdu *pdu)
|
|
{
|
|
uint32_t datasn;
|
|
|
|
if (pdu->outdata.data[0] != ISCSI_PDU_DATA_OUT) {
|
|
return 0;
|
|
}
|
|
switch (clamp_datasn) {
|
|
case 1:
|
|
/* change datasn to 0 */
|
|
*(uint32_t *)&pdu->outdata.data[36] = 0;
|
|
break;
|
|
case 2:
|
|
/* change datasn to 27 */
|
|
*(uint32_t *)&pdu->outdata.data[36] = htonl(27);
|
|
break;
|
|
case 3:
|
|
/* change datasn to -1 */
|
|
*(uint32_t *)&pdu->outdata.data[36] = htonl(-1);
|
|
break;
|
|
case 4:
|
|
/* change datasn from (0,1) to (1,0) */
|
|
datasn = ntohl(*(uint32_t *)&pdu->outdata.data[36]);
|
|
*(uint32_t *)&pdu->outdata.data[36] = htonl(1 - datasn);
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void test_cb(struct iscsi_context *iscsi _U_, int status,
|
|
void *command_data _U_, void *private_data)
|
|
{
|
|
struct scsi_task *task = command_data;
|
|
struct iscsi_async_state *state = private_data;
|
|
|
|
state->finished = 1;
|
|
state->status = status;
|
|
|
|
if (status) {
|
|
task->status = status;
|
|
}
|
|
}
|
|
|
|
|
|
int T1010_datasn_invalid(const char *initiator, const char *url)
|
|
{
|
|
struct iscsi_context *iscsi;
|
|
struct scsi_task *task;
|
|
int ret, lun;
|
|
unsigned char data[4096 * 2];
|
|
struct iscsi_async_state test_state;
|
|
|
|
printf("1010_datasn_invalid:\n");
|
|
printf("==================\n");
|
|
if (show_info) {
|
|
printf("Test sending commands with invalid datasn values.\n");
|
|
printf("1, Test that 2 DATA-IN with DATASN==0 is an error\n");
|
|
printf("2, Test that 2 DATA-IN with DATASN==27 is an error\n");
|
|
printf("3, Test that 2 DATA-IN with DATASN==-1 is an error\n");
|
|
printf("4, Test that 2 DATA-IN with DATASN in reverse order (1,0) is an error\n");
|
|
printf("\n");
|
|
return 0;
|
|
}
|
|
|
|
iscsi = iscsi_context_login(initiator, url, &lun);
|
|
if (iscsi == NULL) {
|
|
printf("Failed to login to target\n");
|
|
return -1;
|
|
}
|
|
|
|
if (!data_loss) {
|
|
printf("--dataloss flag is not set. Skipping test\n");
|
|
ret = -2;
|
|
goto finished;
|
|
}
|
|
|
|
|
|
ret = 0;
|
|
|
|
iscsi->use_immediate_data = ISCSI_IMMEDIATE_DATA_NO;
|
|
iscsi->target_max_recv_data_segment_length = block_size;
|
|
local_iscsi_queue_pdu = my_iscsi_queue_pdu;
|
|
|
|
printf("Write 2 DATA-IN with DATASN == 0 ... ");
|
|
/* we dont want autoreconnect since some targets will drop the
|
|
* on this condition.
|
|
*/
|
|
iscsi_set_noautoreconnect(iscsi, 1);
|
|
|
|
task = iscsi_write10_task(iscsi, lun, 0, data, 2 * block_size, block_size,
|
|
0, 0, 0, 0, 0,
|
|
test_cb, &test_state);
|
|
if (task == NULL) {
|
|
printf("[FAILED]\n");
|
|
printf("Failed to send WRITE10 command: %s\n", iscsi_get_error(iscsi));
|
|
ret = -1;
|
|
goto finished;
|
|
}
|
|
clamp_datasn = 1;
|
|
test_state.task = task;
|
|
test_state.finished = 0;
|
|
test_state.status = 0;
|
|
wait_until_test_finished(iscsi, &test_state);
|
|
clamp_datasn = 0;
|
|
if (task->status == SCSI_STATUS_GOOD) {
|
|
printf("[FAILED]\n");
|
|
printf("WRITE10 command successful. Should have failed with error\n");
|
|
ret = -1;
|
|
scsi_free_scsi_task(task);
|
|
goto finished;
|
|
}
|
|
scsi_free_scsi_task(task);
|
|
printf("[OK]\n");
|
|
|
|
|
|
/* in case the previous test failed the session */
|
|
iscsi_set_noautoreconnect(iscsi, 0);
|
|
iscsi->use_immediate_data = ISCSI_IMMEDIATE_DATA_NO;
|
|
iscsi->target_max_recv_data_segment_length = block_size;
|
|
|
|
printf("Write 2 DATA-IN with DATASN == 27 ... ");
|
|
/* we dont want autoreconnect since some targets will drop the
|
|
* on this condition.
|
|
*/
|
|
iscsi_set_noautoreconnect(iscsi, 1);
|
|
|
|
task = iscsi_write10_task(iscsi, lun, 0, data, 2 * block_size, block_size,
|
|
0, 0, 0, 0, 0,
|
|
test_cb, &test_state);
|
|
if (task == NULL) {
|
|
printf("[FAILED]\n");
|
|
printf("Failed to send WRITE10 command: %s\n", iscsi_get_error(iscsi));
|
|
ret = -1;
|
|
goto finished;
|
|
}
|
|
clamp_datasn = 2;
|
|
test_state.task = task;
|
|
test_state.finished = 0;
|
|
test_state.status = 0;
|
|
wait_until_test_finished(iscsi, &test_state);
|
|
clamp_datasn = 0;
|
|
if (task->status == SCSI_STATUS_GOOD) {
|
|
printf("[FAILED]\n");
|
|
printf("WRITE10 command successful. Should have failed with error\n");
|
|
ret = -1;
|
|
scsi_free_scsi_task(task);
|
|
goto finished;
|
|
}
|
|
scsi_free_scsi_task(task);
|
|
printf("[OK]\n");
|
|
|
|
|
|
/* in case the previous test failed the session */
|
|
iscsi_set_noautoreconnect(iscsi, 0);
|
|
iscsi->use_immediate_data = ISCSI_IMMEDIATE_DATA_NO;
|
|
iscsi->target_max_recv_data_segment_length = block_size;
|
|
|
|
printf("Write 2 DATA-IN with DATASN == -1 ... ");
|
|
/* we dont want autoreconnect since some targets will drop the
|
|
* on this condition.
|
|
*/
|
|
iscsi_set_noautoreconnect(iscsi, 1);
|
|
|
|
task = iscsi_write10_task(iscsi, lun, 0, data, 2 * block_size, block_size,
|
|
0, 0, 0, 0, 0,
|
|
test_cb, &test_state);
|
|
if (task == NULL) {
|
|
printf("[FAILED]\n");
|
|
printf("Failed to send WRITE10 command: %s\n", iscsi_get_error(iscsi));
|
|
ret = -1;
|
|
goto finished;
|
|
}
|
|
clamp_datasn = 3;
|
|
test_state.task = task;
|
|
test_state.finished = 0;
|
|
test_state.status = 0;
|
|
wait_until_test_finished(iscsi, &test_state);
|
|
clamp_datasn = 0;
|
|
if (task->status == SCSI_STATUS_GOOD) {
|
|
printf("[FAILED]\n");
|
|
printf("WRITE10 command successful. Should have failed with error\n");
|
|
ret = -1;
|
|
scsi_free_scsi_task(task);
|
|
goto finished;
|
|
}
|
|
scsi_free_scsi_task(task);
|
|
printf("[OK]\n");
|
|
|
|
|
|
/* in case the previous test failed the session */
|
|
iscsi_set_noautoreconnect(iscsi, 0);
|
|
|
|
/* in case the previous test failed the session */
|
|
iscsi_set_noautoreconnect(iscsi, 0);
|
|
iscsi->use_immediate_data = ISCSI_IMMEDIATE_DATA_NO;
|
|
iscsi->target_max_recv_data_segment_length = block_size;
|
|
|
|
printf("Write 2 DATA-IN with DATASN in reverse order (1, 0) ... ");
|
|
/* we dont want autoreconnect since some targets will drop the
|
|
* on this condition.
|
|
*/
|
|
iscsi_set_noautoreconnect(iscsi, 1);
|
|
|
|
task = iscsi_write10_task(iscsi, lun, 0, data, 2 * block_size, block_size,
|
|
0, 0, 0, 0, 0,
|
|
test_cb, &test_state);
|
|
if (task == NULL) {
|
|
printf("[FAILED]\n");
|
|
printf("Failed to send WRITE10 command: %s\n", iscsi_get_error(iscsi));
|
|
ret = -1;
|
|
goto finished;
|
|
}
|
|
clamp_datasn = 4;
|
|
test_state.task = task;
|
|
test_state.finished = 0;
|
|
test_state.status = 0;
|
|
wait_until_test_finished(iscsi, &test_state);
|
|
clamp_datasn = 0;
|
|
if (task->status == SCSI_STATUS_GOOD) {
|
|
printf("[FAILED]\n");
|
|
printf("WRITE10 command successful. Should have failed with error\n");
|
|
ret = -1;
|
|
scsi_free_scsi_task(task);
|
|
goto finished;
|
|
}
|
|
scsi_free_scsi_task(task);
|
|
printf("[OK]\n");
|
|
|
|
|
|
/* in case the previous test failed the session */
|
|
iscsi_set_noautoreconnect(iscsi, 0);
|
|
|
|
|
|
finished:
|
|
|
|
local_iscsi_queue_pdu = NULL;
|
|
iscsi_logout_sync(iscsi);
|
|
iscsi_destroy_context(iscsi);
|
|
return ret;
|
|
}
|