Go to the documentation of this file.
24 #include <linux/types.h>
25 #include <scsi/scsi.h>
27 #define ISCSI_DRAFT20_VERSION 0x00
30 #define ISCSI_LISTEN_PORT 3260
33 #define ISCSI_HDR_LEN 48
36 #define ISCSI_CRC_LEN 4
39 #define ISCSI_PAD_LEN 4
45 static inline int iscsi_sna_lt(
u32 n1,
u32 n2)
47 return (
s32)(n1 - n2) < 0;
50 static inline int iscsi_sna_lte(
u32 n1,
u32 n2)
52 return (
s32)(n1 - n2) <= 0;
55 static inline int iscsi_sna_gt(
u32 n1,
u32 n2)
57 return (
s32)(n1 - n2) > 0;
60 static inline int iscsi_sna_gte(
u32 n1,
u32 n2)
62 return (
s32)(n1 - n2) >= 0;
68 #define ntoh24(p) (((p)[0] << 16) | ((p)[1] << 8) | ((p)[2]))
69 #define hton24(p, v) { \
70 p[0] = (((v) >> 16) & 0xFF); \
71 p[1] = (((v) >> 8) & 0xFF); \
72 p[2] = ((v) & 0xFF); \
74 #define zero_data(p) {p[0]=0;p[1]=0;p[2]=0;}
79 #define build_itt(itt, age) ((__force itt_t)\
80 ((itt) | ((age) << ISCSI_AGE_SHIFT)))
81 #define get_itt(itt) ((__force uint32_t)(itt_t)(itt) & ISCSI_ITT_MASK)
82 #define RESERVED_ITT ((__force itt_t)0xffffffff)
104 #define ISCSI_RESERVED_TAG 0xffffffff
107 #define ISCSI_OP_RETRY 0x80
108 #define ISCSI_OP_IMMEDIATE 0x40
109 #define ISCSI_OPCODE_MASK 0x3F
112 #define ISCSI_OP_NOOP_OUT 0x00
113 #define ISCSI_OP_SCSI_CMD 0x01
114 #define ISCSI_OP_SCSI_TMFUNC 0x02
115 #define ISCSI_OP_LOGIN 0x03
116 #define ISCSI_OP_TEXT 0x04
117 #define ISCSI_OP_SCSI_DATA_OUT 0x05
118 #define ISCSI_OP_LOGOUT 0x06
119 #define ISCSI_OP_SNACK 0x10
121 #define ISCSI_OP_VENDOR1_CMD 0x1c
122 #define ISCSI_OP_VENDOR2_CMD 0x1d
123 #define ISCSI_OP_VENDOR3_CMD 0x1e
124 #define ISCSI_OP_VENDOR4_CMD 0x1f
127 #define ISCSI_OP_NOOP_IN 0x20
128 #define ISCSI_OP_SCSI_CMD_RSP 0x21
129 #define ISCSI_OP_SCSI_TMFUNC_RSP 0x22
130 #define ISCSI_OP_LOGIN_RSP 0x23
131 #define ISCSI_OP_TEXT_RSP 0x24
132 #define ISCSI_OP_SCSI_DATA_IN 0x25
133 #define ISCSI_OP_LOGOUT_RSP 0x26
134 #define ISCSI_OP_R2T 0x31
135 #define ISCSI_OP_ASYNC_EVENT 0x32
136 #define ISCSI_OP_REJECT 0x3f
144 #define ISCSI_AHSTYPE_CDB 1
145 #define ISCSI_AHSTYPE_RLENGTH 2
146 #define ISCSI_CDB_SIZE 16
165 #define ISCSI_FLAG_CMD_FINAL 0x80
166 #define ISCSI_FLAG_CMD_READ 0x40
167 #define ISCSI_FLAG_CMD_WRITE 0x20
168 #define ISCSI_FLAG_CMD_ATTR_MASK 0x07
171 #define ISCSI_ATTR_UNTAGGED 0
172 #define ISCSI_ATTR_SIMPLE 1
173 #define ISCSI_ATTR_ORDERED 2
174 #define ISCSI_ATTR_HEAD_OF_QUEUE 3
175 #define ISCSI_ATTR_ACA 4
214 #define ISCSI_FLAG_CMD_BIDI_OVERFLOW 0x10
215 #define ISCSI_FLAG_CMD_BIDI_UNDERFLOW 0x08
216 #define ISCSI_FLAG_CMD_OVERFLOW 0x04
217 #define ISCSI_FLAG_CMD_UNDERFLOW 0x02
220 #define ISCSI_STATUS_CMD_COMPLETED 0
221 #define ISCSI_STATUS_TARGET_FAILURE 1
222 #define ISCSI_STATUS_SUBSYS_FAILURE 2
245 #define ISCSI_ASYNC_MSG_SCSI_EVENT 0
246 #define ISCSI_ASYNC_MSG_REQUEST_LOGOUT 1
247 #define ISCSI_ASYNC_MSG_DROPPING_CONNECTION 2
248 #define ISCSI_ASYNC_MSG_DROPPING_ALL_CONNECTIONS 3
249 #define ISCSI_ASYNC_MSG_PARAM_NEGOTIATION 4
250 #define ISCSI_ASYNC_MSG_VENDOR_SPECIFIC 255
300 #define ISCSI_FLAG_TM_FUNC_MASK 0x7F
303 #define ISCSI_TM_FUNC_ABORT_TASK 1
304 #define ISCSI_TM_FUNC_ABORT_TASK_SET 2
305 #define ISCSI_TM_FUNC_CLEAR_ACA 3
306 #define ISCSI_TM_FUNC_CLEAR_TASK_SET 4
307 #define ISCSI_TM_FUNC_LOGICAL_UNIT_RESET 5
308 #define ISCSI_TM_FUNC_TARGET_WARM_RESET 6
309 #define ISCSI_TM_FUNC_TARGET_COLD_RESET 7
310 #define ISCSI_TM_FUNC_TASK_REASSIGN 8
312 #define ISCSI_TM_FUNC_VALUE(hdr) ((hdr)->flags & ISCSI_FLAG_TM_FUNC_MASK)
332 #define ISCSI_TMF_RSP_COMPLETE 0x00
333 #define ISCSI_TMF_RSP_NO_TASK 0x01
334 #define ISCSI_TMF_RSP_NO_LUN 0x02
335 #define ISCSI_TMF_RSP_TASK_ALLEGIANT 0x03
336 #define ISCSI_TMF_RSP_NO_FAILOVER 0x04
337 #define ISCSI_TMF_RSP_NOT_SUPPORTED 0x05
338 #define ISCSI_TMF_RSP_AUTH_FAILED 0x06
339 #define ISCSI_TMF_RSP_REJECTED 0xff
398 #define ISCSI_FLAG_DATA_ACK 0x40
399 #define ISCSI_FLAG_DATA_OVERFLOW 0x04
400 #define ISCSI_FLAG_DATA_UNDERFLOW 0x02
401 #define ISCSI_FLAG_DATA_STATUS 0x01
419 #define ISCSI_FLAG_TEXT_CONTINUE 0x40
457 #define ISCSI_FLAG_LOGIN_TRANSIT 0x80
458 #define ISCSI_FLAG_LOGIN_CONTINUE 0x40
459 #define ISCSI_FLAG_LOGIN_CURRENT_STAGE_MASK 0x0C
460 #define ISCSI_FLAG_LOGIN_CURRENT_STAGE1 0x04
461 #define ISCSI_FLAG_LOGIN_CURRENT_STAGE2 0x08
462 #define ISCSI_FLAG_LOGIN_CURRENT_STAGE3 0x0C
463 #define ISCSI_FLAG_LOGIN_NEXT_STAGE_MASK 0x03
464 #define ISCSI_FLAG_LOGIN_NEXT_STAGE1 0x01
465 #define ISCSI_FLAG_LOGIN_NEXT_STAGE2 0x02
466 #define ISCSI_FLAG_LOGIN_NEXT_STAGE3 0x03
468 #define ISCSI_LOGIN_CURRENT_STAGE(flags) \
469 ((flags & ISCSI_FLAG_LOGIN_CURRENT_STAGE_MASK) >> 2)
470 #define ISCSI_LOGIN_NEXT_STAGE(flags) \
471 (flags & ISCSI_FLAG_LOGIN_NEXT_STAGE_MASK)
494 #define ISCSI_INITIAL_LOGIN_STAGE -1
495 #define ISCSI_SECURITY_NEGOTIATION_STAGE 0
496 #define ISCSI_OP_PARMS_NEGOTIATION_STAGE 1
497 #define ISCSI_FULL_FEATURE_PHASE 3
500 #define ISCSI_STATUS_CLS_SUCCESS 0x00
501 #define ISCSI_STATUS_CLS_REDIRECT 0x01
502 #define ISCSI_STATUS_CLS_INITIATOR_ERR 0x02
503 #define ISCSI_STATUS_CLS_TARGET_ERR 0x03
507 #define ISCSI_LOGIN_STATUS_ACCEPT 0x00
510 #define ISCSI_LOGIN_STATUS_TGT_MOVED_TEMP 0x01
511 #define ISCSI_LOGIN_STATUS_TGT_MOVED_PERM 0x02
514 #define ISCSI_LOGIN_STATUS_INIT_ERR 0x00
515 #define ISCSI_LOGIN_STATUS_AUTH_FAILED 0x01
516 #define ISCSI_LOGIN_STATUS_TGT_FORBIDDEN 0x02
517 #define ISCSI_LOGIN_STATUS_TGT_NOT_FOUND 0x03
518 #define ISCSI_LOGIN_STATUS_TGT_REMOVED 0x04
519 #define ISCSI_LOGIN_STATUS_NO_VERSION 0x05
520 #define ISCSI_LOGIN_STATUS_ISID_ERROR 0x06
521 #define ISCSI_LOGIN_STATUS_MISSING_FIELDS 0x07
522 #define ISCSI_LOGIN_STATUS_CONN_ADD_FAILED 0x08
523 #define ISCSI_LOGIN_STATUS_NO_SESSION_TYPE 0x09
524 #define ISCSI_LOGIN_STATUS_NO_SESSION 0x0a
525 #define ISCSI_LOGIN_STATUS_INVALID_REQUEST 0x0b
528 #define ISCSI_LOGIN_STATUS_TARGET_ERROR 0x00
529 #define ISCSI_LOGIN_STATUS_SVC_UNAVAILABLE 0x01
530 #define ISCSI_LOGIN_STATUS_NO_RESOURCES 0x02
549 #define ISCSI_FLAG_LOGOUT_REASON_MASK 0x7F
553 #define ISCSI_LOGOUT_REASON_CLOSE_SESSION 0
554 #define ISCSI_LOGOUT_REASON_CLOSE_CONNECTION 1
555 #define ISCSI_LOGOUT_REASON_RECOVERY 2
556 #define ISCSI_LOGOUT_REASON_AEN_REQUEST 3
580 #define ISCSI_LOGOUT_SUCCESS 0
581 #define ISCSI_LOGOUT_CID_NOT_FOUND 1
582 #define ISCSI_LOGOUT_RECOVERY_UNSUPPORTED 2
583 #define ISCSI_LOGOUT_CLEANUP_FAILED 3
603 #define ISCSI_FLAG_SNACK_TYPE_DATA 0
604 #define ISCSI_FLAG_SNACK_TYPE_R2T 0
605 #define ISCSI_FLAG_SNACK_TYPE_STATUS 1
606 #define ISCSI_FLAG_SNACK_TYPE_DATA_ACK 2
607 #define ISCSI_FLAG_SNACK_TYPE_RDATA 3
608 #define ISCSI_FLAG_SNACK_TYPE_MASK 0x0F
630 #define ISCSI_REASON_CMD_BEFORE_LOGIN 1
631 #define ISCSI_REASON_DATA_DIGEST_ERROR 2
632 #define ISCSI_REASON_DATA_SNACK_REJECT 3
633 #define ISCSI_REASON_PROTOCOL_ERROR 4
634 #define ISCSI_REASON_CMD_NOT_SUPPORTED 5
635 #define ISCSI_REASON_IMM_CMD_REJECT 6
636 #define ISCSI_REASON_TASK_IN_PROGRESS 7
637 #define ISCSI_REASON_INVALID_SNACK 8
638 #define ISCSI_REASON_BOOKMARK_INVALID 9
639 #define ISCSI_REASON_BOOKMARK_NO_RESOURCES 10
640 #define ISCSI_REASON_NEGOTIATION_RESET 11
643 #define MAX_KEY_VALUE_PAIRS 8192
646 #define KEY_MAXLEN 64
647 #define VALUE_MAXLEN 255
648 #define TARGET_NAME_MAXLEN VALUE_MAXLEN
650 #define ISCSI_DEF_MAX_RECV_SEG_LEN 8192
651 #define ISCSI_MIN_MAX_RECV_SEG_LEN 512
652 #define ISCSI_MAX_MAX_RECV_SEG_LEN 16777215
654 #define ISCSI_DEF_FIRST_BURST_LEN 65536
655 #define ISCSI_MIN_FIRST_BURST_LEN 512
656 #define ISCSI_MAX_FIRST_BURST_LEN 16777215
658 #define ISCSI_DEF_MAX_BURST_LEN 262144
659 #define ISCSI_MIN_MAX_BURST_LEN 512
660 #define ISCSI_MAX_MAX_BURST_LEN 16777215
662 #define ISCSI_DEF_TIME2WAIT 2
664 #define ISCSI_NAME_LEN 224