libiscsi.h 11.4 KB
Newer Older
M
Mike Christie 已提交
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
/*
 * iSCSI lib definitions
 *
 * Copyright (C) 2006 Red Hat, Inc.  All rights reserved.
 * Copyright (C) 2004 - 2006 Mike Christie
 * Copyright (C) 2004 - 2005 Dmitry Yusupov
 * Copyright (C) 2004 - 2005 Alex Aizman
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
#ifndef LIBISCSI_H
#define LIBISCSI_H

#include <linux/types.h>
27
#include <linux/wait.h>
M
Mike Christie 已提交
28
#include <linux/mutex.h>
A
Al Viro 已提交
29 30
#include <linux/timer.h>
#include <linux/workqueue.h>
M
Mike Christie 已提交
31 32 33 34
#include <scsi/iscsi_proto.h>
#include <scsi/iscsi_if.h>

struct scsi_transport_template;
35
struct scsi_host_template;
M
Mike Christie 已提交
36 37 38 39 40 41 42 43 44
struct scsi_device;
struct Scsi_Host;
struct scsi_cmnd;
struct socket;
struct iscsi_transport;
struct iscsi_cls_session;
struct iscsi_cls_conn;
struct iscsi_session;
struct iscsi_nopin;
45
struct device;
M
Mike Christie 已提交
46 47 48

/* #define DEBUG_SCSI */
#ifdef DEBUG_SCSI
O
Or Gerlitz 已提交
49
#define debug_scsi(fmt...) printk(KERN_INFO "iscsi: " fmt)
M
Mike Christie 已提交
50 51 52 53
#else
#define debug_scsi(fmt...)
#endif

54 55
#define ISCSI_DEF_XMIT_CMDS_MAX	128	/* must be power of 2 */
#define ISCSI_MGMT_CMDS_MAX	16	/* must be power of 2 */
M
Mike Christie 已提交
56 57 58 59 60 61 62

#define ISCSI_MGMT_ITT_OFFSET	0xa00

#define ISCSI_DEF_CMD_PER_LUN		32
#define ISCSI_MAX_CMD_PER_LUN		128

/* Task Mgmt states */
63 64 65 66 67 68 69 70
enum {
	TMF_INITIAL,
	TMF_QUEUED,
	TMF_SUCCESS,
	TMF_FAILED,
	TMF_TIMEDOUT,
	TMF_NOT_FOUND,
};
M
Mike Christie 已提交
71 72 73 74 75 76 77 78

/* Connection suspend "bit" */
#define ISCSI_SUSPEND_BIT		1

#define ISCSI_ITT_MASK			(0xfff)
#define ISCSI_AGE_SHIFT			28
#define ISCSI_AGE_MASK			(0xf << ISCSI_AGE_SHIFT)

79 80
#define ISCSI_ADDRESS_BUF_LEN		64

O
Olaf Kirch 已提交
81
enum {
82 83 84
	/* this is the maximum possible storage for AHSs */
	ISCSI_MAX_AHS_SIZE = sizeof(struct iscsi_ecdb_ahdr) +
				sizeof(struct iscsi_rlength_ahdr),
O
Olaf Kirch 已提交
85 86 87
	ISCSI_DIGEST_SIZE = sizeof(__u32),
};

M
Mike Christie 已提交
88

89 90 91 92 93 94
enum {
	ISCSI_TASK_COMPLETED,
	ISCSI_TASK_PENDING,
	ISCSI_TASK_RUNNING,
};

M
Mike Christie 已提交
95 96
struct iscsi_cmd_task {
	/*
97 98 99
	 * Because LLDs allocate their hdr differently, this is a pointer
	 * and length to that storage. It must be setup at session
	 * creation time.
M
Mike Christie 已提交
100 101
	 */
	struct iscsi_cmd	*hdr;
102 103
	unsigned short		hdr_max;
	unsigned short		hdr_len;	/* accumulated size of hdr used */
M
Mike Christie 已提交
104 105 106
	int			itt;		/* this ITT */

