blob: 435a8bda1c0be85b14cb0e11959820cae5d4116e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _ISCSIADM_H
#define _ISCSIADM_H
#ifdef __cplusplus
extern "C" {
#endif
#include <sys/iscsi_protocol.h>
#include <sys/scsi/adapters/iscsi_if.h>
#include <ima.h>
#include <cmdparse.h>
#define ADD SUBCOMMAND(0)
#define LIST SUBCOMMAND(1)
#define MODIFY SUBCOMMAND(2)
#define REMOVE SUBCOMMAND(3)
#define TARGET OBJECT(0)
#define NODE OBJECT(1)
#define INITIATOR OBJECT(2)
#define STATIC_CONFIG OBJECT(3)
#define DISCOVERY_ADDRESS OBJECT(4)
#define DISCOVERY OBJECT(5)
#define TARGET_PARAM OBJECT(6)
#define ISNS_SERVER_ADDRESS OBJECT(7)
#define DATA_SEQ_IN_ORDER 0x01
#define DEFAULT_TIME_2_RETAIN 0x02
#define DEFAULT_TIME_2_WAIT 0x03
#define FIRST_BURST_LENGTH 0x04
#define IMMEDIATE_DATA 0x05
#define INITIAL_R2T 0x06
#define MAX_BURST_LENGTH 0x07
#define DATA_PDU_IN_ORDER 0x08
#define MAX_OUTSTANDING_R2T 0x09
#define MAX_RECV_DATA_SEG_LEN 0x0a
#define HEADER_DIGEST 0x0b
#define DATA_DIGEST 0x0c
#define MAX_CONNECTIONS 0x0d
#define ERROR_RECOVERY_LEVEL 0x0e
#define RECV_LOGIN_RSP_TIMEOUT 0x0f
#define CONN_LOGIN_MAX 0x10
#define POLLING_LOGIN_DELAY 0x11
#define AUTH_NAME 0x01
#define AUTH_PASSWORD 0x02
#define ISCSIADM_ARG_ENABLE "enable"
#define ISCSIADM_ARG_DISABLE "disable"
/*
* This object type is not defined by IMA.
*/
#define SUN_IMA_OBJECT_TYPE_CONN 13 /* Currently not defined in IMA */
#define SUN_IMA_NODE_ALIAS_LEN 256
#define MAKE_IMA_ERROR(x) ((IMA_STATUS)(IMA_STATUS_ERROR | (x)))
#define SUN_IMA_SYSTEM_ERROR(status) (((IMA_STATUS)(status) & \
(IMA_STATUS)SUN_IMA_ERROR_SYSTEM_ERROR) == 0x8FFF0000 \
? IMA_TRUE : IMA_FALSE)
#define SUN_GET_SYSTEM_ERROR(x) (((IMA_STATUS)(x) & 0x0000FFFF))
#define SUN_IMA_ERROR_SYSTEM_ERROR MAKE_IMA_ERROR(0x0fff0000)
typedef struct _parameterTbl {
char *name;
int val;
} parameterTbl_t;
/*
* The following interfaces are not defined in IMA 1.1. Some of them
* are requirement candidates for the next IMA release.
*/
#define SUN_IMA_MAX_DIGEST_ALGORITHMS 2 /* NONE and CRC 32 */
#define SUN_IMA_IP_ADDRESS_PORT_LEN 256
#define SUN_IMA_MAX_RADIUS_SECRET_LEN 128
/* Currently not defined in IMA_TARGET_DISCOVERY_METHOD enum */
#define IMA_TARGET_DISCOVERY_METHOD_UNKNOWN 0
typedef enum
{
SUN_IMA_DIGEST_NONE = 0,
SUN_IMA_DIGEST_CRC32 = 1
} SUN_IMA_DIGEST_ALGORITHM;
typedef struct _SUN_IMA_DIGEST_ALGORITHM_VALUE
{
IMA_UINT defaultAlgorithmCount;
SUN_IMA_DIGEST_ALGORITHM defaultAlgorithms[SUN_IMA_MAX_DIGEST_ALGORITHMS];
IMA_BOOL currentValid;
IMA_UINT currentAlgorithmCount;
SUN_IMA_DIGEST_ALGORITHM currentAlgorithms[SUN_IMA_MAX_DIGEST_ALGORITHMS];
IMA_BOOL negotiatedValid;
IMA_UINT negotiatedAlgorithmCount;
SUN_IMA_DIGEST_ALGORITHM
negotiatedAlgorithms[SUN_IMA_MAX_DIGEST_ALGORITHMS];
} SUN_IMA_DIGEST_ALGORITHM_VALUE;
typedef struct _SUN_IMA_DISC_ADDR_PROP_LIST
{
IMA_UINT discAddrCount;
IMA_DISCOVERY_ADDRESS_PROPERTIES props[1];
} SUN_IMA_DISC_ADDR_PROP_LIST;
typedef struct _SUN_IMA_RADIUS_CONFIG
{
char hostnameIpAddress[SUN_IMA_IP_ADDRESS_PORT_LEN];
IMA_BOOL isIpv6;
IMA_UINT16 port;
IMA_BOOL sharedSecretValid;
IMA_UINT sharedSecretLength;
IMA_BYTE sharedSecret[SUN_IMA_MAX_RADIUS_SECRET_LEN];
} SUN_IMA_RADIUS_CONFIG;
typedef struct _SUN_IMA_DISC_ADDRESS_KEY
{
IMA_NODE_NAME name;
IMA_ADDRESS_KEY address;
IMA_UINT16 tpgt;
} SUN_IMA_DISC_ADDRESS_KEY;
typedef struct _SUN_IMA_DISC_ADDRESS_KEY_PROPERTIES
{
IMA_UINT keyCount;
SUN_IMA_DISC_ADDRESS_KEY keys[1];
} SUN_IMA_DISC_ADDRESS_KEY_PROPERTIES;
typedef struct _SUN_IMA_TARGET_ADDRESS
{
IMA_TARGET_ADDRESS imaStruct;
IMA_BOOL defaultTpgt; /* If true, tpgt becomes irrelvant */
IMA_UINT16 tpgt;
} SUN_IMA_TARGET_ADDRESS;
typedef struct _SUN_IMA_STATIC_DISCOVERY_TARGET
{
IMA_NODE_NAME targetName;
SUN_IMA_TARGET_ADDRESS targetAddress;
} SUN_IMA_STATIC_DISCOVERY_TARGET;
typedef struct _SUN_IMA_STATIC_DISCOVERY_TARGET_PROPERTIES
{
IMA_OID associatedNodeOid;
IMA_OID associatedLhbaOid;
SUN_IMA_STATIC_DISCOVERY_TARGET staticTarget;
} SUN_IMA_STATIC_DISCOVERY_TARGET_PROPERTIES;
typedef struct _SUN_IMA_CONN_PROPERTIES {
IMA_UINT32 connectionID;
IMA_ADDRESS_KEY local;
IMA_ADDRESS_KEY peer;
IMA_BOOL valuesValid;
IMA_UINT32 defaultTime2Retain;
IMA_UINT32 defaultTime2Wait;
IMA_UINT32 errorRecoveryLevel;
IMA_UINT32 firstBurstLength;
IMA_UINT32 maxBurstLength;
IMA_UINT32 maxConnections;
IMA_UINT32 maxOutstandingR2T;
IMA_UINT32 maxRecvDataSegmentLength;
IMA_BOOL dataPduInOrder;
IMA_BOOL dataSequenceInOrder;
IMA_BOOL immediateData;
IMA_BOOL initialR2T;
IMA_UINT headerDigest;
IMA_UINT dataDigest;
} SUN_IMA_CONN_PROPERTIES;
#define SUN_IMA_LU_VENDOR_ID_LEN ISCSI_INQ_VID_BUF_LEN
#define SUN_IMA_LU_PRODUCT_ID_LEN ISCSI_INQ_PID_BUF_LEN
typedef struct _SUN_IMA_LU_PROPERTIES
{
IMA_LU_PROPERTIES imaProps;
IMA_CHAR vendorId[SUN_IMA_LU_VENDOR_ID_LEN];
IMA_CHAR productId[SUN_IMA_LU_PRODUCT_ID_LEN];
} SUN_IMA_LU_PROPERTIES;
typedef struct _SUN_IMA_TARGET_PROPERTIES
{
IMA_TARGET_PROPERTIES imaProps;
IMA_BOOL defaultTpgtConf; /* If true, tpgtConf is irrelevant */
IMA_UINT16 tpgtConf;
IMA_BOOL defaultTpgtNego; /* If true, tpgtNego is not connected */
IMA_UINT16 tpgtNego;
IMA_BYTE isid[ISCSI_ISID_LEN];
} SUN_IMA_TARGET_PROPERTIES;
typedef struct _SUN_IMA_CONFIG_SESSIONS {
/* True if sessions are bound to an interface */
IMA_BOOL bound; /* OUT */
/*
* Memory allocated from caller. In addition
* on a Set this is the number of configured
* sessions.
*/
IMA_UINT in; /* IN */
/* Number of Configured sessions on Get */
IMA_UINT out; /* OUT */
IMA_ADDRESS_KEY bindings[1]; /* IN/OUT */
} SUN_IMA_CONFIG_SESSIONS;
typedef struct _SUN_IMA_STATIC_TARGET_PROPERTIES
{
IMA_OID associatedNodeOid;
IMA_OID associatedLhbaOid;
SUN_IMA_STATIC_DISCOVERY_TARGET staticTarget;
} SUN_IMA_STATIC_TARGET_PROPERTIES;
#ifdef __cplusplus
}
#endif
#endif /* _ISCSIADM_H */
|