blob: 5bf0187e7520ba1f8f1dbad227274c358bfefe29 [file] [log] [blame]
Mike Christie7996a772006-04-06 21:13:41 -05001/*
2 * iSCSI lib definitions
3 *
4 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
5 * Copyright (C) 2004 - 2006 Mike Christie
6 * Copyright (C) 2004 - 2005 Dmitry Yusupov
7 * Copyright (C) 2004 - 2005 Alex Aizman
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23#ifndef LIBISCSI_H
24#define LIBISCSI_H
25
26#include <linux/types.h>
Mike Christie40753ca2008-05-21 15:53:56 -050027#include <linux/wait.h>
Mike Christie7996a772006-04-06 21:13:41 -050028#include <linux/mutex.h>
Al Virof6a57032006-10-18 01:47:25 -040029#include <linux/timer.h>
30#include <linux/workqueue.h>
Mike Christie7996a772006-04-06 21:13:41 -050031#include <scsi/iscsi_proto.h>
32#include <scsi/iscsi_if.h>
33
34struct scsi_transport_template;
Mike Christiea4804cd2008-05-21 15:54:00 -050035struct scsi_host_template;
Mike Christie7996a772006-04-06 21:13:41 -050036struct scsi_device;
37struct Scsi_Host;
38struct scsi_cmnd;
39struct socket;
40struct iscsi_transport;
41struct iscsi_cls_session;
42struct iscsi_cls_conn;
43struct iscsi_session;
44struct iscsi_nopin;
Mike Christiea4804cd2008-05-21 15:54:00 -050045struct device;
Mike Christie7996a772006-04-06 21:13:41 -050046
47/* #define DEBUG_SCSI */
48#ifdef DEBUG_SCSI
Or Gerlitzbe2df722006-05-02 19:46:43 -050049#define debug_scsi(fmt...) printk(KERN_INFO "iscsi: " fmt)
Mike Christie7996a772006-04-06 21:13:41 -050050#else
51#define debug_scsi(fmt...)
52#endif
53
Mike Christie15482712007-05-30 12:57:19 -050054#define ISCSI_DEF_XMIT_CMDS_MAX 128 /* must be power of 2 */
Mike Christie3cf7b232008-05-21 15:54:17 -050055#define ISCSI_MGMT_CMDS_MAX 15
Mike Christie7996a772006-04-06 21:13:41 -050056
57#define ISCSI_DEF_CMD_PER_LUN 32
58#define ISCSI_MAX_CMD_PER_LUN 128
59
60/* Task Mgmt states */
Mike Christie843c0a82007-12-13 12:43:20 -060061enum {
62 TMF_INITIAL,
63 TMF_QUEUED,
64 TMF_SUCCESS,
65 TMF_FAILED,
66 TMF_TIMEDOUT,
67 TMF_NOT_FOUND,
68};
Mike Christie7996a772006-04-06 21:13:41 -050069
70/* Connection suspend "bit" */
71#define ISCSI_SUSPEND_BIT 1
72
Mike Christie3cf7b232008-05-21 15:54:17 -050073#define ISCSI_ITT_MASK (0x1fff)
74#define ISCSI_TOTAL_CMDS_MAX 4096
75/* this must be a power of two greater than ISCSI_MGMT_CMDS_MAX */
76#define ISCSI_TOTAL_CMDS_MIN 16
Mike Christie7996a772006-04-06 21:13:41 -050077#define ISCSI_AGE_SHIFT 28
78#define ISCSI_AGE_MASK (0xf << ISCSI_AGE_SHIFT)
79
Mike Christie22236962007-05-30 12:57:24 -050080#define ISCSI_ADDRESS_BUF_LEN 64
81
Olaf Kirchda32dd62007-12-13 12:43:21 -060082enum {
Boaz Harrosh004d6532007-12-13 12:43:23 -060083 /* this is the maximum possible storage for AHSs */
84 ISCSI_MAX_AHS_SIZE = sizeof(struct iscsi_ecdb_ahdr) +
85 sizeof(struct iscsi_rlength_ahdr),
Olaf Kirchda32dd62007-12-13 12:43:21 -060086 ISCSI_DIGEST_SIZE = sizeof(__u32),
87};
88
Mike Christie7996a772006-04-06 21:13:41 -050089
Mike Christieb6c395e2006-07-24 15:47:15 -050090enum {
91 ISCSI_TASK_COMPLETED,
92 ISCSI_TASK_PENDING,
93 ISCSI_TASK_RUNNING,
94};
95
Mike Christie9c19a7d2008-05-21 15:54:09 -050096struct iscsi_task {
Mike Christie7996a772006-04-06 21:13:41 -050097 /*
Boaz Harrosh004d6532007-12-13 12:43:23 -060098 * Because LLDs allocate their hdr differently, this is a pointer
99 * and length to that storage. It must be setup at session
100 * creation time.
Mike Christie7996a772006-04-06 21:13:41 -0500101 */
102 struct iscsi_cmd *hdr;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600103 unsigned short hdr_max;
104 unsigned short hdr_len; /* accumulated size of hdr used */
Mike Christie7996a772006-04-06 21:13:41 -0500105 int itt; /* this ITT */
Mike Christie7996a772006-04-06 21:13:41 -0500106
107 uint32_t unsol_datasn;
Mike Christie857ae0b2007-05-30 12:57:15 -0500108 unsigned imm_count; /* imm-data (bytes) */
109 unsigned unsol_count; /* unsolicited (bytes)*/
Mike Christieffd04362006-08-31 18:09:24 -0400110 /* offset in unsolicited stream (bytes); */
Mike Christie857ae0b2007-05-30 12:57:15 -0500111 unsigned unsol_offset;
112 unsigned data_count; /* remaining Data-Out */
Mike Christie3e5c28a2008-05-21 15:54:06 -0500113 char *data; /* mgmt payload */
Mike Christie7996a772006-04-06 21:13:41 -0500114 struct scsi_cmnd *sc; /* associated SCSI cmd*/
Mike Christie7996a772006-04-06 21:13:41 -0500115 struct iscsi_conn *conn; /* used connection */
Mike Christie7996a772006-04-06 21:13:41 -0500116
Mike Christieb6c395e2006-07-24 15:47:15 -0500117 /* state set/tested under session->lock */
118 int state;
Mike Christie60ecebf2006-08-31 18:09:25 -0400119 atomic_t refcount;
Mike Christie7996a772006-04-06 21:13:41 -0500120 struct list_head running; /* running cmd list */
121 void *dd_data; /* driver/transport data */
122};
123
Mike Christie9c19a7d2008-05-21 15:54:09 -0500124static inline void* iscsi_next_hdr(struct iscsi_task *task)
Boaz Harrosh004d6532007-12-13 12:43:23 -0600125{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500126 return (void*)task->hdr + task->hdr_len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600127}
128
Mike Christie6eabafb2008-01-31 13:36:43 -0600129/* Connection's states */
130enum {
131 ISCSI_CONN_INITIAL_STAGE,
132 ISCSI_CONN_STARTED,
133 ISCSI_CONN_STOPPED,
134 ISCSI_CONN_CLEANUP_WAIT,
135};
136
Mike Christie7996a772006-04-06 21:13:41 -0500137struct iscsi_conn {
138 struct iscsi_cls_conn *cls_conn; /* ptr to class connection */
139 void *dd_data; /* iscsi_transport data */
140 struct iscsi_session *session; /* parent session */
141 /*
142 * LLDs should set this lock. It protects the transport recv
143 * code
144 */
145 rwlock_t *recv_lock;
146 /*
147 * conn_stop() flag: stop to recover, stop to terminate
148 */
149 int stop_stage;
Mike Christief6d51802007-12-13 12:43:30 -0600150 struct timer_list transport_timer;
151 unsigned long last_recv;
152 unsigned long last_ping;
153 int ping_timeout;
154 int recv_timeout;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500155 struct iscsi_task *ping_task;
Mike Christie7996a772006-04-06 21:13:41 -0500156
157 /* iSCSI connection-wide sequencing */
158 uint32_t exp_statsn;
159
160 /* control data */
161 int id; /* CID */
Mike Christie7996a772006-04-06 21:13:41 -0500162 int c_stage; /* connection state */
Mike Christiec8dc1e52006-07-24 15:47:39 -0500163 /*
164 * Preallocated buffer for pdus that have data but do not
165 * originate from scsi-ml. We never have two pdus using the
166 * buffer at the same time. It is only allocated to
167 * the default max recv size because the pdus we support
168 * should always fit in this buffer
169 */
170 char *data;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500171 struct iscsi_task *login_task; /* mtask used for login/text */
172 struct iscsi_task *task; /* xmit task in progress */
Mike Christie7996a772006-04-06 21:13:41 -0500173
174 /* xmit */
Mike Christie843c0a82007-12-13 12:43:20 -0600175 struct list_head mgmtqueue; /* mgmt (control) xmit queue */
Mike Christie7996a772006-04-06 21:13:41 -0500176 struct list_head mgmt_run_list; /* list of control tasks */
Mike Christieb6c395e2006-07-24 15:47:15 -0500177 struct list_head xmitqueue; /* data-path cmd queue */
Mike Christie7996a772006-04-06 21:13:41 -0500178 struct list_head run_list; /* list of cmds in progress */
Mike Christie843c0a82007-12-13 12:43:20 -0600179 struct list_head requeue; /* tasks needing another run */
Mike Christie7996a772006-04-06 21:13:41 -0500180 struct work_struct xmitwork; /* per-conn. xmit workqueue */
Mike Christie7996a772006-04-06 21:13:41 -0500181 unsigned long suspend_tx; /* suspend Tx */
182 unsigned long suspend_rx; /* suspend Rx */
183
184 /* abort */
185 wait_queue_head_t ehwait; /* used in eh_abort() */
186 struct iscsi_tm tmhdr;
Mike Christie843c0a82007-12-13 12:43:20 -0600187 struct timer_list tmf_timer;
188 int tmf_state; /* see TMF_INITIAL, etc.*/
Mike Christie7996a772006-04-06 21:13:41 -0500189
190 /* negotiated params */
Mike Christie857ae0b2007-05-30 12:57:15 -0500191 unsigned max_recv_dlength; /* initiator_max_recv_dsl*/
192 unsigned max_xmit_dlength; /* target_max_recv_dsl */
Mike Christie7996a772006-04-06 21:13:41 -0500193 int hdrdgst_en;
194 int datadgst_en;
Mike Christiea54a52c2006-06-28 12:00:23 -0500195 int ifmarker_en;
196 int ofmarker_en;
197 /* values userspace uses to id a conn */
198 int persistent_port;
199 char *persistent_address;
Mike Christie22236962007-05-30 12:57:24 -0500200 /* remote portal currently connected to */
201 int portal_port;
202 char portal_address[ISCSI_ADDRESS_BUF_LEN];
Mike Christie7996a772006-04-06 21:13:41 -0500203
204 /* MIB-statistics */
205 uint64_t txdata_octets;
206 uint64_t rxdata_octets;
207 uint32_t scsicmd_pdus_cnt;
208 uint32_t dataout_pdus_cnt;
209 uint32_t scsirsp_pdus_cnt;
210 uint32_t datain_pdus_cnt;
211 uint32_t r2t_pdus_cnt;
212 uint32_t tmfcmd_pdus_cnt;
213 int32_t tmfrsp_pdus_cnt;
214
215 /* custom statistics */
216 uint32_t eh_abort_cnt;
Eli Dorfman87528222008-04-29 13:46:52 -0700217 uint32_t fmr_unalign_cnt;
Mike Christie7996a772006-04-06 21:13:41 -0500218};
219
Olaf Kirch63203772007-12-13 12:43:25 -0600220struct iscsi_pool {
Mike Christie7996a772006-04-06 21:13:41 -0500221 struct kfifo *queue; /* FIFO Queue */
222 void **pool; /* Pool of elements */
223 int max; /* Max number of elements */
224};
225
Mike Christie6eabafb2008-01-31 13:36:43 -0600226/* Session's states */
227enum {
228 ISCSI_STATE_FREE = 1,
229 ISCSI_STATE_LOGGED_IN,
230 ISCSI_STATE_FAILED,
231 ISCSI_STATE_TERMINATE,
232 ISCSI_STATE_IN_RECOVERY,
233 ISCSI_STATE_RECOVERY_FAILED,
234 ISCSI_STATE_LOGGING_OUT,
235};
236
Mike Christie7996a772006-04-06 21:13:41 -0500237struct iscsi_session {
Mike Christie75613522008-05-21 15:53:59 -0500238 struct iscsi_cls_session *cls_session;
Mike Christie6724add2007-08-15 01:38:30 -0500239 /*
240 * Syncs up the scsi eh thread with the iscsi eh thread when sending
241 * task management functions. This must be taken before the session
242 * and recv lock.
243 */
244 struct mutex eh_mutex;
245
Mike Christie7996a772006-04-06 21:13:41 -0500246 /* iSCSI session-wide sequencing */
247 uint32_t cmdsn;
248 uint32_t exp_cmdsn;
249 uint32_t max_cmdsn;
250
Mike Christiee0726402007-07-26 12:46:48 -0500251 /* This tracks the reqs queued into the initiator */
252 uint32_t queued_cmdsn;
253
Mike Christie7996a772006-04-06 21:13:41 -0500254 /* configuration */
Mike Christief6d51802007-12-13 12:43:30 -0600255 int abort_timeout;
256 int lu_reset_timeout;
Mike Christie7996a772006-04-06 21:13:41 -0500257 int initial_r2t_en;
Mike Christie857ae0b2007-05-30 12:57:15 -0500258 unsigned max_r2t;
Mike Christie7996a772006-04-06 21:13:41 -0500259 int imm_data_en;
Mike Christie857ae0b2007-05-30 12:57:15 -0500260 unsigned first_burst;
261 unsigned max_burst;
Mike Christie7996a772006-04-06 21:13:41 -0500262 int time2wait;
263 int time2retain;
264 int pdu_inorder_en;
265 int dataseq_inorder_en;
266 int erl;
Mike Christie843c0a82007-12-13 12:43:20 -0600267 int fast_abort;
Mike Christiea54a52c2006-06-28 12:00:23 -0500268 int tpgt;
Mike Christieb2c64162007-05-30 12:57:16 -0500269 char *username;
270 char *username_in;
271 char *password;
272 char *password_in;
Mike Christiea54a52c2006-06-28 12:00:23 -0500273 char *targetname;
Mike Christie88dfd342008-05-21 15:54:16 -0500274 char *ifacename;
275 char *initiatorname;
Mike Christie7996a772006-04-06 21:13:41 -0500276 /* control data */
277 struct iscsi_transport *tt;
278 struct Scsi_Host *host;
279 struct iscsi_conn *leadconn; /* leading connection */
280 spinlock_t lock; /* protects session state, *
281 * sequence numbers, *
282 * session resources: *
283 * - cmdpool, *
284 * - mgmtpool, *
285 * - r2tpool */
286 int state; /* session state */
Mike Christie7996a772006-04-06 21:13:41 -0500287 int age; /* counts session re-opens */
288
Mike Christie3e5c28a2008-05-21 15:54:06 -0500289 int scsi_cmds_max; /* max scsi commands */
Mike Christie7996a772006-04-06 21:13:41 -0500290 int cmds_max; /* size of cmds array */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500291 struct iscsi_task **cmds; /* Original Cmds arr */
Olaf Kirch63203772007-12-13 12:43:25 -0600292 struct iscsi_pool cmdpool; /* PDU's pool */
Mike Christie7996a772006-04-06 21:13:41 -0500293};
294
Mike Christie75613522008-05-21 15:53:59 -0500295struct iscsi_host {
296 char *initiatorname;
297 /* hw address or netdev iscsi connection is bound to */
298 char *hwaddress;
299 char *netdev;
300 /* local address */
301 int local_port;
302 char local_address[ISCSI_ADDRESS_BUF_LEN];
303};
304
Mike Christie7996a772006-04-06 21:13:41 -0500305/*
306 * scsi host template
307 */
308extern int iscsi_change_queue_depth(struct scsi_device *sdev, int depth);
309extern int iscsi_eh_abort(struct scsi_cmnd *sc);
310extern int iscsi_eh_host_reset(struct scsi_cmnd *sc);
Mike Christie843c0a82007-12-13 12:43:20 -0600311extern int iscsi_eh_device_reset(struct scsi_cmnd *sc);
Mike Christie7996a772006-04-06 21:13:41 -0500312extern int iscsi_queuecommand(struct scsi_cmnd *sc,
313 void (*done)(struct scsi_cmnd *));
314
Mike Christie0801c242007-05-30 12:57:12 -0500315/*
316 * iSCSI host helpers.
317 */
Mike Christie5d91e202008-05-21 15:54:01 -0500318#define iscsi_host_priv(_shost) \
319 (shost_priv(_shost) + sizeof(struct iscsi_host))
320
Mike Christie0801c242007-05-30 12:57:12 -0500321extern int iscsi_host_set_param(struct Scsi_Host *shost,
322 enum iscsi_host_param param, char *buf,
323 int buflen);
324extern int iscsi_host_get_param(struct Scsi_Host *shost,
325 enum iscsi_host_param param, char *buf);
Mike Christiea4804cd2008-05-21 15:54:00 -0500326extern int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev);
327extern struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht,
328 int dd_data_size, uint16_t qdepth);
329extern void iscsi_host_remove(struct Scsi_Host *shost);
330extern void iscsi_host_free(struct Scsi_Host *shost);
Mike Christie0801c242007-05-30 12:57:12 -0500331
Mike Christie7996a772006-04-06 21:13:41 -0500332/*
333 * session management
334 */
335extern struct iscsi_cls_session *
Mike Christie75613522008-05-21 15:53:59 -0500336iscsi_session_setup(struct iscsi_transport *, struct Scsi_Host *shost,
Mike Christie79706342008-05-21 15:54:12 -0500337 uint16_t, int, uint32_t, unsigned int);
Mike Christie7996a772006-04-06 21:13:41 -0500338extern void iscsi_session_teardown(struct iscsi_cls_session *);
Mike Christie7996a772006-04-06 21:13:41 -0500339extern void iscsi_session_recovery_timedout(struct iscsi_cls_session *);
Mike Christiea54a52c2006-06-28 12:00:23 -0500340extern int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
341 enum iscsi_param param, char *buf, int buflen);
342extern int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
343 enum iscsi_param param, char *buf);
Mike Christie7996a772006-04-06 21:13:41 -0500344
Mike Christie322d7392008-01-31 13:36:52 -0600345#define iscsi_session_printk(prefix, _sess, fmt, a...) \
Mike Christie75613522008-05-21 15:53:59 -0500346 iscsi_cls_session_printk(prefix, _sess->cls_session, fmt, ##a)
Mike Christie322d7392008-01-31 13:36:52 -0600347
Mike Christie7996a772006-04-06 21:13:41 -0500348/*
349 * connection management
350 */
351extern struct iscsi_cls_conn *iscsi_conn_setup(struct iscsi_cls_session *,
Mike Christie5d91e202008-05-21 15:54:01 -0500352 int, uint32_t);
Mike Christie7996a772006-04-06 21:13:41 -0500353extern void iscsi_conn_teardown(struct iscsi_cls_conn *);
354extern int iscsi_conn_start(struct iscsi_cls_conn *);
355extern void iscsi_conn_stop(struct iscsi_cls_conn *, int);
356extern int iscsi_conn_bind(struct iscsi_cls_session *, struct iscsi_cls_conn *,
357 int);
358extern void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err);
Mike Christiea54a52c2006-06-28 12:00:23 -0500359extern int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
360 enum iscsi_param param, char *buf);
Mike Christie5af3e912008-05-21 15:54:02 -0500361extern void iscsi_suspend_tx(struct iscsi_conn *conn);
Mike Christie7996a772006-04-06 21:13:41 -0500362
Mike Christie322d7392008-01-31 13:36:52 -0600363#define iscsi_conn_printk(prefix, _c, fmt, a...) \
Mike Christie5af3e912008-05-21 15:54:02 -0500364 iscsi_cls_conn_printk(prefix, ((struct iscsi_conn *)_c)->cls_conn, \
365 fmt, ##a)
Mike Christie322d7392008-01-31 13:36:52 -0600366
Mike Christie7996a772006-04-06 21:13:41 -0500367/*
368 * pdu and task processing
369 */
Mike Christie77a23c22007-05-30 12:57:18 -0500370extern void iscsi_update_cmdsn(struct iscsi_session *, struct iscsi_nopin *);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500371extern void iscsi_prep_unsolicit_data_pdu(struct iscsi_task *,
Mike Christieffd04362006-08-31 18:09:24 -0400372 struct iscsi_data *hdr);
Mike Christie7996a772006-04-06 21:13:41 -0500373extern int iscsi_conn_send_pdu(struct iscsi_cls_conn *, struct iscsi_hdr *,
374 char *, uint32_t);
375extern int iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *,
376 char *, int);
Mike Christie0af967f2008-05-21 15:54:04 -0500377extern int iscsi_verify_itt(struct iscsi_conn *, itt_t);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500378extern struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *, itt_t);
379extern void iscsi_requeue_task(struct iscsi_task *task);
380extern void iscsi_put_task(struct iscsi_task *task);
Mike Christie7996a772006-04-06 21:13:41 -0500381
382/*
383 * generic helpers
384 */
Olaf Kirch63203772007-12-13 12:43:25 -0600385extern void iscsi_pool_free(struct iscsi_pool *);
386extern int iscsi_pool_init(struct iscsi_pool *, int, void ***, int);
Mike Christie7996a772006-04-06 21:13:41 -0500387
Boaz Harrosh004d6532007-12-13 12:43:23 -0600388/*
389 * inline functions to deal with padding.
390 */
391static inline unsigned int
392iscsi_padded(unsigned int len)
393{
394 return (len + ISCSI_PAD_LEN - 1) & ~(ISCSI_PAD_LEN - 1);
395}
396
397static inline unsigned int
398iscsi_padding(unsigned int len)
399{
400 len &= (ISCSI_PAD_LEN - 1);
401 if (len)
402 len = ISCSI_PAD_LEN - len;
403 return len;
404}
405
Mike Christie7996a772006-04-06 21:13:41 -0500406#endif