	uint32_t		unsol_datasn;
107 108
	unsigned		imm_count;	/* imm-data (bytes)   */
	unsigned		unsol_count;	/* unsolicited (bytes)*/
109
	/* offset in unsolicited stream (bytes); */
110 111
	unsigned		unsol_offset;
	unsigned		data_count;	/* remaining Data-Out */
112
	char			*data;		/* mgmt payload */
M
Mike Christie 已提交
113 114 115
	struct scsi_cmnd	*sc;		/* associated SCSI cmd*/
	struct iscsi_conn	*conn;		/* used connection    */

116 117
	/* state set/tested under session->lock */
	int			state;
118
	atomic_t		refcount;
M
Mike Christie 已提交
119 120 121 122
	struct list_head	running;	/* running cmd list */
	void			*dd_data;	/* driver/transport data */
};

123 124 125 126 127
static inline void* iscsi_next_hdr(struct iscsi_cmd_task *ctask)
{
	return (void*)ctask->hdr + ctask->hdr_len;
}

128 129 130 131 132 133 134 135
/* Connection's states */
enum {
	ISCSI_CONN_INITIAL_STAGE,
	ISCSI_CONN_STARTED,
	ISCSI_CONN_STOPPED,
	ISCSI_CONN_CLEANUP_WAIT,
};

M
Mike Christie 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148
struct iscsi_conn {
	struct iscsi_cls_conn	*cls_conn;	/* ptr to class connection */
	void			*dd_data;	/* iscsi_transport data */
	struct iscsi_session	*session;	/* parent session */
	/*
	 * LLDs should set this lock. It protects the transport recv
	 * code
	 */
	rwlock_t		*recv_lock;
	/*
	 * conn_stop() flag: stop to recover, stop to terminate
	 */
        int			stop_stage;
149 150 151 152 153
	struct timer_list	transport_timer;
	unsigned long		last_recv;
	unsigned long		last_ping;
	int			ping_timeout;
	int			recv_timeout;
154
	struct iscsi_cmd_task 	*ping_ctask;
M
Mike Christie 已提交
155 156 157 158 159 160 161

	/* iSCSI connection-wide sequencing */
	uint32_t		exp_statsn;

	/* control data */
	int			id;		/* CID */
	int			c_stage;	/* connection state */
162 163 164 165 166 167 168 169
	/*
	 * Preallocated buffer for pdus that have data but do not
	 * originate from scsi-ml. We never have two pdus using the
	 * buffer at the same time. It is only allocated to
	 * the default max recv size because the pdus we support
	 * should always fit in this buffer
	 */
	char			*data;
170 171
	struct iscsi_cmd_task 	*login_ctask;	/* mtask used for login/text */
	struct iscsi_cmd_task	*ctask;		/* xmit task in progress */
M
Mike Christie 已提交
172 173

	/* xmit */
174
	struct list_head	mgmtqueue;	/* mgmt (control) xmit queue */
M
Mike Christie 已提交
175
	struct list_head	mgmt_run_list;	/* list of control tasks */
176
	struct list_head	xmitqueue;	/* data-path cmd queue */
M
Mike Christie 已提交
177
	struct list_head	run_list;	/* list of cmds in progress */
178
	struct list_head	requeue;	/* tasks needing another run */
M
Mike Christie 已提交
179 180 181 182 183 184 185
	struct work_struct	xmitwork;	/* per-conn. xmit workqueue */
	unsigned long		suspend_tx;	/* suspend Tx */
	unsigned long		suspend_rx;	/* suspend Rx */

	/* abort */
	wait_queue_head_t	ehwait;		/* used in eh_abort() */
	struct iscsi_tm		tmhdr;
186 187
	struct timer_list	tmf_timer;
	int			tmf_state;	/* see TMF_INITIAL, etc.*/
M
Mike Christie 已提交
188 189

	/* negotiated params */
190 191
	unsigned		max_recv_dlength; /* initiator_max_recv_dsl*/
	unsigned		max_xmit_dlength; /* target_max_recv_dsl */
M
Mike Christie 已提交
192 193
	int			hdrdgst_en;
	int			datadgst_en;
194 195 196 197 198
	int			ifmarker_en;
	int			ofmarker_en;
	/* values userspace uses to id a conn */
	int			persistent_port;
	char			*persistent_address;
199 200 201
	/* remote portal currently connected to */
	int			portal_port;
	char			portal_address[ISCSI_ADDRESS_BUF_LEN];
M
Mike Christie 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215

	/* MIB-statistics */
	uint64_t		txdata_octets;
	uint64_t		rxdata_octets;
	uint32_t		scsicmd_pdus_cnt;
	uint32_t		dataout_pdus_cnt;
	uint32_t		scsirsp_pdus_cnt;
	uint32_t		datain_pdus_cnt;
	uint32_t		r2t_pdus_cnt;
	uint32_t		tmfcmd_pdus_cnt;
	int32_t			tmfrsp_pdus_cnt;

