aboutsummaryrefslogtreecommitdiff
path: root/sys/cam/ctl/ctl_private.h
diff options
context:
space:
mode:
authorKenneth D. Merry <ken@FreeBSD.org>2012-01-12 00:34:33 +0000
committerKenneth D. Merry <ken@FreeBSD.org>2012-01-12 00:34:33 +0000
commit130f4520cba830cc6da47c9f871fed78710a4709 (patch)
tree7946584ac02844d69b801e04e75ab025509c33de /sys/cam/ctl/ctl_private.h
parentec3fc72f94b64840ffc88b4c376437ca7ee43fda (diff)
downloadsrc-130f4520cba830cc6da47c9f871fed78710a4709.tar.gz
src-130f4520cba830cc6da47c9f871fed78710a4709.zip
Add the CAM Target Layer (CTL).
CTL is a disk and processor device emulation subsystem originally written for Copan Systems under Linux starting in 2003. It has been shipping in Copan (now SGI) products since 2005. It was ported to FreeBSD in 2008, and thanks to an agreement between SGI (who acquired Copan's assets in 2010) and Spectra Logic in 2010, CTL is available under a BSD-style license. The intent behind the agreement was that Spectra would work to get CTL into the FreeBSD tree. Some CTL features: - Disk and processor device emulation. - Tagged queueing - SCSI task attribute support (ordered, head of queue, simple tags) - SCSI implicit command ordering support. (e.g. if a read follows a mode select, the read will be blocked until the mode select completes.) - Full task management support (abort, LUN reset, target reset, etc.) - Support for multiple ports - Support for multiple simultaneous initiators - Support for multiple simultaneous backing stores - Persistent reservation support - Mode sense/select support - Error injection support - High Availability support (1) - All I/O handled in-kernel, no userland context switch overhead. (1) HA Support is just an API stub, and needs much more to be fully functional. ctl.c: The core of CTL. Command handlers and processing, character driver, and HA support are here. ctl.h: Basic function declarations and data structures. ctl_backend.c, ctl_backend.h: The basic CTL backend API. ctl_backend_block.c, ctl_backend_block.h: The block and file backend. This allows for using a disk or a file as the backing store for a LUN. Multiple threads are started to do I/O to the backing device, primarily because the VFS API requires that to get any concurrency. ctl_backend_ramdisk.c: A "fake" ramdisk backend. It only allocates a small amount of memory to act as a source and sink for reads and writes from an initiator. Therefore it cannot be used for any real data, but it can be used to test for throughput. It can also be used to test initiators' support for extremely large LUNs. ctl_cmd_table.c: This is a table with all 256 possible SCSI opcodes, and command handler functions defined for supported opcodes. ctl_debug.h: Debugging support. ctl_error.c, ctl_error.h: CTL-specific wrappers around the CAM sense building functions. ctl_frontend.c, ctl_frontend.h: These files define the basic CTL frontend port API. ctl_frontend_cam_sim.c: This is a CTL frontend port that is also a CAM SIM. This frontend allows for using CTL without any target-capable hardware. So any LUNs you create in CTL are visible in CAM via this port. ctl_frontend_internal.c, ctl_frontend_internal.h: This is a frontend port written for Copan to do some system-specific tasks that required sending commands into CTL from inside the kernel. This isn't entirely relevant to FreeBSD in general, but can perhaps be repurposed. ctl_ha.h: This is a stubbed-out High Availability API. Much more is needed for full HA support. See the comments in the header and the description of what is needed in the README.ctl.txt file for more details. ctl_io.h: This defines most of the core CTL I/O structures. union ctl_io is conceptually very similar to CAM's union ccb. ctl_ioctl.h: This defines all ioctls available through the CTL character device, and the data structures needed for those ioctls. ctl_mem_pool.c, ctl_mem_pool.h: Generic memory pool implementation used by the internal frontend. ctl_private.h: Private data structres (e.g. CTL softc) and function prototypes. This also includes the SCSI vendor and product names used by CTL. ctl_scsi_all.c, ctl_scsi_all.h: CTL wrappers around CAM sense printing functions. ctl_ser_table.c: Command serialization table. This defines what happens when one type of command is followed by another type of command. ctl_util.c, ctl_util.h: CTL utility functions, primarily designed to be used from userland. See ctladm for the primary consumer of these functions. These include CDB building functions. scsi_ctl.c: CAM target peripheral driver and CTL frontend port. This is the path into CTL for commands from target-capable hardware/SIMs. README.ctl.txt: CTL code features, roadmap, to-do list. usr.sbin/Makefile: Add ctladm. ctladm/Makefile, ctladm/ctladm.8, ctladm/ctladm.c, ctladm/ctladm.h, ctladm/util.c: ctladm(8) is the CTL management utility. It fills a role similar to camcontrol(8). It allow configuring LUNs, issuing commands, injecting errors and various other control functions. usr.bin/Makefile: Add ctlstat. ctlstat/Makefile ctlstat/ctlstat.8, ctlstat/ctlstat.c: ctlstat(8) fills a role similar to iostat(8). It reports I/O statistics for CTL. sys/conf/files: Add CTL files. sys/conf/NOTES: Add device ctl. sys/cam/scsi_all.h: To conform to more recent specs, the inquiry CDB length field is now 2 bytes long. Add several mode page definitions for CTL. sys/cam/scsi_all.c: Handle the new 2 byte inquiry length. sys/dev/ciss/ciss.c, sys/dev/ata/atapi-cam.c, sys/cam/scsi/scsi_targ_bh.c, scsi_target/scsi_cmds.c, mlxcontrol/interface.c: Update for 2 byte inquiry length field. scsi_da.h: Add versions of the format and rigid disk pages that are in a more reasonable format for CTL. amd64/conf/GENERIC, i386/conf/GENERIC, ia64/conf/GENERIC, sparc64/conf/GENERIC: Add device ctl. i386/conf/PAE: The CTL frontend SIM at least does not compile cleanly on PAE. Sponsored by: Copan Systems, SGI and Spectra Logic MFC after: 1 month
Notes
Notes: svn path=/head/; revision=229997
Diffstat (limited to 'sys/cam/ctl/ctl_private.h')
-rw-r--r--sys/cam/ctl/ctl_private.h493
1 files changed, 493 insertions, 0 deletions
diff --git a/sys/cam/ctl/ctl_private.h b/sys/cam/ctl/ctl_private.h
new file mode 100644
index 000000000000..864027def870
--- /dev/null
+++ b/sys/cam/ctl/ctl_private.h
@@ -0,0 +1,493 @@
+/*-
+ * Copyright (c) 2003, 2004, 2005, 2008 Silicon Graphics International Corp.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions, and the following disclaimer,
+ * without modification.
+ * 2. Redistributions in binary form must reproduce at minimum a disclaimer
+ * substantially similar to the "NO WARRANTY" disclaimer below
+ * ("Disclaimer") and any redistribution must be conditioned upon
+ * including a substantially similar Disclaimer requirement for further
+ * binary redistribution.
+ *
+ * NO WARRANTY
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGES.
+ *
+ * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/ctl_private.h#7 $
+ * $FreeBSD$
+ */
+/*
+ * CAM Target Layer driver private data structures/definitions.
+ *
+ * Author: Ken Merry <ken@FreeBSD.org>
+ */
+
+#ifndef _CTL_PRIVATE_H_
+#define _CTL_PRIVATE_H_
+
+/*
+ * SCSI vendor and product names.
+ */
+#define CTL_VENDOR "FREEBSD "
+#define CTL_DIRECT_PRODUCT "CTLDISK "
+#define CTL_PROCESSOR_PRODUCT "CTLPROCESSOR "
+#define CTL_UNKNOWN_PRODUCT "CTLDEVICE "
+
+struct ctl_fe_ioctl_startstop_info {
+ struct cv sem;
+ struct ctl_hard_startstop_info hs_info;
+};
+
+struct ctl_fe_ioctl_bbrread_info {
+ struct cv sem;
+ struct ctl_bbrread_info *bbr_info;
+ int wakeup_done;
+ struct mtx *lock;
+};
+
+typedef enum {
+ CTL_IOCTL_INPROG,
+ CTL_IOCTL_DATAMOVE,
+ CTL_IOCTL_DONE
+} ctl_fe_ioctl_state;
+
+struct ctl_fe_ioctl_params {
+ struct cv sem;
+ struct mtx ioctl_mtx;
+ ctl_fe_ioctl_state state;
+};
+
+#define CTL_POOL_ENTRIES_INTERNAL 200
+#define CTL_POOL_ENTRIES_EMERGENCY 300
+#define CTL_POOL_ENTRIES_OTHER_SC 200
+
+typedef enum {
+ CTL_POOL_INTERNAL,
+ CTL_POOL_FETD,
+ CTL_POOL_EMERGENCY,
+ CTL_POOL_IOCTL,
+ CTL_POOL_4OTHERSC
+} ctl_pool_type;
+
+typedef enum {
+ CTL_POOL_FLAG_NONE = 0x00,
+ CTL_POOL_FLAG_INVALID = 0x01
+} ctl_pool_flags;
+
+struct ctl_io_pool {
+ ctl_pool_type type;
+ ctl_pool_flags flags;
+ uint32_t id;
+ struct ctl_softc *ctl_softc;
+ uint32_t refcount;
+ uint64_t total_allocated;
+ uint64_t total_freed;
+ int32_t total_ctl_io;
+ int32_t free_ctl_io;
+ STAILQ_HEAD(, ctl_io_hdr) free_queue;
+ STAILQ_ENTRY(ctl_io_pool) links;
+};
+
+typedef enum {
+ CTL_IOCTL_FLAG_NONE = 0x00,
+ CTL_IOCTL_FLAG_ENABLED = 0x01
+} ctl_ioctl_flags;
+
+struct ctl_ioctl_info {
+ ctl_ioctl_flags flags;
+ uint32_t cur_tag_num;
+ struct ctl_frontend fe;
+ char port_name[24];
+};
+
+typedef enum {
+ CTL_SER_BLOCK,
+ CTL_SER_EXTENT,
+ CTL_SER_PASS,
+ CTL_SER_SKIP
+} ctl_serialize_action;
+
+typedef enum {
+ CTL_ACTION_BLOCK,
+ CTL_ACTION_OVERLAP,
+ CTL_ACTION_OVERLAP_TAG,
+ CTL_ACTION_PASS,
+ CTL_ACTION_SKIP,
+ CTL_ACTION_ERROR
+} ctl_action;
+
+/*
+ * WARNING: Keep the bottom nibble here free, we OR in the data direction
+ * flags for each command.
+ *
+ * Note: "OK_ON_ALL_LUNS" == we don't have to have a lun configured
+ * "OK_ON_BOTH" == we have to have a lun configured
+ */
+typedef enum {
+ CTL_CMD_FLAG_NONE = 0x0000,
+ CTL_CMD_FLAG_NO_SENSE = 0x0010,
+ CTL_CMD_FLAG_OK_ON_ALL_LUNS = 0x0020,
+ CTL_CMD_FLAG_ALLOW_ON_RESV = 0x0040,
+ CTL_CMD_FLAG_OK_ON_PROC = 0x0100,
+ CTL_CMD_FLAG_OK_ON_SLUN = 0x0200,
+ CTL_CMD_FLAG_OK_ON_BOTH = 0x0300,
+ CTL_CMD_FLAG_OK_ON_STOPPED = 0x0400,
+ CTL_CMD_FLAG_OK_ON_INOPERABLE = 0x0800,
+ CTL_CMD_FLAG_OK_ON_OFFLINE = 0x1000,
+ CTL_CMD_FLAG_OK_ON_SECONDARY = 0x2000,
+ CTL_CMD_FLAG_ALLOW_ON_PR_RESV = 0x4000
+} ctl_cmd_flags;
+
+typedef enum {
+ CTL_SERIDX_TUR = 0,
+ CTL_SERIDX_READ,
+ CTL_SERIDX_WRITE,
+ CTL_SERIDX_MD_SNS,
+ CTL_SERIDX_MD_SEL,
+ CTL_SERIDX_RQ_SNS,
+ CTL_SERIDX_INQ,
+ CTL_SERIDX_RD_CAP,
+ CTL_SERIDX_RESV,
+ CTL_SERIDX_REL,
+ CTL_SERIDX_LOG_SNS,
+ CTL_SERIDX_FORMAT,
+ CTL_SERIDX_START,
+ CTL_SERIDX_PRES_IN,
+ CTL_SERIDX_PRES_OUT,
+ CTL_SERIDX_MAIN_IN,
+ /* TBD: others to be filled in as needed */
+ CTL_SERIDX_COUNT, /* LAST, not a normal code, provides # codes */
+ CTL_SERIDX_INVLD = CTL_SERIDX_COUNT
+} ctl_seridx;
+
+typedef int ctl_opfunc(struct ctl_scsiio *ctsio);
+
+struct ctl_cmd_entry {
+ ctl_opfunc *execute;
+ ctl_seridx seridx;
+ ctl_cmd_flags flags;
+ ctl_lun_error_pattern pattern;
+};
+
+typedef enum {
+ CTL_LUN_NONE = 0x000,
+ CTL_LUN_CONTROL = 0x001,
+ CTL_LUN_RESERVED = 0x002,
+ CTL_LUN_INVALID = 0x004,
+ CTL_LUN_DISABLED = 0x008,
+ CTL_LUN_MALLOCED = 0x010,
+ CTL_LUN_STOPPED = 0x020,
+ CTL_LUN_INOPERABLE = 0x040,
+ CTL_LUN_OFFLINE = 0x080,
+ CTL_LUN_PR_RESERVED = 0x100,
+ CTL_LUN_PRIMARY_SC = 0x200,
+ CTL_LUN_SENSE_DESC = 0x400
+} ctl_lun_flags;
+
+typedef enum {
+ CTLBLOCK_FLAG_NONE = 0x00,
+ CTLBLOCK_FLAG_INVALID = 0x01
+} ctlblock_flags;
+
+union ctl_softcs {
+ struct ctl_softc *ctl_softc;
+ struct ctlblock_softc *ctlblock_softc;
+};
+
+/*
+ * Mode page defaults.
+ */
+#if 0
+/*
+ * These values make Solaris trim off some of the capacity.
+ */
+#define CTL_DEFAULT_SECTORS_PER_TRACK 63
+#define CTL_DEFAULT_HEADS 255
+/*
+ * These values seem to work okay.
+ */
+#define CTL_DEFAULT_SECTORS_PER_TRACK 63
+#define CTL_DEFAULT_HEADS 16
+/*
+ * These values work reasonably well.
+ */
+#define CTL_DEFAULT_SECTORS_PER_TRACK 512
+#define CTL_DEFAULT_HEADS 64
+#endif
+
+/*
+ * Solaris is somewhat picky about how many heads and sectors per track you
+ * have defined in mode pages 3 and 4. These values seem to cause Solaris
+ * to get the capacity more or less right when you run the format tool.
+ * They still have problems when dealing with devices larger than 1TB,
+ * but there isn't anything we can do about that.
+ *
+ * For smaller LUN sizes, this ends up causing the number of cylinders to
+ * work out to 0. Solaris actually recognizes that and comes up with its
+ * own bogus geometry to fit the actual capacity of the drive. They really
+ * should just give up on geometry and stick to the read capacity
+ * information alone for modern disk drives.
+ *
+ * One thing worth mentioning about Solaris' mkfs command is that it
+ * doesn't like sectors per track values larger than 256. 512 seems to
+ * work okay for format, but causes problems when you try to make a
+ * filesystem.
+ *
+ * Another caveat about these values: the product of these two values
+ * really should be a power of 2. This is because of the simplistic
+ * shift-based calculation that we have to use on the i386 platform to
+ * calculate the number of cylinders here. (If you use a divide, you end
+ * up calling __udivdi3(), which is a hardware FP call on the PC. On the
+ * XScale, it is done in software, so you can do that from inside the
+ * kernel.)
+ *
+ * So for the current values (256 S/T, 128 H), we get 32768, which works
+ * very nicely for calculating cylinders.
+ *
+ * If you want to change these values so that their product is no longer a
+ * power of 2, re-visit the calculation in ctl_init_page_index(). You may
+ * need to make it a bit more complicated to get the number of cylinders
+ * right.
+ */
+#define CTL_DEFAULT_SECTORS_PER_TRACK 256
+#define CTL_DEFAULT_HEADS 128
+
+#define CTL_DEFAULT_ROTATION_RATE 10000
+
+struct ctl_page_index;
+
+typedef int ctl_modesen_handler(struct ctl_scsiio *ctsio,
+ struct ctl_page_index *page_index,
+ int pc);
+typedef int ctl_modesel_handler(struct ctl_scsiio *ctsio,
+ struct ctl_page_index *page_index,
+ uint8_t *page_ptr);
+
+typedef enum {
+ CTL_PAGE_FLAG_NONE = 0x00,
+ CTL_PAGE_FLAG_DISK_ONLY = 0x01
+} ctl_page_flags;
+
+struct ctl_page_index {
+ uint8_t page_code;
+ uint8_t subpage;
+ uint16_t page_len;
+ uint8_t *page_data;
+ ctl_page_flags page_flags;
+ ctl_modesen_handler *sense_handler;
+ ctl_modesel_handler *select_handler;
+};
+
+#define CTL_PAGE_CURRENT 0x00
+#define CTL_PAGE_CHANGEABLE 0x01
+#define CTL_PAGE_DEFAULT 0x02
+#define CTL_PAGE_SAVED 0x03
+
+static struct ctl_page_index page_index_template[] = {
+ {SMS_FORMAT_DEVICE_PAGE, 0, sizeof(struct scsi_format_page), NULL,
+ CTL_PAGE_FLAG_DISK_ONLY, NULL, NULL},
+ {SMS_RIGID_DISK_PAGE, 0, sizeof(struct scsi_rigid_disk_page), NULL,
+ CTL_PAGE_FLAG_DISK_ONLY, NULL, NULL},
+ {SMS_CACHING_PAGE, 0, sizeof(struct scsi_caching_page), NULL,
+ CTL_PAGE_FLAG_DISK_ONLY, NULL, NULL},
+ {SMS_CONTROL_MODE_PAGE, 0, sizeof(struct scsi_control_page), NULL,
+ CTL_PAGE_FLAG_NONE, NULL, ctl_control_page_handler},
+ {SMS_VENDOR_SPECIFIC_PAGE | SMPH_SPF, PWR_SUBPAGE_CODE,
+ sizeof(struct copan_power_subpage), NULL, CTL_PAGE_FLAG_NONE,
+ ctl_power_sp_sense_handler, ctl_power_sp_handler},
+ {SMS_VENDOR_SPECIFIC_PAGE | SMPH_SPF, APS_SUBPAGE_CODE,
+ sizeof(struct copan_aps_subpage), NULL, CTL_PAGE_FLAG_NONE,
+ NULL, ctl_aps_sp_handler},
+ {SMS_VENDOR_SPECIFIC_PAGE | SMPH_SPF, DBGCNF_SUBPAGE_CODE,
+ sizeof(struct copan_debugconf_subpage), NULL, CTL_PAGE_FLAG_NONE,
+ ctl_debugconf_sp_sense_handler, ctl_debugconf_sp_select_handler},
+};
+
+#define CTL_NUM_MODE_PAGES sizeof(page_index_template)/ \
+ sizeof(page_index_template[0])
+
+struct ctl_mode_pages {
+ struct scsi_format_page format_page[4];
+ struct scsi_rigid_disk_page rigid_disk_page[4];
+ struct scsi_caching_page caching_page[4];
+ struct scsi_control_page control_page[4];
+ struct copan_power_subpage power_subpage[4];
+ struct copan_aps_subpage aps_subpage[4];
+ struct copan_debugconf_subpage debugconf_subpage[4];
+ struct ctl_page_index index[CTL_NUM_MODE_PAGES];
+};
+
+struct ctl_pending_sense {
+ ctl_ua_type ua_pending;
+ struct scsi_sense_data sense;
+};
+
+struct ctl_lun_delay_info {
+ ctl_delay_type datamove_type;
+ uint32_t datamove_delay;
+ ctl_delay_type done_type;
+ uint32_t done_delay;
+};
+
+typedef enum {
+ CTL_ERR_INJ_NONE = 0x00,
+ CTL_ERR_INJ_ABORTED = 0x01
+} ctl_err_inject_flags;
+
+typedef enum {
+ CTL_PR_FLAG_NONE = 0x00,
+ CTL_PR_FLAG_REGISTERED = 0x01,
+ CTL_PR_FLAG_ACTIVE_RES = 0x02
+} ctl_per_res_flags;
+
+struct ctl_per_res_info {
+ struct scsi_per_res_key res_key;
+ uint8_t registered;
+};
+
+#define CTL_PR_ALL_REGISTRANTS 0xFFFF
+#define CTL_PR_NO_RESERVATION 0xFFF0
+
+/*
+ * For report target port groups.
+ */
+#define NUM_TARGET_PORT_GROUPS 2
+#define NUM_PORTS_PER_GRP 2
+
+struct ctl_lun {
+ struct mtx lun_lock;
+ struct ctl_id target;
+ uint64_t lun;
+ ctl_lun_flags flags;
+ STAILQ_HEAD(,ctl_error_desc) error_list;
+ uint64_t error_serial;
+ struct ctl_softc *ctl_softc;
+ struct ctl_be_lun *be_lun;
+ struct ctl_backend_driver *backend;
+ int io_count;
+ struct ctl_lun_delay_info delay_info;
+ int sync_interval;
+ int sync_count;
+ TAILQ_HEAD(ctl_ooaq, ctl_io_hdr) ooa_queue;
+ TAILQ_HEAD(ctl_blockq,ctl_io_hdr) blocked_queue;
+ STAILQ_ENTRY(ctl_lun) links;
+ STAILQ_ENTRY(ctl_lun) run_links;
+ struct ctl_nexus rsv_nexus;
+ uint32_t have_ca[CTL_MAX_INITIATORS >> 5];
+ struct ctl_pending_sense pending_sense[CTL_MAX_INITIATORS];
+ struct ctl_mode_pages mode_pages;
+ struct ctl_lun_io_stats stats;
+ struct ctl_per_res_info per_res[2*CTL_MAX_INITIATORS];
+ unsigned int PRGeneration;
+ int pr_key_count;
+ uint16_t pr_res_idx;
+ uint8_t res_type;
+ uint8_t write_buffer[524288];
+};
+
+typedef enum {
+ CTL_FLAG_TASK_PENDING = 0x01,
+ CTL_FLAG_REAL_SYNC = 0x02,
+ CTL_FLAG_MASTER_SHELF = 0x04
+} ctl_gen_flags;
+
+struct ctl_wwpn_iid {
+ int in_use;
+ uint64_t wwpn;
+ uint32_t iid;
+ int32_t port;
+};
+
+struct ctl_softc {
+ struct mtx ctl_lock;
+ struct cdev *dev;
+ int open_count;
+ struct ctl_id target;
+ int num_disks;
+ int num_luns;
+ ctl_gen_flags flags;
+ ctl_ha_mode ha_mode;
+ struct ctl_ioctl_info ioctl_info;
+ struct ctl_lun lun;
+ struct ctl_io_pool *internal_pool;
+ struct ctl_io_pool *emergency_pool;
+ struct ctl_io_pool *othersc_pool;
+ struct proc *work_thread;
+ int targ_online;
+ uint32_t ctl_lun_mask[CTL_MAX_LUNS >> 5];
+ struct ctl_lun *ctl_luns[CTL_MAX_LUNS];
+ struct ctl_wwpn_iid wwpn_iid[CTL_MAX_PORTS][CTL_MAX_INIT_PER_PORT];
+ uint32_t ctl_port_mask;
+ uint64_t aps_locked_lun;
+ STAILQ_HEAD(, ctl_lun) lun_list;
+ STAILQ_HEAD(, ctl_be_lun) pending_lun_queue;
+ STAILQ_HEAD(, ctl_io_hdr) task_queue;
+ STAILQ_HEAD(, ctl_io_hdr) incoming_queue;
+ STAILQ_HEAD(, ctl_io_hdr) rtr_queue;
+ STAILQ_HEAD(, ctl_io_hdr) done_queue;
+ STAILQ_HEAD(, ctl_io_hdr) isc_queue;
+ uint32_t num_frontends;
+ STAILQ_HEAD(, ctl_frontend) fe_list;
+ struct ctl_frontend *ctl_ports[CTL_MAX_PORTS];
+ uint32_t num_backends;
+ STAILQ_HEAD(, ctl_backend_driver) be_list;
+ uint32_t num_pools;
+ uint32_t cur_pool_id;
+ STAILQ_HEAD(, ctl_io_pool) io_pools;
+ time_t last_print_jiffies;
+ uint32_t skipped_prints;
+};
+
+#ifdef _KERNEL
+
+extern struct ctl_cmd_entry ctl_cmd_table[];
+
+uint32_t ctl_get_initindex(struct ctl_nexus *nexus);
+int ctl_pool_create(struct ctl_softc *ctl_softc, ctl_pool_type pool_type,
+ uint32_t total_ctl_io, struct ctl_io_pool **npool);
+int ctl_pool_acquire(struct ctl_io_pool *pool);
+int ctl_pool_invalidate(struct ctl_io_pool *pool);
+int ctl_pool_release(struct ctl_io_pool *pool);
+void ctl_pool_free(struct ctl_softc *ctl_softc, struct ctl_io_pool *pool);
+int ctl_scsi_release(struct ctl_scsiio *ctsio);
+int ctl_scsi_reserve(struct ctl_scsiio *ctsio);
+int ctl_start_stop(struct ctl_scsiio *ctsio);
+int ctl_sync_cache(struct ctl_scsiio *ctsio);
+int ctl_format(struct ctl_scsiio *ctsio);
+int ctl_write_buffer(struct ctl_scsiio *ctsio);
+int ctl_mode_select(struct ctl_scsiio *ctsio);
+int ctl_mode_sense(struct ctl_scsiio *ctsio);
+int ctl_read_capacity(struct ctl_scsiio *ctsio);
+int ctl_service_action_in(struct ctl_scsiio *ctsio);
+int ctl_read_write(struct ctl_scsiio *ctsio);
+int ctl_report_luns(struct ctl_scsiio *ctsio);
+int ctl_request_sense(struct ctl_scsiio *ctsio);
+int ctl_tur(struct ctl_scsiio *ctsio);
+int ctl_inquiry(struct ctl_scsiio *ctsio);
+int ctl_persistent_reserve_in(struct ctl_scsiio *ctsio);
+int ctl_persistent_reserve_out(struct ctl_scsiio *ctsio);
+int ctl_maintenance_in(struct ctl_scsiio *ctsio);
+void ctl_done_lock(union ctl_io *io, int have_lock);
+int ctl_isc(struct ctl_scsiio *ctsio);
+
+#endif /* _KERNEL */
+
+#endif /* _CTL_PRIVATE_H_ */
+
+/*
+ * vim: ts=8
+ */