Blame view

include/scsi/iscsi_if.h 25.6 KB
c942fddf8   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
39e84790d   Alex Aizman   [SCSI] open-iscsi...
2
3
4
5
6
7
  /*
   * iSCSI User/Kernel Shares (Defines, Constants, Protocol definitions, etc)
   *
   * Copyright (C) 2005 Dmitry Yusupov
   * Copyright (C) 2005 Alex Aizman
   * maintained by open-iscsi@googlegroups.com
39e84790d   Alex Aizman   [SCSI] open-iscsi...
8
9
10
11
12
13
   */
  
  #ifndef ISCSI_IF_H
  #define ISCSI_IF_H
  
  #include <scsi/iscsi_proto.h>
43514774f   Michael Chan   [SCSI] iscsi clas...
14
15
16
17
18
  #include <linux/in.h>
  #include <linux/in6.h>
  
  #define ISCSI_NL_GRP_ISCSID	1
  #define ISCSI_NL_GRP_UIP	2
39e84790d   Alex Aizman   [SCSI] open-iscsi...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  
  #define UEVENT_BASE			10
  #define KEVENT_BASE			100
  #define ISCSI_ERR_BASE			1000
  
  enum iscsi_uevent_e {
  	ISCSI_UEVENT_UNKNOWN		= 0,
  
  	/* down events */
  	ISCSI_UEVENT_CREATE_SESSION	= UEVENT_BASE + 1,
  	ISCSI_UEVENT_DESTROY_SESSION	= UEVENT_BASE + 2,
  	ISCSI_UEVENT_CREATE_CONN	= UEVENT_BASE + 3,
  	ISCSI_UEVENT_DESTROY_CONN	= UEVENT_BASE + 4,
  	ISCSI_UEVENT_BIND_CONN		= UEVENT_BASE + 5,
  	ISCSI_UEVENT_SET_PARAM		= UEVENT_BASE + 6,
  	ISCSI_UEVENT_START_CONN		= UEVENT_BASE + 7,
  	ISCSI_UEVENT_STOP_CONN		= UEVENT_BASE + 8,
  	ISCSI_UEVENT_SEND_PDU		= UEVENT_BASE + 9,
  	ISCSI_UEVENT_GET_STATS		= UEVENT_BASE + 10,
  	ISCSI_UEVENT_GET_PARAM		= UEVENT_BASE + 11,
264faaaa1   Or Gerlitz   [SCSI] iscsi: add...
39
40
41
  	ISCSI_UEVENT_TRANSPORT_EP_CONNECT	= UEVENT_BASE + 12,
  	ISCSI_UEVENT_TRANSPORT_EP_POLL		= UEVENT_BASE + 13,
  	ISCSI_UEVENT_TRANSPORT_EP_DISCONNECT	= UEVENT_BASE + 14,
01cb225da   Mike Christie   [SCSI] iscsi: add...
42
  	ISCSI_UEVENT_TGT_DSCVR		= UEVENT_BASE + 15,
1d9bf13a9   Mike Christie   [SCSI] iscsi clas...
43
  	ISCSI_UEVENT_SET_HOST_PARAM	= UEVENT_BASE + 16,
269747890   Mike Christie   [SCSI] libiscsi: ...
44
  	ISCSI_UEVENT_UNBIND_SESSION	= UEVENT_BASE + 17,
10eb0f013   Mike Christie   [SCSI] iscsi: pas...
45
46
  	ISCSI_UEVENT_CREATE_BOUND_SESSION		= UEVENT_BASE + 18,
  	ISCSI_UEVENT_TRANSPORT_EP_CONNECT_THROUGH_HOST	= UEVENT_BASE + 19,
01cb225da   Mike Christie   [SCSI] iscsi: add...
47

43514774f   Michael Chan   [SCSI] iscsi clas...
48
  	ISCSI_UEVENT_PATH_UPDATE	= UEVENT_BASE + 20,
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
49
  	ISCSI_UEVENT_SET_IFACE_PARAMS	= UEVENT_BASE + 21,
ac20c7bf0   Vikas Chaudhary   [SCSI] iscsi_tran...
50
  	ISCSI_UEVENT_PING		= UEVENT_BASE + 22,
6260a5d22   Nilesh Javali   [SCSI] iscsi_tran...
51
52
  	ISCSI_UEVENT_GET_CHAP		= UEVENT_BASE + 23,
  	ISCSI_UEVENT_DELETE_CHAP	= UEVENT_BASE + 24,
c6a4bb2ef   Adheer Chandravanshi   [SCSI] scsi_trans...
53
54
55
56
57
58
  	ISCSI_UEVENT_SET_FLASHNODE_PARAMS	= UEVENT_BASE + 25,
  	ISCSI_UEVENT_NEW_FLASHNODE	= UEVENT_BASE + 26,
  	ISCSI_UEVENT_DEL_FLASHNODE	= UEVENT_BASE + 27,
  	ISCSI_UEVENT_LOGIN_FLASHNODE	= UEVENT_BASE + 28,
  	ISCSI_UEVENT_LOGOUT_FLASHNODE	= UEVENT_BASE + 29,
  	ISCSI_UEVENT_LOGOUT_FLASHNODE_SID	= UEVENT_BASE + 30,
3af142fea   Adheer Chandravanshi   [SCSI] scsi_trans...
59
  	ISCSI_UEVENT_SET_CHAP		= UEVENT_BASE + 31,
6fa7c5543   Lalit Chandivade   [SCSI] scsi_trans...
60
  	ISCSI_UEVENT_GET_HOST_STATS	= UEVENT_BASE + 32,
cc6b32ee3   Frank Mayhar   scsi: iscsi: Add ...
61
  	ISCSI_UEVENT_DESTROY_SESSION_ASYNC	= UEVENT_BASE + 33,
43514774f   Michael Chan   [SCSI] iscsi clas...
62

39e84790d   Alex Aizman   [SCSI] open-iscsi...
63
64
65
66
  	/* up events */
  	ISCSI_KEVENT_RECV_PDU		= KEVENT_BASE + 1,
  	ISCSI_KEVENT_CONN_ERROR		= KEVENT_BASE + 2,
  	ISCSI_KEVENT_IF_ERROR		= KEVENT_BASE + 3,
53cb8a1f4   Mike Christie   [SCSI] iscsi: add...
67
  	ISCSI_KEVENT_DESTROY_SESSION	= KEVENT_BASE + 4,
269747890   Mike Christie   [SCSI] libiscsi: ...
68
69
  	ISCSI_KEVENT_UNBIND_SESSION	= KEVENT_BASE + 5,
  	ISCSI_KEVENT_CREATE_SESSION	= KEVENT_BASE + 6,
43514774f   Michael Chan   [SCSI] iscsi clas...
70
71
72
  
  	ISCSI_KEVENT_PATH_REQ		= KEVENT_BASE + 7,
  	ISCSI_KEVENT_IF_DOWN		= KEVENT_BASE + 8,
17fa575ee   Manish Rangankar   [SCSI] scsi_trans...
73
  	ISCSI_KEVENT_CONN_LOGIN_STATE   = KEVENT_BASE + 9,
a11e25459   Vikas Chaudhary   [SCSI] scsi_trans...
74
  	ISCSI_KEVENT_HOST_EVENT		= KEVENT_BASE + 10,
ac20c7bf0   Vikas Chaudhary   [SCSI] iscsi_tran...
75
  	ISCSI_KEVENT_PING_COMP		= KEVENT_BASE + 11,
39e84790d   Alex Aizman   [SCSI] open-iscsi...
76
  };
