ctl_backend.h revision 276179
1229997Sken/*-
2229997Sken * Copyright (c) 2003 Silicon Graphics International Corp.
3229997Sken * All rights reserved.
4229997Sken *
5229997Sken * Redistribution and use in source and binary forms, with or without
6229997Sken * modification, are permitted provided that the following conditions
7229997Sken * are met:
8229997Sken * 1. Redistributions of source code must retain the above copyright
9229997Sken *    notice, this list of conditions, and the following disclaimer,
10229997Sken *    without modification.
11229997Sken * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12229997Sken *    substantially similar to the "NO WARRANTY" disclaimer below
13229997Sken *    ("Disclaimer") and any redistribution must be conditioned upon
14229997Sken *    including a substantially similar Disclaimer requirement for further
15229997Sken *    binary redistribution.
16229997Sken *
17229997Sken * NO WARRANTY
18229997Sken * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19229997Sken * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20229997Sken * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
21229997Sken * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22229997Sken * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23229997Sken * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24229997Sken * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25229997Sken * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26229997Sken * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27229997Sken * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28229997Sken * POSSIBILITY OF SUCH DAMAGES.
29229997Sken *
30229997Sken * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/ctl_backend.h#2 $
31229997Sken * $FreeBSD: stable/10/sys/cam/ctl/ctl_backend.h 276179 2014-12-24 13:49:40Z mav $
32229997Sken */
33229997Sken/*
34229997Sken * CTL backend driver definitions
35229997Sken *
36229997Sken * Author: Ken Merry <ken@FreeBSD.org>
37229997Sken */
38229997Sken
39229997Sken#ifndef	_CTL_BACKEND_H_
40229997Sken#define	_CTL_BACKEND_H_
41229997Sken
42229997Sken/*
43229997Sken * XXX KDM move this to another header file?
44229997Sken */
45229997Sken#define	CTL_BE_NAME_LEN		32
46229997Sken
47229997Sken/*
48229997Sken * The ID_REQ flag is used to say that the caller has requested a
49229997Sken * particular LUN ID in the req_lun_id field.  If we cannot allocate that
50229997Sken * LUN ID, the ctl_add_lun() call will fail.
51229997Sken *
52229997Sken * The POWERED_OFF flag tells us that the LUN should default to the powered
53229997Sken * off state.  It will return 0x04,0x02 until it is powered up.  ("Logical
54229997Sken * unit not ready, initializing command required.")
55229997Sken *
56229997Sken * The INOPERABLE flag tells us that this LUN is not operable for whatever
57229997Sken * reason.  This means that user data may have been (or has been?) lost.
58229997Sken * We will return 0x31,0x00 ("Medium format corrupted") until the host
59229997Sken * issues a FORMAT UNIT command to clear the error.
60229997Sken *
61229997Sken * The PRIMARY flag tells us that this LUN is registered as a Primary LUN
62229997Sken * which is accessible via the Master shelf controller in an HA. This flag
63229997Sken * being set indicates a Primary LUN. This flag being reset represents a
64229997Sken * Secondary LUN controlled by the Secondary controller in an HA
65229997Sken * configuration. Flag is applicable at this time to T_DIRECT types.
66229997Sken *
67229997Sken * The SERIAL_NUM flag tells us that the serial_num field is filled in and
68229997Sken * valid for use in SCSI INQUIRY VPD page 0x80.
69229997Sken *
70229997Sken * The DEVID flag tells us that the device_id field is filled in and
71229997Sken * valid for use in SCSI INQUIRY VPD page 0x83.
72229997Sken *
73229997Sken * The DEV_TYPE flag tells us that the device_type field is filled in.
74265634Smav *
75265634Smav * The UNMAP flag tells us that this LUN supports UNMAP.
76273315Smav *
77273315Smav * The OFFLINE flag tells us that this LUN can not access backing store.
78229997Sken */
79229997Skentypedef enum {
80229997Sken	CTL_LUN_FLAG_ID_REQ		= 0x01,
81229997Sken	CTL_LUN_FLAG_POWERED_OFF	= 0x02,
82229997Sken	CTL_LUN_FLAG_INOPERABLE		= 0x04,
83229997Sken	CTL_LUN_FLAG_PRIMARY		= 0x08,
84229997Sken	CTL_LUN_FLAG_SERIAL_NUM		= 0x10,
85229997Sken	CTL_LUN_FLAG_DEVID		= 0x20,
86265634Smav	CTL_LUN_FLAG_DEV_TYPE		= 0x40,
87273315Smav	CTL_LUN_FLAG_UNMAP		= 0x80,
88275895Smav	CTL_LUN_FLAG_OFFLINE		= 0x100,
89275895Smav	CTL_LUN_FLAG_SERSEQ_READ	= 0x200
90229997Sken} ctl_backend_lun_flags;
91229997Sken
92229997Sken#ifdef _KERNEL
93229997Sken
94229997Sken#define CTL_BACKEND_DECLARE(name, driver) \
95229997Sken	static int name ## _modevent(module_t mod, int type, void *data) \
96229997Sken	{ \
97229997Sken		switch (type) { \
98229997Sken		case MOD_LOAD: \
99229997Sken			ctl_backend_register( \
100229997Sken				(struct ctl_backend_driver *)data); \
101229997Sken			break; \
102229997Sken		case MOD_UNLOAD: \
103229997Sken			printf(#name " module unload - not possible for this module type\n"); \
104229997Sken			return EINVAL; \
105229997Sken		default: \
106229997Sken			return EOPNOTSUPP; \
107229997Sken		} \
108229997Sken		return 0; \
109229997Sken	} \
110229997Sken	static moduledata_t name ## _mod = { \
111229997Sken		#name, \
112229997Sken		name ## _modevent, \
113229997Sken		(void *)&driver \
114229997Sken	}; \
115229997Sken	DECLARE_MODULE(name, name ## _mod, SI_SUB_CONFIGURE, SI_ORDER_FOURTH); \
116229997Sken	MODULE_DEPEND(name, ctl, 1, 1, 1); \
117229997Sken	MODULE_DEPEND(name, cam, 1, 1, 1)
118229997Sken
119229997Sken
120229997Skentypedef enum {
121229997Sken	CTL_LUN_CONFIG_OK,
122229997Sken	CTL_LUN_CONFIG_FAILURE
123229997Sken} ctl_lun_config_status;
124229997Sken
125229997Skentypedef void (*be_callback_t)(void *be_lun);
126229997Skentypedef void (*be_lun_config_t)(void *be_lun,
127229997Sken				ctl_lun_config_status status);
128229997Sken
129229997Sken/*
130229997Sken * The lun_type field is the SCSI device type of this particular LUN.  In
131229997Sken * general, this should be T_DIRECT, although backends will want to create
132229997Sken * a processor LUN, typically at LUN 0.  See scsi_all.h for the defines for
133229997Sken * the various SCSI device types.
134229997Sken *
135229997Sken * The flags are described above.
136229997Sken *
137229997Sken * The be_lun field is the backend driver's own context that will get
138229997Sken * passsed back so that it can tell which LUN CTL is referencing.
139229997Sken *
140229997Sken * maxlba is the maximum accessible LBA on the LUN.  Note that this is
141229997Sken * different from the capacity of the array.  capacity = maxlba + 1
142229997Sken *
143229997Sken * blocksize is the size, in bytes, of each LBA on the LUN.  In general
144229997Sken * this should be 512.  In theory CTL should be able to handle other block
145229997Sken * sizes.  Host application software may not deal with it very well, though.
146229997Sken *
147264727Smav * pblockexp is the log2() of number of LBAs on the LUN per physical sector.
148264727Smav *
149264727Smav * pblockoff is the lowest LBA on the LUN aligned ot physical sector.
150264727Smav *
151273311Smav * atomicblock is the number of blocks that can be written atomically.
152273311Smav *
153229997Sken * req_lun_id is the requested LUN ID.  CTL only pays attention to this
154229997Sken * field if the CTL_LUN_FLAG_ID_REQ flag is set.  If the requested LUN ID is
155229997Sken * not available, the LUN addition will fail.  If a particular LUN ID isn't
156229997Sken * requested, the first available LUN ID will be allocated.
157229997Sken *
158229997Sken * serial_num is the device serial number returned in the SCSI INQUIRY VPD
159229997Sken * page 0x80.  This should be a unique, per-shelf value.  The data inside
160229997Sken * this field should be ASCII only, left aligned, and any unused space
161229997Sken * should be padded out with ASCII spaces.  This field should NOT be NULL
162229997Sken * terminated.
163229997Sken *
164229997Sken * device_id is the T10 device identifier returned in the SCSI INQUIRY VPD
165229997Sken * page 0x83.  This should be a unique, per-LUN value.  The data inside
166229997Sken * this field should be ASCII only, left aligned, and any unused space
167229997Sken * should be padded with ASCII spaces.  This field should NOT be NULL
168229997Sken * terminated.
169229997Sken *
170229997Sken * The lun_shutdown() method is the callback for the ctl_invalidate_lun()
171229997Sken * call.  It is called when all outstanding I/O for that LUN has been
172229997Sken * completed and CTL has deleted the resources for that LUN.  When the CTL
173229997Sken * backend gets this call, it can safely free its per-LUN resources.
174229997Sken *
175229997Sken * The lun_config_status() method is the callback for the ctl_add_lun()
176229997Sken * call.  It is called when the LUN is successfully added, or when LUN
177229997Sken * addition fails.  If the LUN is successfully added, the backend may call
178229997Sken * the ctl_enable_lun() method to enable the LUN.
179229997Sken *
180229997Sken * The be field is a pointer to the ctl_backend_driver structure, which
181229997Sken * contains the backend methods to be called by CTL.
182229997Sken *
183229997Sken * The ctl_lun field is for CTL internal use only, and should not be used
184229997Sken * by the backend.
185229997Sken *
186229997Sken * The links field is for CTL internal use only, and should not be used by
187229997Sken * the backend.
188229997Sken */
189229997Skenstruct ctl_be_lun {
190229997Sken	uint8_t			lun_type;	/* passed to CTL */
191229997Sken	ctl_backend_lun_flags	flags;		/* passed to CTL */
192229997Sken	void			*be_lun;	/* passed to CTL */
193229997Sken	uint64_t		maxlba;		/* passed to CTL */
194229997Sken	uint32_t		blocksize;	/* passed to CTL */
195264727Smav	uint16_t		pblockexp;	/* passed to CTL */
196264727Smav	uint16_t		pblockoff;	/* passed to CTL */
197276179Smav	uint16_t		ublockexp;	/* passed to CTL */
198276179Smav	uint16_t		ublockoff;	/* passed to CTL */
199273311Smav	uint32_t		atomicblock;	/* passed to CTL */
200229997Sken	uint32_t		req_lun_id;	/* passed to CTL */
201229997Sken	uint32_t		lun_id;		/* returned from CTL */
202229997Sken	uint8_t			serial_num[CTL_SN_LEN];	 /* passed to CTL */
203229997Sken	uint8_t			device_id[CTL_DEVID_LEN];/* passed to CTL */
204229997Sken	be_callback_t		lun_shutdown;	/* passed to CTL */
205229997Sken	be_lun_config_t		lun_config_status; /* passed to CTL */
206229997Sken	struct ctl_backend_driver *be;		/* passed to CTL */
207229997Sken	void			*ctl_lun;	/* used by CTL */
208268678Smav	ctl_options_t		options;	/* passed to CTL */
209229997Sken	STAILQ_ENTRY(ctl_be_lun) links;		/* used by CTL */
210229997Sken};
211229997Sken
212229997Skentypedef enum {
213229997Sken	CTL_BE_FLAG_NONE	= 0x00,	/* no flags */
214229997Sken	CTL_BE_FLAG_HAS_CONFIG	= 0x01,	/* can do config reads, writes */
215229997Sken	CTL_BE_FLAG_INTERNAL	= 0x02	/* don't inc mod refcount */
216229997Sken} ctl_backend_flags;
217229997Sken
218229997Skentypedef int (*be_init_t)(void);
219229997Skentypedef int (*be_func_t)(union ctl_io *io);
220229997Skentypedef void (*be_vfunc_t)(union ctl_io *io);
221229997Skentypedef int (*be_ioctl_t)(struct cdev *dev, u_long cmd, caddr_t addr, int flag,
222229997Sken			  struct thread *td);
223229997Skentypedef int (*be_luninfo_t)(void *be_lun, struct sbuf *sb);
224274732Smavtypedef uint64_t (*be_lunattr_t)(void *be_lun, const char *attrname);
225229997Sken
226229997Skenstruct ctl_backend_driver {
227229997Sken	char		  name[CTL_BE_NAME_LEN]; /* passed to CTL */
228229997Sken	ctl_backend_flags flags;	         /* passed to CTL */
229229997Sken	be_init_t	  init;			 /* passed to CTL */
230229997Sken	be_func_t	  data_submit;		 /* passed to CTL */
231229997Sken	be_func_t	  data_move_done;	 /* passed to CTL */
232229997Sken	be_func_t	  config_read;		 /* passed to CTL */
233229997Sken	be_func_t	  config_write;		 /* passed to CTL */
234229997Sken	be_ioctl_t	  ioctl;		 /* passed to CTL */
235229997Sken	be_luninfo_t	  lun_info;		 /* passed to CTL */
236274732Smav	be_lunattr_t	  lun_attr;		 /* passed to CTL */
237229997Sken#ifdef CS_BE_CONFIG_MOVE_DONE_IS_NOT_USED
238229997Sken	be_func_t	  config_move_done;	 /* passed to backend */
239229997Sken#endif
240229997Sken#if 0
241229997Sken	be_vfunc_t	  config_write_done;	 /* passed to backend */
242229997Sken#endif
243229997Sken	u_int		  num_luns;		 /* used by CTL */
244229997Sken	STAILQ_ENTRY(ctl_backend_driver) links;	 /* used by CTL */
245229997Sken};
246229997Sken
247229997Skenint ctl_backend_register(struct ctl_backend_driver *be);
248229997Skenint ctl_backend_deregister(struct ctl_backend_driver *be);
249229997Skenstruct ctl_backend_driver *ctl_backend_find(char *backend_name);
250229997Sken
251229997Sken/*
252229997Sken * To add a LUN, first call ctl_add_lun().  You will get the lun_config_status()
253229997Sken * callback when the LUN addition has either succeeded or failed.
254229997Sken *
255229997Sken * Once you get that callback, you can then call ctl_enable_lun() to enable
256229997Sken * the LUN.
257229997Sken */
258229997Skenint ctl_add_lun(struct ctl_be_lun *be_lun);
259229997Skenint ctl_enable_lun(struct ctl_be_lun *be_lun);
260229997Sken
261229997Sken/*
262229997Sken * To delete a LUN, first call ctl_disable_lun(), then
263229997Sken * ctl_invalidate_lun().  You will get the lun_shutdown() callback when all
264229997Sken * I/O to the LUN has completed and the LUN has been deleted.
265229997Sken */
266229997Skenint ctl_disable_lun(struct ctl_be_lun *be_lun);
267229997Skenint ctl_invalidate_lun(struct ctl_be_lun *be_lun);
268229997Sken
269229997Sken/*
270229997Sken * To start a LUN (transition from powered off to powered on state) call
271229997Sken * ctl_start_lun().  To stop a LUN (transition from powered on to powered
272229997Sken * off state) call ctl_stop_lun().
273229997Sken */
274229997Skenint ctl_start_lun(struct ctl_be_lun *be_lun);
275229997Skenint ctl_stop_lun(struct ctl_be_lun *be_lun);
276229997Sken
277229997Sken/*
278229997Sken * If a LUN is inoperable, call ctl_lun_inoperable().  Generally the LUN
279229997Sken * will become operable once again when the user issues the SCSI FORMAT UNIT
280229997Sken * command.  (CTL will automatically clear the inoperable flag.)  If we
281229997Sken * need to re-enable the LUN, we can call ctl_lun_operable() to enable it
282229997Sken * without a SCSI command.
283229997Sken */
284229997Skenint ctl_lun_inoperable(struct ctl_be_lun *be_lun);
285229997Skenint ctl_lun_operable(struct ctl_be_lun *be_lun);
286229997Sken
287229997Sken/*
288229997Sken * To take a LUN offline, call ctl_lun_offline().  Generally the LUN will
289229997Sken * be online again once the user sends a SCSI START STOP UNIT command with
290229997Sken * the start and on/offline bits set.  The backend can bring the LUN back
291229997Sken * online via the ctl_lun_online() function, if necessary.
292229997Sken */
293229997Skenint ctl_lun_offline(struct ctl_be_lun *be_lun);
294229997Skenint ctl_lun_online(struct ctl_be_lun *be_lun);
295229997Sken
296232604Strasz/*
297232604Strasz * Let the backend notify the initiator about changed capacity.
298232604Strasz */
299232604Straszvoid ctl_lun_capacity_changed(struct ctl_be_lun *be_lun);
300232604Strasz
301229997Sken#endif /* _KERNEL */
302229997Sken#endif /* _CTL_BACKEND_H_ */
303229997Sken
304229997Sken/*
305229997Sken * vim: ts=8
306229997Sken */
307