208 lines
5.1 KiB
C
208 lines
5.1 KiB
C
/*
|
|
Copyright (C) 2016 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/>.
|
|
*/
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#ifdef HAVE_POLL_H
|
|
#include <poll.h>
|
|
#else
|
|
#include "win32_compat.h"
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <getopt.h>
|
|
#include "iscsi.h"
|
|
#include "scsi-lowlevel.h"
|
|
|
|
const char *initiator = "iqn.2007-10.com.github:sahlberg:libiscsi:prog-readwrite-iov";
|
|
|
|
void print_usage(void)
|
|
{
|
|
fprintf(stderr, "Usage: prog_read_all_pdus [-?|--help] [--usage] "
|
|
"[-i|--initiator-name=iqn-name]\n"
|
|
"\t\t<iscsi-portal-url>\n");
|
|
fprintf(stderr, "\n");
|
|
fprintf(stderr, "This command is used to test that a single call "
|
|
"to iscsi_service() will process all PDUs in the receive "
|
|
"queue.\n");
|
|
}
|
|
|
|
void print_help(void)
|
|
{
|
|
fprintf(stderr, "Usage: prog_read_all_pdus [OPTION...] <iscsi-url>\n");
|
|
fprintf(stderr, " -i, --initiator-name=iqn-name "
|
|
"Initiatorname to use\n");
|
|
fprintf(stderr, "\n");
|
|
fprintf(stderr, "Help options:\n");
|
|
fprintf(stderr, " -?, --help "
|
|
"Show this help message\n");
|
|
fprintf(stderr, " --usage "
|
|
"Display brief usage message\n");
|
|
fprintf(stderr, "\n");
|
|
fprintf(stderr, "iSCSI Portal URL format : %s\n",
|
|
ISCSI_PORTAL_URL_SYNTAX);
|
|
fprintf(stderr, "\n");
|
|
fprintf(stderr, "<host> is either of:\n");
|
|
fprintf(stderr, " \"hostname\" iscsi.example\n");
|
|
fprintf(stderr, " \"ipv4-address\" 10.1.1.27\n");
|
|
fprintf(stderr, " \"ipv6-address\" [fce0::1]\n");
|
|
}
|
|
|
|
void tur_cb(struct iscsi_context *iscsi, int status,
|
|
void *command_data, void *private_data)
|
|
{
|
|
int *count = (int *)private_data;
|
|
|
|
(*count)--;
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct iscsi_context *iscsi;
|
|
struct iscsi_url *iscsi_url = NULL;
|
|
char *url = NULL;
|
|
static int show_help = 0, show_usage = 0, debug = 0;
|
|
int c, i, count;
|
|
|
|
static struct option long_options[] = {
|
|
{"help", no_argument, NULL, 'h'},
|
|
{"usage", no_argument, NULL, 'u'},
|
|
{"debug", no_argument, NULL, 'd'},
|
|
{"initiator-name", required_argument, NULL, 'i'},
|
|
{0, 0, 0, 0}
|
|
};
|
|
int option_index;
|
|
|
|
while ((c = getopt_long(argc, argv, "h?uUdi:s", long_options,
|
|
&option_index)) != -1) {
|
|
switch (c) {
|
|
case 'h':
|
|
case '?':
|
|
show_help = 1;
|
|
break;
|
|
case 'u':
|
|
show_usage = 1;
|
|
break;
|
|
case 'd':
|
|
debug = 1;
|
|
break;
|
|
case 'i':
|
|
initiator = optarg;
|
|
break;
|
|
default:
|
|
fprintf(stderr, "Unrecognized option '%c'\n\n", c);
|
|
print_help();
|
|
exit(0);
|
|
}
|
|
}
|
|
|
|
if (show_help != 0) {
|
|
print_help();
|
|
exit(0);
|
|
}
|
|
|
|
if (show_usage != 0) {
|
|
print_usage();
|
|
exit(0);
|
|
}
|
|
|
|
if (optind != argc -1) {
|
|
print_usage();
|
|
exit(0);
|
|
}
|
|
|
|
if (argv[optind] != NULL) {
|
|
url = strdup(argv[optind]);
|
|
}
|
|
if (url == NULL) {
|
|
fprintf(stderr, "You must specify iscsi target portal.\n");
|
|
print_usage();
|
|
exit(10);
|
|
}
|
|
|
|
iscsi = iscsi_create_context(initiator);
|
|
if (iscsi == NULL) {
|
|
fprintf(stderr, "Failed to create context\n");
|
|
exit(10);
|
|
}
|
|
|
|
if (debug > 0) {
|
|
iscsi_set_log_level(iscsi, debug);
|
|
iscsi_set_log_fn(iscsi, iscsi_log_to_stderr);
|
|
}
|
|
|
|
iscsi_url = iscsi_parse_full_url(iscsi, url);
|
|
|
|
free(url);
|
|
|
|
if (iscsi_url == NULL) {
|
|
fprintf(stderr, "Failed to parse URL: %s\n",
|
|
iscsi_get_error(iscsi));
|
|
exit(10);
|
|
}
|
|
|
|
iscsi_set_session_type(iscsi, ISCSI_SESSION_NORMAL);
|
|
|
|
if (iscsi_full_connect_sync(iscsi, iscsi_url->portal, iscsi_url->lun)
|
|
!= 0) {
|
|
fprintf(stderr, "iscsi_connect failed. %s\n",
|
|
iscsi_get_error(iscsi));
|
|
exit(10);
|
|
}
|
|
|
|
|
|
/* Queue 3 TESTUNITREADY for sending */
|
|
count = 0;
|
|
for (i = 0; i < 3; i++) {
|
|
count++;
|
|
if (iscsi_testunitready_task(iscsi, iscsi_url->lun, tur_cb,
|
|
&count) == NULL) {
|
|
printf("failed to send testunitready command : %s\n",
|
|
iscsi_get_error(iscsi));
|
|
exit(10);
|
|
}
|
|
}
|
|
iscsi_service(iscsi, POLLOUT);
|
|
|
|
/*
|
|
* Sleep for 3 seconds to give the server time to send all
|
|
* replies back to us.
|
|
*/
|
|
sleep(3);
|
|
|
|
/*
|
|
* Perform a singl iscsi_service and check if we processed all
|
|
* threee PDUs in the queue.
|
|
*/
|
|
iscsi_service(iscsi, POLLIN);
|
|
|
|
if (count) {
|
|
exit(10);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|