01cb225da   Mike Christie   [SCSI] iscsi: add...
77
78
79
80
81
  enum iscsi_tgt_dscvr {
  	ISCSI_TGT_DSCVR_SEND_TARGETS	= 1,
  	ISCSI_TGT_DSCVR_ISNS		= 2,
  	ISCSI_TGT_DSCVR_SLP		= 3,
  };
a11e25459   Vikas Chaudhary   [SCSI] scsi_trans...
82
83
84
85
86
87
  enum iscsi_host_event_code {
  	ISCSI_EVENT_LINKUP		= 1,
  	ISCSI_EVENT_LINKDOWN,
  	/* must always be last */
  	ISCSI_EVENT_MAX,
  };
39e84790d   Alex Aizman   [SCSI] open-iscsi...
88
89
90
91
92
93
94
95
96
  struct iscsi_uevent {
  	uint32_t type; /* k/u events type */
  	uint32_t iferror; /* carries interface or resource errors */
  	uint64_t transport_handle;
  
  	union {
  		/* messages u -> k */
  		struct msg_create_session {
  			uint32_t	initial_cmdsn;
1548271ec   Mike Christie   [SCSI] libiscsi: ...
97
98
  			uint16_t	cmds_max;
  			uint16_t	queue_depth;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
99
  		} c_session;
40753caa3   Mike Christie   [SCSI] iscsi clas...
100
  		struct msg_create_bound_session {
d82ff9be7   Mike Christie   [SCSI] iscsi clas...
101
  			uint64_t	ep_handle;
40753caa3   Mike Christie   [SCSI] iscsi clas...
102
103
104
105
  			uint32_t	initial_cmdsn;
  			uint16_t	cmds_max;
  			uint16_t	queue_depth;
  		} c_bound_session;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
106
  		struct msg_destroy_session {
39e84790d   Alex Aizman   [SCSI] open-iscsi...
107
108
109
  			uint32_t	sid;
  		} d_session;
  		struct msg_create_conn {
39e84790d   Alex Aizman   [SCSI] open-iscsi...
110
  			uint32_t	sid;
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
111
  			uint32_t	cid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
112
113
  		} c_conn;
  		struct msg_bind_conn {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
114
115
  			uint32_t	sid;
  			uint32_t	cid;
264faaaa1   Or Gerlitz   [SCSI] iscsi: add...
116
  			uint64_t	transport_eph;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
117
118
119
  			uint32_t	is_leading;
  		} b_conn;
  		struct msg_destroy_conn {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
120
  			uint32_t	sid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
121
122
123
  			uint32_t	cid;
  		} d_conn;
  		struct msg_send_pdu {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
124
125
  			uint32_t	sid;
  			uint32_t	cid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
126
127
  			uint32_t	hdr_size;
  			uint32_t	data_size;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
128
129
  		} send_pdu;
  		struct msg_set_param {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
130
131
  			uint32_t	sid;
  			uint32_t	cid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
132
  			uint32_t	param; /* enum iscsi_param */
fd7255f51   Mike Christie   [SCSI] iscsi: add...
133
  			uint32_t	len;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
134
135
  		} set_param;
  		struct msg_start_conn {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
136
137
  			uint32_t	sid;
  			uint32_t	cid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
138
139
  		} start_conn;
  		struct msg_stop_conn {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
140
141
  			uint32_t	sid;
  			uint32_t	cid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
142
143
144
145
  			uint64_t	conn_handle;
  			uint32_t	flag;
  		} stop_conn;
  		struct msg_get_stats {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
146
147
  			uint32_t	sid;
  			uint32_t	cid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
148
  		} get_stats;
264faaaa1   Or Gerlitz   [SCSI] iscsi: add...
149
150
151
  		struct msg_transport_connect {
  			uint32_t	non_blocking;
  		} ep_connect;
10eb0f013   Mike Christie   [SCSI] iscsi: pas...
152
153
154
155
  		struct msg_transport_connect_through_host {
  			uint32_t	host_no;
  			uint32_t	non_blocking;
  		} ep_connect_through_host;
264faaaa1   Or Gerlitz   [SCSI] iscsi: add...
156
157
158
159
160
161
162
  		struct msg_transport_poll {
  			uint64_t	ep_handle;
  			uint32_t	timeout_ms;
  		} ep_poll;
  		struct msg_transport_disconnect {
  			uint64_t	ep_handle;
  		} ep_disconnect;
01cb225da   Mike Christie   [SCSI] iscsi: add...
163
164
165
166
167
168
169
170
171
172
173
  		struct msg_tgt_dscvr {
  			enum iscsi_tgt_dscvr	type;
  			uint32_t	host_no;
  			/*
   			 * enable = 1 to establish a new connection
  			 * with the server. enable = 0 to disconnect
  			 * from the server. Used primarily to switch
  			 * from one iSNS server to another.
  			 */
  			uint32_t	enable;
  		} tgt_dscvr;
1d9bf13a9   Mike Christie   [SCSI] iscsi clas...
174
175
176
177
178
  		struct msg_set_host_param {
  			uint32_t	host_no;
  			uint32_t	param; /* enum iscsi_host_param */
  			uint32_t	len;
  		} set_host_param;
43514774f   Michael Chan   [SCSI] iscsi clas...
179
180
181
  		struct msg_set_path {
  			uint32_t	host_no;
  		} set_path;
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
182
183
184
185
  		struct msg_set_iface_params {
  			uint32_t	host_no;
  			uint32_t	count;
  		} set_iface_params;
ac20c7bf0   Vikas Chaudhary   [SCSI] iscsi_tran...
186
187
188
189
190
191
192
193
  		struct msg_iscsi_ping {
  			uint32_t        host_no;
  			uint32_t        iface_num;
  			uint32_t        iface_type;
  			uint32_t        payload_size;
  			uint32_t	pid;	/* unique ping id associated
  						   with each ping request */
  		} iscsi_ping;
6260a5d22   Nilesh Javali   [SCSI] iscsi_tran...
194
195
196
197
198
199
200
201
202
203
204
205
  		struct msg_get_chap {
  			uint32_t	host_no;
  			uint32_t	num_entries; /* number of CHAP entries
  						      * on request, number of
  						      * valid CHAP entries on
  						      * response */
  			uint16_t	chap_tbl_idx;
  		} get_chap;
  		struct msg_delete_chap {
  		       uint32_t        host_no;
  		       uint16_t        chap_tbl_idx;
  		} delete_chap;
c6a4bb2ef   Adheer Chandravanshi   [SCSI] scsi_trans...
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
  		struct msg_set_flashnode_param {
  			uint32_t	host_no;
  			uint32_t	flashnode_idx;
  			uint32_t	count;
  		} set_flashnode;
  		struct msg_new_flashnode {
  			uint32_t	host_no;
  			uint32_t	len;
  		} new_flashnode;
  		struct msg_del_flashnode {
  			uint32_t	host_no;
  			uint32_t	flashnode_idx;
  		} del_flashnode;
  		struct msg_login_flashnode {
  			uint32_t	host_no;
  			uint32_t	flashnode_idx;
  		} login_flashnode;
  		struct msg_logout_flashnode {
  			uint32_t	host_no;
  			uint32_t	flashnode_idx;
  		} logout_flashnode;
  		struct msg_logout_flashnode_sid {
  			uint32_t	host_no;
  			uint32_t	sid;
  		} logout_flashnode_sid;
6fa7c5543   Lalit Chandivade   [SCSI] scsi_trans...
231
232
233
  		struct msg_get_host_stats {
  			uint32_t host_no;
  		} get_host_stats;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
234
235
236
  	} u;
  	union {
  		/* messages k -> u */
39e84790d   Alex Aizman   [SCSI] open-iscsi...
237
238
  		int			retcode;
  		struct msg_create_session_ret {
39e84790d   Alex Aizman   [SCSI] open-iscsi...
239
  			uint32_t	sid;
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
240
  			uint32_t	host_no;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
241
  		} c_session_ret;
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
242
243
244
245
  		struct msg_create_conn_ret {
  			uint32_t	sid;
  			uint32_t	cid;
  		} c_conn_ret;
269747890   Mike Christie   [SCSI] libiscsi: ...
246
247
248
249
  		struct msg_unbind_session {
  			uint32_t	sid;
  			uint32_t	host_no;
  		} unbind_session;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
250
  		struct msg_recv_req {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
251
252
  			uint32_t	sid;
  			uint32_t	cid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
253
  			uint64_t	recv_handle;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
254
  		} recv_req;
17fa575ee   Manish Rangankar   [SCSI] scsi_trans...
255
256
257
258
259
  		struct msg_conn_login {
  			uint32_t        sid;
  			uint32_t        cid;
  			uint32_t        state; /* enum iscsi_conn_state */
  		} conn_login;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
260
  		struct msg_conn_error {
b5c7a12dc   Mike Christie   [SCSI] iscsi: rm ...
261
262
  			uint32_t	sid;
  			uint32_t	cid;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
263
264
  			uint32_t	error; /* enum iscsi_err */
  		} connerror;
53cb8a1f4   Mike Christie   [SCSI] iscsi: add...
265
266
267
268
  		struct msg_session_destroyed {
  			uint32_t	host_no;
  			uint32_t	sid;
  		} d_session;
264faaaa1   Or Gerlitz   [SCSI] iscsi: add...
269
270
271
  		struct msg_transport_connect_ret {
  			uint64_t	handle;
  		} ep_connect_ret;
43514774f   Michael Chan   [SCSI] iscsi clas...
272
273
274
275
276
277
  		struct msg_req_path {
  			uint32_t	host_no;
  		} req_path;
  		struct msg_notify_if_down {
  			uint32_t	host_no;
  		} notify_if_down;
a11e25459   Vikas Chaudhary   [SCSI] scsi_trans...
278
279
280
281
282
  		struct msg_host_event {
  			uint32_t	host_no;
  			uint32_t	data_size;
  			enum iscsi_host_event_code code;
  		} host_event;
ac20c7bf0   Vikas Chaudhary   [SCSI] iscsi_tran...
283
284
  		struct msg_ping_comp {
  			uint32_t        host_no;
1a590cabc   Vikas Chaudhary   [SCSI] iscsi_tran...
285
286
  			uint32_t        status; /* enum
  						 * iscsi_ping_status_code */
ac20c7bf0   Vikas Chaudhary   [SCSI] iscsi_tran...
287
288
289
290
  			uint32_t	pid;	/* unique ping id associated
  						   with each ping request */
  			uint32_t        data_size;
  		} ping_comp;
c6a4bb2ef   Adheer Chandravanshi   [SCSI] scsi_trans...
291
292
293
  		struct msg_new_flashnode_ret {
  			uint32_t	flashnode_idx;
  		} new_flashnode_ret;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
294
295
  	} r;
  } __attribute__ ((aligned (sizeof(uint64_t))));
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
296
297
298
299
  enum iscsi_param_type {
  	ISCSI_PARAM,		/* iscsi_param (session, conn, target, LU) */
  	ISCSI_HOST_PARAM,	/* iscsi_host_param */
  	ISCSI_NET_PARAM,	/* iscsi_net_param */
c6a4bb2ef   Adheer Chandravanshi   [SCSI] scsi_trans...
300
  	ISCSI_FLASHNODE_PARAM,	/* iscsi_flashnode_param */
3af142fea   Adheer Chandravanshi   [SCSI] scsi_trans...
301
  	ISCSI_CHAP_PARAM,	/* iscsi_chap_param */
3e0f65b34   Harish Zunjarrao   [SCSI] iscsi_tran...
302
  	ISCSI_IFACE_PARAM,	/* iscsi_iface_param */
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
303
  };