	/* custom statistics */
	uint32_t		eh_abort_cnt;
216
	uint32_t		fmr_unalign_cnt;
M
Mike Christie 已提交
217 218
};

219
struct iscsi_pool {
M
Mike Christie 已提交
220 221 222 223 224
	struct kfifo		*queue;		/* FIFO Queue */
	void			**pool;		/* Pool of elements */
	int			max;		/* Max number of elements */
};

225 226 227 228 229 230 231 232 233 234 235
/* Session's states */
enum {
	ISCSI_STATE_FREE = 1,
	ISCSI_STATE_LOGGED_IN,
	ISCSI_STATE_FAILED,
	ISCSI_STATE_TERMINATE,
	ISCSI_STATE_IN_RECOVERY,
	ISCSI_STATE_RECOVERY_FAILED,
	ISCSI_STATE_LOGGING_OUT,
};

M
Mike Christie 已提交
236
struct iscsi_session {
237
	struct iscsi_cls_session *cls_session;
238 239 240 241 242 243 244
	/*
	 * Syncs up the scsi eh thread with the iscsi eh thread when sending
	 * task management functions. This must be taken before the session
	 * and recv lock.
	 */
	struct mutex		eh_mutex;

M
Mike Christie 已提交
245 246 247 248 249
	/* iSCSI session-wide sequencing */
	uint32_t		cmdsn;
	uint32_t		exp_cmdsn;
	uint32_t		max_cmdsn;

250 251 252
	/* This tracks the reqs queued into the initiator */
	uint32_t		queued_cmdsn;

M
Mike Christie 已提交
253
	/* configuration */
254 255
	int			abort_timeout;
	int			lu_reset_timeout;
M
Mike Christie 已提交
256
	int			initial_r2t_en;
257
	unsigned		max_r2t;
M
Mike Christie 已提交
258
	int			imm_data_en;
259 260
	unsigned		first_burst;
	unsigned		max_burst;
M
Mike Christie 已提交
261 262 263 264 265
	int			time2wait;
	int			time2retain;
	int			pdu_inorder_en;
	int			dataseq_inorder_en;
	int			erl;
266
	int			fast_abort;
267
	int			tpgt;
268 269 270 271
	char			*username;
	char			*username_in;
	char			*password;
	char			*password_in;
272
	char			*targetname;
M
Mike Christie 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285
	/* control data */
	struct iscsi_transport	*tt;
	struct Scsi_Host	*host;
	struct iscsi_conn	*leadconn;	/* leading connection */
	spinlock_t		lock;		/* protects session state, *
						 * sequence numbers,       *
						 * session resources:      *
						 * - cmdpool,		   *
						 * - mgmtpool,		   *
						 * - r2tpool		   */
	int			state;		/* session state           */
	int			age;		/* counts session re-opens */

286
	int			scsi_cmds_max; 	/* max scsi commands */
M
Mike Christie 已提交
287 288
	int			cmds_max;	/* size of cmds array */
	struct iscsi_cmd_task	**cmds;		/* Original Cmds arr */
289
	struct iscsi_pool	cmdpool;	/* PDU's pool */
M
Mike Christie 已提交
290 291
};

292 293 294 295 296 297 298 299 300 301
struct iscsi_host {
	char			*initiatorname;
	/* hw address or netdev iscsi connection is bound to */
	char			*hwaddress;
	char			*netdev;
	/* local address */
	int			local_port;
	char			local_address[ISCSI_ADDRESS_BUF_LEN];
};

M
Mike Christie 已提交
302 303 304 305 306 307
/*
 * scsi host template
 */
extern int iscsi_change_queue_depth(struct scsi_device *sdev, int depth);
extern int iscsi_eh_abort(struct scsi_cmnd *sc);
extern int iscsi_eh_host_reset(struct scsi_cmnd *sc);
308
extern int iscsi_eh_device_reset(struct scsi_cmnd *sc);
M
Mike Christie 已提交
309 310
extern int iscsi_queuecommand(struct scsi_cmnd *sc,
			      void (*done)(struct scsi_cmnd *));
311 312 313 314

/*
 * iSCSI host helpers.
 */
