2 * Copyright (c) 2005-2008 Daniel Braniss <danny@cs.huji.ac.il>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 | $Id: iscontrol.c,v 2.2 2006/12/01 09:11:56 danny Exp danny $
31 | the user level initiator (client)
34 #include <sys/cdefs.h>
36 #include <sys/param.h>
37 #include <sys/types.h>
38 #include <sys/socket.h>
39 #include <sys/sysctl.h>
40 #include <sys/module.h>
41 #include <sys/linker.h>
43 #include <netinet/in.h>
44 #include <netinet/tcp.h>
45 #include <arpa/inet.h>
46 #include <sys/ioctl.h>
58 #include "iscontrol.h"
60 #define USAGE "[-dv] [-c file] [-n nickname] [-t target] [variable=value ...]"
61 #define OPTIONS "vdc:t:n:"
67 token_t AuthMethods
[] = {
77 token_t DigestMethods
[] = {
91 .iqn
= "iqn.2005-01.il.ac.huji.cs:",
93 .sessionType
= "Normal",
98 .headerDigest
= "None,CRC32C",
99 .dataDigest
= "None,CRC32C",
101 .maxRecvDataSegmentLength
= 64 * 1024,
102 .maxXmitDataSegmentLength
= 8 * 1024, // 64 * 1024,
103 .maxBurstLength
= 128 * 1024,
104 .firstBurstLength
= 64 * 1024, // must be less than maxBurstLength
105 .defaultTime2Wait
= 0,
106 .defaultTime2Retain
= 0,
107 .maxOutstandingR2T
= 1,
108 .errorRecoveryLevel
= 0,
110 .dataPDUInOrder
= TRUE
,
111 .dataSequenceInOrder
= TRUE
,
114 .immediateData
= TRUE
,
118 lookup(token_t
*tbl
, char *m
)
122 for(tp
= tbl
; tp
->name
!= NULL
; tp
++)
123 if(strcasecmp(tp
->name
, m
) == 0)
129 main(int cc
, char **vv
)
132 char *pname
, *p
, *q
, *ta
, *kw
;
136 /* Try to load iscsi_initiator module before starting its operation */
137 if (modfind(INITIATORMOD
) < 0) {
138 if (kldload(INITIATORMOD
) < 0 || modfind(INITIATORMOD
) < 0) {
139 perror(INITIATORMOD
": Error while handling kernel module");
145 iscsidev
= "/dev/"ISCSIDEV
;
148 if((p
= strrchr(pname
, '/')) != NULL
)
154 while((ch
= getopt(cc
, vv
, OPTIONS
)) != -1) {
160 fd
= fopen(optarg
, "r");
177 fprintf(stderr
, "Usage: %s %s\n", pname
, USAGE
);
182 fd
= fopen("/etc/iscsi.conf", "r");
185 parseConfig(fd
, kw
, op
);
192 printf("adding '%s'\n", *vv
);
193 parseArgs(cc
, vv
, op
);
196 op
->targetAddress
= ta
;
198 if(op
->targetAddress
== NULL
) {
199 fprintf(stderr
, "No target!\n");
202 q
= op
->targetAddress
;
203 if(*q
== '[' && (q
= strchr(q
, ']')) != NULL
) {
207 q
= op
->targetAddress
;
208 if((p
= strchr(q
, ':')) != NULL
) {
213 if(p
|| ((p
= strchr(q
, ',')) != NULL
)) {
215 op
->targetPortalGroupTag
= atoi(p
);
217 if(op
->initiatorName
== 0) {
221 if(gethostname(hostname
, sizeof(hostname
)) == 0)
222 asprintf(&op
->initiatorName
, "%s:%s", op
->iqn
, hostname
);
224 asprintf(&op
->initiatorName
, "%s:%d", op
->iqn
, (int)time(0) & 0xff); // XXX:
227 if(gethostname(hostname
, sizeof(hostname
)) == 0)
228 asprintf(&op
->initiatorName
, "%s", hostname
);
230 asprintf(&op
->initiatorName
, "%d", (int)time(0) & 0xff); // XXX:
234 op
->sessionType
= "Discovery";