3af142fea   Adheer Chandravanshi   [SCSI] scsi_trans...
304
305
306
307
  /* structure for minimalist usecase */
  struct iscsi_param_info {
  	uint32_t len;		/* Actual length of the param value */
  	uint16_t param;		/* iscsi param */
5febf6d6a   Gustavo A. R. Silva   scsi: Replace zer...
308
  	uint8_t value[];	/* length sized value follows */
3af142fea   Adheer Chandravanshi   [SCSI] scsi_trans...
309
  } __packed;
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
310
311
312
313
314
315
  struct iscsi_iface_param_info {
  	uint32_t iface_num;	/* iface number, 0 - n */
  	uint32_t len;		/* Actual length of the param */
  	uint16_t param;		/* iscsi param value */
  	uint8_t iface_type;	/* IPv4 or IPv6 */
  	uint8_t param_type;	/* iscsi_param_type */
5febf6d6a   Gustavo A. R. Silva   scsi: Replace zer...
316
  	uint8_t value[];	/* length sized value follows */
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
317
  } __packed;
39e84790d   Alex Aizman   [SCSI] open-iscsi...
318
  /*
43514774f   Michael Chan   [SCSI] iscsi clas...
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
   * To keep the struct iscsi_uevent size the same for userspace code
   * compatibility, the main structure for ISCSI_UEVENT_PATH_UPDATE and
   * ISCSI_KEVENT_PATH_REQ is defined separately and comes after the
   * struct iscsi_uevent in the NETLINK_ISCSI message.
   */
  struct iscsi_path {
  	uint64_t	handle;
  	uint8_t		mac_addr[6];
  	uint8_t		mac_addr_old[6];
  	uint32_t	ip_addr_len;	/* 4 or 16 */
  	union {
  		struct in_addr	v4_addr;
  		struct in6_addr	v6_addr;
  	} src;
  	union {
  		struct in_addr	v4_addr;
  		struct in6_addr	v6_addr;
  	} dst;
  	uint16_t	vlan_id;
  	uint16_t	pmtu;
  } __attribute__ ((aligned (sizeof(uint64_t))));
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
  /* iscsi iface enabled/disabled setting */
  #define ISCSI_IFACE_DISABLE	0x01
  #define ISCSI_IFACE_ENABLE	0x02
  
  /* ipv4 bootproto */
  #define ISCSI_BOOTPROTO_STATIC		0x01
  #define ISCSI_BOOTPROTO_DHCP		0x02
  
  /* ipv6 addr autoconfig type */
  #define ISCSI_IPV6_AUTOCFG_DISABLE		0x01
  #define ISCSI_IPV6_AUTOCFG_ND_ENABLE		0x02
  #define ISCSI_IPV6_AUTOCFG_DHCPV6_ENABLE	0x03
  
  /* ipv6 link local addr type */
  #define ISCSI_IPV6_LINKLOCAL_AUTOCFG_ENABLE	0x01
  #define ISCSI_IPV6_LINKLOCAL_AUTOCFG_DISABLE	0x02
  
  /* ipv6 router addr type */
  #define ISCSI_IPV6_ROUTER_AUTOCFG_ENABLE	0x01
  #define ISCSI_IPV6_ROUTER_AUTOCFG_DISABLE	0x02
  
  #define ISCSI_IFACE_TYPE_IPV4		0x01
  #define ISCSI_IFACE_TYPE_IPV6		0x02
