blob: 933a91b1474e3ee3e86bb768300849c7e61cb735 [file] [log] [blame]
Alex Aizman39e84792005-08-04 19:31:00 -07001/*
2 * iSCSI User/Kernel Shares (Defines, Constants, Protocol definitions, etc)
3 *
4 * Copyright (C) 2005 Dmitry Yusupov
5 * Copyright (C) 2005 Alex Aizman
6 * maintained by open-iscsi@googlegroups.com
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published
10 * by the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * See the file COPYING included with this distribution for more details.
19 */
20
21#ifndef ISCSI_IF_H
22#define ISCSI_IF_H
23
24#include <scsi/iscsi_proto.h>
25
26#define UEVENT_BASE 10
27#define KEVENT_BASE 100
28#define ISCSI_ERR_BASE 1000
29
30enum iscsi_uevent_e {
31 ISCSI_UEVENT_UNKNOWN = 0,
32
33 /* down events */
34 ISCSI_UEVENT_CREATE_SESSION = UEVENT_BASE + 1,
35 ISCSI_UEVENT_DESTROY_SESSION = UEVENT_BASE + 2,
36 ISCSI_UEVENT_CREATE_CONN = UEVENT_BASE + 3,
37 ISCSI_UEVENT_DESTROY_CONN = UEVENT_BASE + 4,
38 ISCSI_UEVENT_BIND_CONN = UEVENT_BASE + 5,
39 ISCSI_UEVENT_SET_PARAM = UEVENT_BASE + 6,
40 ISCSI_UEVENT_START_CONN = UEVENT_BASE + 7,
41 ISCSI_UEVENT_STOP_CONN = UEVENT_BASE + 8,
42 ISCSI_UEVENT_SEND_PDU = UEVENT_BASE + 9,
43 ISCSI_UEVENT_GET_STATS = UEVENT_BASE + 10,
44 ISCSI_UEVENT_GET_PARAM = UEVENT_BASE + 11,
45
46 /* up events */
47 ISCSI_KEVENT_RECV_PDU = KEVENT_BASE + 1,
48 ISCSI_KEVENT_CONN_ERROR = KEVENT_BASE + 2,
49 ISCSI_KEVENT_IF_ERROR = KEVENT_BASE + 3,
50};
51
52struct iscsi_uevent {
53 uint32_t type; /* k/u events type */
54 uint32_t iferror; /* carries interface or resource errors */
55 uint64_t transport_handle;
56
57 union {
58 /* messages u -> k */
59 struct msg_create_session {
60 uint32_t initial_cmdsn;
61 } c_session;
62 struct msg_destroy_session {
Alex Aizman39e84792005-08-04 19:31:00 -070063 uint32_t sid;
64 } d_session;
65 struct msg_create_conn {
Alex Aizman39e84792005-08-04 19:31:00 -070066 uint32_t sid;
Mike Christieb5c7a122006-04-06 21:13:33 -050067 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -070068 } c_conn;
69 struct msg_bind_conn {
Mike Christieb5c7a122006-04-06 21:13:33 -050070 uint32_t sid;
71 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -070072 uint32_t transport_fd;
73 uint32_t is_leading;
74 } b_conn;
75 struct msg_destroy_conn {
Mike Christieb5c7a122006-04-06 21:13:33 -050076 uint32_t sid;
Alex Aizman39e84792005-08-04 19:31:00 -070077 uint32_t cid;
78 } d_conn;
79 struct msg_send_pdu {
Mike Christieb5c7a122006-04-06 21:13:33 -050080 uint32_t sid;
81 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -070082 uint32_t hdr_size;
83 uint32_t data_size;
Alex Aizman39e84792005-08-04 19:31:00 -070084 } send_pdu;
85 struct msg_set_param {
Mike Christieb5c7a122006-04-06 21:13:33 -050086 uint32_t sid;
87 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -070088 uint32_t param; /* enum iscsi_param */
89 uint32_t value;
90 } set_param;
91 struct msg_start_conn {
Mike Christieb5c7a122006-04-06 21:13:33 -050092 uint32_t sid;
93 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -070094 } start_conn;
95 struct msg_stop_conn {
Mike Christieb5c7a122006-04-06 21:13:33 -050096 uint32_t sid;
97 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -070098 uint64_t conn_handle;
99 uint32_t flag;
100 } stop_conn;
101 struct msg_get_stats {
Mike Christieb5c7a122006-04-06 21:13:33 -0500102 uint32_t sid;
103 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -0700104 } get_stats;
105 } u;
106 union {
107 /* messages k -> u */
Alex Aizman39e84792005-08-04 19:31:00 -0700108 int retcode;
109 struct msg_create_session_ret {
Alex Aizman39e84792005-08-04 19:31:00 -0700110 uint32_t sid;
Mike Christieb5c7a122006-04-06 21:13:33 -0500111 uint32_t host_no;
Alex Aizman39e84792005-08-04 19:31:00 -0700112 } c_session_ret;
Mike Christieb5c7a122006-04-06 21:13:33 -0500113 struct msg_create_conn_ret {
114 uint32_t sid;
115 uint32_t cid;
116 } c_conn_ret;
Alex Aizman39e84792005-08-04 19:31:00 -0700117 struct msg_recv_req {
Mike Christieb5c7a122006-04-06 21:13:33 -0500118 uint32_t sid;
119 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -0700120 uint64_t recv_handle;
Alex Aizman39e84792005-08-04 19:31:00 -0700121 } recv_req;
122 struct msg_conn_error {
Mike Christieb5c7a122006-04-06 21:13:33 -0500123 uint32_t sid;
124 uint32_t cid;
Alex Aizman39e84792005-08-04 19:31:00 -0700125 uint32_t error; /* enum iscsi_err */
126 } connerror;
127 } r;
128} __attribute__ ((aligned (sizeof(uint64_t))));
129
130/*
131 * Common error codes
132 */
133enum iscsi_err {
134 ISCSI_OK = 0,
135
136 ISCSI_ERR_DATASN = ISCSI_ERR_BASE + 1,
137 ISCSI_ERR_DATA_OFFSET = ISCSI_ERR_BASE + 2,
138 ISCSI_ERR_MAX_CMDSN = ISCSI_ERR_BASE + 3,
139 ISCSI_ERR_EXP_CMDSN = ISCSI_ERR_BASE + 4,
140 ISCSI_ERR_BAD_OPCODE = ISCSI_ERR_BASE + 5,
141 ISCSI_ERR_DATALEN = ISCSI_ERR_BASE + 6,
142 ISCSI_ERR_AHSLEN = ISCSI_ERR_BASE + 7,
143 ISCSI_ERR_PROTO = ISCSI_ERR_BASE + 8,
144 ISCSI_ERR_LUN = ISCSI_ERR_BASE + 9,
145 ISCSI_ERR_BAD_ITT = ISCSI_ERR_BASE + 10,
146 ISCSI_ERR_CONN_FAILED = ISCSI_ERR_BASE + 11,
147 ISCSI_ERR_R2TSN = ISCSI_ERR_BASE + 12,
148 ISCSI_ERR_SESSION_FAILED = ISCSI_ERR_BASE + 13,
149 ISCSI_ERR_HDR_DGST = ISCSI_ERR_BASE + 14,
150 ISCSI_ERR_DATA_DGST = ISCSI_ERR_BASE + 15,
151 ISCSI_ERR_PARAM_NOT_FOUND = ISCSI_ERR_BASE + 16
152};
153
154/*
155 * iSCSI Parameters (RFC3720)
156 */
157enum iscsi_param {
158 ISCSI_PARAM_MAX_RECV_DLENGTH = 0,
159 ISCSI_PARAM_MAX_XMIT_DLENGTH = 1,
160 ISCSI_PARAM_HDRDGST_EN = 2,
161 ISCSI_PARAM_DATADGST_EN = 3,
162 ISCSI_PARAM_INITIAL_R2T_EN = 4,
163 ISCSI_PARAM_MAX_R2T = 5,
164 ISCSI_PARAM_IMM_DATA_EN = 6,
165 ISCSI_PARAM_FIRST_BURST = 7,
166 ISCSI_PARAM_MAX_BURST = 8,
167 ISCSI_PARAM_PDU_INORDER_EN = 9,
168 ISCSI_PARAM_DATASEQ_INORDER_EN = 10,
169 ISCSI_PARAM_ERL = 11,
170 ISCSI_PARAM_IFMARKER_EN = 12,
171 ISCSI_PARAM_OFMARKER_EN = 13,
172};
173#define ISCSI_PARAM_MAX 14
174
Alex Aizman39e84792005-08-04 19:31:00 -0700175#define iscsi_ptr(_handle) ((void*)(unsigned long)_handle)
176#define iscsi_handle(_ptr) ((uint64_t)(unsigned long)_ptr)
Mike Christie7b8631b2006-01-13 18:05:50 -0600177#define hostdata_session(_hostdata) (iscsi_ptr(*(unsigned long *)_hostdata))
178
179/**
180 * iscsi_hostdata - get LLD hostdata from scsi_host
181 * @_hostdata: pointer to scsi host's hostdata
182 **/
Alex Aizman39e84792005-08-04 19:31:00 -0700183#define iscsi_hostdata(_hostdata) ((void*)_hostdata + sizeof(unsigned long))
184
185/*
186 * These flags presents iSCSI Data-Path capabilities.
187 */
188#define CAP_RECOVERY_L0 0x1
189#define CAP_RECOVERY_L1 0x2
190#define CAP_RECOVERY_L2 0x4
191#define CAP_MULTI_R2T 0x8
192#define CAP_HDRDGST 0x10
193#define CAP_DATADGST 0x20
194#define CAP_MULTI_CONN 0x40
195#define CAP_TEXT_NEGO 0x80
196#define CAP_MARKERS 0x100
197
198/*
199 * These flags describes reason of stop_conn() call
200 */
201#define STOP_CONN_TERM 0x1
202#define STOP_CONN_SUSPEND 0x2
203#define STOP_CONN_RECOVER 0x3
204
205#define ISCSI_STATS_CUSTOM_MAX 32
206#define ISCSI_STATS_CUSTOM_DESC_MAX 64
207struct iscsi_stats_custom {
208 char desc[ISCSI_STATS_CUSTOM_DESC_MAX];
209 uint64_t value;
210};
211
212/*
213 * struct iscsi_stats - iSCSI Statistics (iSCSI MIB)
214 *
215 * Note: this structure contains counters collected on per-connection basis.
216 */
217struct iscsi_stats {
218 /* octets */
219 uint64_t txdata_octets;
220 uint64_t rxdata_octets;
221
222 /* xmit pdus */
223 uint32_t noptx_pdus;
224 uint32_t scsicmd_pdus;
225 uint32_t tmfcmd_pdus;
226 uint32_t login_pdus;
227 uint32_t text_pdus;
228 uint32_t dataout_pdus;
229 uint32_t logout_pdus;
230 uint32_t snack_pdus;
231
232 /* recv pdus */
233 uint32_t noprx_pdus;
234 uint32_t scsirsp_pdus;
235 uint32_t tmfrsp_pdus;
236 uint32_t textrsp_pdus;
237 uint32_t datain_pdus;
238 uint32_t logoutrsp_pdus;
239 uint32_t r2t_pdus;
240 uint32_t async_pdus;
241 uint32_t rjt_pdus;
242
243 /* errors */
244 uint32_t digest_err;
245 uint32_t timeout_err;
246
247 /*
248 * iSCSI Custom Statistics support, i.e. Transport could
249 * extend existing MIB statistics with its own specific statistics
250 * up to ISCSI_STATS_CUSTOM_MAX
251 */
252 uint32_t custom_length;
253 struct iscsi_stats_custom custom[0]
254 __attribute__ ((aligned (sizeof(uint64_t))));
255};
256
257#endif