315 316 317
#define iscsi_host_priv(_shost) \
	(shost_priv(_shost) + sizeof(struct iscsi_host))

318 319 320 321 322
extern int iscsi_host_set_param(struct Scsi_Host *shost,
				enum iscsi_host_param param, char *buf,
				int buflen);
extern int iscsi_host_get_param(struct Scsi_Host *shost,
				enum iscsi_host_param param, char *buf);
323 324 325 326 327
extern int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev);
extern struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht,
					  int dd_data_size, uint16_t qdepth);
extern void iscsi_host_remove(struct Scsi_Host *shost);
extern void iscsi_host_free(struct Scsi_Host *shost);
M
Mike Christie 已提交
328 329 330 331 332

/*
 * session management
 */
extern struct iscsi_cls_session *
333
iscsi_session_setup(struct iscsi_transport *, struct Scsi_Host *shost,
334
		    uint16_t, int, uint32_t);
M
Mike Christie 已提交
335 336
extern void iscsi_session_teardown(struct iscsi_cls_session *);
extern void iscsi_session_recovery_timedout(struct iscsi_cls_session *);
337 338 339 340
extern int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
			   enum iscsi_param param, char *buf, int buflen);
extern int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
				   enum iscsi_param param, char *buf);
M
Mike Christie 已提交
341

342
#define iscsi_session_printk(prefix, _sess, fmt, a...)	\
343
	iscsi_cls_session_printk(prefix, _sess->cls_session, fmt, ##a)
344

M
Mike Christie 已提交
345 346 347 348
/*
 * connection management
 */
extern struct iscsi_cls_conn *iscsi_conn_setup(struct iscsi_cls_session *,
349
					       int, uint32_t);
M
Mike Christie 已提交
350 351 352 353 354 355
extern void iscsi_conn_teardown(struct iscsi_cls_conn *);
extern int iscsi_conn_start(struct iscsi_cls_conn *);
extern void iscsi_conn_stop(struct iscsi_cls_conn *, int);
extern int iscsi_conn_bind(struct iscsi_cls_session *, struct iscsi_cls_conn *,
			   int);
extern void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err);
356 357
extern int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
				enum iscsi_param param, char *buf);
358
extern void iscsi_suspend_tx(struct iscsi_conn *conn);
M
Mike Christie 已提交
359

360
#define iscsi_conn_printk(prefix, _c, fmt, a...) \
361 362
	iscsi_cls_conn_printk(prefix, ((struct iscsi_conn *)_c)->cls_conn, \
			      fmt, ##a)
363

M
Mike Christie 已提交
364 365 366
/*
 * pdu and task processing
 */
367
extern void iscsi_update_cmdsn(struct iscsi_session *, struct iscsi_nopin *);
M
Mike Christie 已提交
368
extern void iscsi_prep_unsolicit_data_pdu(struct iscsi_cmd_task *,
369
					struct iscsi_data *hdr);
M
Mike Christie 已提交
370 371 372 373
extern int iscsi_conn_send_pdu(struct iscsi_cls_conn *, struct iscsi_hdr *,
				char *, uint32_t);
extern int iscsi_complete_pdu(struct iscsi_conn *, struct iscsi_hdr *,
			      char *, int);
374 375
extern int iscsi_verify_itt(struct iscsi_conn *, itt_t);
extern struct iscsi_cmd_task *iscsi_itt_to_ctask(struct iscsi_conn *, itt_t);
376
extern void iscsi_requeue_ctask(struct iscsi_cmd_task *ctask);
377
extern void iscsi_put_ctask(struct iscsi_cmd_task *ctask);
M
Mike Christie 已提交
378 379 380 381

/*
 * generic helpers
 */
382 383
extern void iscsi_pool_free(struct iscsi_pool *);
extern int iscsi_pool_init(struct iscsi_pool *, int, void ***, int);
M
Mike Christie 已提交
384

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
/*
 * inline functions to deal with padding.
 */
static inline unsigned int
iscsi_padded(unsigned int len)
{
	return (len + ISCSI_PAD_LEN - 1) & ~(ISCSI_PAD_LEN - 1);
}

static inline unsigned int
iscsi_padding(unsigned int len)
{
	len &= (ISCSI_PAD_LEN - 1);
	if (len)
		len = ISCSI_PAD_LEN - len;
	return len;
}

M
Mike Christie 已提交
403
#endif