4223b9e91   Mike Christie   [SCSI] iscsi clas...
363
364
365
366
367
368
  #define ISCSI_MAX_VLAN_ID		4095
  #define ISCSI_MAX_VLAN_PRIORITY		7
  
  /* iscsi vlan enable/disabled setting */
  #define ISCSI_VLAN_DISABLE	0x01
  #define ISCSI_VLAN_ENABLE	0x02
3e0f65b34   Harish Zunjarrao   [SCSI] iscsi_tran...
369
370
371
  /* iscsi generic enable/disabled setting for various features */
  #define ISCSI_NET_PARAM_DISABLE		0x01
  #define ISCSI_NET_PARAM_ENABLE		0x02
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
372
373
374
  /* iSCSI network params */
  enum iscsi_net_param {
  	ISCSI_NET_PARAM_IPV4_ADDR		= 1,
b867cda44   Harish Zunjarrao   [SCSI] iscsi_tran...
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
  	ISCSI_NET_PARAM_IPV4_SUBNET,
  	ISCSI_NET_PARAM_IPV4_GW,
  	ISCSI_NET_PARAM_IPV4_BOOTPROTO,
  	ISCSI_NET_PARAM_MAC,
  	ISCSI_NET_PARAM_IPV6_LINKLOCAL,
  	ISCSI_NET_PARAM_IPV6_ADDR,
  	ISCSI_NET_PARAM_IPV6_ROUTER,
  	ISCSI_NET_PARAM_IPV6_ADDR_AUTOCFG,
  	ISCSI_NET_PARAM_IPV6_LINKLOCAL_AUTOCFG,
  	ISCSI_NET_PARAM_IPV6_ROUTER_AUTOCFG,
  	ISCSI_NET_PARAM_IFACE_ENABLE,
  	ISCSI_NET_PARAM_VLAN_ID,
  	ISCSI_NET_PARAM_VLAN_PRIORITY,
  	ISCSI_NET_PARAM_VLAN_ENABLED,
  	ISCSI_NET_PARAM_VLAN_TAG,
  	ISCSI_NET_PARAM_IFACE_TYPE,
  	ISCSI_NET_PARAM_IFACE_NAME,
  	ISCSI_NET_PARAM_MTU,
  	ISCSI_NET_PARAM_PORT,
3e0f65b34   Harish Zunjarrao   [SCSI] iscsi_tran...
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
  	ISCSI_NET_PARAM_IPADDR_STATE,
  	ISCSI_NET_PARAM_IPV6_LINKLOCAL_STATE,
  	ISCSI_NET_PARAM_IPV6_ROUTER_STATE,
  	ISCSI_NET_PARAM_DELAYED_ACK_EN,
  	ISCSI_NET_PARAM_TCP_NAGLE_DISABLE,
  	ISCSI_NET_PARAM_TCP_WSF_DISABLE,
  	ISCSI_NET_PARAM_TCP_WSF,
  	ISCSI_NET_PARAM_TCP_TIMER_SCALE,
  	ISCSI_NET_PARAM_TCP_TIMESTAMP_EN,
  	ISCSI_NET_PARAM_CACHE_ID,
  	ISCSI_NET_PARAM_IPV4_DHCP_DNS_ADDR_EN,
  	ISCSI_NET_PARAM_IPV4_DHCP_SLP_DA_EN,
  	ISCSI_NET_PARAM_IPV4_TOS_EN,
  	ISCSI_NET_PARAM_IPV4_TOS,
  	ISCSI_NET_PARAM_IPV4_GRAT_ARP_EN,
  	ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID_EN,
  	ISCSI_NET_PARAM_IPV4_DHCP_ALT_CLIENT_ID,
  	ISCSI_NET_PARAM_IPV4_DHCP_REQ_VENDOR_ID_EN,
  	ISCSI_NET_PARAM_IPV4_DHCP_USE_VENDOR_ID_EN,
  	ISCSI_NET_PARAM_IPV4_DHCP_VENDOR_ID,
  	ISCSI_NET_PARAM_IPV4_DHCP_LEARN_IQN_EN,
  	ISCSI_NET_PARAM_IPV4_FRAGMENT_DISABLE,
  	ISCSI_NET_PARAM_IPV4_IN_FORWARD_EN,
  	ISCSI_NET_PARAM_IPV4_TTL,
  	ISCSI_NET_PARAM_IPV6_GRAT_NEIGHBOR_ADV_EN,
  	ISCSI_NET_PARAM_IPV6_MLD_EN,
  	ISCSI_NET_PARAM_IPV6_FLOW_LABEL,
  	ISCSI_NET_PARAM_IPV6_TRAFFIC_CLASS,
  	ISCSI_NET_PARAM_IPV6_HOP_LIMIT,
  	ISCSI_NET_PARAM_IPV6_ND_REACHABLE_TMO,
  	ISCSI_NET_PARAM_IPV6_ND_REXMIT_TIME,
  	ISCSI_NET_PARAM_IPV6_ND_STALE_TMO,
  	ISCSI_NET_PARAM_IPV6_DUP_ADDR_DETECT_CNT,
  	ISCSI_NET_PARAM_IPV6_RTR_ADV_LINK_MTU,
  	ISCSI_NET_PARAM_REDIRECT_EN,
  };
  
  enum iscsi_ipaddress_state {
  	ISCSI_IPDDRESS_STATE_UNCONFIGURED,
  	ISCSI_IPDDRESS_STATE_ACQUIRING,
  	ISCSI_IPDDRESS_STATE_TENTATIVE,
  	ISCSI_IPDDRESS_STATE_VALID,
  	ISCSI_IPDDRESS_STATE_DISABLING,
  	ISCSI_IPDDRESS_STATE_INVALID,
  	ISCSI_IPDDRESS_STATE_DEPRECATED,
  };
  
  enum iscsi_router_state {
  	ISCSI_ROUTER_STATE_UNKNOWN,
  	ISCSI_ROUTER_STATE_ADVERTISED,
  	ISCSI_ROUTER_STATE_MANUAL,
  	ISCSI_ROUTER_STATE_STALE,
  };
  
  /* iSCSI specific settings params for iface */
  enum iscsi_iface_param {
  	ISCSI_IFACE_PARAM_DEF_TASKMGMT_TMO,
  	ISCSI_IFACE_PARAM_HDRDGST_EN,
  	ISCSI_IFACE_PARAM_DATADGST_EN,
  	ISCSI_IFACE_PARAM_IMM_DATA_EN,
  	ISCSI_IFACE_PARAM_INITIAL_R2T_EN,
  	ISCSI_IFACE_PARAM_DATASEQ_INORDER_EN,
  	ISCSI_IFACE_PARAM_PDU_INORDER_EN,
  	ISCSI_IFACE_PARAM_ERL,
  	ISCSI_IFACE_PARAM_MAX_RECV_DLENGTH,
  	ISCSI_IFACE_PARAM_FIRST_BURST,
  	ISCSI_IFACE_PARAM_MAX_R2T,
  	ISCSI_IFACE_PARAM_MAX_BURST,
  	ISCSI_IFACE_PARAM_CHAP_AUTH_EN,
  	ISCSI_IFACE_PARAM_BIDI_CHAP_EN,
  	ISCSI_IFACE_PARAM_DISCOVERY_AUTH_OPTIONAL,
  	ISCSI_IFACE_PARAM_DISCOVERY_LOGOUT_EN,
  	ISCSI_IFACE_PARAM_STRICT_LOGIN_COMP_EN,
  	ISCSI_IFACE_PARAM_INITIATOR_NAME,
56c155b5c   Mike Christie   [SCSI] iscsi_tran...
468
  };
