blob: abda19d6cbd270eda62875370fec6b449d8baecd [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001#ifndef TARGET_CORE_BASE_H
2#define TARGET_CORE_BASE_H
3
4#include <linux/in.h>
5#include <linux/configfs.h>
6#include <linux/dma-mapping.h>
7#include <linux/blkdev.h>
8#include <scsi/scsi_cmnd.h>
9#include <net/sock.h>
10#include <net/tcp.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080011
Nicholas Bellinger9765b1f2012-03-10 14:50:19 -080012#define TARGET_CORE_MOD_VERSION "v4.1.0-rc2-ml"
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050013#define TARGET_CORE_VERSION TARGET_CORE_MOD_VERSION
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080014
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080015/* Maximum Number of LUNs per Target Portal Group */
Andy Groverd0229ae2011-07-08 17:04:53 -070016/* Don't raise above 511 or REPORT_LUNS needs to handle >1 page */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080017#define TRANSPORT_MAX_LUNS_PER_TPG 256
18/*
19 * By default we use 32-byte CDBs in TCM Core and subsystem plugin code.
20 *
21 * Note that both include/scsi/scsi_cmnd.h:MAX_COMMAND_SIZE and
22 * include/linux/blkdev.h:BLOCK_MAX_CDB as of v2.6.36-rc4 still use
23 * 16-byte CDBs by default and require an extra allocation for
Lucas De Marchi25985ed2011-03-30 22:57:33 -030024 * 32-byte CDBs to because of legacy issues.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080025 *
26 * Within TCM Core there are no such legacy limitiations, so we go ahead
27 * use 32-byte CDBs by default and use include/scsi/scsi.h:scsi_command_size()
28 * within all TCM Core and subsystem plugin code.
29 */
30#define TCM_MAX_COMMAND_SIZE 32
31/*
32 * From include/scsi/scsi_cmnd.h:SCSI_SENSE_BUFFERSIZE, currently
33 * defined 96, but the real limit is 252 (or 260 including the header)
34 */
35#define TRANSPORT_SENSE_BUFFER SCSI_SENSE_BUFFERSIZE
36/* Used by transport_send_check_condition_and_sense() */
37#define SPC_SENSE_KEY_OFFSET 2
Roland Dreier895f3022011-12-13 14:55:33 -080038#define SPC_ADD_SENSE_LEN_OFFSET 7
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080039#define SPC_ASC_KEY_OFFSET 12
40#define SPC_ASCQ_KEY_OFFSET 13
41#define TRANSPORT_IQN_LEN 224
42/* Used by target_core_store_alua_lu_gp() and target_core_alua_lu_gp_show_attr_members() */
43#define LU_GROUP_NAME_BUF 256
44/* Used by core_alua_store_tg_pt_gp_info() and target_core_alua_tg_pt_gp_show_attr_members() */
45#define TG_PT_GROUP_NAME_BUF 256
46/* Used to parse VPD into struct t10_vpd */
47#define VPD_TMP_BUF_SIZE 128
48/* Used by transport_generic_cmd_sequencer() */
49#define READ_BLOCK_LEN 6
50#define READ_CAP_LEN 8
51#define READ_POSITION_LEN 20
52#define INQUIRY_LEN 36
53/* Used by transport_get_inquiry_vpd_serial() */
54#define INQUIRY_VPD_SERIAL_LEN 254
55/* Used by transport_get_inquiry_vpd_device_ident() */
56#define INQUIRY_VPD_DEVICE_IDENTIFIER_LEN 254
57
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050058/* Attempts before moving from SHORT to LONG */
59#define PYX_TRANSPORT_WINDOW_CLOSED_THRESHOLD 3
60#define PYX_TRANSPORT_WINDOW_CLOSED_WAIT_SHORT 3 /* In milliseconds */
61#define PYX_TRANSPORT_WINDOW_CLOSED_WAIT_LONG 10 /* In milliseconds */
62
63#define PYX_TRANSPORT_STATUS_INTERVAL 5 /* In seconds */
64
65/*
66 * struct se_subsystem_dev->su_dev_flags
67*/
68#define SDF_FIRMWARE_VPD_UNIT_SERIAL 0x00000001
69#define SDF_EMULATED_VPD_UNIT_SERIAL 0x00000002
70#define SDF_USING_UDEV_PATH 0x00000004
71#define SDF_USING_ALIAS 0x00000008
72
73/*
74 * struct se_device->dev_flags
75 */
Nicholas Bellinger58d92612012-03-20 21:26:48 -070076#define DF_SPC2_RESERVATIONS 0x00000001
77#define DF_SPC2_RESERVATIONS_WITH_ISID 0x00000002
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050078
79/* struct se_dev_attrib sanity values */
80/* Default max_unmap_lba_count */
81#define DA_MAX_UNMAP_LBA_COUNT 0
82/* Default max_unmap_block_desc_count */
83#define DA_MAX_UNMAP_BLOCK_DESC_COUNT 0
84/* Default unmap_granularity */
85#define DA_UNMAP_GRANULARITY_DEFAULT 0
86/* Default unmap_granularity_alignment */
87#define DA_UNMAP_GRANULARITY_ALIGNMENT_DEFAULT 0
Roland Dreier015487b2012-02-13 16:18:17 -080088/* Default max transfer length */
89#define DA_FABRIC_MAX_SECTORS 8192
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050090/* Emulation for Direct Page Out */
91#define DA_EMULATE_DPO 0
92/* Emulation for Forced Unit Access WRITEs */
93#define DA_EMULATE_FUA_WRITE 1
94/* Emulation for Forced Unit Access READs */
95#define DA_EMULATE_FUA_READ 0
96/* Emulation for WriteCache and SYNCHRONIZE_CACHE */
97#define DA_EMULATE_WRITE_CACHE 0
98/* Emulation for UNIT ATTENTION Interlock Control */
99#define DA_EMULATE_UA_INTLLCK_CTRL 0
100/* Emulation for TASK_ABORTED status (TAS) by default */
101#define DA_EMULATE_TAS 1
102/* Emulation for Thin Provisioning UNMAP using block/blk-lib.c:blkdev_issue_discard() */
103#define DA_EMULATE_TPU 0
104/*
105 * Emulation for Thin Provisioning WRITE_SAME w/ UNMAP=1 bit using
106 * block/blk-lib.c:blkdev_issue_discard()
107 */
108#define DA_EMULATE_TPWS 0
109/* No Emulation for PSCSI by default */
110#define DA_EMULATE_RESERVATIONS 0
111/* No Emulation for PSCSI by default */
112#define DA_EMULATE_ALUA 0
113/* Enforce SCSI Initiator Port TransportID with 'ISID' for PR */
114#define DA_ENFORCE_PR_ISIDS 1
115#define DA_STATUS_MAX_SECTORS_MIN 16
116#define DA_STATUS_MAX_SECTORS_MAX 8192
117/* By default don't report non-rotating (solid state) medium */
118#define DA_IS_NONROT 0
119/* Queue Algorithm Modifier default for restricted reordering in control mode page */
120#define DA_EMULATE_REST_REORD 0
121
Roland Dreierd95b8242012-02-13 16:18:14 -0800122#define SE_INQUIRY_BUF 512
Christoph Hellwigc4795fb2011-11-16 09:46:48 -0500123#define SE_MODE_PAGE_BUF 512
124
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800125/* struct se_hba->hba_flags */
126enum hba_flags_table {
127 HBA_FLAGS_INTERNAL_USE = 0x01,
128 HBA_FLAGS_PSCSI_MODE = 0x02,
129};
130
131/* struct se_lun->lun_status */
132enum transport_lun_status_table {
133 TRANSPORT_LUN_STATUS_FREE = 0,
134 TRANSPORT_LUN_STATUS_ACTIVE = 1,
135};
136
137/* struct se_portal_group->se_tpg_type */
138enum transport_tpg_type_table {
139 TRANSPORT_TPG_TYPE_NORMAL = 0,
140 TRANSPORT_TPG_TYPE_DISCOVERY = 1,
141};
142
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800143/* Special transport agnostic struct se_cmd->t_states */
144enum transport_state_table {
145 TRANSPORT_NO_STATE = 0,
146 TRANSPORT_NEW_CMD = 1,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800147 TRANSPORT_WRITE_PENDING = 3,
148 TRANSPORT_PROCESS_WRITE = 4,
149 TRANSPORT_PROCESSING = 5,
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400150 TRANSPORT_COMPLETE = 6,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800151 TRANSPORT_PROCESS_TMR = 9,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800152 TRANSPORT_ISTATE_PROCESSING = 11,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800153 TRANSPORT_NEW_CMD_MAP = 16,
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700154 TRANSPORT_COMPLETE_QF_WP = 18,
Christoph Hellwige057f532011-10-17 13:56:41 -0400155 TRANSPORT_COMPLETE_QF_OK = 19,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800156};
157
158/* Used for struct se_cmd->se_cmd_flags */
159enum se_cmd_flags_table {
160 SCF_SUPPORTED_SAM_OPCODE = 0x00000001,
161 SCF_TRANSPORT_TASK_SENSE = 0x00000002,
162 SCF_EMULATED_TASK_SENSE = 0x00000004,
Christoph Hellwig64f1db32012-05-20 11:59:11 -0400163 SCF_SCSI_DATA_CDB = 0x00000008,
164 SCF_SCSI_TMR_CDB = 0x00000010,
165 SCF_SCSI_CDB_EXCEPTION = 0x00000020,
166 SCF_SCSI_RESERVATION_CONFLICT = 0x00000040,
167 SCF_FUA = 0x00000080,
168 SCF_SE_LUN_CMD = 0x00000100,
169 SCF_SE_ALLOW_EOO = 0x00000200,
170 SCF_BIDI = 0x00000400,
171 SCF_SENT_CHECK_CONDITION = 0x00000800,
172 SCF_OVERFLOW_BIT = 0x00001000,
173 SCF_UNDERFLOW_BIT = 0x00002000,
174 SCF_SENT_DELAYED_TAS = 0x00004000,
175 SCF_ALUA_NON_OPTIMIZED = 0x00008000,
176 SCF_DELAYED_CMD_FROM_SAM_ATTR = 0x00010000,
177 SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC = 0x00020000,
178 SCF_ACK_KREF = 0x00040000,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800179};
180
181/* struct se_dev_entry->lun_flags and struct se_lun->lun_access */
182enum transport_lunflags_table {
183 TRANSPORT_LUNFLAGS_NO_ACCESS = 0x00,
184 TRANSPORT_LUNFLAGS_INITIATOR_ACCESS = 0x01,
185 TRANSPORT_LUNFLAGS_READ_ONLY = 0x02,
186 TRANSPORT_LUNFLAGS_READ_WRITE = 0x04,
187};
188
189/* struct se_device->dev_status */
190enum transport_device_status_table {
191 TRANSPORT_DEVICE_ACTIVATED = 0x01,
192 TRANSPORT_DEVICE_DEACTIVATED = 0x02,
193 TRANSPORT_DEVICE_QUEUE_FULL = 0x04,
194 TRANSPORT_DEVICE_SHUTDOWN = 0x08,
195 TRANSPORT_DEVICE_OFFLINE_ACTIVATED = 0x10,
196 TRANSPORT_DEVICE_OFFLINE_DEACTIVATED = 0x20,
197};
198
199/*
200 * Used by transport_send_check_condition_and_sense() and se_cmd->scsi_sense_reason
201 * to signal which ASC/ASCQ sense payload should be built.
202 */
203enum tcm_sense_reason_table {
204 TCM_NON_EXISTENT_LUN = 0x01,
205 TCM_UNSUPPORTED_SCSI_OPCODE = 0x02,
206 TCM_INCORRECT_AMOUNT_OF_DATA = 0x03,
207 TCM_UNEXPECTED_UNSOLICITED_DATA = 0x04,
208 TCM_SERVICE_CRC_ERROR = 0x05,
209 TCM_SNACK_REJECTED = 0x06,
210 TCM_SECTOR_COUNT_TOO_MANY = 0x07,
211 TCM_INVALID_CDB_FIELD = 0x08,
212 TCM_INVALID_PARAMETER_LIST = 0x09,
213 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE = 0x0a,
214 TCM_UNKNOWN_MODE_PAGE = 0x0b,
215 TCM_WRITE_PROTECTED = 0x0c,
216 TCM_CHECK_CONDITION_ABORT_CMD = 0x0d,
217 TCM_CHECK_CONDITION_UNIT_ATTENTION = 0x0e,
218 TCM_CHECK_CONDITION_NOT_READY = 0x0f,
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700219 TCM_RESERVATION_CONFLICT = 0x10,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800220};
221
Nicholas Bellingera6360782011-11-18 20:36:22 -0800222enum target_sc_flags_table {
223 TARGET_SCF_BIDI_OP = 0x01,
224 TARGET_SCF_ACK_KREF = 0x02,
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +0100225 TARGET_SCF_UNKNOWN_SIZE = 0x04,
Nicholas Bellingera6360782011-11-18 20:36:22 -0800226};
227
Christoph Hellwigc4795fb2011-11-16 09:46:48 -0500228/* fabric independent task management function values */
229enum tcm_tmreq_table {
230 TMR_ABORT_TASK = 1,
231 TMR_ABORT_TASK_SET = 2,
232 TMR_CLEAR_ACA = 3,
233 TMR_CLEAR_TASK_SET = 4,
234 TMR_LUN_RESET = 5,
235 TMR_TARGET_WARM_RESET = 6,
236 TMR_TARGET_COLD_RESET = 7,
237 TMR_FABRIC_TMR = 255,
238};
239
240/* fabric independent task management response values */
241enum tcm_tmrsp_table {
242 TMR_FUNCTION_COMPLETE = 0,
243 TMR_TASK_DOES_NOT_EXIST = 1,
244 TMR_LUN_DOES_NOT_EXIST = 2,
245 TMR_TASK_STILL_ALLEGIANT = 3,
246 TMR_TASK_FAILOVER_NOT_SUPPORTED = 4,
247 TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED = 5,
248 TMR_FUNCTION_AUTHORIZATION_FAILED = 6,
249 TMR_FUNCTION_REJECTED = 255,
250};
251
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800252struct se_obj {
253 atomic_t obj_access_count;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500254};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800255
256/*
257 * Used by TCM Core internally to signal if ALUA emulation is enabled or
258 * disabled, or running in with TCM/pSCSI passthrough mode
259 */
260typedef enum {
261 SPC_ALUA_PASSTHROUGH,
262 SPC2_ALUA_DISABLED,
263 SPC3_ALUA_EMULATED
264} t10_alua_index_t;
265
266/*
267 * Used by TCM Core internally to signal if SAM Task Attribute emulation
268 * is enabled or disabled, or running in with TCM/pSCSI passthrough mode
269 */
270typedef enum {
271 SAM_TASK_ATTR_PASSTHROUGH,
272 SAM_TASK_ATTR_UNTAGGED,
273 SAM_TASK_ATTR_EMULATED
274} t10_task_attr_index_t;
275
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800276/*
277 * Used for target SCSI statistics
278 */
279typedef enum {
280 SCSI_INST_INDEX,
281 SCSI_DEVICE_INDEX,
282 SCSI_AUTH_INTR_INDEX,
283 SCSI_INDEX_TYPE_MAX
284} scsi_index_t;
285
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800286struct se_cmd;
287
288struct t10_alua {
289 t10_alua_index_t alua_type;
290 /* ALUA Target Port Group ID */
291 u16 alua_tg_pt_gps_counter;
292 u32 alua_tg_pt_gps_count;
293 spinlock_t tg_pt_gps_lock;
294 struct se_subsystem_dev *t10_sub_dev;
295 /* Used for default ALUA Target Port Group */
296 struct t10_alua_tg_pt_gp *default_tg_pt_gp;
297 /* Used for default ALUA Target Port Group ConfigFS group */
298 struct config_group alua_tg_pt_gps_group;
299 int (*alua_state_check)(struct se_cmd *, unsigned char *, u8 *);
300 struct list_head tg_pt_gps_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500301};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800302
303struct t10_alua_lu_gp {
304 u16 lu_gp_id;
305 int lu_gp_valid_id;
306 u32 lu_gp_members;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800307 atomic_t lu_gp_ref_cnt;
308 spinlock_t lu_gp_lock;
309 struct config_group lu_gp_group;
Andy Grovere3d6f902011-07-19 08:55:10 +0000310 struct list_head lu_gp_node;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800311 struct list_head lu_gp_mem_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500312};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800313
314struct t10_alua_lu_gp_member {
Dan Carpenter5dd7ed22011-03-14 04:06:01 -0700315 bool lu_gp_assoc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800316 atomic_t lu_gp_mem_ref_cnt;
317 spinlock_t lu_gp_mem_lock;
318 struct t10_alua_lu_gp *lu_gp;
319 struct se_device *lu_gp_mem_dev;
320 struct list_head lu_gp_mem_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500321};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800322
323struct t10_alua_tg_pt_gp {
324 u16 tg_pt_gp_id;
325 int tg_pt_gp_valid_id;
326 int tg_pt_gp_alua_access_status;
327 int tg_pt_gp_alua_access_type;
328 int tg_pt_gp_nonop_delay_msecs;
329 int tg_pt_gp_trans_delay_msecs;
Nicholas Bellinger5b9a4d72012-05-16 22:02:34 -0700330 int tg_pt_gp_implict_trans_secs;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800331 int tg_pt_gp_pref;
332 int tg_pt_gp_write_metadata;
333 /* Used by struct t10_alua_tg_pt_gp->tg_pt_gp_md_buf_len */
334#define ALUA_MD_BUF_LEN 1024
335 u32 tg_pt_gp_md_buf_len;
336 u32 tg_pt_gp_members;
337 atomic_t tg_pt_gp_alua_access_state;
338 atomic_t tg_pt_gp_ref_cnt;
339 spinlock_t tg_pt_gp_lock;
340 struct mutex tg_pt_gp_md_mutex;
341 struct se_subsystem_dev *tg_pt_gp_su_dev;
342 struct config_group tg_pt_gp_group;
343 struct list_head tg_pt_gp_list;
344 struct list_head tg_pt_gp_mem_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500345};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800346
347struct t10_alua_tg_pt_gp_member {
Dan Carpenter5dd7ed22011-03-14 04:06:01 -0700348 bool tg_pt_gp_assoc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800349 atomic_t tg_pt_gp_mem_ref_cnt;
350 spinlock_t tg_pt_gp_mem_lock;
351 struct t10_alua_tg_pt_gp *tg_pt_gp;
352 struct se_port *tg_pt;
353 struct list_head tg_pt_gp_mem_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500354};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800355
356struct t10_vpd {
357 unsigned char device_identifier[INQUIRY_VPD_DEVICE_IDENTIFIER_LEN];
358 int protocol_identifier_set;
359 u32 protocol_identifier;
360 u32 device_identifier_code_set;
361 u32 association;
362 u32 device_identifier_type;
363 struct list_head vpd_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500364};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800365
366struct t10_wwn {
Andy Grovere3d6f902011-07-19 08:55:10 +0000367 char vendor[8];
368 char model[16];
369 char revision[4];
370 char unit_serial[INQUIRY_VPD_SERIAL_LEN];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800371 spinlock_t t10_vpd_lock;
372 struct se_subsystem_dev *t10_sub_dev;
373 struct config_group t10_wwn_group;
374 struct list_head t10_vpd_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500375};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800376
377
378/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300379 * Used by TCM Core internally to signal if >= SPC-3 persistent reservations
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800380 * emulation is enabled or disabled, or running in with TCM/pSCSI passthrough
381 * mode
382 */
383typedef enum {
384 SPC_PASSTHROUGH,
385 SPC2_RESERVATIONS,
386 SPC3_PERSISTENT_RESERVATIONS
387} t10_reservations_index_t;
388
389struct t10_pr_registration {
390 /* Used for fabrics that contain WWN+ISID */
391#define PR_REG_ISID_LEN 16
392 /* PR_REG_ISID_LEN + ',i,0x' */
393#define PR_REG_ISID_ID_LEN (PR_REG_ISID_LEN + 5)
394 char pr_reg_isid[PR_REG_ISID_LEN];
395 /* Used during APTPL metadata reading */
396#define PR_APTPL_MAX_IPORT_LEN 256
397 unsigned char pr_iport[PR_APTPL_MAX_IPORT_LEN];
398 /* Used during APTPL metadata reading */
399#define PR_APTPL_MAX_TPORT_LEN 256
400 unsigned char pr_tport[PR_APTPL_MAX_TPORT_LEN];
401 /* For writing out live meta data */
402 unsigned char *pr_aptpl_buf;
403 u16 pr_aptpl_rpti;
404 u16 pr_reg_tpgt;
405 /* Reservation effects all target ports */
406 int pr_reg_all_tg_pt;
407 /* Activate Persistence across Target Power Loss */
408 int pr_reg_aptpl;
409 int pr_res_holder;
410 int pr_res_type;
411 int pr_res_scope;
412 /* Used for fabric initiator WWPNs using a ISID */
Dan Carpenter5dd7ed22011-03-14 04:06:01 -0700413 bool isid_present_at_reg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800414 u32 pr_res_mapped_lun;
415 u32 pr_aptpl_target_lun;
416 u32 pr_res_generation;
417 u64 pr_reg_bin_isid;
418 u64 pr_res_key;
419 atomic_t pr_res_holders;
420 struct se_node_acl *pr_reg_nacl;
421 struct se_dev_entry *pr_reg_deve;
422 struct se_lun *pr_reg_tg_pt_lun;
423 struct list_head pr_reg_list;
424 struct list_head pr_reg_abort_list;
425 struct list_head pr_reg_aptpl_list;
426 struct list_head pr_reg_atp_list;
427 struct list_head pr_reg_atp_mem_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500428};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800429
430/*
431 * This set of function pointer ops is set based upon SPC3_PERSISTENT_RESERVATIONS,
432 * SPC2_RESERVATIONS or SPC_PASSTHROUGH in drivers/target/target_core_pr.c:
433 * core_setup_reservations()
434 */
435struct t10_reservation_ops {
436 int (*t10_reservation_check)(struct se_cmd *, u32 *);
437 int (*t10_seq_non_holder)(struct se_cmd *, unsigned char *, u32);
438 int (*t10_pr_register)(struct se_cmd *);
439 int (*t10_pr_clear)(struct se_cmd *);
440};
441
Andy Grovere3d6f902011-07-19 08:55:10 +0000442struct t10_reservation {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800443 /* Reservation effects all target ports */
444 int pr_all_tg_pt;
445 /* Activate Persistence across Target Power Loss enabled
446 * for SCSI device */
447 int pr_aptpl_active;
Andy Grovere3d6f902011-07-19 08:55:10 +0000448 /* Used by struct t10_reservation->pr_aptpl_buf_len */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800449#define PR_APTPL_BUF_LEN 8192
450 u32 pr_aptpl_buf_len;
451 u32 pr_generation;
452 t10_reservations_index_t res_type;
453 spinlock_t registration_lock;
454 spinlock_t aptpl_reg_lock;
455 /*
456 * This will always be set by one individual I_T Nexus.
457 * However with all_tg_pt=1, other I_T Nexus from the
458 * same initiator can access PR reg/res info on a different
459 * target port.
460 *
461 * There is also the 'All Registrants' case, where there is
462 * a single *pr_res_holder of the reservation, but all
463 * registrations are considered reservation holders.
464 */
465 struct se_node_acl *pr_res_holder;
466 struct list_head registration_list;
467 struct list_head aptpl_reg_list;
468 struct t10_reservation_ops pr_ops;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500469};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800470
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800471struct se_queue_obj {
472 atomic_t queue_cnt;
473 spinlock_t cmd_queue_lock;
474 struct list_head qobj_list;
475 wait_queue_head_t thread_wq;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500476};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800477
Andy Groverc8e31f22012-01-19 13:39:17 -0800478struct se_tmr_req {
479 /* Task Management function to be performed */
480 u8 function;
481 /* Task Management response to send */
482 u8 response;
483 int call_transport;
484 /* Reference to ITT that Task Mgmt should be performed */
485 u32 ref_task_tag;
486 /* 64-bit encoded SAM LUN from $FABRIC_MOD TMR header */
487 u64 ref_task_lun;
488 void *fabric_tmr_ptr;
489 struct se_cmd *task_cmd;
490 struct se_cmd *ref_cmd;
491 struct se_device *tmr_dev;
492 struct se_lun *tmr_lun;
493 struct list_head tmr_list;
494};
495
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800496struct se_cmd {
497 /* SAM response code being sent to initiator */
498 u8 scsi_status;
499 u8 scsi_asc;
500 u8 scsi_ascq;
501 u8 scsi_sense_reason;
502 u16 scsi_sense_length;
503 /* Delay for ALUA Active/NonOptimized state access in milliseconds */
504 int alua_nonop_delay;
505 /* See include/linux/dma-mapping.h */
506 enum dma_data_direction data_direction;
507 /* For SAM Task Attribute */
508 int sam_task_attr;
509 /* Transport protocol dependent state, see transport_state_table */
510 enum transport_state_table t_state;
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700511 /* Used to signal cmd->se_tfo->check_release_cmd() usage per cmd */
Bart Van Assche5f655e82011-11-08 20:46:29 +0100512 unsigned check_release:1;
513 unsigned cmd_wait_set:1;
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +0100514 unsigned unknown_data_length:1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800515 /* See se_cmd_flags_table */
516 u32 se_cmd_flags;
517 u32 se_ordered_id;
518 /* Total size in bytes associated with command */
519 u32 data_length;
520 /* SCSI Presented Data Transfer Length */
521 u32 cmd_spdtl;
522 u32 residual_count;
523 u32 orig_fe_lun;
524 /* Persistent Reservation key */
525 u64 pr_res_key;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800526 /* Used for sense data */
527 void *sense_buffer;
Andy Grover5951146d2011-07-19 10:26:37 +0000528 struct list_head se_delayed_node;
Andy Grover5951146d2011-07-19 10:26:37 +0000529 struct list_head se_lun_node;
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700530 struct list_head se_qf_node;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800531 struct se_device *se_dev;
532 struct se_dev_entry *se_deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800533 struct se_lun *se_lun;
534 /* Only used for internal passthrough and legacy TCM fabric modules */
535 struct se_session *se_sess;
536 struct se_tmr_req *se_tmr_req;
Andy Grover5951146d2011-07-19 10:26:37 +0000537 struct list_head se_queue_node;
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700538 struct list_head se_cmd_list;
539 struct completion cmd_wait_comp;
Nicholas Bellinger7481deb2011-11-12 00:32:17 -0800540 struct kref cmd_kref;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800541 struct target_core_fabric_ops *se_tfo;
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400542 int (*execute_cmd)(struct se_cmd *);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800543 void (*transport_complete_callback)(struct se_cmd *);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700544
Andy Grovera1d8b492011-05-02 17:12:10 -0700545 unsigned char *t_task_cdb;
546 unsigned char __t_task_cdb[TCM_MAX_COMMAND_SIZE];
547 unsigned long long t_task_lba;
Andy Grovera1d8b492011-05-02 17:12:10 -0700548 atomic_t t_fe_count;
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500549 unsigned int transport_state;
550#define CMD_T_ABORTED (1 << 0)
551#define CMD_T_ACTIVE (1 << 1)
552#define CMD_T_COMPLETE (1 << 2)
553#define CMD_T_QUEUED (1 << 3)
554#define CMD_T_SENT (1 << 4)
555#define CMD_T_STOP (1 << 5)
556#define CMD_T_FAILED (1 << 6)
557#define CMD_T_LUN_STOP (1 << 7)
558#define CMD_T_LUN_FE_STOP (1 << 8)
559#define CMD_T_DEV_ACTIVE (1 << 9)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400560#define CMD_T_REQUEST_STOP (1 << 10)
561#define CMD_T_BUSY (1 << 11)
Andy Grovera1d8b492011-05-02 17:12:10 -0700562 spinlock_t t_state_lock;
563 struct completion t_transport_stop_comp;
564 struct completion transport_lun_fe_stop_comp;
565 struct completion transport_lun_stop_comp;
Andy Grover05d1c7c2011-07-20 19:13:28 +0000566
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400567 struct work_struct work;
568
Andy Groverec98f782011-07-20 19:28:46 +0000569 struct scatterlist *t_data_sg;
570 unsigned int t_data_nents;
Andy Grover49493142012-01-16 16:57:08 -0800571 void *t_data_vmap;
Andy Groverec98f782011-07-20 19:28:46 +0000572 struct scatterlist *t_bidi_data_sg;
573 unsigned int t_bidi_data_nents;
574
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400575 struct list_head execute_list;
576 struct list_head state_list;
577 bool state_active;
578
579 /* old task stop completion, consider merging with some of the above */
580 struct completion task_stop_comp;
581
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400582 /* backend private data */
583 void *priv;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500584};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800586struct se_ua {
587 u8 ua_asc;
588 u8 ua_ascq;
589 struct se_node_acl *ua_nacl;
590 struct list_head ua_dev_list;
591 struct list_head ua_nacl_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500592};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800593
594struct se_node_acl {
595 char initiatorname[TRANSPORT_IQN_LEN];
596 /* Used to signal demo mode created ACL, disabled by default */
Dan Carpenter5dd7ed22011-03-14 04:06:01 -0700597 bool dynamic_node_acl;
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800598 bool acl_stop:1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800599 u32 queue_depth;
600 u32 acl_index;
601 u64 num_cmds;
602 u64 read_bytes;
603 u64 write_bytes;
604 spinlock_t stats_lock;
605 /* Used for PR SPEC_I_PT=1 and REGISTER_AND_MOVE */
606 atomic_t acl_pr_ref_count;
Jörn Engelf2083242012-03-15 15:05:40 -0400607 struct se_dev_entry **device_list;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800608 struct se_session *nacl_sess;
609 struct se_portal_group *se_tpg;
610 spinlock_t device_list_lock;
611 spinlock_t nacl_sess_lock;
612 struct config_group acl_group;
613 struct config_group acl_attrib_group;
614 struct config_group acl_auth_group;
615 struct config_group acl_param_group;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700616 struct config_group acl_fabric_stat_group;
617 struct config_group *acl_default_groups[5];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800618 struct list_head acl_list;
619 struct list_head acl_sess_list;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800620 struct completion acl_free_comp;
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800621 struct kref acl_kref;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500622};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800623
624struct se_session {
Bart Van Assche5f655e82011-11-08 20:46:29 +0100625 unsigned sess_tearing_down:1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800626 u64 sess_bin_isid;
627 struct se_node_acl *se_node_acl;
628 struct se_portal_group *se_tpg;
629 void *fabric_sess_ptr;
630 struct list_head sess_list;
631 struct list_head sess_acl_list;
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700632 struct list_head sess_cmd_list;
633 struct list_head sess_wait_list;
634 spinlock_t sess_cmd_lock;
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800635 struct kref sess_kref;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500636};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800637
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800638struct se_device;
639struct se_transform_info;
640struct scatterlist;
641
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700642struct se_ml_stat_grps {
643 struct config_group stat_group;
644 struct config_group scsi_auth_intr_group;
645 struct config_group scsi_att_intr_port_group;
646};
647
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800648struct se_lun_acl {
649 char initiatorname[TRANSPORT_IQN_LEN];
650 u32 mapped_lun;
651 struct se_node_acl *se_lun_nacl;
652 struct se_lun *se_lun;
653 struct list_head lacl_list;
654 struct config_group se_lun_group;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700655 struct se_ml_stat_grps ml_stat_grps;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500656};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800657
658struct se_dev_entry {
Dan Carpenter5dd7ed22011-03-14 04:06:01 -0700659 bool def_pr_registered;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800660 /* See transport_lunflags_table */
661 u32 lun_flags;
662 u32 deve_cmds;
663 u32 mapped_lun;
664 u32 average_bytes;
665 u32 last_byte_count;
666 u32 total_cmds;
667 u32 total_bytes;
668 u64 pr_res_key;
669 u64 creation_time;
670 u32 attach_count;
671 u64 read_bytes;
672 u64 write_bytes;
673 atomic_t ua_count;
674 /* Used for PR SPEC_I_PT=1 and REGISTER_AND_MOVE */
675 atomic_t pr_ref_count;
676 struct se_lun_acl *se_lun_acl;
677 spinlock_t ua_lock;
678 struct se_lun *se_lun;
679 struct list_head alua_port_list;
680 struct list_head ua_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500681};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800682
683struct se_dev_limits {
684 /* Max supported HW queue depth */
685 u32 hw_queue_depth;
686 /* Max supported virtual queue depth */
687 u32 queue_depth;
688 /* From include/linux/blkdev.h for the other HW/SW limits. */
689 struct queue_limits limits;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500690};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800691
692struct se_dev_attrib {
693 int emulate_dpo;
694 int emulate_fua_write;
695 int emulate_fua_read;
696 int emulate_write_cache;
697 int emulate_ua_intlck_ctrl;
698 int emulate_tas;
699 int emulate_tpu;
700 int emulate_tpws;
701 int emulate_reservations;
702 int emulate_alua;
703 int enforce_pr_isids;
Roland Dreiere22a7f02011-07-05 13:34:52 -0700704 int is_nonrot;
Nicholas Bellinger5de619a2011-07-17 02:57:58 -0700705 int emulate_rest_reord;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800706 u32 hw_block_size;
707 u32 block_size;
708 u32 hw_max_sectors;
Roland Dreier015487b2012-02-13 16:18:17 -0800709 u32 fabric_max_sectors;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800710 u32 optimal_sectors;
711 u32 hw_queue_depth;
712 u32 queue_depth;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800713 u32 max_unmap_lba_count;
714 u32 max_unmap_block_desc_count;
715 u32 unmap_granularity;
716 u32 unmap_granularity_alignment;
717 struct se_subsystem_dev *da_sub_dev;
718 struct config_group da_group;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500719};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800720
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700721struct se_dev_stat_grps {
722 struct config_group stat_group;
723 struct config_group scsi_dev_group;
724 struct config_group scsi_tgt_dev_group;
725 struct config_group scsi_lu_group;
726};
727
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800728struct se_subsystem_dev {
729/* Used for struct se_subsystem_dev-->se_dev_alias, must be less than PAGE_SIZE */
730#define SE_DEV_ALIAS_LEN 512
731 unsigned char se_dev_alias[SE_DEV_ALIAS_LEN];
732/* Used for struct se_subsystem_dev->se_dev_udev_path[], must be less than PAGE_SIZE */
733#define SE_UDEV_PATH_LEN 512
734 unsigned char se_dev_udev_path[SE_UDEV_PATH_LEN];
735 u32 su_dev_flags;
736 struct se_hba *se_dev_hba;
737 struct se_device *se_dev_ptr;
738 struct se_dev_attrib se_dev_attrib;
739 /* T10 Asymmetric Logical Unit Assignment for Target Ports */
740 struct t10_alua t10_alua;
741 /* T10 Inquiry and VPD WWN Information */
742 struct t10_wwn t10_wwn;
743 /* T10 SPC-2 + SPC-3 Reservations */
Andy Grovere3d6f902011-07-19 08:55:10 +0000744 struct t10_reservation t10_pr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800745 spinlock_t se_dev_lock;
746 void *se_dev_su_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800747 struct config_group se_dev_group;
748 /* For T10 Reservations */
749 struct config_group se_dev_pr_group;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700750 /* For target_core_stat.c groups */
751 struct se_dev_stat_grps dev_stat_grps;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500752};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800753
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800754struct se_device {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800755 /* RELATIVE TARGET PORT IDENTIFER Counter */
756 u16 dev_rpti_counter;
757 /* Used for SAM Task Attribute ordering */
758 u32 dev_cur_ordered_id;
759 u32 dev_flags;
760 u32 dev_port_count;
761 /* See transport_device_status_table */
762 u32 dev_status;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800763 /* Physical device queue depth */
764 u32 queue_depth;
765 /* Used for SPC-2 reservations enforce of ISIDs */
766 u64 dev_res_bin_isid;
767 t10_task_attr_index_t dev_task_attr_type;
768 /* Pointer to transport specific device structure */
769 void *dev_ptr;
770 u32 dev_index;
771 u64 creation_time;
772 u32 num_resets;
773 u64 num_cmds;
774 u64 read_bytes;
775 u64 write_bytes;
776 spinlock_t stats_lock;
777 /* Active commands on this virtual SE device */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800778 atomic_t simple_cmds;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800779 atomic_t dev_ordered_id;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800780 atomic_t execute_tasks;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800781 atomic_t dev_ordered_sync;
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700782 atomic_t dev_qf_count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800783 struct se_obj dev_obj;
784 struct se_obj dev_access_obj;
785 struct se_obj dev_export_obj;
Andy Grovere3d6f902011-07-19 08:55:10 +0000786 struct se_queue_obj dev_queue_obj;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800787 spinlock_t delayed_cmd_lock;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800788 spinlock_t execute_task_lock;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800789 spinlock_t dev_reservation_lock;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800790 spinlock_t dev_status_lock;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800791 spinlock_t se_port_lock;
792 spinlock_t se_tmr_lock;
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700793 spinlock_t qf_cmd_lock;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800794 /* Used for legacy SPC-2 reservationsa */
795 struct se_node_acl *dev_reserved_node_acl;
796 /* Used for ALUA Logical Unit Group membership */
797 struct t10_alua_lu_gp_member *dev_alua_lu_gp_mem;
798 /* Used for SPC-3 Persistent Reservations */
799 struct t10_pr_registration *dev_pr_res_holder;
800 struct list_head dev_sep_list;
801 struct list_head dev_tmr_list;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800802 /* Pointer to descriptor for processing thread */
803 struct task_struct *process_thread;
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700804 struct work_struct qf_work_queue;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800805 struct list_head delayed_cmd_list;
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400806 struct list_head execute_list;
807 struct list_head state_list;
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700808 struct list_head qf_cmd_list;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800809 /* Pointer to associated SE HBA */
810 struct se_hba *se_hba;
811 struct se_subsystem_dev *se_sub_dev;
812 /* Pointer to template of function pointers for transport */
813 struct se_subsystem_api *transport;
814 /* Linked list for struct se_hba struct se_device list */
815 struct list_head dev_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500816};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800817
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800818struct se_hba {
819 u16 hba_tpgt;
820 u32 hba_id;
821 /* See hba_flags_table */
822 u32 hba_flags;
823 /* Virtual iSCSI devices attached. */
824 u32 dev_count;
825 u32 hba_index;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800826 /* Pointer to transport specific host structure. */
827 void *hba_ptr;
828 /* Linked list for struct se_device */
829 struct list_head hba_dev_list;
Andy Grovere3d6f902011-07-19 08:55:10 +0000830 struct list_head hba_node;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800831 spinlock_t device_lock;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800832 struct config_group hba_group;
833 struct mutex hba_access_mutex;
834 struct se_subsystem_api *transport;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500835};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800836
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700837struct se_port_stat_grps {
838 struct config_group stat_group;
839 struct config_group scsi_port_group;
840 struct config_group scsi_tgt_port_group;
841 struct config_group scsi_transport_group;
842};
843
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800844struct se_lun {
845 /* See transport_lun_status_table */
846 enum transport_lun_status_table lun_status;
847 u32 lun_access;
848 u32 lun_flags;
849 u32 unpacked_lun;
850 atomic_t lun_acl_count;
851 spinlock_t lun_acl_lock;
852 spinlock_t lun_cmd_lock;
853 spinlock_t lun_sep_lock;
854 struct completion lun_shutdown_comp;
855 struct list_head lun_cmd_list;
856 struct list_head lun_acl_list;
857 struct se_device *lun_se_dev;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700858 struct se_port *lun_sep;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800859 struct config_group lun_group;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700860 struct se_port_stat_grps port_stat_grps;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500861};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800862
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800863struct scsi_port_stats {
864 u64 cmd_pdus;
865 u64 tx_data_octets;
866 u64 rx_data_octets;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500867};
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800868
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800869struct se_port {
870 /* RELATIVE TARGET PORT IDENTIFER */
871 u16 sep_rtpi;
872 int sep_tg_pt_secondary_stat;
873 int sep_tg_pt_secondary_write_md;
874 u32 sep_index;
875 struct scsi_port_stats sep_stats;
876 /* Used for ALUA Target Port Groups membership */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800877 atomic_t sep_tg_pt_secondary_offline;
878 /* Used for PR ALL_TG_PT=1 */
879 atomic_t sep_tg_pt_ref_cnt;
880 spinlock_t sep_alua_lock;
881 struct mutex sep_tg_pt_md_mutex;
882 struct t10_alua_tg_pt_gp_member *sep_alua_tg_pt_gp_mem;
883 struct se_lun *sep_lun;
884 struct se_portal_group *sep_tpg;
885 struct list_head sep_alua_list;
886 struct list_head sep_list;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500887};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800888
889struct se_tpg_np {
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -0800890 struct se_portal_group *tpg_np_parent;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800891 struct config_group tpg_np_group;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500892};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800893
894struct se_portal_group {
895 /* Type of target portal group, see transport_tpg_type_table */
896 enum transport_tpg_type_table se_tpg_type;
897 /* Number of ACLed Initiator Nodes for this TPG */
898 u32 num_node_acls;
899 /* Used for PR SPEC_I_PT=1 and REGISTER_AND_MOVE */
900 atomic_t tpg_pr_ref_count;
901 /* Spinlock for adding/removing ACLed Nodes */
902 spinlock_t acl_node_lock;
903 /* Spinlock for adding/removing sessions */
904 spinlock_t session_lock;
905 spinlock_t tpg_lun_lock;
906 /* Pointer to $FABRIC_MOD portal group */
907 void *se_tpg_fabric_ptr;
Andy Grovere3d6f902011-07-19 08:55:10 +0000908 struct list_head se_tpg_node;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800909 /* linked list for initiator ACL list */
910 struct list_head acl_node_list;
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400911 struct se_lun **tpg_lun_list;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800912 struct se_lun tpg_virt_lun0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300913 /* List of TCM sessions associated wth this TPG */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800914 struct list_head tpg_sess_list;
915 /* Pointer to $FABRIC_MOD dependent code */
916 struct target_core_fabric_ops *se_tpg_tfo;
917 struct se_wwn *se_tpg_wwn;
918 struct config_group tpg_group;
919 struct config_group *tpg_default_groups[6];
920 struct config_group tpg_lun_group;
921 struct config_group tpg_np_group;
922 struct config_group tpg_acl_group;
923 struct config_group tpg_attrib_group;
924 struct config_group tpg_param_group;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500925};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800926
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800927struct se_wwn {
928 struct target_fabric_configfs *wwn_tf;
929 struct config_group wwn_group;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -0700930 struct config_group *wwn_default_groups[2];
931 struct config_group fabric_stat_group;
Christoph Hellwige0a53e72011-11-29 03:29:38 -0500932};
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800933
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800934#endif /* TARGET_CORE_BASE_H */