4 * Copyright (c) 2002 Nate Lawson.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification, immediately at the beginning of the file.
13 * 2. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 #ifndef _SCSI_TARGET_H
32 #define _SCSI_TARGET_H
35 * Maximum number of parallel commands to accept,
36 * 1024 for Fibre Channel (SPI is 16).
38 #define MAX_INITIATORS 1024
39 #define SECTOR_SIZE 512
40 #define MAX_EVENTS (MAX_INITIATORS + 5)
41 /* kqueue for AIO, signals */
43 /* Additional SCSI 3 defines for inquiry response */
44 #define SID_Addr16 0x0100
46 TAILQ_HEAD(io_queue
, ccb_hdr
);
48 /* Offset into the private CCB area for storing our descriptor */
49 #define targ_descr periph_priv.entries[1].ptr
51 /* Descriptor attached to each ATIO */
53 off_t base_off
; /* Base offset for ATIO */
54 uint total_len
; /* Total xfer len for this ATIO */
55 uint init_req
; /* Transfer count requested to/from init */
56 uint init_ack
; /* Data transferred ok to/from init */
57 uint targ_req
; /* Transfer count requested to/from target */
58 uint targ_ack
; /* Data transferred ok to/from target */
59 int flags
; /* Flags for CTIOs */
60 u_int8_t
*cdb
; /* Pointer to received CDB */
61 /* List of completed AIO/CTIOs */
62 struct io_queue cmplt_io
;
71 /* Descriptor attached to each CTIO */
73 void *buf
; /* Backing store */
74 off_t offset
; /* Position in transfer (for file, */
75 /* doesn't start at 0) */
76 struct aiocb aiocb
; /* AIO descriptor for this CTIO */
77 struct ccb_accept_tio
*atio
;
78 /* ATIO we are satisfying */
79 io_ops event
; /* Event that queued this CTIO */
95 struct initiator_state
{
100 struct scsi_sense_data sense_data
;
103 /* Global functions */
104 extern cam_status
tcmd_init(u_int16_t req_inq_flags
,
105 u_int16_t sim_inq_flags
);
106 extern int tcmd_handle(struct ccb_accept_tio
*atio
,
107 struct ccb_scsiio
*ctio
, io_ops event
);
108 extern void tcmd_sense(u_int init_id
, struct ccb_scsiio
*ctio
,
110 u_int8_t asc
, u_int8_t ascq
);
111 extern void tcmd_ua(u_int init_id
, ua_types new_ua
);
112 extern int work_atio(struct ccb_accept_tio
*atio
);
113 extern void send_ccb(union ccb
*ccb
, int priority
);
114 extern void free_ccb(union ccb
*ccb
);
115 static __inline u_int
min(u_int a
, u_int b
) { return (a
< b
? a
: b
); }
123 #if __FreeBSD_version >= 500000
124 #define OFF_FMT "%ju"
126 #define OFF_FMT "%llu"
129 #endif /* _SCSI_TARGET_H */