17fa575ee   Manish Rangankar   [SCSI] scsi_trans...
469
470
471
472
473
474
475
476
477
  enum iscsi_conn_state {
  	ISCSI_CONN_STATE_FREE,
  	ISCSI_CONN_STATE_XPT_WAIT,
  	ISCSI_CONN_STATE_IN_LOGIN,
  	ISCSI_CONN_STATE_LOGGED_IN,
  	ISCSI_CONN_STATE_IN_LOGOUT,
  	ISCSI_CONN_STATE_LOGOUT_REQUESTED,
  	ISCSI_CONN_STATE_CLEANUP_WAIT,
  };
43514774f   Michael Chan   [SCSI] iscsi clas...
478
  /*
39e84790d   Alex Aizman   [SCSI] open-iscsi...
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
   * Common error codes
   */
  enum iscsi_err {
  	ISCSI_OK			= 0,
  
  	ISCSI_ERR_DATASN		= ISCSI_ERR_BASE + 1,
  	ISCSI_ERR_DATA_OFFSET		= ISCSI_ERR_BASE + 2,
  	ISCSI_ERR_MAX_CMDSN		= ISCSI_ERR_BASE + 3,
  	ISCSI_ERR_EXP_CMDSN		= ISCSI_ERR_BASE + 4,
  	ISCSI_ERR_BAD_OPCODE		= ISCSI_ERR_BASE + 5,
  	ISCSI_ERR_DATALEN		= ISCSI_ERR_BASE + 6,
  	ISCSI_ERR_AHSLEN		= ISCSI_ERR_BASE + 7,
  	ISCSI_ERR_PROTO			= ISCSI_ERR_BASE + 8,
  	ISCSI_ERR_LUN			= ISCSI_ERR_BASE + 9,
  	ISCSI_ERR_BAD_ITT		= ISCSI_ERR_BASE + 10,
  	ISCSI_ERR_CONN_FAILED		= ISCSI_ERR_BASE + 11,
  	ISCSI_ERR_R2TSN			= ISCSI_ERR_BASE + 12,
  	ISCSI_ERR_SESSION_FAILED	= ISCSI_ERR_BASE + 13,
  	ISCSI_ERR_HDR_DGST		= ISCSI_ERR_BASE + 14,
  	ISCSI_ERR_DATA_DGST		= ISCSI_ERR_BASE + 15,
7996a778f   Mike Christie   [SCSI] iscsi: add...
499
500
  	ISCSI_ERR_PARAM_NOT_FOUND	= ISCSI_ERR_BASE + 16,
  	ISCSI_ERR_NO_SCSI_CMD		= ISCSI_ERR_BASE + 17,
e5bd7b54e   Mike Christie   [SCSI] libiscsi: ...
501
  	ISCSI_ERR_INVALID_HOST		= ISCSI_ERR_BASE + 18,
6f481e3ce   Mike Christie   [SCSI] iscsi_tcp:...
502
  	ISCSI_ERR_XMIT_FAILED		= ISCSI_ERR_BASE + 19,
d1af8a328   Mike Christie   [SCSI] iscsi_tcp:...
503
  	ISCSI_ERR_TCP_CONN_CLOSE	= ISCSI_ERR_BASE + 20,
df4da5cdf   Mike Christie   [SCSI] libiscsi: ...
504
  	ISCSI_ERR_SCSI_EH_SESSION_RST	= ISCSI_ERR_BASE + 21,
09ff742c6   Mike Christie   libiscsi: return ...
505
  	ISCSI_ERR_NOP_TIMEDOUT		= ISCSI_ERR_BASE + 22,
39e84790d   Alex Aizman   [SCSI] open-iscsi...
506
507
508
509
510
511
  };
  
  /*
   * iSCSI Parameters (RFC3720)
   */
  enum iscsi_param {
fd7255f51   Mike Christie   [SCSI] iscsi: add...
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
  	/* passed in using netlink set param */
  	ISCSI_PARAM_MAX_RECV_DLENGTH,
  	ISCSI_PARAM_MAX_XMIT_DLENGTH,
  	ISCSI_PARAM_HDRDGST_EN,
  	ISCSI_PARAM_DATADGST_EN,
  	ISCSI_PARAM_INITIAL_R2T_EN,
  	ISCSI_PARAM_MAX_R2T,
  	ISCSI_PARAM_IMM_DATA_EN,
  	ISCSI_PARAM_FIRST_BURST,
  	ISCSI_PARAM_MAX_BURST,
  	ISCSI_PARAM_PDU_INORDER_EN,
  	ISCSI_PARAM_DATASEQ_INORDER_EN,
  	ISCSI_PARAM_ERL,
  	ISCSI_PARAM_IFMARKER_EN,
  	ISCSI_PARAM_OFMARKER_EN,
8d2860b3c   Mike Christie   [SCSI] iscsi: inc...
527
  	ISCSI_PARAM_EXP_STATSN,
fd7255f51   Mike Christie   [SCSI] iscsi: add...
528
529
530
531
  	ISCSI_PARAM_TARGET_NAME,
  	ISCSI_PARAM_TPGT,
  	ISCSI_PARAM_PERSISTENT_ADDRESS,
  	ISCSI_PARAM_PERSISTENT_PORT,
30a6c6523   Mike Christie   [SCSI] iscsi: fix...
532
  	ISCSI_PARAM_SESS_RECOVERY_TMO,
fd7255f51   Mike Christie   [SCSI] iscsi: add...
533

25985edce   Lucas De Marchi   Fix common misspe...
534
  	/* passed in through bind conn using transport_fd */
fd7255f51   Mike Christie   [SCSI] iscsi: add...
535
536
  	ISCSI_PARAM_CONN_PORT,
  	ISCSI_PARAM_CONN_ADDRESS,
b2c641673   Mike Christie   [SCSI] iscsi clas...
537
538
539
540
  	ISCSI_PARAM_USERNAME,
  	ISCSI_PARAM_USERNAME_IN,
  	ISCSI_PARAM_PASSWORD,
  	ISCSI_PARAM_PASSWORD_IN,
843c0a8a7   Mike Christie   [SCSI] libiscsi, ...
541
  	ISCSI_PARAM_FAST_ABORT,
f6d5180c7   Mike Christie   [SCSI] libiscsi: ...
542
543
544
545
546
547
  	ISCSI_PARAM_ABORT_TMO,
  	ISCSI_PARAM_LU_RESET_TMO,
  	ISCSI_PARAM_HOST_RESET_TMO,
  
  	ISCSI_PARAM_PING_TMO,
  	ISCSI_PARAM_RECV_TMO,
88dfd340b   Mike Christie   [SCSI] iscsi clas...
548
549
550
551
  
  	ISCSI_PARAM_IFACE_NAME,
  	ISCSI_PARAM_ISID,
  	ISCSI_PARAM_INITIATOR_NAME,
3fe5ae8b4   Mike Christie   [SCSI] libiscsi: ...
552
553
  
  	ISCSI_PARAM_TGT_RESET_TMO,
3b2bef1fc   Vikas Chaudhary   [SCSI] iscsi_tran...
554
  	ISCSI_PARAM_TARGET_ALIAS,
305349527   Mike Christie   [SCSI] scsi_trans...
555
556
557
  
  	ISCSI_PARAM_CHAP_IN_IDX,
  	ISCSI_PARAM_CHAP_OUT_IDX,
3b9373e95   Eddie Wai   [SCSI] libiscsi: ...
558
559
560
561
  
  	ISCSI_PARAM_BOOT_ROOT,
  	ISCSI_PARAM_BOOT_NIC,
  	ISCSI_PARAM_BOOT_TARGET,
ae542edb1   Adheer Chandravanshi   [SCSI] scsi_trans...
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
  	ISCSI_PARAM_AUTO_SND_TGT_DISABLE,
  	ISCSI_PARAM_DISCOVERY_SESS,
  	ISCSI_PARAM_PORTAL_TYPE,
  	ISCSI_PARAM_CHAP_AUTH_EN,
  	ISCSI_PARAM_DISCOVERY_LOGOUT_EN,
  	ISCSI_PARAM_BIDI_CHAP_EN,
  	ISCSI_PARAM_DISCOVERY_AUTH_OPTIONAL,
  
  	ISCSI_PARAM_DEF_TIME2WAIT,
  	ISCSI_PARAM_DEF_TIME2RETAIN,
  	ISCSI_PARAM_MAX_SEGMENT_SIZE,
  	ISCSI_PARAM_STATSN,
  	ISCSI_PARAM_KEEPALIVE_TMO,
  	ISCSI_PARAM_LOCAL_PORT,
  	ISCSI_PARAM_TSID,
  	ISCSI_PARAM_DEF_TASKMGMT_TMO,
  
  	ISCSI_PARAM_TCP_TIMESTAMP_STAT,
  	ISCSI_PARAM_TCP_WSF_DISABLE,
  	ISCSI_PARAM_TCP_NAGLE_DISABLE,
  	ISCSI_PARAM_TCP_TIMER_SCALE,
  	ISCSI_PARAM_TCP_TIMESTAMP_EN,
  	ISCSI_PARAM_TCP_XMIT_WSF,
  	ISCSI_PARAM_TCP_RECV_WSF,
  	ISCSI_PARAM_IP_FRAGMENT_DISABLE,
  	ISCSI_PARAM_IPV4_TOS,
  	ISCSI_PARAM_IPV6_TC,
  	ISCSI_PARAM_IPV6_FLOW_LABEL,
  	ISCSI_PARAM_IS_FW_ASSIGNED_IPV6,
  
  	ISCSI_PARAM_DISCOVERY_PARENT_IDX,
  	ISCSI_PARAM_DISCOVERY_PARENT_TYPE,
5af62f240   Adheer Chandravanshi   [SCSI] scsi_trans...
594
  	ISCSI_PARAM_LOCAL_IPADDR,
fd7255f51   Mike Christie   [SCSI] iscsi: add...
595
596
  	/* must always be last */
  	ISCSI_PARAM_MAX,
39e84790d   Alex Aizman   [SCSI] open-iscsi...
597
  };
fd7255f51   Mike Christie   [SCSI] iscsi: add...
598

1819dc814   Mike Christie   [SCSI] iscsi_tran...
599
600
601
  /* iSCSI HBA params */
  enum iscsi_host_param {
  	ISCSI_HOST_PARAM_HWADDRESS,
8ad5781ae   Mike Christie   [SCSI] iscsi clas...
602
  	ISCSI_HOST_PARAM_INITIATOR_NAME,
d8196ed21   Mike Christie   [SCSI] iscsi clas...
603
  	ISCSI_HOST_PARAM_NETDEV_NAME,
222369619   Mike Christie   [SCSI] iscsi clas...
604
  	ISCSI_HOST_PARAM_IPADDRESS,
aeddde297   Vikas Chaudhary   [SCSI] scsi_trans...
605
606
  	ISCSI_HOST_PARAM_PORT_STATE,
  	ISCSI_HOST_PARAM_PORT_SPEED,
1819dc814   Mike Christie   [SCSI] iscsi_tran...
607
608
  	ISCSI_HOST_PARAM_MAX,
  };
2902eb495   Adheer Chandravanshi   [SCSI] scsi_trans...
609
610
611
  /* portal type */
  #define PORTAL_TYPE_IPV4	"ipv4"
  #define PORTAL_TYPE_IPV6	"ipv6"
c6a4bb2ef   Adheer Chandravanshi   [SCSI] scsi_trans...
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
  /* iSCSI Flash Target params */
  enum iscsi_flashnode_param {
  	ISCSI_FLASHNODE_IS_FW_ASSIGNED_IPV6,
  	ISCSI_FLASHNODE_PORTAL_TYPE,
  	ISCSI_FLASHNODE_AUTO_SND_TGT_DISABLE,
  	ISCSI_FLASHNODE_DISCOVERY_SESS,
  	ISCSI_FLASHNODE_ENTRY_EN,
  	ISCSI_FLASHNODE_HDR_DGST_EN,
  	ISCSI_FLASHNODE_DATA_DGST_EN,
  	ISCSI_FLASHNODE_IMM_DATA_EN,
  	ISCSI_FLASHNODE_INITIAL_R2T_EN,
  	ISCSI_FLASHNODE_DATASEQ_INORDER,
  	ISCSI_FLASHNODE_PDU_INORDER,
  	ISCSI_FLASHNODE_CHAP_AUTH_EN,
  	ISCSI_FLASHNODE_SNACK_REQ_EN,
  	ISCSI_FLASHNODE_DISCOVERY_LOGOUT_EN,
  	ISCSI_FLASHNODE_BIDI_CHAP_EN,
  	/* make authentication for discovery sessions optional */
  	ISCSI_FLASHNODE_DISCOVERY_AUTH_OPTIONAL,
  	ISCSI_FLASHNODE_ERL,
  	ISCSI_FLASHNODE_TCP_TIMESTAMP_STAT,
  	ISCSI_FLASHNODE_TCP_NAGLE_DISABLE,
  	ISCSI_FLASHNODE_TCP_WSF_DISABLE,
  	ISCSI_FLASHNODE_TCP_TIMER_SCALE,
  	ISCSI_FLASHNODE_TCP_TIMESTAMP_EN,
  	ISCSI_FLASHNODE_IP_FRAG_DISABLE,
  	ISCSI_FLASHNODE_MAX_RECV_DLENGTH,
  	ISCSI_FLASHNODE_MAX_XMIT_DLENGTH,
  	ISCSI_FLASHNODE_FIRST_BURST,
  	ISCSI_FLASHNODE_DEF_TIME2WAIT,
  	ISCSI_FLASHNODE_DEF_TIME2RETAIN,
  	ISCSI_FLASHNODE_MAX_R2T,
  	ISCSI_FLASHNODE_KEEPALIVE_TMO,
  	ISCSI_FLASHNODE_ISID,
  	ISCSI_FLASHNODE_TSID,
  	ISCSI_FLASHNODE_PORT,
  	ISCSI_FLASHNODE_MAX_BURST,
  	ISCSI_FLASHNODE_DEF_TASKMGMT_TMO,
  	ISCSI_FLASHNODE_IPADDR,
  	ISCSI_FLASHNODE_ALIAS,
  	ISCSI_FLASHNODE_REDIRECT_IPADDR,
  	ISCSI_FLASHNODE_MAX_SEGMENT_SIZE,
  	ISCSI_FLASHNODE_LOCAL_PORT,
  	ISCSI_FLASHNODE_IPV4_TOS,
  	ISCSI_FLASHNODE_IPV6_TC,
  	ISCSI_FLASHNODE_IPV6_FLOW_LABEL,
  	ISCSI_FLASHNODE_NAME,
  	ISCSI_FLASHNODE_TPGT,
  	ISCSI_FLASHNODE_LINK_LOCAL_IPV6,
  	ISCSI_FLASHNODE_DISCOVERY_PARENT_IDX,
  	ISCSI_FLASHNODE_DISCOVERY_PARENT_TYPE,
  	ISCSI_FLASHNODE_TCP_XMIT_WSF,
  	ISCSI_FLASHNODE_TCP_RECV_WSF,
  	ISCSI_FLASHNODE_CHAP_IN_IDX,
  	ISCSI_FLASHNODE_CHAP_OUT_IDX,
  	ISCSI_FLASHNODE_USERNAME,
  	ISCSI_FLASHNODE_USERNAME_IN,
  	ISCSI_FLASHNODE_PASSWORD,
  	ISCSI_FLASHNODE_PASSWORD_IN,
  	ISCSI_FLASHNODE_STATSN,
  	ISCSI_FLASHNODE_EXP_STATSN,
  	ISCSI_FLASHNODE_IS_BOOT_TGT,
  
  	ISCSI_FLASHNODE_MAX,
  };
  
  struct iscsi_flashnode_param_info {
  	uint32_t len;		/* Actual length of the param */
  	uint16_t param;		/* iscsi param value */
5febf6d6a   Gustavo A. R. Silva   scsi: Replace zer...
681
  	uint8_t value[];	/* length sized value follows */
c6a4bb2ef   Adheer Chandravanshi   [SCSI] scsi_trans...
682
683
684
685
686
687
688
  } __packed;
  
  enum iscsi_discovery_parent_type {
  	ISCSI_DISC_PARENT_UNKNOWN	= 0x1,
  	ISCSI_DISC_PARENT_SENDTGT	= 0x2,
  	ISCSI_DISC_PARENT_ISNS		= 0x3,
  };
aeddde297   Vikas Chaudhary   [SCSI] scsi_trans...
689
690
691
692
693
694
695
  /* iSCSI port Speed */
  enum iscsi_port_speed {
  	ISCSI_PORT_SPEED_UNKNOWN	= 0x1,
  	ISCSI_PORT_SPEED_10MBPS		= 0x2,
  	ISCSI_PORT_SPEED_100MBPS	= 0x4,
  	ISCSI_PORT_SPEED_1GBPS		= 0x8,
  	ISCSI_PORT_SPEED_10GBPS		= 0x10,
f9e4fa461   Jitendra Bhivare   scsi_transport_is...
696
697
  	ISCSI_PORT_SPEED_25GBPS         = 0x20,
  	ISCSI_PORT_SPEED_40GBPS         = 0x40,
aeddde297   Vikas Chaudhary   [SCSI] scsi_trans...
698
699
700
701
702
703
704
  };
  
  /* iSCSI port state */
  enum iscsi_port_state {
  	ISCSI_PORT_STATE_DOWN		= 0x1,
  	ISCSI_PORT_STATE_UP		= 0x2,
  };
1a590cabc   Vikas Chaudhary   [SCSI] iscsi_tran...
705
706
707
708
709
710
711
712
713
714
715
716
717
  /* iSCSI PING status/error code */
  enum iscsi_ping_status_code {
  	ISCSI_PING_SUCCESS			= 0,
  	ISCSI_PING_FW_DISABLED			= 0x1,
  	ISCSI_PING_IPADDR_INVALID		= 0x2,
  	ISCSI_PING_LINKLOCAL_IPV6_ADDR_INVALID	= 0x3,
  	ISCSI_PING_TIMEOUT			= 0x4,
  	ISCSI_PING_INVALID_DEST_ADDR		= 0x5,
  	ISCSI_PING_OVERSIZE_PACKET		= 0x6,
  	ISCSI_PING_ICMP_ERROR			= 0x7,
  	ISCSI_PING_MAX_REQ_EXCEEDED		= 0x8,
  	ISCSI_PING_NO_ARP_RECEIVED		= 0x9,
  };
39e84790d   Alex Aizman   [SCSI] open-iscsi...
718
719
  #define iscsi_ptr(_handle) ((void*)(unsigned long)_handle)
  #define iscsi_handle(_ptr) ((uint64_t)(unsigned long)_ptr)
39e84790d   Alex Aizman   [SCSI] open-iscsi...
720
721
722
723
724
725
726
727
728
729
730
731
732
  
  /*
   * These flags presents iSCSI Data-Path capabilities.
   */
  #define CAP_RECOVERY_L0		0x1
  #define CAP_RECOVERY_L1		0x2
  #define CAP_RECOVERY_L2		0x4
  #define CAP_MULTI_R2T		0x8
  #define CAP_HDRDGST		0x10
  #define CAP_DATADGST		0x20
  #define CAP_MULTI_CONN		0x40
  #define CAP_TEXT_NEGO		0x80
  #define CAP_MARKERS		0x100
0ab823db8   Mike Christie   [SCSI] qla4xxx: a...
733
  #define CAP_FW_DB		0x200
63c62f1cb   Mike Christie   [SCSI] iscsi_tcp:...
734
735
736
  #define CAP_SENDTARGETS_OFFLOAD	0x400	/* offload discovery process */
  #define CAP_DATA_PATH_OFFLOAD	0x800	/* offload entire IO path */
  #define CAP_DIGEST_OFFLOAD	0x1000	/* offload hdr and data digests */
6df19a791   Mike Christie   [SCSI] libiscsi_t...
737
738
  #define CAP_PADDING_OFFLOAD	0x2000	/* offload padding insertion, removal,
  					 and verification */
17fa575ee   Manish Rangankar   [SCSI] scsi_trans...
739
  #define CAP_LOGIN_OFFLOAD	0x4000  /* offload session login */
39e84790d   Alex Aizman   [SCSI] open-iscsi...
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
  
  /*
   * These flags describes reason of stop_conn() call
   */
  #define STOP_CONN_TERM		0x1
  #define STOP_CONN_SUSPEND	0x2
  #define STOP_CONN_RECOVER	0x3
  
  #define ISCSI_STATS_CUSTOM_MAX		32
  #define ISCSI_STATS_CUSTOM_DESC_MAX	64
  struct iscsi_stats_custom {
  	char desc[ISCSI_STATS_CUSTOM_DESC_MAX];
  	uint64_t value;
  };
  
  /*
   * struct iscsi_stats - iSCSI Statistics (iSCSI MIB)
   *
   * Note: this structure contains counters collected on per-connection basis.
   */
  struct iscsi_stats {
  	/* octets */
  	uint64_t txdata_octets;
  	uint64_t rxdata_octets;
  
  	/* xmit pdus */
  	uint32_t noptx_pdus;
  	uint32_t scsicmd_pdus;
  	uint32_t tmfcmd_pdus;
  	uint32_t login_pdus;
  	uint32_t text_pdus;
  	uint32_t dataout_pdus;
  	uint32_t logout_pdus;
  	uint32_t snack_pdus;
  
  	/* recv pdus */
  	uint32_t noprx_pdus;
  	uint32_t scsirsp_pdus;
  	uint32_t tmfrsp_pdus;
  	uint32_t textrsp_pdus;
  	uint32_t datain_pdus;
  	uint32_t logoutrsp_pdus;
  	uint32_t r2t_pdus;
  	uint32_t async_pdus;
  	uint32_t rjt_pdus;
  
  	/* errors */
  	uint32_t digest_err;
  	uint32_t timeout_err;
  
  	/*
  	 * iSCSI Custom Statistics support, i.e. Transport could
  	 * extend existing MIB statistics with its own specific statistics
  	 * up to ISCSI_STATS_CUSTOM_MAX
  	 */
  	uint32_t custom_length;
5febf6d6a   Gustavo A. R. Silva   scsi: Replace zer...
796
  	struct iscsi_stats_custom custom[]
39e84790d   Alex Aizman   [SCSI] open-iscsi...
797
798
  		__attribute__ ((aligned (sizeof(uint64_t))));
  };
6260a5d22   Nilesh Javali   [SCSI] iscsi_tran...
799
800
801
802
  enum chap_type_e {
  	CHAP_TYPE_OUT,
  	CHAP_TYPE_IN,
  };
3af142fea   Adheer Chandravanshi   [SCSI] scsi_trans...
803
804
805
806
807
808
809
  enum iscsi_chap_param {
  	ISCSI_CHAP_PARAM_INDEX,
  	ISCSI_CHAP_PARAM_CHAP_TYPE,
  	ISCSI_CHAP_PARAM_USERNAME,
  	ISCSI_CHAP_PARAM_PASSWORD,
  	ISCSI_CHAP_PARAM_PASSWORD_LEN
  };
6260a5d22   Nilesh Javali   [SCSI] iscsi_tran...
810
811
812
813
814
815
816
817
  #define ISCSI_CHAP_AUTH_NAME_MAX_LEN	256
  #define ISCSI_CHAP_AUTH_SECRET_MAX_LEN	256
  struct iscsi_chap_rec {
  	uint16_t chap_tbl_idx;
  	enum chap_type_e chap_type;
  	char username[ISCSI_CHAP_AUTH_NAME_MAX_LEN];
  	uint8_t password[ISCSI_CHAP_AUTH_SECRET_MAX_LEN];
  	uint8_t password_length;
5a5a15f20   Vikas Chaudhary   [SCSI] qla4xxx: R...
818
  };
6260a5d22   Nilesh Javali   [SCSI] iscsi_tran...
819

6fa7c5543   Lalit Chandivade   [SCSI] scsi_trans...
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
  #define ISCSI_HOST_STATS_CUSTOM_MAX             32
  #define ISCSI_HOST_STATS_CUSTOM_DESC_MAX        64
  struct iscsi_host_stats_custom {
  	char desc[ISCSI_HOST_STATS_CUSTOM_DESC_MAX];
  	uint64_t value;
  };
  
  /* struct iscsi_offload_host_stats: Host statistics,
   * Include statistics for MAC, IP, TCP & iSCSI.
   */
  struct iscsi_offload_host_stats {
  	/* MAC */
  	uint64_t mactx_frames;
  	uint64_t mactx_bytes;
  	uint64_t mactx_multicast_frames;
  	uint64_t mactx_broadcast_frames;
  	uint64_t mactx_pause_frames;
  	uint64_t mactx_control_frames;
  	uint64_t mactx_deferral;
  	uint64_t mactx_excess_deferral;
  	uint64_t mactx_late_collision;
  	uint64_t mactx_abort;
  	uint64_t mactx_single_collision;
  	uint64_t mactx_multiple_collision;
  	uint64_t mactx_collision;
  	uint64_t mactx_frames_dropped;
  	uint64_t mactx_jumbo_frames;
  	uint64_t macrx_frames;
  	uint64_t macrx_bytes;
  	uint64_t macrx_unknown_control_frames;
  	uint64_t macrx_pause_frames;
  	uint64_t macrx_control_frames;
  	uint64_t macrx_dribble;
  	uint64_t macrx_frame_length_error;
  	uint64_t macrx_jabber;
  	uint64_t macrx_carrier_sense_error;
  	uint64_t macrx_frame_discarded;
  	uint64_t macrx_frames_dropped;
  	uint64_t mac_crc_error;
  	uint64_t mac_encoding_error;
  	uint64_t macrx_length_error_large;
  	uint64_t macrx_length_error_small;
  	uint64_t macrx_multicast_frames;
  	uint64_t macrx_broadcast_frames;
  	/* IP */
  	uint64_t iptx_packets;
  	uint64_t iptx_bytes;
  	uint64_t iptx_fragments;
  	uint64_t iprx_packets;
  	uint64_t iprx_bytes;
  	uint64_t iprx_fragments;
  	uint64_t ip_datagram_reassembly;
  	uint64_t ip_invalid_address_error;
  	uint64_t ip_error_packets;
  	uint64_t ip_fragrx_overlap;
  	uint64_t ip_fragrx_outoforder;
  	uint64_t ip_datagram_reassembly_timeout;
  	uint64_t ipv6tx_packets;
  	uint64_t ipv6tx_bytes;
  	uint64_t ipv6tx_fragments;
  	uint64_t ipv6rx_packets;
  	uint64_t ipv6rx_bytes;
  	uint64_t ipv6rx_fragments;
  	uint64_t ipv6_datagram_reassembly;
  	uint64_t ipv6_invalid_address_error;
  	uint64_t ipv6_error_packets;
  	uint64_t ipv6_fragrx_overlap;
  	uint64_t ipv6_fragrx_outoforder;
  	uint64_t ipv6_datagram_reassembly_timeout;
  	/* TCP */
  	uint64_t tcptx_segments;
  	uint64_t tcptx_bytes;
  	uint64_t tcprx_segments;
  	uint64_t tcprx_byte;
  	uint64_t tcp_duplicate_ack_retx;
  	uint64_t tcp_retx_timer_expired;
  	uint64_t tcprx_duplicate_ack;
  	uint64_t tcprx_pure_ackr;
  	uint64_t tcptx_delayed_ack;
  	uint64_t tcptx_pure_ack;
  	uint64_t tcprx_segment_error;
  	uint64_t tcprx_segment_outoforder;
  	uint64_t tcprx_window_probe;
  	uint64_t tcprx_window_update;
  	uint64_t tcptx_window_probe_persist;
  	/* ECC */
  	uint64_t ecc_error_correction;
  	/* iSCSI */
  	uint64_t iscsi_pdu_tx;
  	uint64_t iscsi_data_bytes_tx;
  	uint64_t iscsi_pdu_rx;
  	uint64_t iscsi_data_bytes_rx;
  	uint64_t iscsi_io_completed;
  	uint64_t iscsi_unexpected_io_rx;
  	uint64_t iscsi_format_error;
  	uint64_t iscsi_hdr_digest_error;
  	uint64_t iscsi_data_digest_error;
  	uint64_t iscsi_sequence_error;
  	/*
  	 * iSCSI Custom Host Statistics support, i.e. Transport could
  	 * extend existing host statistics with its own specific statistics
  	 * up to ISCSI_HOST_STATS_CUSTOM_MAX
  	 */
  	uint32_t custom_length;
5febf6d6a   Gustavo A. R. Silva   scsi: Replace zer...
924
  	struct iscsi_host_stats_custom custom[]
6fa7c5543   Lalit Chandivade   [SCSI] scsi_trans...
925
926
  		__aligned(sizeof(uint64_t));
  };
39e84790d   Alex Aizman   [SCSI] open-iscsi...
927
  #endif