xref: /illumos-gate/usr/src/uts/sun4v/io/vds.c (revision 969dd6c4)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright (c) 2019, Joyent, Inc.
25  */
26 
27 /*
28  * Virtual disk server
29  */
30 
31 
32 #include <sys/types.h>
33 #include <sys/conf.h>
34 #include <sys/crc32.h>
35 #include <sys/ddi.h>
36 #include <sys/dkio.h>
37 #include <sys/file.h>
38 #include <sys/fs/hsfs_isospec.h>
39 #include <sys/mdeg.h>
40 #include <sys/mhd.h>
41 #include <sys/modhash.h>
42 #include <sys/note.h>
43 #include <sys/pathname.h>
44 #include <sys/sdt.h>
45 #include <sys/sunddi.h>
46 #include <sys/sunldi.h>
47 #include <sys/sysmacros.h>
48 #include <sys/vio_common.h>
49 #include <sys/vio_util.h>
50 #include <sys/vdsk_mailbox.h>
51 #include <sys/vdsk_common.h>
52 #include <sys/vtoc.h>
53 #include <sys/vfs.h>
54 #include <sys/stat.h>
55 #include <sys/scsi/impl/uscsi.h>
56 #include <sys/ontrap.h>
57 #include <vm/seg_map.h>
58 
59 #define	ONE_MEGABYTE	(1ULL << 20)
60 #define	ONE_GIGABYTE	(1ULL << 30)
61 #define	ONE_TERABYTE	(1ULL << 40)
62 
63 /* Virtual disk server initialization flags */
64 #define	VDS_LDI			0x01
65 #define	VDS_MDEG		0x02
66 
67 /* Virtual disk server tunable parameters */
68 #define	VDS_RETRIES		5
69 #define	VDS_LDC_DELAY		1000 /* 1 msecs */
70 #define	VDS_DEV_DELAY		10000000 /* 10 secs */
71 #define	VDS_NCHAINS		32
72 
73 /* Identification parameters for MD, synthetic dkio(7i) structures, etc. */
74 #define	VDS_NAME		"virtual-disk-server"
75 
76 #define	VD_NAME			"vd"
77 #define	VD_VOLUME_NAME		"vdisk"
78 #define	VD_ASCIILABEL		"Virtual Disk"
79 
80 #define	VD_CHANNEL_ENDPOINT	"channel-endpoint"
81 #define	VD_ID_PROP		"id"
82 #define	VD_BLOCK_DEVICE_PROP	"vds-block-device"
83 #define	VD_BLOCK_DEVICE_OPTS	"vds-block-device-opts"
84 #define	VD_REG_PROP		"reg"
85 
86 /* Virtual disk initialization flags */
87 #define	VD_DISK_READY		0x01
88 #define	VD_LOCKING		0x02
89 #define	VD_LDC			0x04
90 #define	VD_DRING		0x08
91 #define	VD_SID			0x10
92 #define	VD_SEQ_NUM		0x20
93 #define	VD_SETUP_ERROR		0x40
94 
95 /* Number of backup labels */
96 #define	VD_DSKIMG_NUM_BACKUP	5
97 
98 /* Timeout for SCSI I/O */
99 #define	VD_SCSI_RDWR_TIMEOUT	30	/* 30 secs */
100 
101 /*
102  * Default number of threads for the I/O queue. In many cases, we will not
103  * receive more than 8 I/O requests at the same time. However there are
104  * cases (for example during the OS installation) where we can have a lot
105  * more (up to the limit of the DRing size).
106  */
107 #define	VD_IOQ_NTHREADS		8
108 
109 /* Maximum number of logical partitions */
110 #define	VD_MAXPART	(NDKMAP + 1)
111 
112 /*
113  * By Solaris convention, slice/partition 2 represents the entire disk;
114  * unfortunately, this convention does not appear to be codified.
115  */
116 #define	VD_ENTIRE_DISK_SLICE	2
117 
118 /* Logical block address for EFI */
119 #define	VD_EFI_LBA_GPT		1	/* LBA of the GPT */
120 #define	VD_EFI_LBA_GPE		2	/* LBA of the GPE */
121 
122 #define	VD_EFI_DEV_SET(dev, vdsk, ioctl)	\
123 	VDSK_EFI_DEV_SET(dev, vdsk, ioctl,	\
124 	    (vdsk)->vdisk_bsize, (vdsk)->vdisk_size)
125 
126 /*
127  * Flags defining the behavior for flushing asynchronous writes used to
128  * performed some write I/O requests.
129  *
130  * The VD_AWFLUSH_IMMEDIATE enables immediate flushing of asynchronous
131  * writes. This ensures that data are committed to the backend when the I/O
132  * request reply is sent to the guest domain so this prevents any data to
133  * be lost in case a service domain unexpectedly crashes.
134  *
135  * The flag VD_AWFLUSH_DEFER indicates that flushing is deferred to another
136  * thread while the request is immediatly marked as completed. In that case,
137  * a guest domain can a receive a reply that its write request is completed
138  * while data haven't been flushed to disk yet.
139  *
140  * Flags VD_AWFLUSH_IMMEDIATE and VD_AWFLUSH_DEFER are mutually exclusive.
141  */
142 #define	VD_AWFLUSH_IMMEDIATE	0x01	/* immediate flushing */
143 #define	VD_AWFLUSH_DEFER	0x02	/* defer flushing */
144 #define	VD_AWFLUSH_GROUP	0x04	/* group requests before flushing */
145 
146 /* Driver types */
147 typedef enum vd_driver {
148 	VD_DRIVER_UNKNOWN = 0,	/* driver type unknown  */
149 	VD_DRIVER_DISK,		/* disk driver */
150 	VD_DRIVER_VOLUME	/* volume driver */
151 } vd_driver_t;
152 
153 #define	VD_DRIVER_NAME_LEN	64
154 
155 #define	VDS_NUM_DRIVERS	(sizeof (vds_driver_types) / sizeof (vd_driver_type_t))
156 
157 typedef struct vd_driver_type {
158 	char name[VD_DRIVER_NAME_LEN];	/* driver name */
159 	vd_driver_t type;		/* driver type (disk or volume) */
160 } vd_driver_type_t;
161 
162 /*
163  * There is no reliable way to determine if a device is representing a disk
164  * or a volume, especially with pseudo devices. So we maintain a list of well
165  * known drivers and the type of device they represent (either a disk or a
166  * volume).
167  *
168  * The list can be extended by adding a "driver-type-list" entry in vds.conf
169  * with the following syntax:
170  *
171  *	driver-type-list="<driver>:<type>", ... ,"<driver>:<type>";
172  *
173  * Where:
174  *	<driver> is the name of a driver (limited to 64 characters)
175  *	<type> is either the string "disk" or "volume"
176  *
177  * Invalid entries in "driver-type-list" will be ignored.
178  *
179  * For example, the following line in vds.conf:
180  *
181  *	driver-type-list="foo:disk","bar:volume";
182  *
183  * defines that "foo" is a disk driver, and driver "bar" is a volume driver.
184  *
185  * When a list is defined in vds.conf, it is checked before the built-in list
186  * (vds_driver_types[]) so that any definition from this list can be overriden
187  * using vds.conf.
188  */
189 vd_driver_type_t vds_driver_types[] = {
190 	{ "dad",	VD_DRIVER_DISK },	/* Solaris */
191 	{ "did",	VD_DRIVER_DISK },	/* Sun Cluster */
192 	{ "dlmfdrv",	VD_DRIVER_DISK },	/* Hitachi HDLM */
193 	{ "emcp",	VD_DRIVER_DISK },	/* EMC Powerpath */
194 	{ "lofi",	VD_DRIVER_VOLUME },	/* Solaris */
195 	{ "md",		VD_DRIVER_VOLUME },	/* Solaris - SVM */
196 	{ "sd",		VD_DRIVER_DISK },	/* Solaris */
197 	{ "ssd",	VD_DRIVER_DISK },	/* Solaris */
198 	{ "vdc",	VD_DRIVER_DISK },	/* Solaris */
199 	{ "vxdmp",	VD_DRIVER_DISK },	/* Veritas */
200 	{ "vxio",	VD_DRIVER_VOLUME },	/* Veritas - VxVM */
201 	{ "zfs",	VD_DRIVER_VOLUME }	/* Solaris */
202 };
203 
204 /* Return a cpp token as a string */
205 #define	STRINGIZE(token)	#token
206 
207 /*
208  * Print a message prefixed with the current function name to the message log
209  * (and optionally to the console for verbose boots); these macros use cpp's
210  * concatenation of string literals and C99 variable-length-argument-list
211  * macros
212  */
213 #define	PRN(...)	_PRN("?%s():  "__VA_ARGS__, "")
214 #define	_PRN(format, ...)					\
215 	cmn_err(CE_CONT, format"%s", __func__, __VA_ARGS__)
216 
217 /* Return a pointer to the "i"th vdisk dring element */
218 #define	VD_DRING_ELEM(i)	((vd_dring_entry_t *)(void *)	\
219 	    (vd->dring + (i)*vd->descriptor_size))
220 
221 /* Return the virtual disk client's type as a string (for use in messages) */
222 #define	VD_CLIENT(vd)							\
223 	(((vd)->xfer_mode == VIO_DESC_MODE) ? "in-band client" :	\
224 	    (((vd)->xfer_mode == VIO_DRING_MODE_V1_0) ? "dring client" :    \
225 		(((vd)->xfer_mode == 0) ? "null client" :		\
226 		    "unsupported client")))
227 
228 /* Read disk label from a disk image */
229 #define	VD_DSKIMG_LABEL_READ(vd, labelp) \
230 	vd_dskimg_rw(vd, VD_SLICE_NONE, VD_OP_BREAD, (caddr_t)labelp, \
231 	    0, sizeof (struct dk_label))
232 
233 /* Write disk label to a disk image */
234 #define	VD_DSKIMG_LABEL_WRITE(vd, labelp)	\
235 	vd_dskimg_rw(vd, VD_SLICE_NONE, VD_OP_BWRITE, (caddr_t)labelp, \
236 	    0, sizeof (struct dk_label))
237 
238 /* Identify if a backend is a disk image */
239 #define	VD_DSKIMG(vd)	((vd)->vdisk_type == VD_DISK_TYPE_DISK &&	\
240 	((vd)->file || (vd)->volume))
241 
242 /* Next index in a write queue */
243 #define	VD_WRITE_INDEX_NEXT(vd, id)		\
244 	((((id) + 1) >= vd->dring_len)? 0 : (id) + 1)
245 
246 /* Message for disk access rights reset failure */
247 #define	VD_RESET_ACCESS_FAILURE_MSG \
248 	"Fail to reset disk access rights for disk %s"
249 
250 /*
251  * Specification of an MD node passed to the MDEG to filter any
252  * 'vport' nodes that do not belong to the specified node. This
253  * template is copied for each vds instance and filled in with
254  * the appropriate 'cfg-handle' value before being passed to the MDEG.
255  */
256 static mdeg_prop_spec_t	vds_prop_template[] = {
257 	{ MDET_PROP_STR,	"name",		VDS_NAME },
258 	{ MDET_PROP_VAL,	"cfg-handle",	NULL },
259 	{ MDET_LIST_END,	NULL,		NULL }
260 };
261 
262 #define	VDS_SET_MDEG_PROP_INST(specp, val) (specp)[1].ps_val = (val);
263 
264 /*
265  * Matching criteria passed to the MDEG to register interest
266  * in changes to 'virtual-device-port' nodes identified by their
267  * 'id' property.
268  */
269 static md_prop_match_t	vd_prop_match[] = {
270 	{ MDET_PROP_VAL,	VD_ID_PROP },
271 	{ MDET_LIST_END,	NULL }
272 };
273 
274 static mdeg_node_match_t vd_match = {"virtual-device-port",
275 				    vd_prop_match};
276 
277 /*
278  * Options for the VD_BLOCK_DEVICE_OPTS property.
279  */
280 #define	VD_OPT_RDONLY		0x1	/* read-only  */
281 #define	VD_OPT_SLICE		0x2	/* single slice */
282 #define	VD_OPT_EXCLUSIVE	0x4	/* exclusive access */
283 
284 #define	VD_OPTION_NLEN	128
285 
286 typedef struct vd_option {
287 	char vdo_name[VD_OPTION_NLEN];
288 	uint64_t vdo_value;
289 } vd_option_t;
290 
291 vd_option_t vd_bdev_options[] = {
292 	{ "ro",		VD_OPT_RDONLY },
293 	{ "slice",	VD_OPT_SLICE },
294 	{ "excl",	VD_OPT_EXCLUSIVE }
295 };
296 
297 /* Debugging macros */
298 #ifdef DEBUG
299 
300 static int	vd_msglevel = 0;
301 
302 #define	PR0 if (vd_msglevel > 0)	PRN
303 #define	PR1 if (vd_msglevel > 1)	PRN
304 #define	PR2 if (vd_msglevel > 2)	PRN
305 
306 #define	VD_DUMP_DRING_ELEM(elem)					\
307 	PR0("dst:%x op:%x st:%u nb:%lx addr:%lx ncook:%u\n",		\
308 	    elem->hdr.dstate,						\
309 	    elem->payload.operation,					\
310 	    elem->payload.status,					\
311 	    elem->payload.nbytes,					\
312 	    elem->payload.addr,						\
313 	    elem->payload.ncookies);
314 
315 char *
316 vd_decode_state(int state)
317 {
318 	char *str;
319 
320 #define	CASE_STATE(_s)	case _s: str = #_s; break;
321 
322 	switch (state) {
323 	CASE_STATE(VD_STATE_INIT)
324 	CASE_STATE(VD_STATE_VER)
325 	CASE_STATE(VD_STATE_ATTR)
326 	CASE_STATE(VD_STATE_DRING)
327 	CASE_STATE(VD_STATE_RDX)
328 	CASE_STATE(VD_STATE_DATA)
329 	default: str = "unknown"; break;
330 	}
331 
332 #undef CASE_STATE
333 
334 	return (str);
335 }
336 
337 void
338 vd_decode_tag(vio_msg_t *msg)
339 {
340 	char *tstr, *sstr, *estr;
341 
342 #define	CASE_TYPE(_s)	case _s: tstr = #_s; break;
343 
344 	switch (msg->tag.vio_msgtype) {
345 	CASE_TYPE(VIO_TYPE_CTRL)
346 	CASE_TYPE(VIO_TYPE_DATA)
347 	CASE_TYPE(VIO_TYPE_ERR)
348 	default: tstr = "unknown"; break;
349 	}
350 
351 #undef CASE_TYPE
352 
353 #define	CASE_SUBTYPE(_s) case _s: sstr = #_s; break;
354 
355 	switch (msg->tag.vio_subtype) {
356 	CASE_SUBTYPE(VIO_SUBTYPE_INFO)
357 	CASE_SUBTYPE(VIO_SUBTYPE_ACK)
358 	CASE_SUBTYPE(VIO_SUBTYPE_NACK)
359 	default: sstr = "unknown"; break;
360 	}
361 
362 #undef CASE_SUBTYPE
363 
364 #define	CASE_ENV(_s)	case _s: estr = #_s; break;
365 
366 	switch (msg->tag.vio_subtype_env) {
367 	CASE_ENV(VIO_VER_INFO)
368 	CASE_ENV(VIO_ATTR_INFO)
369 	CASE_ENV(VIO_DRING_REG)
370 	CASE_ENV(VIO_DRING_UNREG)
371 	CASE_ENV(VIO_RDX)
372 	CASE_ENV(VIO_PKT_DATA)
373 	CASE_ENV(VIO_DESC_DATA)
374 	CASE_ENV(VIO_DRING_DATA)
375 	default: estr = "unknown"; break;
376 	}
377 
378 #undef CASE_ENV
379 
380 	PR1("(%x/%x/%x) message : (%s/%s/%s)",
381 	    msg->tag.vio_msgtype, msg->tag.vio_subtype,
382 	    msg->tag.vio_subtype_env, tstr, sstr, estr);
383 }
384 
385 #else	/* !DEBUG */
386 
387 #define	PR0(...)
388 #define	PR1(...)
389 #define	PR2(...)
390 
391 #define	VD_DUMP_DRING_ELEM(elem)
392 
393 #define	vd_decode_state(_s)	(NULL)
394 #define	vd_decode_tag(_s)	(NULL)
395 
396 #endif	/* DEBUG */
397 
398 
399 /*
400  * Soft state structure for a vds instance
401  */
402 typedef struct vds {
403 	uint_t		initialized;	/* driver inst initialization flags */
404 	dev_info_t	*dip;		/* driver inst devinfo pointer */
405 	ldi_ident_t	ldi_ident;	/* driver's identifier for LDI */
406 	mod_hash_t	*vd_table;	/* table of virtual disks served */
407 	mdeg_node_spec_t *ispecp;	/* mdeg node specification */
408 	mdeg_handle_t	mdeg;		/* handle for MDEG operations  */
409 	vd_driver_type_t *driver_types;	/* extra driver types (from vds.conf) */
410 	int		num_drivers;	/* num of extra driver types */
411 } vds_t;
412 
413 /*
414  * Types of descriptor-processing tasks
415  */
416 typedef enum vd_task_type {
417 	VD_NONFINAL_RANGE_TASK,	/* task for intermediate descriptor in range */
418 	VD_FINAL_RANGE_TASK,	/* task for last in a range of descriptors */
419 } vd_task_type_t;
420 
421 /*
422  * Structure describing the task for processing a descriptor
423  */
424 typedef struct vd_task {
425 	struct vd		*vd;		/* vd instance task is for */
426 	vd_task_type_t		type;		/* type of descriptor task */
427 	int			index;		/* dring elem index for task */
428 	vio_msg_t		*msg;		/* VIO message task is for */
429 	size_t			msglen;		/* length of message content */
430 	vd_dring_payload_t	*request;	/* request task will perform */
431 	struct buf		buf;		/* buf(9s) for I/O request */
432 	ldc_mem_handle_t	mhdl;		/* task memory handle */
433 	int			status;		/* status of processing task */
434 	int	(*completef)(struct vd_task *task); /* completion func ptr */
435 	uint32_t		write_index;	/* index in the write_queue */
436 } vd_task_t;
437 
438 /*
439  * Soft state structure for a virtual disk instance
440  */
441 typedef struct vd {
442 	uint64_t		id;		/* vdisk id */
443 	uint_t			initialized;	/* vdisk initialization flags */
444 	uint64_t		operations;	/* bitmask of VD_OPs exported */
445 	vio_ver_t		version;	/* ver negotiated with client */
446 	vds_t			*vds;		/* server for this vdisk */
447 	ddi_taskq_t		*startq;	/* queue for I/O start tasks */
448 	ddi_taskq_t		*completionq;	/* queue for completion tasks */
449 	ddi_taskq_t		*ioq;		/* queue for I/O */
450 	uint32_t		write_index;	/* next write index */
451 	buf_t			**write_queue;	/* queue for async writes */
452 	ldi_handle_t		ldi_handle[V_NUMPAR];	/* LDI slice handles */
453 	char			device_path[MAXPATHLEN + 1]; /* vdisk device */
454 	dev_t			dev[V_NUMPAR];	/* dev numbers for slices */
455 	int			open_flags;	/* open flags */
456 	uint_t			nslices;	/* number of slices we export */
457 	size_t			vdisk_size;	/* number of blocks in vdisk */
458 	size_t			vdisk_bsize;	/* blk size of the vdisk */
459 	vd_disk_type_t		vdisk_type;	/* slice or entire disk */
460 	vd_disk_label_t		vdisk_label;	/* EFI or VTOC label */
461 	vd_media_t		vdisk_media;	/* media type of backing dev. */
462 	boolean_t		is_atapi_dev;	/* Is this an IDE CD-ROM dev? */
463 	ushort_t		max_xfer_sz;	/* max xfer size in DEV_BSIZE */
464 	size_t			backend_bsize;	/* blk size of backend device */
465 	int			vio_bshift;	/* shift for blk convertion */
466 	boolean_t		volume;		/* is vDisk backed by volume */
467 	boolean_t		zvol;		/* is vDisk backed by a zvol */
468 	boolean_t		file;		/* is vDisk backed by a file? */
469 	boolean_t		scsi;		/* is vDisk backed by scsi? */
470 	vnode_t			*file_vnode;	/* file vnode */
471 	size_t			dskimg_size;	/* size of disk image */
472 	ddi_devid_t		dskimg_devid;	/* devid for disk image */
473 	int			efi_reserved;	/* EFI reserved slice */
474 	caddr_t			flabel;		/* fake label for slice type */
475 	uint_t			flabel_size;	/* fake label size */
476 	uint_t			flabel_limit;	/* limit of the fake label */
477 	struct dk_geom		dk_geom;	/* synthetic for slice type */
478 	struct extvtoc		vtoc;		/* synthetic for slice type */
479 	vd_slice_t		slices[VD_MAXPART]; /* logical partitions */
480 	boolean_t		ownership;	/* disk ownership status */
481 	ldc_status_t		ldc_state;	/* LDC connection state */
482 	ldc_handle_t		ldc_handle;	/* handle for LDC comm */
483 	size_t			max_msglen;	/* largest LDC message len */
484 	vd_state_t		state;		/* client handshake state */
485 	uint8_t			xfer_mode;	/* transfer mode with client */
486 	uint32_t		sid;		/* client's session ID */
487 	uint64_t		seq_num;	/* message sequence number */
488 	uint64_t		dring_ident;	/* identifier of dring */
489 	ldc_dring_handle_t	dring_handle;	/* handle for dring ops */
490 	uint32_t		descriptor_size;	/* num bytes in desc */
491 	uint32_t		dring_len;	/* number of dring elements */
492 	uint8_t			dring_mtype;	/* dring mem map type */
493 	caddr_t			dring;		/* address of dring */
494 	caddr_t			vio_msgp;	/* vio msg staging buffer */
495 	vd_task_t		inband_task;	/* task for inband descriptor */
496 	vd_task_t		*dring_task;	/* tasks dring elements */
497 
498 	kmutex_t		lock;		/* protects variables below */
499 	boolean_t		enabled;	/* is vdisk enabled? */
500 	boolean_t		reset_state;	/* reset connection state? */
501 	boolean_t		reset_ldc;	/* reset LDC channel? */
502 } vd_t;
503 
504 /*
505  * Macros to manipulate the fake label (flabel) for single slice disks.
506  *
507  * If we fake a VTOC label then the fake label consists of only one block
508  * containing the VTOC label (struct dk_label).
509  *
510  * If we fake an EFI label then the fake label consists of a blank block
511  * followed by a GPT (efi_gpt_t) and a GPE (efi_gpe_t).
512  *
513  */
514 #define	VD_LABEL_VTOC_SIZE(lba)					\
515 	P2ROUNDUP(sizeof (struct dk_label), (lba))
516 
517 #define	VD_LABEL_EFI_SIZE(lba)					\
518 	P2ROUNDUP(2 * (lba) + sizeof (efi_gpe_t) * VD_MAXPART,	\
519 	    (lba))
520 
521 #define	VD_LABEL_VTOC(vd)	\
522 		((struct dk_label *)(void *)((vd)->flabel))
523 
524 #define	VD_LABEL_EFI_GPT(vd, lba)	\
525 		((efi_gpt_t *)(void *)((vd)->flabel + (lba)))
526 #define	VD_LABEL_EFI_GPE(vd, lba)	\
527 		((efi_gpe_t *)(void *)((vd)->flabel + 2 * (lba)))
528 
529 
530 typedef struct vds_operation {
531 	char	*namep;
532 	uint8_t	operation;
533 	int	(*start)(vd_task_t *task);
534 	int	(*complete)(vd_task_t *task);
535 } vds_operation_t;
536 
537 typedef struct vd_ioctl {
538 	uint8_t		operation;		/* vdisk operation */
539 	const char	*operation_name;	/* vdisk operation name */
540 	size_t		nbytes;			/* size of operation buffer */
541 	int		cmd;			/* corresponding ioctl cmd */
542 	const char	*cmd_name;		/* ioctl cmd name */
543 	void		*arg;			/* ioctl cmd argument */
544 	/* convert input vd_buf to output ioctl_arg */
545 	int		(*copyin)(void *vd_buf, size_t, void *ioctl_arg);
546 	/* convert input ioctl_arg to output vd_buf */
547 	void		(*copyout)(void *ioctl_arg, void *vd_buf);
548 	/* write is true if the operation writes any data to the backend */
549 	boolean_t	write;
550 } vd_ioctl_t;
551 
552 /* Define trivial copyin/copyout conversion function flag */
553 #define	VD_IDENTITY_IN	((int (*)(void *, size_t, void *))-1)
554 #define	VD_IDENTITY_OUT	((void (*)(void *, void *))-1)
555 
556 
557 static int	vds_ldc_retries = VDS_RETRIES;
558 static int	vds_ldc_delay = VDS_LDC_DELAY;
559 static int	vds_dev_retries = VDS_RETRIES;
560 static int	vds_dev_delay = VDS_DEV_DELAY;
561 static void	*vds_state;
562 
563 static short	vd_scsi_rdwr_timeout = VD_SCSI_RDWR_TIMEOUT;
564 static int	vd_scsi_debug = USCSI_SILENT;
565 
566 /*
567  * Number of threads in the taskq handling vdisk I/O. This can be set up to
568  * the size of the DRing which is the maximum number of I/O we can receive
569  * in parallel. Note that using a high number of threads can improve performance
570  * but this is going to consume a lot of resources if there are many vdisks.
571  */
572 static int	vd_ioq_nthreads = VD_IOQ_NTHREADS;
573 
574 /*
575  * Tunable to define the behavior for flushing asynchronous writes used to
576  * performed some write I/O requests. The default behavior is to group as
577  * much asynchronous writes as possible and to flush them immediatly.
578  *
579  * If the tunable is set to 0 then explicit flushing is disabled. In that
580  * case, data will be flushed by traditional mechanism (like fsflush) but
581  * this might not happen immediatly.
582  *
583  */
584 static int	vd_awflush = VD_AWFLUSH_IMMEDIATE | VD_AWFLUSH_GROUP;
585 
586 /*
587  * Tunable to define the behavior of the service domain if the vdisk server
588  * fails to reset disk exclusive access when a LDC channel is reset. When a
589  * LDC channel is reset the vdisk server will try to reset disk exclusive
590  * access by releasing any SCSI-2 reservation or resetting the disk. If these
591  * actions fail then the default behavior (vd_reset_access_failure = 0) is to
592  * print a warning message. This default behavior can be changed by setting
593  * the vd_reset_access_failure variable to A_REBOOT (= 0x1) and that will
594  * cause the service domain to reboot, or A_DUMP (= 0x5) and that will cause
595  * the service domain to panic. In both cases, the reset of the service domain
596  * should trigger a reset SCSI buses and hopefully clear any SCSI-2 reservation.
597  */
598 static int	vd_reset_access_failure = 0;
599 
600 /*
601  * Tunable for backward compatibility. When this variable is set to B_TRUE,
602  * all disk volumes (ZFS, SVM, VxvM volumes) will be exported as single
603  * slice disks whether or not they have the "slice" option set. This is
604  * to provide a simple backward compatibility mechanism when upgrading
605  * the vds driver and using a domain configuration created before the
606  * "slice" option was available.
607  */
608 static boolean_t vd_volume_force_slice = B_FALSE;
609 
610 /*
611  * The label of disk images created with some earlier versions of the virtual
612  * disk software is not entirely correct and have an incorrect v_sanity field
613  * (usually 0) instead of VTOC_SANE. This creates a compatibility problem with
614  * these images because we are now validating that the disk label (and the
615  * sanity) is correct when a disk image is opened.
616  *
617  * This tunable is set to false to not validate the sanity field and ensure
618  * compatibility. If the tunable is set to true, we will do a strict checking
619  * of the sanity but this can create compatibility problems with old disk
620  * images.
621  */
622 static boolean_t vd_dskimg_validate_sanity = B_FALSE;
623 
624 /*
625  * Enables the use of LDC_DIRECT_MAP when mapping in imported descriptor rings.
626  */
627 static boolean_t vd_direct_mapped_drings = B_TRUE;
628 
629 /*
630  * When a backend is exported as a single-slice disk then we entirely fake
631  * its disk label. So it can be exported either with a VTOC label or with
632  * an EFI label. If vd_slice_label is set to VD_DISK_LABEL_VTOC then all
633  * single-slice disks will be exported with a VTOC label; and if it is set
634  * to VD_DISK_LABEL_EFI then all single-slice disks will be exported with
635  * an EFI label.
636  *
637  * If vd_slice_label is set to VD_DISK_LABEL_UNK and the backend is a disk
638  * or volume device then it will be exported with the same type of label as
639  * defined on the device. Otherwise if the backend is a file then it will
640  * exported with the disk label type set in the vd_file_slice_label variable.
641  *
642  * Note that if the backend size is greater than 1TB then it will always be
643  * exported with an EFI label no matter what the setting is.
644  */
645 static vd_disk_label_t vd_slice_label = VD_DISK_LABEL_UNK;
646 
647 static vd_disk_label_t vd_file_slice_label = VD_DISK_LABEL_VTOC;
648 
649 /*
650  * Tunable for backward compatibility. If this variable is set to B_TRUE then
651  * single-slice disks are exported as disks with only one slice instead of
652  * faking a complete disk partitioning.
653  */
654 static boolean_t vd_slice_single_slice = B_FALSE;
655 
656 /*
657  * Supported protocol version pairs, from highest (newest) to lowest (oldest)
658  *
659  * Each supported major version should appear only once, paired with (and only
660  * with) its highest supported minor version number (as the protocol requires
661  * supporting all lower minor version numbers as well)
662  */
663 static const vio_ver_t	vds_version[] = {{1, 1}};
664 static const size_t	vds_num_versions =
665     sizeof (vds_version)/sizeof (vds_version[0]);
666 
667 static void vd_free_dring_task(vd_t *vdp);
668 static int vd_setup_vd(vd_t *vd);
669 static int vd_setup_single_slice_disk(vd_t *vd);
670 static int vd_setup_slice_image(vd_t *vd);
671 static int vd_setup_disk_image(vd_t *vd);
672 static int vd_backend_check_size(vd_t *vd);
673 static boolean_t vd_enabled(vd_t *vd);
674 static ushort_t vd_lbl2cksum(struct dk_label *label);
675 static int vd_dskimg_validate_geometry(vd_t *vd);
676 static boolean_t vd_dskimg_is_iso_image(vd_t *vd);
677 static void vd_set_exported_operations(vd_t *vd);
678 static void vd_reset_access(vd_t *vd);
679 static int vd_backend_ioctl(vd_t *vd, int cmd, caddr_t arg);
680 static int vds_efi_alloc_and_read(vd_t *, efi_gpt_t **, efi_gpe_t **);
681 static void vds_efi_free(vd_t *, efi_gpt_t *, efi_gpe_t *);
682 static void vds_driver_types_free(vds_t *vds);
683 static void vd_vtocgeom_to_label(struct extvtoc *vtoc, struct dk_geom *geom,
684     struct dk_label *label);
685 static void vd_label_to_vtocgeom(struct dk_label *label, struct extvtoc *vtoc,
686     struct dk_geom *geom);
687 static boolean_t vd_slice_geom_isvalid(vd_t *vd, struct dk_geom *geom);
688 static boolean_t vd_slice_vtoc_isvalid(vd_t *vd, struct extvtoc *vtoc);
689 
690 extern int is_pseudo_device(dev_info_t *);
691 
692 /*
693  * Function:
694  *	vd_get_readable_size
695  *
696  * Description:
697  *	Convert a given size in bytes to a human readable format in
698  *	kilobytes, megabytes, gigabytes or terabytes.
699  *
700  * Parameters:
701  *	full_size	- the size to convert in bytes.
702  *	size		- the converted size.
703  *	unit		- the unit of the converted size: 'K' (kilobyte),
704  *			  'M' (Megabyte), 'G' (Gigabyte), 'T' (Terabyte).
705  *
706  * Return Code:
707  *	none
708  */
709 static void
710 vd_get_readable_size(size_t full_size, size_t *size, char *unit)
711 {
712 	if (full_size < (1ULL << 20)) {
713 		*size = full_size >> 10;
714 		*unit = 'K'; /* Kilobyte */
715 	} else if (full_size < (1ULL << 30)) {
716 		*size = full_size >> 20;
717 		*unit = 'M'; /* Megabyte */
718 	} else if (full_size < (1ULL << 40)) {
719 		*size = full_size >> 30;
720 		*unit = 'G'; /* Gigabyte */
721 	} else {
722 		*size = full_size >> 40;
723 		*unit = 'T'; /* Terabyte */
724 	}
725 }
726 
727 /*
728  * Function:
729  *	vd_dskimg_io_params
730  *
731  * Description:
732  *	Convert virtual disk I/O parameters (slice, block, length) to
733  *	(offset, length) relative to the disk image and according to
734  *	the virtual disk partitioning.
735  *
736  * Parameters:
737  *	vd		- disk on which the operation is performed.
738  *	slice		- slice to which is the I/O parameters apply.
739  *			  VD_SLICE_NONE indicates that parameters are
740  *			  are relative to the entire virtual disk.
741  *	blkp		- pointer to the starting block relative to the
742  *			  slice; return the starting block relative to
743  *			  the disk image.
744  *	lenp		- pointer to the number of bytes requested; return
745  *			  the number of bytes that can effectively be used.
746  *
747  * Return Code:
748  *	0		- I/O parameters have been successfully converted;
749  *			  blkp and lenp point to the converted values.
750  *	ENODATA		- no data are available for the given I/O parameters;
751  *			  This occurs if the starting block is past the limit
752  *			  of the slice.
753  *	EINVAL		- I/O parameters are invalid.
754  */
755 static int
756 vd_dskimg_io_params(vd_t *vd, int slice, size_t *blkp, size_t *lenp)
757 {
758 	size_t blk = *blkp;
759 	size_t len = *lenp;
760 	size_t offset, maxlen;
761 
762 	ASSERT(vd->file || VD_DSKIMG(vd));
763 	ASSERT(len > 0);
764 	ASSERT(vd->vdisk_bsize == DEV_BSIZE);
765 
766 	/*
767 	 * If a file is exported as a slice then we don't care about the vtoc.
768 	 * In that case, the vtoc is a fake mainly to make newfs happy and we
769 	 * handle any I/O as a raw disk access so that we can have access to the
770 	 * entire backend.
771 	 */
772 	if (vd->vdisk_type == VD_DISK_TYPE_SLICE || slice == VD_SLICE_NONE) {
773 		/* raw disk access */
774 		offset = blk * DEV_BSIZE;
775 		if (offset >= vd->dskimg_size) {
776 			/* offset past the end of the disk */
777 			PR0("offset (0x%lx) >= size (0x%lx)",
778 			    offset, vd->dskimg_size);
779 			return (ENODATA);
780 		}
781 		maxlen = vd->dskimg_size - offset;
782 	} else {
783 		ASSERT(slice >= 0 && slice < V_NUMPAR);
784 
785 		/*
786 		 * v1.0 vDisk clients depended on the server not verifying
787 		 * the label of a unformatted disk.  This "feature" is
788 		 * maintained for backward compatibility but all versions
789 		 * from v1.1 onwards must do the right thing.
790 		 */
791 		if (vd->vdisk_label == VD_DISK_LABEL_UNK &&
792 		    vio_ver_is_supported(vd->version, 1, 1)) {
793 			(void) vd_dskimg_validate_geometry(vd);
794 			if (vd->vdisk_label == VD_DISK_LABEL_UNK) {
795 				PR0("Unknown disk label, can't do I/O "
796 				    "from slice %d", slice);
797 				return (EINVAL);
798 			}
799 		}
800 
801 		if (vd->vdisk_label == VD_DISK_LABEL_VTOC) {
802 			ASSERT(vd->vtoc.v_sectorsz == DEV_BSIZE);
803 		} else {
804 			ASSERT(vd->vdisk_label == VD_DISK_LABEL_EFI);
805 		}
806 
807 		if (blk >= vd->slices[slice].nblocks) {
808 			/* address past the end of the slice */
809 			PR0("req_addr (0x%lx) >= psize (0x%lx)",
810 			    blk, vd->slices[slice].nblocks);
811 			return (ENODATA);
812 		}
813 
814 		offset = (vd->slices[slice].start + blk) * DEV_BSIZE;
815 		maxlen = (vd->slices[slice].nblocks - blk) * DEV_BSIZE;
816 	}
817 
818 	/*
819 	 * If the requested size is greater than the size
820 	 * of the partition, truncate the read/write.
821 	 */
822 	if (len > maxlen) {
823 		PR0("I/O size truncated to %lu bytes from %lu bytes",
824 		    maxlen, len);
825 		len = maxlen;
826 	}
827 
828 	/*
829 	 * We have to ensure that we are reading/writing into the mmap
830 	 * range. If we have a partial disk image (e.g. an image of
831 	 * s0 instead s2) the system can try to access slices that
832 	 * are not included into the disk image.
833 	 */
834 	if ((offset + len) > vd->dskimg_size) {
835 		PR0("offset + nbytes (0x%lx + 0x%lx) > "
836 		    "dskimg_size (0x%lx)", offset, len, vd->dskimg_size);
837 		return (EINVAL);
838 	}
839 
840 	*blkp = offset / DEV_BSIZE;
841 	*lenp = len;
842 
843 	return (0);
844 }
845 
846 /*
847  * Function:
848  *	vd_dskimg_rw
849  *
850  * Description:
851  *	Read or write to a disk image. It handles the case where the disk
852  *	image is a file or a volume exported as a full disk or a file
853  *	exported as single-slice disk. Read or write to volumes exported as
854  *	single slice disks are done by directly using the ldi interface.
855  *
856  * Parameters:
857  *	vd		- disk on which the operation is performed.
858  *	slice		- slice on which the operation is performed,
859  *			  VD_SLICE_NONE indicates that the operation
860  *			  is done using an absolute disk offset.
861  *	operation	- operation to execute: read (VD_OP_BREAD) or
862  *			  write (VD_OP_BWRITE).
863  *	data		- buffer where data are read to or written from.
864  *	blk		- starting block for the operation.
865  *	len		- number of bytes to read or write.
866  *
867  * Return Code:
868  *	n >= 0		- success, n indicates the number of bytes read
869  *			  or written.
870  *	-1		- error.
871  */
872 static ssize_t
873 vd_dskimg_rw(vd_t *vd, int slice, int operation, caddr_t data, size_t offset,
874     size_t len)
875 {
876 	ssize_t resid;
877 	struct buf buf;
878 	int status;
879 
880 	ASSERT(vd->file || VD_DSKIMG(vd));
881 	ASSERT(len > 0);
882 	ASSERT(vd->vdisk_bsize == DEV_BSIZE);
883 
884 	if ((status = vd_dskimg_io_params(vd, slice, &offset, &len)) != 0)
885 		return ((status == ENODATA)? 0: -1);
886 
887 	if (vd->volume) {
888 
889 		bioinit(&buf);
890 		buf.b_flags	= B_BUSY |
891 		    ((operation == VD_OP_BREAD)? B_READ : B_WRITE);
892 		buf.b_bcount	= len;
893 		buf.b_lblkno	= offset;
894 		buf.b_edev	= vd->dev[0];
895 		buf.b_un.b_addr = data;
896 
897 		/*
898 		 * We use ldi_strategy() and not ldi_read()/ldi_write() because
899 		 * the read/write functions of the underlying driver may try to
900 		 * lock pages of the data buffer, and this requires the data
901 		 * buffer to be kmem_alloc'ed (and not allocated on the stack).
902 		 *
903 		 * Also using ldi_strategy() ensures that writes are immediatly
904 		 * commited and not cached as this may be the case with
905 		 * ldi_write() (for example with a ZFS volume).
906 		 */
907 		if (ldi_strategy(vd->ldi_handle[0], &buf) != 0) {
908 			biofini(&buf);
909 			return (-1);
910 		}
911 
912 		if (biowait(&buf) != 0) {
913 			biofini(&buf);
914 			return (-1);
915 		}
916 
917 		resid = buf.b_resid;
918 		biofini(&buf);
919 
920 		ASSERT(resid <= len);
921 		return (len - resid);
922 	}
923 
924 	ASSERT(vd->file);
925 
926 	status = vn_rdwr((operation == VD_OP_BREAD)? UIO_READ : UIO_WRITE,
927 	    vd->file_vnode, data, len, offset * DEV_BSIZE, UIO_SYSSPACE, FSYNC,
928 	    RLIM64_INFINITY, kcred, &resid);
929 
930 	if (status != 0)
931 		return (-1);
932 
933 	return (len);
934 }
935 
936 /*
937  * Function:
938  *	vd_build_default_label
939  *
940  * Description:
941  *	Return a default label for a given disk size. This is used when the disk
942  *	does not have a valid VTOC so that the user can get a valid default
943  *	configuration. The default label has all slice sizes set to 0 (except
944  *	slice 2 which is the entire disk) to force the user to write a valid
945  *	label onto the disk image.
946  *
947  * Parameters:
948  *	disk_size	- the disk size in bytes
949  *	bsize		- the disk block size in bytes
950  *	label		- the returned default label.
951  *
952  * Return Code:
953  *	none.
954  */
955 static void
956 vd_build_default_label(size_t disk_size, size_t bsize, struct dk_label *label)
957 {
958 	size_t size;
959 	char unit;
960 
961 	ASSERT(bsize > 0);
962 
963 	bzero(label, sizeof (struct dk_label));
964 
965 	/*
966 	 * Ideally we would like the cylinder size (nsect * nhead) to be the
967 	 * same whatever the disk size is. That way the VTOC label could be
968 	 * easily updated in case the disk size is increased (keeping the
969 	 * same cylinder size allows to preserve the existing partitioning
970 	 * when updating the VTOC label). But it is not possible to have
971 	 * a fixed cylinder size and to cover all disk size.
972 	 *
973 	 * So we define different cylinder sizes depending on the disk size.
974 	 * The cylinder size is chosen so that we don't have too few cylinders
975 	 * for a small disk image, or so many on a big disk image that you
976 	 * waste space for backup superblocks or cylinder group structures.
977 	 * Also we must have a resonable number of cylinders and sectors so
978 	 * that newfs can run using default values.
979 	 *
980 	 *	+-----------+--------+---------+--------+
981 	 *	| disk_size |  < 2MB | 2MB-4GB | >= 8GB |
982 	 *	+-----------+--------+---------+--------+
983 	 *	| nhead	    |	 1   |	   1   |    96  |
984 	 *	| nsect	    |  200   |   600   |   768  |
985 	 *	+-----------+--------+---------+--------+
986 	 *
987 	 * Other parameters are computed from these values:
988 	 *
989 	 *	pcyl = disk_size / (nhead * nsect * 512)
990 	 *	acyl = (pcyl > 2)? 2 : 0
991 	 *	ncyl = pcyl - acyl
992 	 *
993 	 * The maximum number of cylinder is 65535 so this allows to define a
994 	 * geometry for a disk size up to 65535 * 96 * 768 * 512 = 2.24 TB
995 	 * which is more than enough to cover the maximum size allowed by the
996 	 * extended VTOC format (2TB).
997 	 */
998 
999 	if (disk_size >= 8 * ONE_GIGABYTE) {
1000 
1001 		label->dkl_nhead = 96;
1002 		label->dkl_nsect = 768;
1003 
1004 	} else if (disk_size >= 2 * ONE_MEGABYTE) {
1005 
1006 		label->dkl_nhead = 1;
1007 		label->dkl_nsect = 600;
1008 
1009 	} else {
1010 
1011 		label->dkl_nhead = 1;
1012 		label->dkl_nsect = 200;
1013 	}
1014 
1015 	label->dkl_pcyl = disk_size /
1016 	    (label->dkl_nsect * label->dkl_nhead * bsize);
1017 
1018 	if (label->dkl_pcyl == 0)
1019 		label->dkl_pcyl = 1;
1020 
1021 	label->dkl_acyl = 0;
1022 
1023 	if (label->dkl_pcyl > 2)
1024 		label->dkl_acyl = 2;
1025 
1026 	label->dkl_ncyl = label->dkl_pcyl - label->dkl_acyl;
1027 	label->dkl_write_reinstruct = 0;
1028 	label->dkl_read_reinstruct = 0;
1029 	label->dkl_rpm = 7200;
1030 	label->dkl_apc = 0;
1031 	label->dkl_intrlv = 0;
1032 
1033 	PR0("requested disk size: %ld bytes\n", disk_size);
1034 	PR0("setup: ncyl=%d nhead=%d nsec=%d\n", label->dkl_pcyl,
1035 	    label->dkl_nhead, label->dkl_nsect);
1036 	PR0("provided disk size: %ld bytes\n", (uint64_t)
1037 	    (label->dkl_pcyl * label->dkl_nhead *
1038 	    label->dkl_nsect * bsize));
1039 
1040 	vd_get_readable_size(disk_size, &size, &unit);
1041 
1042 	/*
1043 	 * We must have a correct label name otherwise format(1m) will
1044 	 * not recognized the disk as labeled.
1045 	 */
1046 	(void) snprintf(label->dkl_asciilabel, LEN_DKL_ASCII,
1047 	    "SUN-DiskImage-%ld%cB cyl %d alt %d hd %d sec %d",
1048 	    size, unit,
1049 	    label->dkl_ncyl, label->dkl_acyl, label->dkl_nhead,
1050 	    label->dkl_nsect);
1051 
1052 	/* default VTOC */
1053 	label->dkl_vtoc.v_version = V_EXTVERSION;
1054 	label->dkl_vtoc.v_nparts = V_NUMPAR;
1055 	label->dkl_vtoc.v_sanity = VTOC_SANE;
1056 	label->dkl_vtoc.v_part[VD_ENTIRE_DISK_SLICE].p_tag = V_BACKUP;
1057 	label->dkl_map[VD_ENTIRE_DISK_SLICE].dkl_cylno = 0;
1058 	label->dkl_map[VD_ENTIRE_DISK_SLICE].dkl_nblk = label->dkl_ncyl *
1059 	    label->dkl_nhead * label->dkl_nsect;
1060 	label->dkl_magic = DKL_MAGIC;
1061 	label->dkl_cksum = vd_lbl2cksum(label);
1062 }
1063 
1064 /*
1065  * Function:
1066  *	vd_dskimg_set_vtoc
1067  *
1068  * Description:
1069  *	Set the vtoc of a disk image by writing the label and backup
1070  *	labels into the disk image backend.
1071  *
1072  * Parameters:
1073  *	vd		- disk on which the operation is performed.
1074  *	label		- the data to be written.
1075  *
1076  * Return Code:
1077  *	0		- success.
1078  *	n > 0		- error, n indicates the errno code.
1079  */
1080 static int
1081 vd_dskimg_set_vtoc(vd_t *vd, struct dk_label *label)
1082 {
1083 	size_t blk, sec, cyl, head, cnt;
1084 
1085 	ASSERT(VD_DSKIMG(vd));
1086 
1087 	if (VD_DSKIMG_LABEL_WRITE(vd, label) < 0) {
1088 		PR0("fail to write disk label");
1089 		return (EIO);
1090 	}
1091 
1092 	/*
1093 	 * Backup labels are on the last alternate cylinder's
1094 	 * first five odd sectors.
1095 	 */
1096 	if (label->dkl_acyl == 0) {
1097 		PR0("no alternate cylinder, can not store backup labels");
1098 		return (0);
1099 	}
1100 
1101 	cyl = label->dkl_ncyl  + label->dkl_acyl - 1;
1102 	head = label->dkl_nhead - 1;
1103 
1104 	blk = (cyl * ((label->dkl_nhead * label->dkl_nsect) - label->dkl_apc)) +
1105 	    (head * label->dkl_nsect);
1106 
1107 	/*
1108 	 * Write the backup labels. Make sure we don't try to write past
1109 	 * the last cylinder.
1110 	 */
1111 	sec = 1;
1112 
1113 	for (cnt = 0; cnt < VD_DSKIMG_NUM_BACKUP; cnt++) {
1114 
1115 		if (sec >= label->dkl_nsect) {
1116 			PR0("not enough sector to store all backup labels");
1117 			return (0);
1118 		}
1119 
1120 		if (vd_dskimg_rw(vd, VD_SLICE_NONE, VD_OP_BWRITE,
1121 		    (caddr_t)label, blk + sec, sizeof (struct dk_label)) < 0) {
1122 			PR0("error writing backup label at block %lu\n",
1123 			    blk + sec);
1124 			return (EIO);
1125 		}
1126 
1127 		PR1("wrote backup label at block %lu\n", blk + sec);
1128 
1129 		sec += 2;
1130 	}
1131 
1132 	return (0);
1133 }
1134 
1135 /*
1136  * Function:
1137  *	vd_dskimg_get_devid_block
1138  *
1139  * Description:
1140  *	Return the block number where the device id is stored.
1141  *
1142  * Parameters:
1143  *	vd		- disk on which the operation is performed.
1144  *	blkp		- pointer to the block number
1145  *
1146  * Return Code:
1147  *	0		- success
1148  *	ENOSPC		- disk has no space to store a device id
1149  */
1150 static int
1151 vd_dskimg_get_devid_block(vd_t *vd, size_t *blkp)
1152 {
1153 	diskaddr_t spc, head, cyl;
1154 
1155 	ASSERT(VD_DSKIMG(vd));
1156 
1157 	if (vd->vdisk_label == VD_DISK_LABEL_UNK) {
1158 		/*
1159 		 * If no label is defined we don't know where to find
1160 		 * a device id.
1161 		 */
1162 		return (ENOSPC);
1163 	}
1164 
1165 	if (vd->vdisk_label == VD_DISK_LABEL_EFI) {
1166 		/*
1167 		 * For an EFI disk, the devid is at the beginning of
1168 		 * the reserved slice
1169 		 */
1170 		if (vd->efi_reserved == -1) {
1171 			PR0("EFI disk has no reserved slice");
1172 			return (ENOSPC);
1173 		}
1174 
1175 		*blkp = vd->slices[vd->efi_reserved].start;
1176 		return (0);
1177 	}
1178 
1179 	ASSERT(vd->vdisk_label == VD_DISK_LABEL_VTOC);
1180 
1181 	/* this geometry doesn't allow us to have a devid */
1182 	if (vd->dk_geom.dkg_acyl < 2) {
1183 		PR0("not enough alternate cylinder available for devid "
1184 		    "(acyl=%u)", vd->dk_geom.dkg_acyl);
1185 		return (ENOSPC);
1186 	}
1187 
1188 	/* the devid is in on the track next to the last cylinder */
1189 	cyl = vd->dk_geom.dkg_ncyl + vd->dk_geom.dkg_acyl - 2;
1190 	spc = vd->dk_geom.dkg_nhead * vd->dk_geom.dkg_nsect;
1191 	head = vd->dk_geom.dkg_nhead - 1;
1192 
1193 	*blkp = (cyl * (spc - vd->dk_geom.dkg_apc)) +
1194 	    (head * vd->dk_geom.dkg_nsect) + 1;
1195 
1196 	return (0);
1197 }
1198 
1199 /*
1200  * Return the checksum of a disk block containing an on-disk devid.
1201  */
1202 static uint_t
1203 vd_dkdevid2cksum(struct dk_devid *dkdevid)
1204 {
1205 	uint_t chksum, *ip;
1206 	int i;
1207 
1208 	chksum = 0;
1209 	ip = (void *)dkdevid;
1210 	for (i = 0; i < ((DEV_BSIZE - sizeof (int)) / sizeof (int)); i++)
1211 		chksum ^= ip[i];
1212 
1213 	return (chksum);
1214 }
1215 
1216 /*
1217  * Function:
1218  *	vd_dskimg_read_devid
1219  *
1220  * Description:
1221  *	Read the device id stored on a disk image.
1222  *
1223  * Parameters:
1224  *	vd		- disk on which the operation is performed.
1225  *	devid		- the return address of the device ID.
1226  *
1227  * Return Code:
1228  *	0		- success
1229  *	EIO		- I/O error while trying to access the disk image
1230  *	EINVAL		- no valid device id was found
1231  *	ENOSPC		- disk has no space to store a device id
1232  */
1233 static int
1234 vd_dskimg_read_devid(vd_t *vd, ddi_devid_t *devid)
1235 {
1236 	struct dk_devid *dkdevid;
1237 	size_t blk;
1238 	uint_t chksum;
1239 	int status, sz;
1240 
1241 	ASSERT(vd->vdisk_bsize == DEV_BSIZE);
1242 
1243 	if ((status = vd_dskimg_get_devid_block(vd, &blk)) != 0)
1244 		return (status);
1245 
1246 	dkdevid = kmem_zalloc(DEV_BSIZE, KM_SLEEP);
1247 
1248 	/* get the devid */
1249 	if ((vd_dskimg_rw(vd, VD_SLICE_NONE, VD_OP_BREAD, (caddr_t)dkdevid, blk,
1250 	    DEV_BSIZE)) < 0) {
1251 		PR0("error reading devid block at %lu", blk);
1252 		status = EIO;
1253 		goto done;
1254 	}
1255 
1256 	/* validate the revision */
1257 	if ((dkdevid->dkd_rev_hi != DK_DEVID_REV_MSB) ||
1258 	    (dkdevid->dkd_rev_lo != DK_DEVID_REV_LSB)) {
1259 		PR0("invalid devid found at block %lu (bad revision)", blk);
1260 		status = EINVAL;
1261 		goto done;
1262 	}
1263 
1264 	/* compute checksum */
1265 	chksum = vd_dkdevid2cksum(dkdevid);
1266 
1267 	/* compare the checksums */
1268 	if (DKD_GETCHKSUM(dkdevid) != chksum) {
1269 		PR0("invalid devid found at block %lu (bad checksum)", blk);
1270 		status = EINVAL;
1271 		goto done;
1272 	}
1273 
1274 	/* validate the device id */
1275 	if (ddi_devid_valid((ddi_devid_t)&dkdevid->dkd_devid) != DDI_SUCCESS) {
1276 		PR0("invalid devid found at block %lu", blk);
1277 		status = EINVAL;
1278 		goto done;
1279 	}
1280 
1281 	PR1("devid read at block %lu", blk);
1282 
1283 	sz = ddi_devid_sizeof((ddi_devid_t)&dkdevid->dkd_devid);
1284 	*devid = kmem_alloc(sz, KM_SLEEP);
1285 	bcopy(&dkdevid->dkd_devid, *devid, sz);
1286 
1287 done:
1288 	kmem_free(dkdevid, DEV_BSIZE);
1289 	return (status);
1290 
1291 }
1292 
1293 /*
1294  * Function:
1295  *	vd_dskimg_write_devid
1296  *
1297  * Description:
1298  *	Write a device id into disk image.
1299  *
1300  * Parameters:
1301  *	vd		- disk on which the operation is performed.
1302  *	devid		- the device ID to store.
1303  *
1304  * Return Code:
1305  *	0		- success
1306  *	EIO		- I/O error while trying to access the disk image
1307  *	ENOSPC		- disk has no space to store a device id
1308  */
1309 static int
1310 vd_dskimg_write_devid(vd_t *vd, ddi_devid_t devid)
1311 {
1312 	struct dk_devid *dkdevid;
1313 	uint_t chksum;
1314 	size_t blk;
1315 	int status;
1316 
1317 	ASSERT(vd->vdisk_bsize == DEV_BSIZE);
1318 
1319 	if (devid == NULL) {
1320 		/* nothing to write */
1321 		return (0);
1322 	}
1323 
1324 	if ((status = vd_dskimg_get_devid_block(vd, &blk)) != 0)
1325 		return (status);
1326 
1327 	dkdevid = kmem_zalloc(DEV_BSIZE, KM_SLEEP);
1328 
1329 	/* set revision */
1330 	dkdevid->dkd_rev_hi = DK_DEVID_REV_MSB;
1331 	dkdevid->dkd_rev_lo = DK_DEVID_REV_LSB;
1332 
1333 	/* copy devid */
1334 	bcopy(devid, &dkdevid->dkd_devid, ddi_devid_sizeof(devid));
1335 
1336 	/* compute checksum */
1337 	chksum = vd_dkdevid2cksum(dkdevid);
1338 
1339 	/* set checksum */
1340 	DKD_FORMCHKSUM(chksum, dkdevid);
1341 
1342 	/* store the devid */
1343 	if ((status = vd_dskimg_rw(vd, VD_SLICE_NONE, VD_OP_BWRITE,
1344 	    (caddr_t)dkdevid, blk, DEV_BSIZE)) < 0) {
1345 		PR0("Error writing devid block at %lu", blk);
1346 		status = EIO;
1347 	} else {
1348 		PR1("devid written at block %lu", blk);
1349 		status = 0;
1350 	}
1351 
1352 	kmem_free(dkdevid, DEV_BSIZE);
1353 	return (status);
1354 }
1355 
1356 /*
1357  * Function:
1358  *	vd_do_scsi_rdwr
1359  *
1360  * Description:
1361  *	Read or write to a SCSI disk using an absolute disk offset.
1362  *
1363  * Parameters:
1364  *	vd		- disk on which the operation is performed.
1365  *	operation	- operation to execute: read (VD_OP_BREAD) or
1366  *			  write (VD_OP_BWRITE).
1367  *	data		- buffer where data are read to or written from.
1368  *	blk		- starting block for the operation.
1369  *	len		- number of bytes to read or write.
1370  *
1371  * Return Code:
1372  *	0		- success
1373  *	n != 0		- error.
1374  */
1375 static int
1376 vd_do_scsi_rdwr(vd_t *vd, int operation, caddr_t data, size_t blk, size_t len)
1377 {
1378 	struct uscsi_cmd ucmd;
1379 	union scsi_cdb cdb;
1380 	int nsectors, nblk;
1381 	int max_sectors;
1382 	int status, rval;
1383 
1384 	ASSERT(!vd->file);
1385 	ASSERT(!vd->volume);
1386 	ASSERT(vd->vdisk_bsize > 0);
1387 
1388 	max_sectors = vd->max_xfer_sz;
1389 	nblk = (len / vd->vdisk_bsize);
1390 
1391 	if (len % vd->vdisk_bsize != 0)
1392 		return (EINVAL);
1393 
1394 	/*
1395 	 * Build and execute the uscsi ioctl.  We build a group0, group1
1396 	 * or group4 command as necessary, since some targets
1397 	 * do not support group1 commands.
1398 	 */
1399 	while (nblk) {
1400 
1401 		bzero(&ucmd, sizeof (ucmd));
1402 		bzero(&cdb, sizeof (cdb));
1403 
1404 		nsectors = (max_sectors < nblk) ? max_sectors : nblk;
1405 
1406 		/*
1407 		 * Some of the optical drives on sun4v machines are ATAPI
1408 		 * devices which use Group 1 Read/Write commands so we need
1409 		 * to explicitly check a flag which is set when a domain
1410 		 * is bound.
1411 		 */
1412 		if (blk < (2 << 20) && nsectors <= 0xff && !vd->is_atapi_dev) {
1413 			FORMG0ADDR(&cdb, blk);
1414 			FORMG0COUNT(&cdb, (uchar_t)nsectors);
1415 			ucmd.uscsi_cdblen = CDB_GROUP0;
1416 		} else if (blk > 0xffffffff) {
1417 			FORMG4LONGADDR(&cdb, blk);
1418 			FORMG4COUNT(&cdb, nsectors);
1419 			ucmd.uscsi_cdblen = CDB_GROUP4;
1420 			cdb.scc_cmd |= SCMD_GROUP4;
1421 		} else {
1422 			FORMG1ADDR(&cdb, blk);
1423 			FORMG1COUNT(&cdb, nsectors);
1424 			ucmd.uscsi_cdblen = CDB_GROUP1;
1425 			cdb.scc_cmd |= SCMD_GROUP1;
1426 		}
1427 		ucmd.uscsi_cdb = (caddr_t)&cdb;
1428 		ucmd.uscsi_bufaddr = data;
1429 		ucmd.uscsi_buflen = nsectors * vd->backend_bsize;
1430 		ucmd.uscsi_timeout = vd_scsi_rdwr_timeout;
1431 		/*
1432 		 * Set flags so that the command is isolated from normal
1433 		 * commands and no error message is printed.
1434 		 */
1435 		ucmd.uscsi_flags = USCSI_ISOLATE | USCSI_SILENT;
1436 
1437 		if (operation == VD_OP_BREAD) {
1438 			cdb.scc_cmd |= SCMD_READ;
1439 			ucmd.uscsi_flags |= USCSI_READ;
1440 		} else {
1441 			cdb.scc_cmd |= SCMD_WRITE;
1442 		}
1443 
1444 		status = ldi_ioctl(vd->ldi_handle[VD_ENTIRE_DISK_SLICE],
1445 		    USCSICMD, (intptr_t)&ucmd, (vd->open_flags | FKIOCTL),
1446 		    kcred, &rval);
1447 
1448 		if (status == 0)
1449 			status = ucmd.uscsi_status;
1450 
1451 		if (status != 0)
1452 			break;
1453 
1454 		/*
1455 		 * Check if partial DMA breakup is required. If so, reduce
1456 		 * the request size by half and retry the last request.
1457 		 */
1458 		if (ucmd.uscsi_resid == ucmd.uscsi_buflen) {
1459 			max_sectors >>= 1;
1460 			if (max_sectors <= 0) {
1461 				status = EIO;
1462 				break;
1463 			}
1464 			continue;
1465 		}
1466 
1467 		if (ucmd.uscsi_resid != 0) {
1468 			status = EIO;
1469 			break;
1470 		}
1471 
1472 		blk += nsectors;
1473 		nblk -= nsectors;
1474 		data += nsectors * vd->vdisk_bsize;
1475 	}
1476 
1477 	return (status);
1478 }
1479 
1480 /*
1481  * Function:
1482  *	vd_scsi_rdwr
1483  *
1484  * Description:
1485  *	Wrapper function to read or write to a SCSI disk using an absolute
1486  *	disk offset. It checks the blocksize of the underlying device and,
1487  *	if necessary, adjusts the buffers accordingly before calling
1488  *	vd_do_scsi_rdwr() to do the actual read or write.
1489  *
1490  * Parameters:
1491  *	vd		- disk on which the operation is performed.
1492  *	operation	- operation to execute: read (VD_OP_BREAD) or
1493  *			  write (VD_OP_BWRITE).
1494  *	data		- buffer where data are read to or written from.
1495  *	blk		- starting block for the operation.
1496  *	len		- number of bytes to read or write.
1497  *
1498  * Return Code:
1499  *	0		- success
1500  *	n != 0		- error.
1501  */
1502 static int
1503 vd_scsi_rdwr(vd_t *vd, int operation, caddr_t data, size_t vblk, size_t vlen)
1504 {
1505 	int	rv;
1506 
1507 	size_t	pblk;	/* physical device block number of data on device */
1508 	size_t	delta;	/* relative offset between pblk and vblk */
1509 	size_t	pnblk;	/* number of physical blocks to be read from device */
1510 	size_t	plen;	/* length of data to be read from physical device */
1511 	char	*buf;	/* buffer area to fit physical device's block size */
1512 
1513 	if (vd->backend_bsize == 0) {
1514 		/*
1515 		 * The block size was not available during the attach,
1516 		 * try to update it now.
1517 		 */
1518 		if (vd_backend_check_size(vd) != 0)
1519 			return (EIO);
1520 	}
1521 
1522 	/*
1523 	 * If the vdisk block size and the block size of the underlying device
1524 	 * match we can skip straight to vd_do_scsi_rdwr(), otherwise we need
1525 	 * to create a buffer large enough to handle the device's block size
1526 	 * and adjust the block to be read from and the amount of data to
1527 	 * read to correspond with the device's block size.
1528 	 */
1529 	if (vd->vdisk_bsize == vd->backend_bsize)
1530 		return (vd_do_scsi_rdwr(vd, operation, data, vblk, vlen));
1531 
1532 	if (vd->vdisk_bsize > vd->backend_bsize)
1533 		return (EINVAL);
1534 
1535 	/*
1536 	 * Writing of physical block sizes larger than the virtual block size
1537 	 * is not supported. This would be added if/when support for guests
1538 	 * writing to DVDs is implemented.
1539 	 */
1540 	if (operation == VD_OP_BWRITE)
1541 		return (ENOTSUP);
1542 
1543 	/* BEGIN CSTYLED */
1544 	/*
1545 	 * Below is a diagram showing the relationship between the physical
1546 	 * and virtual blocks. If the virtual blocks marked by 'X' below are
1547 	 * requested, then the physical blocks denoted by 'Y' are read.
1548 	 *
1549 	 *           vblk
1550 	 *             |      vlen
1551 	 *             |<--------------->|
1552 	 *             v                 v
1553 	 *  --+--+--+--+--+--+--+--+--+--+--+--+--+--+--+-   virtual disk:
1554 	 *    |  |  |  |XX|XX|XX|XX|XX|XX|  |  |  |  |  |  } block size is
1555 	 *  --+--+--+--+--+--+--+--+--+--+--+--+--+--+--+-   vd->vdisk_bsize
1556 	 *          :  :                 :  :
1557 	 *         >:==:< delta          :  :
1558 	 *          :  :                 :  :
1559 	 *  --+-----+-----+-----+-----+-----+-----+-----+--   physical disk:
1560 	 *    |     |YY:YY|YYYYY|YYYYY|YY:YY|     |     |   } block size is
1561 	 *  --+-----+-----+-----+-----+-----+-----+-----+--   vd->backend_bsize
1562 	 *          ^                       ^
1563 	 *          |<--------------------->|
1564 	 *          |         plen
1565 	 *	   pblk
1566 	 */
1567 	/* END CSTYLED */
1568 	pblk = (vblk * vd->vdisk_bsize) / vd->backend_bsize;
1569 	delta = (vblk * vd->vdisk_bsize) - (pblk * vd->backend_bsize);
1570 	pnblk = ((delta + vlen - 1) / vd->backend_bsize) + 1;
1571 	plen = pnblk * vd->backend_bsize;
1572 
1573 	PR2("vblk %lx:pblk %lx: vlen %ld:plen %ld", vblk, pblk, vlen, plen);
1574 
1575 	buf = kmem_zalloc(sizeof (caddr_t) * plen, KM_SLEEP);
1576 	rv = vd_do_scsi_rdwr(vd, operation, (caddr_t)buf, pblk, plen);
1577 	bcopy(buf + delta, data, vlen);
1578 
1579 	kmem_free(buf, sizeof (caddr_t) * plen);
1580 
1581 	return (rv);
1582 }
1583 
1584 /*
1585  * Function:
1586  *	vd_slice_flabel_read
1587  *
1588  * Description:
1589  *	This function simulates a read operation from the fake label of
1590  *	a single-slice disk.
1591  *
1592  * Parameters:
1593  *	vd		- single-slice disk to read from
1594  *	data		- buffer where data should be read to
1595  *	offset		- offset in byte where the read should start
1596  *	length		- number of bytes to read
1597  *
1598  * Return Code:
1599  *	n >= 0		- success, n indicates the number of bytes read
1600  *	-1		- error
1601  */
1602 static ssize_t
1603 vd_slice_flabel_read(vd_t *vd, caddr_t data, size_t offset, size_t length)
1604 {
1605 	size_t n = 0;
1606 	uint_t limit = vd->flabel_limit * vd->vdisk_bsize;
1607 
1608 	ASSERT(vd->vdisk_type == VD_DISK_TYPE_SLICE);
1609 	ASSERT(vd->flabel != NULL);
1610 
1611 	/* if offset is past the fake label limit there's nothing to read */
1612 	if (offset >= limit)
1613 		return (0);
1614 
1615 	/* data with offset 0 to flabel_size are read from flabel */
1616 	if (offset < vd->flabel_size) {
1617 
1618 		if (offset + length <= vd->flabel_size) {
1619 			bcopy(vd->flabel + offset, data, length);
1620 			return (length);
1621 		}
1622 
1623 		n = vd->flabel_size - offset;
1624 		bcopy(vd->flabel + offset, data, n);
1625 		data += n;
1626 	}
1627 
1628 	/* data with offset from flabel_size to flabel_limit are all zeros */
1629 	if (offset + length <= limit) {
1630 		bzero(data, length - n);
1631 		return (length);
1632 	}
1633 
1634 	bzero(data, limit - offset - n);
1635 	return (limit - offset);
1636 }
1637 
1638 /*
1639  * Function:
1640  *	vd_slice_flabel_write
1641  *
1642  * Description:
1643  *	This function simulates a write operation to the fake label of
1644  *	a single-slice disk. Write operations are actually faked and return
1645  *	success although the label is never changed. This is mostly to
1646  *	simulate a successful label update.
1647  *
1648  * Parameters:
1649  *	vd		- single-slice disk to write to
1650  *	data		- buffer where data should be written from
1651  *	offset		- offset in byte where the write should start
1652  *	length		- number of bytes to written
1653  *
1654  * Return Code:
1655  *	n >= 0		- success, n indicates the number of bytes written
1656  *	-1		- error
1657  */
1658 static ssize_t
1659 vd_slice_flabel_write(vd_t *vd, caddr_t data, size_t offset, size_t length)
1660 {
1661 	uint_t limit = vd->flabel_limit * vd->vdisk_bsize;
1662 	struct dk_label *label;
1663 	struct dk_geom geom;
1664 	struct extvtoc vtoc;
1665 
1666 	ASSERT(vd->vdisk_type == VD_DISK_TYPE_SLICE);
1667 	ASSERT(vd->flabel != NULL);
1668 
1669 	if (offset >= limit)
1670 		return (0);
1671 
1672 	/*
1673 	 * If this is a request to overwrite the VTOC disk label, check that
1674 	 * the new label is similar to the previous one and return that the
1675 	 * write was successful, but note that nothing is actually overwritten.
1676 	 */
1677 	if (vd->vdisk_label == VD_DISK_LABEL_VTOC &&
1678 	    offset == 0 && length == vd->vdisk_bsize) {
1679 		label = (void *)data;
1680 
1681 		/* check that this is a valid label */
1682 		if (label->dkl_magic != DKL_MAGIC ||
1683 		    label->dkl_cksum != vd_lbl2cksum(label))
1684 			return (-1);
1685 
1686 		/* check the vtoc and geometry */
1687 		vd_label_to_vtocgeom(label, &vtoc, &geom);
1688 		if (vd_slice_geom_isvalid(vd, &geom) &&
1689 		    vd_slice_vtoc_isvalid(vd, &vtoc))
1690 			return (length);
1691 	}
1692 
1693 	/* fail any other write */
1694 	return (-1);
1695 }
1696 
1697 /*
1698  * Function:
1699  *	vd_slice_fake_rdwr
1700  *
1701  * Description:
1702  *	This function simulates a raw read or write operation to a single-slice
1703  *	disk. It only handles the faked part of the operation i.e. I/Os to
1704  *	blocks which have no mapping with the vdisk backend (I/Os to the
1705  *	beginning and to the end of the vdisk).
1706  *
1707  *	The function returns 0 is the operation	is completed and it has been
1708  *	entirely handled as a fake read or write. In that case, lengthp points
1709  *	to the number of bytes not read or written. Values returned by datap
1710  *	and blkp are undefined.
1711  *
1712  *	If the fake operation has succeeded but the read or write is not
1713  *	complete (i.e. the read/write operation extends beyond the blocks
1714  *	we fake) then the function returns EAGAIN and datap, blkp and lengthp
1715  *	pointers points to the parameters for completing the operation.
1716  *
1717  *	In case of an error, for example if the slice is empty or parameters
1718  *	are invalid, then the function returns a non-zero value different
1719  *	from EAGAIN. In that case, the returned values of datap, blkp and
1720  *	lengthp are undefined.
1721  *
1722  * Parameters:
1723  *	vd		- single-slice disk on which the operation is performed
1724  *	slice		- slice on which the operation is performed,
1725  *			  VD_SLICE_NONE indicates that the operation
1726  *			  is done using an absolute disk offset.
1727  *	operation	- operation to execute: read (VD_OP_BREAD) or
1728  *			  write (VD_OP_BWRITE).
1729  *	datap		- pointer to the buffer where data are read to
1730  *			  or written from. Return the pointer where remaining
1731  *			  data have to be read to or written from.
1732  *	blkp		- pointer to the starting block for the operation.
1733  *			  Return the starting block relative to the vdisk
1734  *			  backend for the remaining operation.
1735  *	lengthp		- pointer to the number of bytes to read or write.
1736  *			  This should be a multiple of vdisk_bsize. Return the
1737  *			  remaining number of bytes to read or write.
1738  *
1739  * Return Code:
1740  *	0		- read/write operation is completed
1741  *	EAGAIN		- read/write operation is not completed
1742  *	other values	- error
1743  */
1744 static int
1745 vd_slice_fake_rdwr(vd_t *vd, int slice, int operation, caddr_t *datap,
1746     size_t *blkp, size_t *lengthp)
1747 {
1748 	struct dk_label *label;
1749 	caddr_t data;
1750 	size_t blk, length, csize;
1751 	size_t ablk, asize, aoff, alen;
1752 	ssize_t n;
1753 	int sec, status;
1754 	size_t bsize = vd->vdisk_bsize;
1755 
1756 	ASSERT(vd->vdisk_type == VD_DISK_TYPE_SLICE);
1757 	ASSERT(slice != 0);
1758 
1759 	data = *datap;
1760 	blk = *blkp;
1761 	length = *lengthp;
1762 
1763 	/*
1764 	 * If this is not a raw I/O or an I/O from a full disk slice then
1765 	 * this is an I/O to/from an empty slice.
1766 	 */
1767 	if (slice != VD_SLICE_NONE &&
1768 	    (slice != VD_ENTIRE_DISK_SLICE ||
1769 	    vd->vdisk_label != VD_DISK_LABEL_VTOC) &&
1770 	    (slice != VD_EFI_WD_SLICE ||
1771 	    vd->vdisk_label != VD_DISK_LABEL_EFI)) {
1772 		return (EIO);
1773 	}
1774 
1775 	if (length % bsize != 0)
1776 		return (EINVAL);
1777 
1778 	/* handle any I/O with the fake label */
1779 	if (operation == VD_OP_BWRITE)
1780 		n = vd_slice_flabel_write(vd, data, blk * bsize, length);
1781 	else
1782 		n = vd_slice_flabel_read(vd, data, blk * bsize, length);
1783 
1784 	if (n == -1)
1785 		return (EINVAL);
1786 
1787 	ASSERT(n % bsize == 0);
1788 
1789 	/* adjust I/O arguments */
1790 	data += n;
1791 	blk += n / bsize;
1792 	length -= n;
1793 
1794 	/* check if there's something else to process */
1795 	if (length == 0) {
1796 		status = 0;
1797 		goto done;
1798 	}
1799 
1800 	if (vd->vdisk_label == VD_DISK_LABEL_VTOC &&
1801 	    slice == VD_ENTIRE_DISK_SLICE) {
1802 		status = EAGAIN;
1803 		goto done;
1804 	}
1805 
1806 	if (vd->vdisk_label == VD_DISK_LABEL_EFI) {
1807 		asize = EFI_MIN_RESV_SIZE + (EFI_MIN_ARRAY_SIZE / bsize) + 1;
1808 		ablk = vd->vdisk_size - asize;
1809 	} else {
1810 		ASSERT(vd->vdisk_label == VD_DISK_LABEL_VTOC);
1811 		ASSERT(vd->dk_geom.dkg_apc == 0);
1812 
1813 		csize = vd->dk_geom.dkg_nhead * vd->dk_geom.dkg_nsect;
1814 		ablk = vd->dk_geom.dkg_ncyl * csize;
1815 		asize = vd->dk_geom.dkg_acyl * csize;
1816 	}
1817 
1818 	alen = length / bsize;
1819 	aoff = blk;
1820 
1821 	/* if we have reached the last block then the I/O is completed */
1822 	if (aoff == ablk + asize) {
1823 		status = 0;
1824 		goto done;
1825 	}
1826 
1827 	/* if we are past the last block then return an error */
1828 	if (aoff > ablk + asize)
1829 		return (EIO);
1830 
1831 	/* check if there is any I/O to end of the disk */
1832 	if (aoff + alen < ablk) {
1833 		status = EAGAIN;
1834 		goto done;
1835 	}
1836 
1837 	/* we don't allow any write to the end of the disk */
1838 	if (operation == VD_OP_BWRITE)
1839 		return (EIO);
1840 
1841 	if (aoff < ablk) {
1842 		alen -= (ablk - aoff);
1843 		aoff = ablk;
1844 	}
1845 
1846 	if (aoff + alen > ablk + asize) {
1847 		alen = ablk + asize - aoff;
1848 	}
1849 
1850 	alen *= bsize;
1851 
1852 	if (operation == VD_OP_BREAD) {
1853 		bzero(data + (aoff - blk) * bsize, alen);
1854 
1855 		if (vd->vdisk_label == VD_DISK_LABEL_VTOC) {
1856 			/* check if we read backup labels */
1857 			label = VD_LABEL_VTOC(vd);
1858 			ablk += (label->dkl_acyl - 1) * csize +
1859 			    (label->dkl_nhead - 1) * label->dkl_nsect;
1860 
1861 			for (sec = 1; (sec < 5 * 2 + 1); sec += 2) {
1862 
1863 				if (ablk + sec >= blk &&
1864 				    ablk + sec < blk + (length / bsize)) {
1865 					bcopy(label, data +
1866 					    (ablk + sec - blk) * bsize,
1867 					    sizeof (struct dk_label));
1868 				}
1869 			}
1870 		}
1871 	}
1872 
1873 	length -= alen;
1874 
1875 	status = (length == 0)? 0: EAGAIN;
1876 
1877 done:
1878 	ASSERT(length == 0 || blk >= vd->flabel_limit);
1879 
1880 	/*
1881 	 * Return the parameters for the remaining I/O. The starting block is
1882 	 * adjusted so that it is relative to the vdisk backend.
1883 	 */
1884 	*datap = data;
1885 	*blkp = blk - vd->flabel_limit;
1886 	*lengthp = length;
1887 
1888 	return (status);
1889 }
1890 
1891 static int
1892 vd_flush_write(vd_t *vd)
1893 {
1894 	int status, rval;
1895 
1896 	if (vd->file) {
1897 		status = VOP_FSYNC(vd->file_vnode, FSYNC, kcred, NULL);
1898 	} else {
1899 		status = ldi_ioctl(vd->ldi_handle[0], DKIOCFLUSHWRITECACHE,
1900 		    (intptr_t)NULL, vd->open_flags | FKIOCTL, kcred, &rval);
1901 	}
1902 
1903 	return (status);
1904 }
1905 
1906 static void
1907 vd_bio_task(void *arg)
1908 {
1909 	struct buf *buf = (struct buf *)arg;
1910 	vd_task_t *task = (vd_task_t *)buf->b_private;
1911 	vd_t *vd = task->vd;
1912 	ssize_t resid;
1913 	int status;
1914 
1915 	ASSERT(vd->vdisk_bsize == DEV_BSIZE);
1916 
1917 	if (vd->zvol) {
1918 
1919 		status = ldi_strategy(vd->ldi_handle[0], buf);
1920 
1921 	} else {
1922 
1923 		ASSERT(vd->file);
1924 
1925 		status = vn_rdwr((buf->b_flags & B_READ)? UIO_READ : UIO_WRITE,
1926 		    vd->file_vnode, buf->b_un.b_addr, buf->b_bcount,
1927 		    buf->b_lblkno * DEV_BSIZE, UIO_SYSSPACE, 0,
1928 		    RLIM64_INFINITY, kcred, &resid);
1929 
1930 		if (status == 0) {
1931 			buf->b_resid = resid;
1932 			biodone(buf);
1933 			return;
1934 		}
1935 	}
1936 
1937 	if (status != 0) {
1938 		bioerror(buf, status);
1939 		biodone(buf);
1940 	}
1941 }
1942 
1943 /*
1944  * We define our own biodone function so that buffers used for
1945  * asynchronous writes are not released when biodone() is called.
1946  */
1947 static int
1948 vd_biodone(struct buf *bp)
1949 {
1950 	ASSERT((bp->b_flags & B_DONE) == 0);
1951 	ASSERT(SEMA_HELD(&bp->b_sem));
1952 
1953 	bp->b_flags |= B_DONE;
1954 	sema_v(&bp->b_io);
1955 
1956 	return (0);
1957 }
1958 
1959 /*
1960  * Return Values
1961  *	EINPROGRESS	- operation was successfully started
1962  *	EIO		- encountered LDC (aka. task error)
1963  *	0		- operation completed successfully
1964  *
1965  * Side Effect
1966  *     sets request->status = <disk operation status>
1967  */
1968 static int
1969 vd_start_bio(vd_task_t *task)
1970 {
1971 	int			rv, status = 0;
1972 	vd_t			*vd		= task->vd;
1973 	vd_dring_payload_t	*request	= task->request;
1974 	struct buf		*buf		= &task->buf;
1975 	uint8_t			mtype;
1976 	int			slice;
1977 	char			*bufaddr = 0;
1978 	size_t			buflen;
1979 	size_t			offset, length, nbytes;
1980 
1981 	ASSERT(vd != NULL);
1982 	ASSERT(request != NULL);
1983 
1984 	slice = request->slice;
1985 
1986 	ASSERT(slice == VD_SLICE_NONE || slice < vd->nslices);
1987 	ASSERT((request->operation == VD_OP_BREAD) ||
1988 	    (request->operation == VD_OP_BWRITE));
1989 
1990 	if (request->nbytes == 0) {
1991 		/* no service for trivial requests */
1992 		request->status = EINVAL;
1993 		return (0);
1994 	}
1995 
1996 	PR1("%s %lu bytes at block %lu",
1997 	    (request->operation == VD_OP_BREAD) ? "Read" : "Write",
1998 	    request->nbytes, request->addr);
1999 
2000 	/*
2001 	 * We have to check the open flags because the functions processing
2002 	 * the read/write request will not do it.
2003 	 */
2004 	if (request->operation == VD_OP_BWRITE && !(vd->open_flags & FWRITE)) {
2005 		PR0("write fails because backend is opened read-only");
2006 		request->nbytes = 0;
2007 		request->status = EROFS;
2008 		return (0);
2009 	}
2010 
2011 	mtype = LDC_SHADOW_MAP;
2012 
2013 	/* Map memory exported by client */
2014 	status = ldc_mem_map(task->mhdl, request->cookie, request->ncookies,
2015 	    mtype, (request->operation == VD_OP_BREAD) ? LDC_MEM_W : LDC_MEM_R,
2016 	    &bufaddr, NULL);
2017 	if (status != 0) {
2018 		PR0("ldc_mem_map() returned err %d ", status);
2019 		return (EIO);
2020 	}
2021 
2022 	/*
2023 	 * The buffer size has to be 8-byte aligned, so the client should have
2024 	 * sent a buffer which size is roundup to the next 8-byte aligned value.
2025 	 */
2026 	buflen = P2ROUNDUP(request->nbytes, 8);
2027 
2028 	status = ldc_mem_acquire(task->mhdl, 0, buflen);
2029 	if (status != 0) {
2030 		(void) ldc_mem_unmap(task->mhdl);
2031 		PR0("ldc_mem_acquire() returned err %d ", status);
2032 		return (EIO);
2033 	}
2034 
2035 	offset = request->addr;
2036 	nbytes = request->nbytes;
2037 	length = nbytes;
2038 
2039 	/* default number of byte returned by the I/O */
2040 	request->nbytes = 0;
2041 
2042 	if (vd->vdisk_type == VD_DISK_TYPE_SLICE) {
2043 
2044 		if (slice != 0) {
2045 			/* handle any fake I/O */
2046 			rv = vd_slice_fake_rdwr(vd, slice, request->operation,
2047 			    &bufaddr, &offset, &length);
2048 
2049 			/* record the number of bytes from the fake I/O */
2050 			request->nbytes = nbytes - length;
2051 
2052 			if (rv == 0) {
2053 				request->status = 0;
2054 				goto io_done;
2055 			}
2056 
2057 			if (rv != EAGAIN) {
2058 				request->nbytes = 0;
2059 				request->status = EIO;
2060 				goto io_done;
2061 			}
2062 
2063 			/*
2064 			 * If we return with EAGAIN then this means that there
2065 			 * are still data to read or write.
2066 			 */
2067 			ASSERT(length != 0);
2068 
2069 			/*
2070 			 * We need to continue the I/O from the slice backend to
2071 			 * complete the request. The variables bufaddr, offset
2072 			 * and length have been adjusted to have the right
2073 			 * information to do the remaining I/O from the backend.
2074 			 * The backend is entirely mapped to slice 0 so we just
2075 			 * have to complete the I/O from that slice.
2076 			 */
2077 			slice = 0;
2078 		}
2079 
2080 	} else if (vd->volume || vd->file) {
2081 
2082 		rv = vd_dskimg_io_params(vd, slice, &offset, &length);
2083 		if (rv != 0) {
2084 			request->status = (rv == ENODATA)? 0: EIO;
2085 			goto io_done;
2086 		}
2087 		slice = 0;
2088 
2089 	} else if (slice == VD_SLICE_NONE) {
2090 
2091 		/*
2092 		 * This is not a disk image so it is a real disk. We
2093 		 * assume that the underlying device driver supports
2094 		 * USCSICMD ioctls. This is the case of all SCSI devices
2095 		 * (sd, ssd...).
2096 		 *
2097 		 * In the future if we have non-SCSI disks we would need
2098 		 * to invoke the appropriate function to do I/O using an
2099 		 * absolute disk offset (for example using DIOCTL_RWCMD
2100 		 * for IDE disks).
2101 		 */
2102 		rv = vd_scsi_rdwr(vd, request->operation, bufaddr, offset,
2103 		    length);
2104 		if (rv != 0) {
2105 			request->status = EIO;
2106 		} else {
2107 			request->nbytes = length;
2108 			request->status = 0;
2109 		}
2110 		goto io_done;
2111 	}
2112 
2113 	/* Start the block I/O */
2114 	bioinit(buf);
2115 	buf->b_flags	= B_BUSY;
2116 	buf->b_bcount	= length;
2117 	buf->b_lblkno	= offset;
2118 	buf->b_bufsize	= buflen;
2119 	buf->b_edev	= vd->dev[slice];
2120 	buf->b_un.b_addr = bufaddr;
2121 	buf->b_iodone	= vd_biodone;
2122 
2123 	if (vd->file || vd->zvol) {
2124 		/*
2125 		 * I/O to a file are dispatched to an I/O queue, so that several
2126 		 * I/Os can be processed in parallel. We also do that for ZFS
2127 		 * volumes because the ZFS volume strategy() function will only
2128 		 * return after the I/O is completed (instead of just starting
2129 		 * the I/O).
2130 		 */
2131 
2132 		if (request->operation == VD_OP_BREAD) {
2133 			buf->b_flags |= B_READ;
2134 		} else {
2135 			/*
2136 			 * For ZFS volumes and files, we do an asynchronous
2137 			 * write and we will wait for the completion of the
2138 			 * write in vd_complete_bio() by flushing the volume
2139 			 * or file.
2140 			 *
2141 			 * This done for performance reasons, so that we can
2142 			 * group together several write requests into a single
2143 			 * flush operation.
2144 			 */
2145 			buf->b_flags |= B_WRITE | B_ASYNC;
2146 
2147 			/*
2148 			 * We keep track of the write so that we can group
2149 			 * requests when flushing. The write queue has the
2150 			 * same number of slots as the dring so this prevents
2151 			 * the write queue from wrapping and overwriting
2152 			 * existing entries: if the write queue gets full
2153 			 * then that means that the dring is full so we stop
2154 			 * receiving new requests until an existing request
2155 			 * is processed, removed from the write queue and
2156 			 * then from the dring.
2157 			 */
2158 			task->write_index = vd->write_index;
2159 			vd->write_queue[task->write_index] = buf;
2160 			vd->write_index =
2161 			    VD_WRITE_INDEX_NEXT(vd, vd->write_index);
2162 		}
2163 
2164 		buf->b_private = task;
2165 
2166 		ASSERT(vd->ioq != NULL);
2167 
2168 		request->status = 0;
2169 		(void) ddi_taskq_dispatch(task->vd->ioq, vd_bio_task, buf,
2170 		    DDI_SLEEP);
2171 
2172 	} else {
2173 
2174 		if (request->operation == VD_OP_BREAD) {
2175 			buf->b_flags |= B_READ;
2176 		} else {
2177 			buf->b_flags |= B_WRITE;
2178 		}
2179 
2180 		/* convert VIO block number to buf block number */
2181 		buf->b_lblkno = offset << vd->vio_bshift;
2182 
2183 		request->status = ldi_strategy(vd->ldi_handle[slice], buf);
2184 	}
2185 
2186 	/*
2187 	 * This is to indicate to the caller that the request
2188 	 * needs to be finished by vd_complete_bio() by calling
2189 	 * biowait() there and waiting for that to return before
2190 	 * triggering the notification of the vDisk client.
2191 	 *
2192 	 * This is necessary when writing to real disks as
2193 	 * otherwise calls to ldi_strategy() would be serialized
2194 	 * behind the calls to biowait() and performance would
2195 	 * suffer.
2196 	 */
2197 	if (request->status == 0)
2198 		return (EINPROGRESS);
2199 
2200 	biofini(buf);
2201 
2202 io_done:
2203 	/* Clean up after error or completion */
2204 	rv = ldc_mem_release(task->mhdl, 0, buflen);
2205 	if (rv) {
2206 		PR0("ldc_mem_release() returned err %d ", rv);
2207 		status = EIO;
2208 	}
2209 	rv = ldc_mem_unmap(task->mhdl);
2210 	if (rv) {
2211 		PR0("ldc_mem_unmap() returned err %d ", rv);
2212 		status = EIO;
2213 	}
2214 
2215 	return (status);
2216 }
2217 
2218 /*
2219  * This function should only be called from vd_notify to ensure that requests
2220  * are responded to in the order that they are received.
2221  */
2222 static int
2223 send_msg(ldc_handle_t ldc_handle, void *msg, size_t msglen)
2224 {
2225 	int	status;
2226 	size_t	nbytes;
2227 
2228 	do {
2229 		nbytes = msglen;
2230 		status = ldc_write(ldc_handle, msg, &nbytes);
2231 		if (status != EWOULDBLOCK)
2232 			break;
2233 		drv_usecwait(vds_ldc_delay);
2234 	} while (status == EWOULDBLOCK);
2235 
2236 	if (status != 0) {
2237 		if (status != ECONNRESET)
2238 			PR0("ldc_write() returned errno %d", status);
2239 		return (status);
2240 	} else if (nbytes != msglen) {
2241 		PR0("ldc_write() performed only partial write");
2242 		return (EIO);
2243 	}
2244 
2245 	PR1("SENT %lu bytes", msglen);
2246 	return (0);
2247 }
2248 
2249 static void
2250 vd_need_reset(vd_t *vd, boolean_t reset_ldc)
2251 {
2252 	mutex_enter(&vd->lock);
2253 	vd->reset_state	= B_TRUE;
2254 	vd->reset_ldc	= reset_ldc;
2255 	mutex_exit(&vd->lock);
2256 }
2257 
2258 /*
2259  * Reset the state of the connection with a client, if needed; reset the LDC
2260  * transport as well, if needed.  This function should only be called from the
2261  * "vd_recv_msg", as it waits for tasks - otherwise a deadlock can occur.
2262  */
2263 static void
2264 vd_reset_if_needed(vd_t *vd)
2265 {
2266 	int	status = 0;
2267 
2268 	mutex_enter(&vd->lock);
2269 	if (!vd->reset_state) {
2270 		ASSERT(!vd->reset_ldc);
2271 		mutex_exit(&vd->lock);
2272 		return;
2273 	}
2274 	mutex_exit(&vd->lock);
2275 
2276 	PR0("Resetting connection state with %s", VD_CLIENT(vd));
2277 
2278 	/*
2279 	 * Let any asynchronous I/O complete before possibly pulling the rug
2280 	 * out from under it; defer checking vd->reset_ldc, as one of the
2281 	 * asynchronous tasks might set it
2282 	 */
2283 	if (vd->ioq != NULL)
2284 		ddi_taskq_wait(vd->ioq);
2285 	ddi_taskq_wait(vd->completionq);
2286 
2287 	status = vd_flush_write(vd);
2288 	if (status) {
2289 		PR0("flushwrite returned error %d", status);
2290 	}
2291 
2292 	if ((vd->initialized & VD_DRING) &&
2293 	    ((status = ldc_mem_dring_unmap(vd->dring_handle)) != 0))
2294 		PR0("ldc_mem_dring_unmap() returned errno %d", status);
2295 
2296 	vd_free_dring_task(vd);
2297 
2298 	/* Free the staging buffer for msgs */
2299 	if (vd->vio_msgp != NULL) {
2300 		kmem_free(vd->vio_msgp, vd->max_msglen);
2301 		vd->vio_msgp = NULL;
2302 	}
2303 
2304 	/* Free the inband message buffer */
2305 	if (vd->inband_task.msg != NULL) {
2306 		kmem_free(vd->inband_task.msg, vd->max_msglen);
2307 		vd->inband_task.msg = NULL;
2308 	}
2309 
2310 	mutex_enter(&vd->lock);
2311 
2312 	if (vd->reset_ldc)
2313 		PR0("taking down LDC channel");
2314 	if (vd->reset_ldc && ((status = ldc_down(vd->ldc_handle)) != 0))
2315 		PR0("ldc_down() returned errno %d", status);
2316 
2317 	/* Reset exclusive access rights */
2318 	vd_reset_access(vd);
2319 
2320 	vd->initialized	&= ~(VD_SID | VD_SEQ_NUM | VD_DRING);
2321 	vd->state	= VD_STATE_INIT;
2322 	vd->max_msglen	= sizeof (vio_msg_t);	/* baseline vio message size */
2323 
2324 	/* Allocate the staging buffer */
2325 	vd->vio_msgp = kmem_alloc(vd->max_msglen, KM_SLEEP);
2326 
2327 	PR0("calling ldc_up\n");
2328 	(void) ldc_up(vd->ldc_handle);
2329 
2330 	vd->reset_state	= B_FALSE;
2331 	vd->reset_ldc	= B_FALSE;
2332 
2333 	mutex_exit(&vd->lock);
2334 }
2335 
2336 static void vd_recv_msg(void *arg);
2337 
2338 static void
2339 vd_mark_in_reset(vd_t *vd)
2340 {
2341 	int status;
2342 
2343 	PR0("vd_mark_in_reset: marking vd in reset\n");
2344 
2345 	vd_need_reset(vd, B_FALSE);
2346 	status = ddi_taskq_dispatch(vd->startq, vd_recv_msg, vd, DDI_SLEEP);
2347 	if (status == DDI_FAILURE) {
2348 		PR0("cannot schedule task to recv msg\n");
2349 		vd_need_reset(vd, B_TRUE);
2350 		return;
2351 	}
2352 }
2353 
2354 static int
2355 vd_mark_elem_done(vd_t *vd, int idx, int elem_status, int elem_nbytes)
2356 {
2357 	boolean_t		accepted;
2358 	int			status;
2359 	on_trap_data_t		otd;
2360 	vd_dring_entry_t	*elem = VD_DRING_ELEM(idx);
2361 
2362 	if (vd->reset_state)
2363 		return (0);
2364 
2365 	/* Acquire the element */
2366 	if ((status = VIO_DRING_ACQUIRE(&otd, vd->dring_mtype,
2367 	    vd->dring_handle, idx, idx)) != 0) {
2368 		if (status == ECONNRESET) {
2369 			vd_mark_in_reset(vd);
2370 			return (0);
2371 		} else {
2372 			return (status);
2373 		}
2374 	}
2375 
2376 	/* Set the element's status and mark it done */
2377 	accepted = (elem->hdr.dstate == VIO_DESC_ACCEPTED);
2378 	if (accepted) {
2379 		elem->payload.nbytes	= elem_nbytes;
2380 		elem->payload.status	= elem_status;
2381 		elem->hdr.dstate	= VIO_DESC_DONE;
2382 	} else {
2383 		/* Perhaps client timed out waiting for I/O... */
2384 		PR0("element %u no longer \"accepted\"", idx);
2385 		VD_DUMP_DRING_ELEM(elem);
2386 	}
2387 	/* Release the element */
2388 	if ((status = VIO_DRING_RELEASE(vd->dring_mtype,
2389 	    vd->dring_handle, idx, idx)) != 0) {
2390 		if (status == ECONNRESET) {
2391 			vd_mark_in_reset(vd);
2392 			return (0);
2393 		} else {
2394 			PR0("VIO_DRING_RELEASE() returned errno %d",
2395 			    status);
2396 			return (status);
2397 		}
2398 	}
2399 
2400 	return (accepted ? 0 : EINVAL);
2401 }
2402 
2403 /*
2404  * Return Values
2405  *	0	- operation completed successfully
2406  *	EIO	- encountered LDC / task error
2407  *
2408  * Side Effect
2409  *	sets request->status = <disk operation status>
2410  */
2411 static int
2412 vd_complete_bio(vd_task_t *task)
2413 {
2414 	int			status		= 0;
2415 	int			rv		= 0;
2416 	vd_t			*vd		= task->vd;
2417 	vd_dring_payload_t	*request	= task->request;
2418 	struct buf		*buf		= &task->buf;
2419 	int			wid, nwrites;
2420 
2421 
2422 	ASSERT(vd != NULL);
2423 	ASSERT(request != NULL);
2424 	ASSERT(task->msg != NULL);
2425 	ASSERT(task->msglen >= sizeof (*task->msg));
2426 
2427 	if (buf->b_flags & B_DONE) {
2428 		/*
2429 		 * If the I/O is already done then we don't call biowait()
2430 		 * because biowait() might already have been called when
2431 		 * flushing a previous asynchronous write. So we just
2432 		 * retrieve the status of the request.
2433 		 */
2434 		request->status = geterror(buf);
2435 	} else {
2436 		/*
2437 		 * Wait for the I/O. For synchronous I/O, biowait() will return
2438 		 * when the I/O has completed. For asynchronous write, it will
2439 		 * return the write has been submitted to the backend, but it
2440 		 * may not have been committed.
2441 		 */
2442 		request->status = biowait(buf);
2443 	}
2444 
2445 	if (buf->b_flags & B_ASYNC) {
2446 		/*
2447 		 * Asynchronous writes are used when writing to a file or a
2448 		 * ZFS volume. In that case the bio notification indicates
2449 		 * that the write has started. We have to flush the backend
2450 		 * to ensure that the write has been committed before marking
2451 		 * the request as completed.
2452 		 */
2453 		ASSERT(task->request->operation == VD_OP_BWRITE);
2454 
2455 		wid = task->write_index;
2456 
2457 		/* check if write has been already flushed */
2458 		if (vd->write_queue[wid] != NULL) {
2459 
2460 			vd->write_queue[wid] = NULL;
2461 			wid = VD_WRITE_INDEX_NEXT(vd, wid);
2462 
2463 			/*
2464 			 * Because flushing is time consuming, it is worth
2465 			 * waiting for any other writes so that they can be
2466 			 * included in this single flush request.
2467 			 */
2468 			if (vd_awflush & VD_AWFLUSH_GROUP) {
2469 				nwrites = 1;
2470 				while (vd->write_queue[wid] != NULL) {
2471 					(void) biowait(vd->write_queue[wid]);
2472 					vd->write_queue[wid] = NULL;
2473 					wid = VD_WRITE_INDEX_NEXT(vd, wid);
2474 					nwrites++;
2475 				}
2476 				DTRACE_PROBE2(flushgrp, vd_task_t *, task,
2477 				    int, nwrites);
2478 			}
2479 
2480 			if (vd_awflush & VD_AWFLUSH_IMMEDIATE) {
2481 				request->status = vd_flush_write(vd);
2482 			} else if (vd_awflush & VD_AWFLUSH_DEFER) {
2483 				(void) taskq_dispatch(system_taskq,
2484 				    (void (*)(void *))vd_flush_write, vd,
2485 				    DDI_SLEEP);
2486 				request->status = 0;
2487 			}
2488 		}
2489 	}
2490 
2491 	/* Update the number of bytes read/written */
2492 	request->nbytes += buf->b_bcount - buf->b_resid;
2493 
2494 	/* Release the buffer */
2495 	if (!vd->reset_state)
2496 		status = ldc_mem_release(task->mhdl, 0, buf->b_bufsize);
2497 	if (status) {
2498 		PR0("ldc_mem_release() returned errno %d copying to "
2499 		    "client", status);
2500 		if (status == ECONNRESET) {
2501 			vd_mark_in_reset(vd);
2502 		}
2503 		rv = EIO;
2504 	}
2505 
2506 	/* Unmap the memory, even if in reset */
2507 	status = ldc_mem_unmap(task->mhdl);
2508 	if (status) {
2509 		PR0("ldc_mem_unmap() returned errno %d copying to client",
2510 		    status);
2511 		if (status == ECONNRESET) {
2512 			vd_mark_in_reset(vd);
2513 		}
2514 		rv = EIO;
2515 	}
2516 
2517 	biofini(buf);
2518 
2519 	return (rv);
2520 }
2521 
2522 /*
2523  * Description:
2524  *	This function is called by the two functions called by a taskq
2525  *	[ vd_complete_notify() and vd_serial_notify()) ] to send the
2526  *	message to the client.
2527  *
2528  * Parameters:
2529  *	arg	- opaque pointer to structure containing task to be completed
2530  *
2531  * Return Values
2532  *	None
2533  */
2534 static void
2535 vd_notify(vd_task_t *task)
2536 {
2537 	int	status;
2538 
2539 	ASSERT(task != NULL);
2540 	ASSERT(task->vd != NULL);
2541 
2542 	/*
2543 	 * Send the "ack" or "nack" back to the client; if sending the message
2544 	 * via LDC fails, arrange to reset both the connection state and LDC
2545 	 * itself
2546 	 */
2547 	PR2("Sending %s",
2548 	    (task->msg->tag.vio_subtype == VIO_SUBTYPE_ACK) ? "ACK" : "NACK");
2549 
2550 	status = send_msg(task->vd->ldc_handle, task->msg, task->msglen);
2551 	switch (status) {
2552 	case 0:
2553 		break;
2554 	case ECONNRESET:
2555 		vd_mark_in_reset(task->vd);
2556 		break;
2557 	default:
2558 		PR0("initiating full reset");
2559 		vd_need_reset(task->vd, B_TRUE);
2560 		break;
2561 	}
2562 
2563 	DTRACE_PROBE1(task__end, vd_task_t *, task);
2564 }
2565 
2566 /*
2567  * Description:
2568  *	Mark the Dring entry as Done and (if necessary) send an ACK/NACK to
2569  *	the vDisk client
2570  *
2571  * Parameters:
2572  *	task		- structure containing the request sent from client
2573  *
2574  * Return Values
2575  *	None
2576  */
2577 static void
2578 vd_complete_notify(vd_task_t *task)
2579 {
2580 	int			status		= 0;
2581 	vd_t			*vd		= task->vd;
2582 	vd_dring_payload_t	*request	= task->request;
2583 
2584 	/* Update the dring element for a dring client */
2585 	if (!vd->reset_state && (vd->xfer_mode == VIO_DRING_MODE_V1_0)) {
2586 		status = vd_mark_elem_done(vd, task->index,
2587 		    request->status, request->nbytes);
2588 		if (status == ECONNRESET)
2589 			vd_mark_in_reset(vd);
2590 		else if (status == EACCES)
2591 			vd_need_reset(vd, B_TRUE);
2592 	}
2593 
2594 	/*
2595 	 * If a transport error occurred while marking the element done or
2596 	 * previously while executing the task, arrange to "nack" the message
2597 	 * when the final task in the descriptor element range completes
2598 	 */
2599 	if ((status != 0) || (task->status != 0))
2600 		task->msg->tag.vio_subtype = VIO_SUBTYPE_NACK;
2601 
2602 	/*
2603 	 * Only the final task for a range of elements will respond to and
2604 	 * free the message
2605 	 */
2606 	if (task->type == VD_NONFINAL_RANGE_TASK) {
2607 		return;
2608 	}
2609 
2610 	/*
2611 	 * We should only send an ACK/NACK here if we are not currently in
2612 	 * reset as, depending on how we reset, the dring may have been
2613 	 * blown away and we don't want to ACK/NACK a message that isn't
2614 	 * there.
2615 	 */
2616 	if (!vd->reset_state)
2617 		vd_notify(task);
2618 }
2619 
2620 /*
2621  * Description:
2622  *	This is the basic completion function called to handle inband data
2623  *	requests and handshake messages. All it needs to do is trigger a
2624  *	message to the client that the request is completed.
2625  *
2626  * Parameters:
2627  *	arg	- opaque pointer to structure containing task to be completed
2628  *
2629  * Return Values
2630  *	None
2631  */
2632 static void
2633 vd_serial_notify(void *arg)
2634 {
2635 	vd_task_t		*task = (vd_task_t *)arg;
2636 
2637 	ASSERT(task != NULL);
2638 	vd_notify(task);
2639 }
2640 
2641 /* ARGSUSED */
2642 static int
2643 vd_geom2dk_geom(void *vd_buf, size_t vd_buf_len, void *ioctl_arg)
2644 {
2645 	VD_GEOM2DK_GEOM((vd_geom_t *)vd_buf, (struct dk_geom *)ioctl_arg);
2646 	return (0);
2647 }
2648 
2649 /* ARGSUSED */
2650 static int
2651 vd_vtoc2vtoc(void *vd_buf, size_t vd_buf_len, void *ioctl_arg)
2652 {
2653 	VD_VTOC2VTOC((vd_vtoc_t *)vd_buf, (struct extvtoc *)ioctl_arg);
2654 	return (0);
2655 }
2656 
2657 static void
2658 dk_geom2vd_geom(void *ioctl_arg, void *vd_buf)
2659 {
2660 	DK_GEOM2VD_GEOM((struct dk_geom *)ioctl_arg, (vd_geom_t *)vd_buf);
2661 }
2662 
2663 static void
2664 vtoc2vd_vtoc(void *ioctl_arg, void *vd_buf)
2665 {
2666 	VTOC2VD_VTOC((struct extvtoc *)ioctl_arg, (vd_vtoc_t *)vd_buf);
2667 }
2668 
2669 static int
2670 vd_get_efi_in(void *vd_buf, size_t vd_buf_len, void *ioctl_arg)
2671 {
2672 	vd_efi_t *vd_efi = (vd_efi_t *)vd_buf;
2673 	dk_efi_t *dk_efi = (dk_efi_t *)ioctl_arg;
2674 	size_t data_len;
2675 
2676 	data_len = vd_buf_len - (sizeof (vd_efi_t) - sizeof (uint64_t));
2677 	if (vd_efi->length > data_len)
2678 		return (EINVAL);
2679 
2680 	dk_efi->dki_lba = vd_efi->lba;
2681 	dk_efi->dki_length = vd_efi->length;
2682 	dk_efi->dki_data = kmem_zalloc(vd_efi->length, KM_SLEEP);
2683 	return (0);
2684 }
2685 
2686 static void
2687 vd_get_efi_out(void *ioctl_arg, void *vd_buf)
2688 {
2689 	int len;
2690 	vd_efi_t *vd_efi = (vd_efi_t *)vd_buf;
2691 	dk_efi_t *dk_efi = (dk_efi_t *)ioctl_arg;
2692 
2693 	len = vd_efi->length;
2694 	DK_EFI2VD_EFI(dk_efi, vd_efi);
2695 	kmem_free(dk_efi->dki_data, len);
2696 }
2697 
2698 static int
2699 vd_set_efi_in(void *vd_buf, size_t vd_buf_len, void *ioctl_arg)
2700 {
2701 	vd_efi_t *vd_efi = (vd_efi_t *)vd_buf;
2702 	dk_efi_t *dk_efi = (dk_efi_t *)ioctl_arg;
2703 	size_t data_len;
2704 
2705 	data_len = vd_buf_len - (sizeof (vd_efi_t) - sizeof (uint64_t));
2706 	if (vd_efi->length > data_len)
2707 		return (EINVAL);
2708 
2709 	dk_efi->dki_data = kmem_alloc(vd_efi->length, KM_SLEEP);
2710 	VD_EFI2DK_EFI(vd_efi, dk_efi);
2711 	return (0);
2712 }
2713 
2714 static void
2715 vd_set_efi_out(void *ioctl_arg, void *vd_buf)
2716 {
2717 	vd_efi_t *vd_efi = (vd_efi_t *)vd_buf;
2718 	dk_efi_t *dk_efi = (dk_efi_t *)ioctl_arg;
2719 
2720 	kmem_free(dk_efi->dki_data, vd_efi->length);
2721 }
2722 
2723 static int
2724 vd_scsicmd_in(void *vd_buf, size_t vd_buf_len, void *ioctl_arg)
2725 {
2726 	size_t vd_scsi_len;
2727 	vd_scsi_t *vd_scsi = (vd_scsi_t *)vd_buf;
2728 	struct uscsi_cmd *uscsi = (struct uscsi_cmd *)ioctl_arg;
2729 
2730 	/* check buffer size */
2731 	vd_scsi_len = VD_SCSI_SIZE;
2732 	vd_scsi_len += P2ROUNDUP(vd_scsi->cdb_len, sizeof (uint64_t));
2733 	vd_scsi_len += P2ROUNDUP(vd_scsi->sense_len, sizeof (uint64_t));
2734 	vd_scsi_len += P2ROUNDUP(vd_scsi->datain_len, sizeof (uint64_t));
2735 	vd_scsi_len += P2ROUNDUP(vd_scsi->dataout_len, sizeof (uint64_t));
2736 
2737 	ASSERT(vd_scsi_len % sizeof (uint64_t) == 0);
2738 
2739 	if (vd_buf_len < vd_scsi_len)
2740 		return (EINVAL);
2741 
2742 	/* set flags */
2743 	uscsi->uscsi_flags = vd_scsi_debug;
2744 
2745 	if (vd_scsi->options & VD_SCSI_OPT_NORETRY) {
2746 		uscsi->uscsi_flags |= USCSI_ISOLATE;
2747 		uscsi->uscsi_flags |= USCSI_DIAGNOSE;
2748 	}
2749 
2750 	/* task attribute */
2751 	switch (vd_scsi->task_attribute) {
2752 	case VD_SCSI_TASK_ACA:
2753 		uscsi->uscsi_flags |= USCSI_HEAD;
2754 		break;
2755 	case VD_SCSI_TASK_HQUEUE:
2756 		uscsi->uscsi_flags |= USCSI_HTAG;
2757 		break;
2758 	case VD_SCSI_TASK_ORDERED:
2759 		uscsi->uscsi_flags |= USCSI_OTAG;
2760 		break;
2761 	default:
2762 		uscsi->uscsi_flags |= USCSI_NOTAG;
2763 		break;
2764 	}
2765 
2766 	/* timeout */
2767 	uscsi->uscsi_timeout = vd_scsi->timeout;
2768 
2769 	/* cdb data */
2770 	uscsi->uscsi_cdb = (caddr_t)VD_SCSI_DATA_CDB(vd_scsi);
2771 	uscsi->uscsi_cdblen = vd_scsi->cdb_len;
2772 
2773 	/* sense buffer */
2774 	if (vd_scsi->sense_len != 0) {
2775 		uscsi->uscsi_flags |= USCSI_RQENABLE;
2776 		uscsi->uscsi_rqbuf = (caddr_t)VD_SCSI_DATA_SENSE(vd_scsi);
2777 		uscsi->uscsi_rqlen = vd_scsi->sense_len;
2778 	}
2779 
2780 	if (vd_scsi->datain_len != 0 && vd_scsi->dataout_len != 0) {
2781 		/* uscsi does not support read/write request */
2782 		return (EINVAL);
2783 	}
2784 
2785 	/* request data-in */
2786 	if (vd_scsi->datain_len != 0) {
2787 		uscsi->uscsi_flags |= USCSI_READ;
2788 		uscsi->uscsi_buflen = vd_scsi->datain_len;
2789 		uscsi->uscsi_bufaddr = (char *)VD_SCSI_DATA_IN(vd_scsi);
2790 	}
2791 
2792 	/* request data-out */
2793 	if (vd_scsi->dataout_len != 0) {
2794 		uscsi->uscsi_buflen = vd_scsi->dataout_len;
2795 		uscsi->uscsi_bufaddr = (char *)VD_SCSI_DATA_OUT(vd_scsi);
2796 	}
2797 
2798 	return (0);
2799 }
2800 
2801 static void
2802 vd_scsicmd_out(void *ioctl_arg, void *vd_buf)
2803 {
2804 	vd_scsi_t *vd_scsi = (vd_scsi_t *)vd_buf;
2805 	struct uscsi_cmd *uscsi = (struct uscsi_cmd *)ioctl_arg;
2806 
2807 	/* output fields */
2808 	vd_scsi->cmd_status = uscsi->uscsi_status;
2809 
2810 	/* sense data */
2811 	if ((uscsi->uscsi_flags & USCSI_RQENABLE) &&
2812 	    (uscsi->uscsi_status == STATUS_CHECK ||
2813 	    uscsi->uscsi_status == STATUS_TERMINATED)) {
2814 		vd_scsi->sense_status = uscsi->uscsi_rqstatus;
2815 		if (uscsi->uscsi_rqstatus == STATUS_GOOD)
2816 			vd_scsi->sense_len -= uscsi->uscsi_rqresid;
2817 		else
2818 			vd_scsi->sense_len = 0;
2819 	} else {
2820 		vd_scsi->sense_len = 0;
2821 	}
2822 
2823 	if (uscsi->uscsi_status != STATUS_GOOD) {
2824 		vd_scsi->dataout_len = 0;
2825 		vd_scsi->datain_len = 0;
2826 		return;
2827 	}
2828 
2829 	if (uscsi->uscsi_flags & USCSI_READ) {
2830 		/* request data (read) */
2831 		vd_scsi->datain_len -= uscsi->uscsi_resid;
2832 		vd_scsi->dataout_len = 0;
2833 	} else {
2834 		/* request data (write) */
2835 		vd_scsi->datain_len = 0;
2836 		vd_scsi->dataout_len -= uscsi->uscsi_resid;
2837 	}
2838 }
2839 
2840 static ushort_t
2841 vd_lbl2cksum(struct dk_label *label)
2842 {
2843 	int	count;
2844 	ushort_t sum, *sp;
2845 
2846 	count =	(sizeof (struct dk_label)) / (sizeof (short)) - 1;
2847 	sp = (ushort_t *)label;
2848 	sum = 0;
2849 	while (count--) {
2850 		sum ^= *sp++;
2851 	}
2852 
2853 	return (sum);
2854 }
2855 
2856 /*
2857  * Copy information from a vtoc and dk_geom structures to a dk_label structure.
2858  */
2859 static void
2860 vd_vtocgeom_to_label(struct extvtoc *vtoc, struct dk_geom *geom,
2861     struct dk_label *label)
2862 {
2863 	int i;
2864 
2865 	ASSERT(vtoc->v_nparts == V_NUMPAR);
2866 	ASSERT(vtoc->v_sanity == VTOC_SANE);
2867 
2868 	bzero(label, sizeof (struct dk_label));
2869 
2870 	label->dkl_ncyl = geom->dkg_ncyl;
2871 	label->dkl_acyl = geom->dkg_acyl;
2872 	label->dkl_pcyl = geom->dkg_pcyl;
2873 	label->dkl_nhead = geom->dkg_nhead;
2874 	label->dkl_nsect = geom->dkg_nsect;
2875 	label->dkl_intrlv = geom->dkg_intrlv;
2876 	label->dkl_apc = geom->dkg_apc;
2877 	label->dkl_rpm = geom->dkg_rpm;
2878 	label->dkl_write_reinstruct = geom->dkg_write_reinstruct;
2879 	label->dkl_read_reinstruct = geom->dkg_read_reinstruct;
2880 
2881 	label->dkl_vtoc.v_nparts = V_NUMPAR;
2882 	label->dkl_vtoc.v_sanity = VTOC_SANE;
2883 	label->dkl_vtoc.v_version = vtoc->v_version;
2884 	for (i = 0; i < V_NUMPAR; i++) {
2885 		label->dkl_vtoc.v_timestamp[i] = vtoc->timestamp[i];
2886 		label->dkl_vtoc.v_part[i].p_tag = vtoc->v_part[i].p_tag;
2887 		label->dkl_vtoc.v_part[i].p_flag = vtoc->v_part[i].p_flag;
2888 		label->dkl_map[i].dkl_cylno = vtoc->v_part[i].p_start /
2889 		    (label->dkl_nhead * label->dkl_nsect);
2890 		label->dkl_map[i].dkl_nblk = vtoc->v_part[i].p_size;
2891 	}
2892 
2893 	/*
2894 	 * The bootinfo array can not be copied with bcopy() because
2895 	 * elements are of type long in vtoc (so 64-bit) and of type
2896 	 * int in dk_vtoc (so 32-bit).
2897 	 */
2898 	label->dkl_vtoc.v_bootinfo[0] = vtoc->v_bootinfo[0];
2899 	label->dkl_vtoc.v_bootinfo[1] = vtoc->v_bootinfo[1];
2900 	label->dkl_vtoc.v_bootinfo[2] = vtoc->v_bootinfo[2];
2901 	bcopy(vtoc->v_asciilabel, label->dkl_asciilabel, LEN_DKL_ASCII);
2902 	bcopy(vtoc->v_volume, label->dkl_vtoc.v_volume, LEN_DKL_VVOL);
2903 
2904 	/* re-compute checksum */
2905 	label->dkl_magic = DKL_MAGIC;
2906 	label->dkl_cksum = vd_lbl2cksum(label);
2907 }
2908 
2909 /*
2910  * Copy information from a dk_label structure to a vtoc and dk_geom structures.
2911  */
2912 static void
2913 vd_label_to_vtocgeom(struct dk_label *label, struct extvtoc *vtoc,
2914     struct dk_geom *geom)
2915 {
2916 	int i;
2917 
2918 	bzero(vtoc, sizeof (struct extvtoc));
2919 	bzero(geom, sizeof (struct dk_geom));
2920 
2921 	geom->dkg_ncyl = label->dkl_ncyl;
2922 	geom->dkg_acyl = label->dkl_acyl;
2923 	geom->dkg_nhead = label->dkl_nhead;
2924 	geom->dkg_nsect = label->dkl_nsect;
2925 	geom->dkg_intrlv = label->dkl_intrlv;
2926 	geom->dkg_apc = label->dkl_apc;
2927 	geom->dkg_rpm = label->dkl_rpm;
2928 	geom->dkg_pcyl = label->dkl_pcyl;
2929 	geom->dkg_write_reinstruct = label->dkl_write_reinstruct;
2930 	geom->dkg_read_reinstruct = label->dkl_read_reinstruct;
2931 
2932 	vtoc->v_sanity = label->dkl_vtoc.v_sanity;
2933 	vtoc->v_version = label->dkl_vtoc.v_version;
2934 	vtoc->v_sectorsz = DEV_BSIZE;
2935 	vtoc->v_nparts = label->dkl_vtoc.v_nparts;
2936 
2937 	for (i = 0; i < vtoc->v_nparts; i++) {
2938 		vtoc->v_part[i].p_tag = label->dkl_vtoc.v_part[i].p_tag;
2939 		vtoc->v_part[i].p_flag = label->dkl_vtoc.v_part[i].p_flag;
2940 		vtoc->v_part[i].p_start = label->dkl_map[i].dkl_cylno *
2941 		    (label->dkl_nhead * label->dkl_nsect);
2942 		vtoc->v_part[i].p_size = label->dkl_map[i].dkl_nblk;
2943 		vtoc->timestamp[i] = label->dkl_vtoc.v_timestamp[i];
2944 	}
2945 
2946 	/*
2947 	 * The bootinfo array can not be copied with bcopy() because
2948 	 * elements are of type long in vtoc (so 64-bit) and of type
2949 	 * int in dk_vtoc (so 32-bit).
2950 	 */
2951 	vtoc->v_bootinfo[0] = label->dkl_vtoc.v_bootinfo[0];
2952 	vtoc->v_bootinfo[1] = label->dkl_vtoc.v_bootinfo[1];
2953 	vtoc->v_bootinfo[2] = label->dkl_vtoc.v_bootinfo[2];
2954 	bcopy(label->dkl_asciilabel, vtoc->v_asciilabel, LEN_DKL_ASCII);
2955 	bcopy(label->dkl_vtoc.v_volume, vtoc->v_volume, LEN_DKL_VVOL);
2956 }
2957 
2958 /*
2959  * Check if a geometry is valid for a single-slice disk. A geometry is
2960  * considered valid if the main attributes of the geometry match with the
2961  * attributes of the fake geometry we have created.
2962  */
2963 static boolean_t
2964 vd_slice_geom_isvalid(vd_t *vd, struct dk_geom *geom)
2965 {
2966 	ASSERT(vd->vdisk_type == VD_DISK_TYPE_SLICE);
2967 	ASSERT(vd->vdisk_label == VD_DISK_LABEL_VTOC);
2968 
2969 	if (geom->dkg_ncyl != vd->dk_geom.dkg_ncyl ||
2970 	    geom->dkg_acyl != vd->dk_geom.dkg_acyl ||
2971 	    geom->dkg_nsect != vd->dk_geom.dkg_nsect ||
2972 	    geom->dkg_pcyl != vd->dk_geom.dkg_pcyl)
2973 		return (B_FALSE);
2974 
2975 	return (B_TRUE);
2976 }
2977 
2978 /*
2979  * Check if a vtoc is valid for a single-slice disk. A vtoc is considered
2980  * valid if the main attributes of the vtoc match with the attributes of the
2981  * fake vtoc we have created.
2982  */
2983 static boolean_t
2984 vd_slice_vtoc_isvalid(vd_t *vd, struct extvtoc *vtoc)
2985 {
2986 	size_t csize;
2987 	int i;
2988 
2989 	ASSERT(vd->vdisk_type == VD_DISK_TYPE_SLICE);
2990 	ASSERT(vd->vdisk_label == VD_DISK_LABEL_VTOC);
2991 
2992 	if (vtoc->v_sanity != vd->vtoc.v_sanity ||
2993 	    vtoc->v_version != vd->vtoc.v_version ||
2994 	    vtoc->v_nparts != vd->vtoc.v_nparts ||
2995 	    strcmp(vtoc->v_volume, vd->vtoc.v_volume) != 0 ||
2996 	    strcmp(vtoc->v_asciilabel, vd->vtoc.v_asciilabel) != 0)
2997 		return (B_FALSE);
2998 
2999 	/* slice 2 should be unchanged */
3000 	if (vtoc->v_part[VD_ENTIRE_DISK_SLICE].p_start !=
3001 	    vd->vtoc.v_part[VD_ENTIRE_DISK_SLICE].p_start ||
3002 	    vtoc->v_part[VD_ENTIRE_DISK_SLICE].p_size !=
3003 	    vd->vtoc.v_part[VD_ENTIRE_DISK_SLICE].p_size)
3004 		return (B_FALSE);
3005 
3006 	/*
3007 	 * Slice 0 should be mostly unchanged and cover most of the disk.
3008 	 * However we allow some flexibility wrt to the start and the size
3009 	 * of this slice mainly because we can't exactly know how it will
3010 	 * be defined by the OS installer.
3011 	 *
3012 	 * We allow slice 0 to be defined as starting on any of the first
3013 	 * 4 cylinders.
3014 	 */
3015 	csize = vd->dk_geom.dkg_nhead * vd->dk_geom.dkg_nsect;
3016 
3017 	if (vtoc->v_part[0].p_start > 4 * csize ||
3018 	    vtoc->v_part[0].p_size > vtoc->v_part[VD_ENTIRE_DISK_SLICE].p_size)
3019 			return (B_FALSE);
3020 
3021 	if (vd->vtoc.v_part[0].p_size >= 4 * csize &&
3022 	    vtoc->v_part[0].p_size < vd->vtoc.v_part[0].p_size - 4 *csize)
3023 			return (B_FALSE);
3024 
3025 	/* any other slice should have a size of 0 */
3026 	for (i = 1; i < vtoc->v_nparts; i++) {
3027 		if (i != VD_ENTIRE_DISK_SLICE &&
3028 		    vtoc->v_part[i].p_size != 0)
3029 			return (B_FALSE);
3030 	}
3031 
3032 	return (B_TRUE);
3033 }
3034 
3035 /*
3036  * Handle ioctls to a disk slice.
3037  *
3038  * Return Values
3039  *	0	- Indicates that there are no errors in disk operations
3040  *	ENOTSUP	- Unknown disk label type or unsupported DKIO ioctl
3041  *	EINVAL	- Not enough room to copy the EFI label
3042  *
3043  */
3044 static int
3045 vd_do_slice_ioctl(vd_t *vd, int cmd, void *ioctl_arg)
3046 {
3047 	dk_efi_t *dk_ioc;
3048 	struct extvtoc *vtoc;
3049 	struct dk_geom *geom;
3050 	size_t len, lba;
3051 
3052 	ASSERT(vd->vdisk_type == VD_DISK_TYPE_SLICE);
3053 
3054 	if (cmd == DKIOCFLUSHWRITECACHE)
3055 		return (vd_flush_write(vd));
3056 
3057 	switch (vd->vdisk_label) {
3058 
3059 	/* ioctls for a single slice disk with a VTOC label */
3060 	case VD_DISK_LABEL_VTOC:
3061 
3062 		switch (cmd) {
3063 
3064 		case DKIOCGGEOM:
3065 			ASSERT(ioctl_arg != NULL);
3066 			bcopy(&vd->dk_geom, ioctl_arg, sizeof (vd->dk_geom));
3067 			return (0);
3068 
3069 		case DKIOCGEXTVTOC:
3070 			ASSERT(ioctl_arg != NULL);
3071 			bcopy(&vd->vtoc, ioctl_arg, sizeof (vd->vtoc));
3072 			return (0);
3073 
3074 		case DKIOCSGEOM:
3075 			ASSERT(ioctl_arg != NULL);
3076 			if (vd_slice_single_slice)
3077 				return (ENOTSUP);
3078 
3079 			/* fake success only if new geometry is valid */
3080 			geom = (struct dk_geom *)ioctl_arg;
3081 			if (!vd_slice_geom_isvalid(vd, geom))
3082 				return (EINVAL);
3083 
3084 			return (0);
3085 
3086 		case DKIOCSEXTVTOC:
3087 			ASSERT(ioctl_arg != NULL);
3088 			if (vd_slice_single_slice)
3089 				return (ENOTSUP);
3090 
3091 			/* fake sucess only if the new vtoc is valid */
3092 			vtoc = (struct extvtoc *)ioctl_arg;
3093 			if (!vd_slice_vtoc_isvalid(vd, vtoc))
3094 				return (EINVAL);
3095 
3096 			return (0);
3097 
3098 		default:
3099 			return (ENOTSUP);
3100 		}
3101 
3102 	/* ioctls for a single slice disk with an EFI label */
3103 	case VD_DISK_LABEL_EFI:
3104 
3105 		if (cmd != DKIOCGETEFI && cmd != DKIOCSETEFI)
3106 			return (ENOTSUP);
3107 
3108 		ASSERT(ioctl_arg != NULL);
3109 		dk_ioc = (dk_efi_t *)ioctl_arg;
3110 
3111 		len = dk_ioc->dki_length;
3112 		lba = dk_ioc->dki_lba;
3113 
3114 		if ((lba != VD_EFI_LBA_GPT && lba != VD_EFI_LBA_GPE) ||
3115 		    (lba == VD_EFI_LBA_GPT && len < sizeof (efi_gpt_t)) ||
3116 		    (lba == VD_EFI_LBA_GPE && len < sizeof (efi_gpe_t)))
3117 			return (EINVAL);
3118 
3119 		switch (cmd) {
3120 		case DKIOCGETEFI:
3121 			len = vd_slice_flabel_read(vd,
3122 			    (caddr_t)dk_ioc->dki_data,
3123 			    lba * vd->vdisk_bsize, len);
3124 
3125 			ASSERT(len > 0);
3126 
3127 			return (0);
3128 
3129 		case DKIOCSETEFI:
3130 			if (vd_slice_single_slice)
3131 				return (ENOTSUP);
3132 
3133 			/* we currently don't support writing EFI */
3134 			return (EIO);
3135 		}
3136 
3137 		/* FALLTHROUGH */
3138 	default:
3139 		/* Unknown disk label type */
3140 		return (ENOTSUP);
3141 	}
3142 }
3143 
3144 static int
3145 vds_efi_alloc_and_read(vd_t *vd, efi_gpt_t **gpt, efi_gpe_t **gpe)
3146 {
3147 	vd_efi_dev_t edev;
3148 	int status;
3149 
3150 	VD_EFI_DEV_SET(edev, vd, (vd_efi_ioctl_func)vd_backend_ioctl);
3151 
3152 	status = vd_efi_alloc_and_read(&edev, gpt, gpe);
3153 
3154 	return (status);
3155 }
3156 
3157 static void
3158 vds_efi_free(vd_t *vd, efi_gpt_t *gpt, efi_gpe_t *gpe)
3159 {
3160 	vd_efi_dev_t edev;
3161 
3162 	VD_EFI_DEV_SET(edev, vd, (vd_efi_ioctl_func)vd_backend_ioctl);
3163 
3164 	vd_efi_free(&edev, gpt, gpe);
3165 }
3166 
3167 static int
3168 vd_dskimg_validate_efi(vd_t *vd)
3169 {
3170 	efi_gpt_t *gpt;
3171 	efi_gpe_t *gpe;
3172 	int i, nparts, status;
3173 	struct uuid efi_reserved = EFI_RESERVED;
3174 
3175 	if ((status = vds_efi_alloc_and_read(vd, &gpt, &gpe)) != 0)
3176 		return (status);
3177 
3178 	bzero(&vd->vtoc, sizeof (struct extvtoc));
3179 	bzero(&vd->dk_geom, sizeof (struct dk_geom));
3180 	bzero(vd->slices, sizeof (vd_slice_t) * VD_MAXPART);
3181 
3182 	vd->efi_reserved = -1;
3183 
3184 	nparts = gpt->efi_gpt_NumberOfPartitionEntries;
3185 
3186 	for (i = 0; i < nparts && i < VD_MAXPART; i++) {
3187 
3188 		if (gpe[i].efi_gpe_StartingLBA == 0 &&
3189 		    gpe[i].efi_gpe_EndingLBA == 0) {
3190 			continue;
3191 		}
3192 
3193 		vd->slices[i].start = gpe[i].efi_gpe_StartingLBA;
3194 		vd->slices[i].nblocks = gpe[i].efi_gpe_EndingLBA -
3195 		    gpe[i].efi_gpe_StartingLBA + 1;
3196 
3197 		if (bcmp(&gpe[i].efi_gpe_PartitionTypeGUID, &efi_reserved,
3198 		    sizeof (struct uuid)) == 0)
3199 			vd->efi_reserved = i;
3200 
3201 	}
3202 
3203 	ASSERT(vd->vdisk_size != 0);
3204 	vd->slices[VD_EFI_WD_SLICE].start = 0;
3205 	vd->slices[VD_EFI_WD_SLICE].nblocks = vd->vdisk_size;
3206 
3207 	vds_efi_free(vd, gpt, gpe);
3208 
3209 	return (status);
3210 }
3211 
3212 /*
3213  * Function:
3214  *	vd_dskimg_validate_geometry
3215  *
3216  * Description:
3217  *	Read the label and validate the geometry of a disk image. The driver
3218  *	label, vtoc and geometry information are updated according to the
3219  *	label read from the disk image.
3220  *
3221  *	If no valid label is found, the label is set to unknown and the
3222  *	function returns EINVAL, but a default vtoc and geometry are provided
3223  *	to the driver. If an EFI label is found, ENOTSUP is returned.
3224  *
3225  * Parameters:
3226  *	vd	- disk on which the operation is performed.
3227  *
3228  * Return Code:
3229  *	0	- success.
3230  *	EIO	- error reading the label from the disk image.
3231  *	EINVAL	- unknown disk label.
3232  *	ENOTSUP	- geometry not applicable (EFI label).
3233  */
3234 static int
3235 vd_dskimg_validate_geometry(vd_t *vd)
3236 {
3237 	struct dk_label label;
3238 	struct dk_geom *geom = &vd->dk_geom;
3239 	struct extvtoc *vtoc = &vd->vtoc;
3240 	int i;
3241 	int status = 0;
3242 
3243 	ASSERT(VD_DSKIMG(vd));
3244 
3245 	if (VD_DSKIMG_LABEL_READ(vd, &label) < 0)
3246 		return (EIO);
3247 
3248 	if (label.dkl_magic != DKL_MAGIC ||
3249 	    label.dkl_cksum != vd_lbl2cksum(&label) ||
3250 	    (vd_dskimg_validate_sanity &&
3251 	    label.dkl_vtoc.v_sanity != VTOC_SANE) ||
3252 	    label.dkl_vtoc.v_nparts != V_NUMPAR) {
3253 
3254 		if (vd_dskimg_validate_efi(vd) == 0) {
3255 			vd->vdisk_label = VD_DISK_LABEL_EFI;
3256 			return (ENOTSUP);
3257 		}
3258 
3259 		vd->vdisk_label = VD_DISK_LABEL_UNK;
3260 		vd_build_default_label(vd->dskimg_size, vd->vdisk_bsize,
3261 		    &label);
3262 		status = EINVAL;
3263 	} else {
3264 		vd->vdisk_label = VD_DISK_LABEL_VTOC;
3265 	}
3266 
3267 	/* Update the driver geometry and vtoc */
3268 	vd_label_to_vtocgeom(&label, vtoc, geom);
3269 
3270 	/* Update logical partitions */
3271 	bzero(vd->slices, sizeof (vd_slice_t) * VD_MAXPART);
3272 	if (vd->vdisk_label != VD_DISK_LABEL_UNK) {
3273 		for (i = 0; i < vtoc->v_nparts; i++) {
3274 			vd->slices[i].start = vtoc->v_part[i].p_start;
3275 			vd->slices[i].nblocks = vtoc->v_part[i].p_size;
3276 		}
3277 	}
3278 
3279 	return (status);
3280 }
3281 
3282 /*
3283  * Handle ioctls to a disk image.
3284  *
3285  * Return Values
3286  *	0	- Indicates that there are no errors
3287  *	!= 0	- Disk operation returned an error
3288  */
3289 static int
3290 vd_do_dskimg_ioctl(vd_t *vd, int cmd, void *ioctl_arg)
3291 {
3292 	struct dk_label label;
3293 	struct dk_geom *geom;
3294 	struct extvtoc *vtoc;
3295 	dk_efi_t *efi;
3296 	int rc;
3297 
3298 	ASSERT(VD_DSKIMG(vd));
3299 
3300 	switch (cmd) {
3301 
3302 	case DKIOCGGEOM:
3303 		ASSERT(ioctl_arg != NULL);
3304 		geom = (struct dk_geom *)ioctl_arg;
3305 
3306 		rc = vd_dskimg_validate_geometry(vd);
3307 		if (rc != 0 && rc != EINVAL)
3308 			return (rc);
3309 		bcopy(&vd->dk_geom, geom, sizeof (struct dk_geom));
3310 		return (0);
3311 
3312 	case DKIOCGEXTVTOC:
3313 		ASSERT(ioctl_arg != NULL);
3314 		vtoc = (struct extvtoc *)ioctl_arg;
3315 
3316 		rc = vd_dskimg_validate_geometry(vd);
3317 		if (rc != 0 && rc != EINVAL)
3318 			return (rc);
3319 		bcopy(&vd->vtoc, vtoc, sizeof (struct extvtoc));
3320 		return (0);
3321 
3322 	case DKIOCSGEOM:
3323 		ASSERT(ioctl_arg != NULL);
3324 		geom = (struct dk_geom *)ioctl_arg;
3325 
3326 		if (geom->dkg_nhead == 0 || geom->dkg_nsect == 0)
3327 			return (EINVAL);
3328 
3329 		/*
3330 		 * The current device geometry is not updated, just the driver
3331 		 * "notion" of it. The device geometry will be effectively
3332 		 * updated when a label is written to the device during a next
3333 		 * DKIOCSEXTVTOC.
3334 		 */
3335 		bcopy(ioctl_arg, &vd->dk_geom, sizeof (vd->dk_geom));
3336 		return (0);
3337 
3338 	case DKIOCSEXTVTOC:
3339 		ASSERT(ioctl_arg != NULL);
3340 		ASSERT(vd->dk_geom.dkg_nhead != 0 &&
3341 		    vd->dk_geom.dkg_nsect != 0);
3342 		vtoc = (struct extvtoc *)ioctl_arg;
3343 
3344 		if (vtoc->v_sanity != VTOC_SANE ||
3345 		    vtoc->v_sectorsz != DEV_BSIZE ||
3346 		    vtoc->v_nparts != V_NUMPAR)
3347 			return (EINVAL);
3348 
3349 		vd_vtocgeom_to_label(vtoc, &vd->dk_geom, &label);
3350 
3351 		/* write label to the disk image */
3352 		if ((rc = vd_dskimg_set_vtoc(vd, &label)) != 0)
3353 			return (rc);
3354 
3355 		break;
3356 
3357 	case DKIOCFLUSHWRITECACHE:
3358 		return (vd_flush_write(vd));
3359 
3360 	case DKIOCGETEFI:
3361 		ASSERT(ioctl_arg != NULL);
3362 		efi = (dk_efi_t *)ioctl_arg;
3363 
3364 		if (vd_dskimg_rw(vd, VD_SLICE_NONE, VD_OP_BREAD,
3365 		    (caddr_t)efi->dki_data, efi->dki_lba, efi->dki_length) < 0)
3366 			return (EIO);
3367 
3368 		return (0);
3369 
3370 	case DKIOCSETEFI:
3371 		ASSERT(ioctl_arg != NULL);
3372 		efi = (dk_efi_t *)ioctl_arg;
3373 
3374 		if (vd_dskimg_rw(vd, VD_SLICE_NONE, VD_OP_BWRITE,
3375 		    (caddr_t)efi->dki_data, efi->dki_lba, efi->dki_length) < 0)
3376 			return (EIO);
3377 
3378 		break;
3379 
3380 
3381 	default:
3382 		return (ENOTSUP);
3383 	}
3384 
3385 	ASSERT(cmd == DKIOCSEXTVTOC || cmd == DKIOCSETEFI);
3386 
3387 	/* label has changed, revalidate the geometry */
3388 	(void) vd_dskimg_validate_geometry(vd);
3389 
3390 	/*
3391 	 * The disk geometry may have changed, so we need to write
3392 	 * the devid (if there is one) so that it is stored at the
3393 	 * right location.
3394 	 */
3395 	if (vd_dskimg_write_devid(vd, vd->dskimg_devid) != 0) {
3396 		PR0("Fail to write devid");
3397 	}
3398 
3399 	return (0);
3400 }
3401 
3402 static int
3403 vd_backend_ioctl(vd_t *vd, int cmd, caddr_t arg)
3404 {
3405 	int rval = 0, status;
3406 	struct vtoc vtoc;
3407 
3408 	/*
3409 	 * Call the appropriate function to execute the ioctl depending
3410 	 * on the type of vdisk.
3411 	 */
3412 	if (vd->vdisk_type == VD_DISK_TYPE_SLICE) {
3413 
3414 		/* slice, file or volume exported as a single slice disk */
3415 		status = vd_do_slice_ioctl(vd, cmd, arg);
3416 
3417 	} else if (VD_DSKIMG(vd)) {
3418 
3419 		/* file or volume exported as a full disk */
3420 		status = vd_do_dskimg_ioctl(vd, cmd, arg);
3421 
3422 	} else {
3423 
3424 		/* disk device exported as a full disk */
3425 		status = ldi_ioctl(vd->ldi_handle[0], cmd, (intptr_t)arg,
3426 		    vd->open_flags | FKIOCTL, kcred, &rval);
3427 
3428 		/*
3429 		 * By default VTOC ioctls are done using ioctls for the
3430 		 * extended VTOC. Some drivers (in particular non-Sun drivers)
3431 		 * may not support these ioctls. In that case, we fallback to
3432 		 * the regular VTOC ioctls.
3433 		 */
3434 		if (status == ENOTTY) {
3435 			switch (cmd) {
3436 
3437 			case DKIOCGEXTVTOC:
3438 				cmd = DKIOCGVTOC;
3439 				status = ldi_ioctl(vd->ldi_handle[0], cmd,
3440 				    (intptr_t)&vtoc, vd->open_flags | FKIOCTL,
3441 				    kcred, &rval);
3442 				vtoctoextvtoc(vtoc,
3443 				    (*(struct extvtoc *)(void *)arg));
3444 				break;
3445 
3446 			case DKIOCSEXTVTOC:
3447 				cmd = DKIOCSVTOC;
3448 				extvtoctovtoc((*(struct extvtoc *)(void *)arg),
3449 				    vtoc);
3450 				status = ldi_ioctl(vd->ldi_handle[0], cmd,
3451 				    (intptr_t)&vtoc, vd->open_flags | FKIOCTL,
3452 				    kcred, &rval);
3453 				break;
3454 			}
3455 		}
3456 	}
3457 
3458 #ifdef DEBUG
3459 	if (rval != 0) {
3460 		PR0("ioctl %x set rval = %d, which is not being returned"
3461 		    " to caller", cmd, rval);
3462 	}
3463 #endif /* DEBUG */
3464 
3465 	return (status);
3466 }
3467 
3468 /*
3469  * Description:
3470  *	This is the function that processes the ioctl requests (farming it
3471  *	out to functions that handle slices, files or whole disks)
3472  *
3473  * Return Values
3474  *     0		- ioctl operation completed successfully
3475  *     != 0		- The LDC error value encountered
3476  *			  (propagated back up the call stack as a task error)
3477  *
3478  * Side Effect
3479  *     sets request->status to the return value of the ioctl function.
3480  */
3481 static int
3482 vd_do_ioctl(vd_t *vd, vd_dring_payload_t *request, void* buf, vd_ioctl_t *ioctl)
3483 {
3484 	int	status = 0;
3485 	size_t	nbytes = request->nbytes;	/* modifiable copy */
3486 
3487 
3488 	ASSERT(request->slice < vd->nslices);
3489 	PR0("Performing %s", ioctl->operation_name);
3490 
3491 	/* Get data from client and convert, if necessary */
3492 	if (ioctl->copyin != NULL)  {
3493 		ASSERT(nbytes != 0 && buf != NULL);
3494 		PR1("Getting \"arg\" data from client");
3495 		if ((status = ldc_mem_copy(vd->ldc_handle, buf, 0, &nbytes,
3496 		    request->cookie, request->ncookies,
3497 		    LDC_COPY_IN)) != 0) {
3498 			PR0("ldc_mem_copy() returned errno %d "
3499 			    "copying from client", status);
3500 			return (status);
3501 		}
3502 
3503 		/* Convert client's data, if necessary */
3504 		if (ioctl->copyin == VD_IDENTITY_IN) {
3505 			/* use client buffer */
3506 			ioctl->arg = buf;
3507 		} else {
3508 			/* convert client vdisk operation data to ioctl data */
3509 			status = (ioctl->copyin)(buf, nbytes,
3510 			    (void *)ioctl->arg);
3511 			if (status != 0) {
3512 				request->status = status;
3513 				return (0);
3514 			}
3515 		}
3516 	}
3517 
3518 	if (ioctl->operation == VD_OP_SCSICMD) {
3519 		struct uscsi_cmd *uscsi = (struct uscsi_cmd *)ioctl->arg;
3520 
3521 		/* check write permission */
3522 		if (!(vd->open_flags & FWRITE) &&
3523 		    !(uscsi->uscsi_flags & USCSI_READ)) {
3524 			PR0("uscsi fails because backend is opened read-only");
3525 			request->status = EROFS;
3526 			return (0);
3527 		}
3528 	}
3529 
3530 	/*
3531 	 * Send the ioctl to the disk backend.
3532 	 */
3533 	request->status = vd_backend_ioctl(vd, ioctl->cmd, ioctl->arg);
3534 
3535 	if (request->status != 0) {
3536 		PR0("ioctl(%s) = errno %d", ioctl->cmd_name, request->status);
3537 		if (ioctl->operation == VD_OP_SCSICMD &&
3538 		    ((struct uscsi_cmd *)ioctl->arg)->uscsi_status != 0)
3539 			/*
3540 			 * USCSICMD has reported an error and the uscsi_status
3541 			 * field is not zero. This means that the SCSI command
3542 			 * has completed but it has an error. So we should
3543 			 * mark the VD operation has succesfully completed
3544 			 * and clients can check the SCSI status field for
3545 			 * SCSI errors.
3546 			 */
3547 			request->status = 0;
3548 		else
3549 			return (0);
3550 	}
3551 
3552 	/* Convert data and send to client, if necessary */
3553 	if (ioctl->copyout != NULL)  {
3554 		ASSERT(nbytes != 0 && buf != NULL);
3555 		PR1("Sending \"arg\" data to client");
3556 
3557 		/* Convert ioctl data to vdisk operation data, if necessary */
3558 		if (ioctl->copyout != VD_IDENTITY_OUT)
3559 			(ioctl->copyout)((void *)ioctl->arg, buf);
3560 
3561 		if ((status = ldc_mem_copy(vd->ldc_handle, buf, 0, &nbytes,
3562 		    request->cookie, request->ncookies,
3563 		    LDC_COPY_OUT)) != 0) {
3564 			PR0("ldc_mem_copy() returned errno %d "
3565 			    "copying to client", status);
3566 			return (status);
3567 		}
3568 	}
3569 
3570 	return (status);
3571 }
3572 
3573 #define	RNDSIZE(expr) P2ROUNDUP(sizeof (expr), sizeof (uint64_t))
3574 
3575 /*
3576  * Description:
3577  *	This generic function is called by the task queue to complete
3578  *	the processing of the tasks. The specific completion function
3579  *	is passed in as a field in the task pointer.
3580  *
3581  * Parameters:
3582  *	arg	- opaque pointer to structure containing task to be completed
3583  *
3584  * Return Values
3585  *	None
3586  */
3587 static void
3588 vd_complete(void *arg)
3589 {
3590 	vd_task_t	*task = (vd_task_t *)arg;
3591 
3592 	ASSERT(task != NULL);
3593 	ASSERT(task->status == EINPROGRESS);
3594 	ASSERT(task->completef != NULL);
3595 
3596 	task->status = task->completef(task);
3597 	if (task->status)
3598 		PR0("%s: Error %d completing task", __func__, task->status);
3599 
3600 	/* Now notify the vDisk client */
3601 	vd_complete_notify(task);
3602 }
3603 
3604 static int
3605 vd_ioctl(vd_task_t *task)
3606 {
3607 	int			i, status;
3608 	void			*buf = NULL;
3609 	struct dk_geom		dk_geom = {0};
3610 	struct extvtoc		vtoc = {0};
3611 	struct dk_efi		dk_efi = {0};
3612 	struct uscsi_cmd	uscsi = {0};
3613 	vd_t			*vd		= task->vd;
3614 	vd_dring_payload_t	*request	= task->request;
3615 	vd_ioctl_t		ioctl[] = {
3616 		/* Command (no-copy) operations */
3617 		{VD_OP_FLUSH, STRINGIZE(VD_OP_FLUSH), 0,
3618 		    DKIOCFLUSHWRITECACHE, STRINGIZE(DKIOCFLUSHWRITECACHE),
3619 		    NULL, NULL, NULL, B_TRUE},
3620 
3621 		/* "Get" (copy-out) operations */
3622 		{VD_OP_GET_WCE, STRINGIZE(VD_OP_GET_WCE), RNDSIZE(int),
3623 		    DKIOCGETWCE, STRINGIZE(DKIOCGETWCE),
3624 		    NULL, VD_IDENTITY_IN, VD_IDENTITY_OUT, B_FALSE},
3625 		{VD_OP_GET_DISKGEOM, STRINGIZE(VD_OP_GET_DISKGEOM),
3626 		    RNDSIZE(vd_geom_t),
3627 		    DKIOCGGEOM, STRINGIZE(DKIOCGGEOM),
3628 		    &dk_geom, NULL, dk_geom2vd_geom, B_FALSE},
3629 		{VD_OP_GET_VTOC, STRINGIZE(VD_OP_GET_VTOC), RNDSIZE(vd_vtoc_t),
3630 		    DKIOCGEXTVTOC, STRINGIZE(DKIOCGEXTVTOC),
3631 		    &vtoc, NULL, vtoc2vd_vtoc, B_FALSE},
3632 		{VD_OP_GET_EFI, STRINGIZE(VD_OP_GET_EFI), RNDSIZE(vd_efi_t),
3633 		    DKIOCGETEFI, STRINGIZE(DKIOCGETEFI),
3634 		    &dk_efi, vd_get_efi_in, vd_get_efi_out, B_FALSE},
3635 
3636 		/* "Set" (copy-in) operations */
3637 		{VD_OP_SET_WCE, STRINGIZE(VD_OP_SET_WCE), RNDSIZE(int),
3638 		    DKIOCSETWCE, STRINGIZE(DKIOCSETWCE),
3639 		    NULL, VD_IDENTITY_IN, VD_IDENTITY_OUT, B_TRUE},
3640 		{VD_OP_SET_DISKGEOM, STRINGIZE(VD_OP_SET_DISKGEOM),
3641 		    RNDSIZE(vd_geom_t),
3642 		    DKIOCSGEOM, STRINGIZE(DKIOCSGEOM),
3643 		    &dk_geom, vd_geom2dk_geom, NULL, B_TRUE},
3644 		{VD_OP_SET_VTOC, STRINGIZE(VD_OP_SET_VTOC), RNDSIZE(vd_vtoc_t),
3645 		    DKIOCSEXTVTOC, STRINGIZE(DKIOCSEXTVTOC),
3646 		    &vtoc, vd_vtoc2vtoc, NULL, B_TRUE},
3647 		{VD_OP_SET_EFI, STRINGIZE(VD_OP_SET_EFI), RNDSIZE(vd_efi_t),
3648 		    DKIOCSETEFI, STRINGIZE(DKIOCSETEFI),
3649 		    &dk_efi, vd_set_efi_in, vd_set_efi_out, B_TRUE},
3650 
3651 		{VD_OP_SCSICMD, STRINGIZE(VD_OP_SCSICMD), RNDSIZE(vd_scsi_t),
3652 		    USCSICMD, STRINGIZE(USCSICMD),
3653 		    &uscsi, vd_scsicmd_in, vd_scsicmd_out, B_FALSE},
3654 	};
3655 	size_t		nioctls = (sizeof (ioctl))/(sizeof (ioctl[0]));
3656 
3657 
3658 	ASSERT(vd != NULL);
3659 	ASSERT(request != NULL);
3660 	ASSERT(request->slice < vd->nslices);
3661 
3662 	/*
3663 	 * Determine ioctl corresponding to caller's "operation" and
3664 	 * validate caller's "nbytes"
3665 	 */
3666 	for (i = 0; i < nioctls; i++) {
3667 		if (request->operation == ioctl[i].operation) {
3668 			/* LDC memory operations require 8-byte multiples */
3669 			ASSERT(ioctl[i].nbytes % sizeof (uint64_t) == 0);
3670 
3671 			if (request->operation == VD_OP_GET_EFI ||
3672 			    request->operation == VD_OP_SET_EFI ||
3673 			    request->operation == VD_OP_SCSICMD) {
3674 				if (request->nbytes >= ioctl[i].nbytes)
3675 					break;
3676 				PR0("%s:  Expected at least nbytes = %lu, "
3677 				    "got %lu", ioctl[i].operation_name,
3678 				    ioctl[i].nbytes, request->nbytes);
3679 				return (EINVAL);
3680 			}
3681 
3682 			if (request->nbytes != ioctl[i].nbytes) {
3683 				PR0("%s:  Expected nbytes = %lu, got %lu",
3684 				    ioctl[i].operation_name, ioctl[i].nbytes,
3685 				    request->nbytes);
3686 				return (EINVAL);
3687 			}
3688 
3689 			break;
3690 		}
3691 	}
3692 
3693 	VERIFY(i < nioctls); /* because "operation" already validated */
3694 
3695 	if (!(vd->open_flags & FWRITE) && ioctl[i].write) {
3696 		PR0("%s fails because backend is opened read-only",
3697 		    ioctl[i].operation_name);
3698 		request->status = EROFS;
3699 		return (0);
3700 	}
3701 
3702 	if (request->nbytes)
3703 		buf = kmem_zalloc(request->nbytes, KM_SLEEP);
3704 	status = vd_do_ioctl(vd, request, buf, &ioctl[i]);
3705 	if (request->nbytes)
3706 		kmem_free(buf, request->nbytes);
3707 
3708 	return (status);
3709 }
3710 
3711 static int
3712 vd_get_devid(vd_task_t *task)
3713 {
3714 	vd_t *vd = task->vd;
3715 	vd_dring_payload_t *request = task->request;
3716 	vd_devid_t *vd_devid;
3717 	impl_devid_t *devid;
3718 	int status, bufid_len, devid_len, len, sz;
3719 	int bufbytes;
3720 
3721 	PR1("Get Device ID, nbytes=%ld", request->nbytes);
3722 
3723 	if (vd->vdisk_type == VD_DISK_TYPE_SLICE) {
3724 		/*
3725 		 * We don't support devid for single-slice disks because we
3726 		 * have no space to store a fabricated devid and for physical
3727 		 * disk slices, we can't use the devid of the disk otherwise
3728 		 * exporting multiple slices from the same disk will produce
3729 		 * the same devids.
3730 		 */
3731 		PR2("No Device ID for slices");
3732 		request->status = ENOTSUP;
3733 		return (0);
3734 	}
3735 
3736 	if (VD_DSKIMG(vd)) {
3737 		if (vd->dskimg_devid == NULL) {
3738 			PR2("No Device ID");
3739 			request->status = ENOENT;
3740 			return (0);
3741 		} else {
3742 			sz = ddi_devid_sizeof(vd->dskimg_devid);
3743 			devid = kmem_alloc(sz, KM_SLEEP);
3744 			bcopy(vd->dskimg_devid, devid, sz);
3745 		}
3746 	} else {
3747 		if (ddi_lyr_get_devid(vd->dev[request->slice],
3748 		    (ddi_devid_t *)&devid) != DDI_SUCCESS) {
3749 			PR2("No Device ID");
3750 			request->status = ENOENT;
3751 			return (0);
3752 		}
3753 	}
3754 
3755 	bufid_len = request->nbytes - sizeof (vd_devid_t) + 1;
3756 	devid_len = DEVID_GETLEN(devid);
3757 
3758 	/*
3759 	 * Save the buffer size here for use in deallocation.
3760 	 * The actual number of bytes copied is returned in
3761 	 * the 'nbytes' field of the request structure.
3762 	 */
3763 	bufbytes = request->nbytes;
3764 
3765 	vd_devid = kmem_zalloc(bufbytes, KM_SLEEP);
3766 	vd_devid->length = devid_len;
3767 	vd_devid->type = DEVID_GETTYPE(devid);
3768 
3769 	len = (devid_len > bufid_len)? bufid_len : devid_len;
3770 
3771 	bcopy(devid->did_id, vd_devid->id, len);
3772 
3773 	request->status = 0;
3774 
3775 	/* LDC memory operations require 8-byte multiples */
3776 	ASSERT(request->nbytes % sizeof (uint64_t) == 0);
3777 
3778 	if ((status = ldc_mem_copy(vd->ldc_handle, (caddr_t)vd_devid, 0,
3779 	    &request->nbytes, request->cookie, request->ncookies,
3780 	    LDC_COPY_OUT)) != 0) {
3781 		PR0("ldc_mem_copy() returned errno %d copying to client",
3782 		    status);
3783 	}
3784 	PR1("post mem_copy: nbytes=%ld", request->nbytes);
3785 
3786 	kmem_free(vd_devid, bufbytes);
3787 	ddi_devid_free((ddi_devid_t)devid);
3788 
3789 	return (status);
3790 }
3791 
3792 static int
3793 vd_scsi_reset(vd_t *vd)
3794 {
3795 	int rval, status;
3796 	struct uscsi_cmd uscsi = { 0 };
3797 
3798 	uscsi.uscsi_flags = vd_scsi_debug | USCSI_RESET;
3799 	uscsi.uscsi_timeout = vd_scsi_rdwr_timeout;
3800 
3801 	status = ldi_ioctl(vd->ldi_handle[0], USCSICMD, (intptr_t)&uscsi,
3802 	    (vd->open_flags | FKIOCTL), kcred, &rval);
3803 
3804 	return (status);
3805 }
3806 
3807 static int
3808 vd_reset(vd_task_t *task)
3809 {
3810 	vd_t *vd = task->vd;
3811 	vd_dring_payload_t *request = task->request;
3812 
3813 	ASSERT(request->operation == VD_OP_RESET);
3814 	ASSERT(vd->scsi);
3815 
3816 	PR0("Performing VD_OP_RESET");
3817 
3818 	if (request->nbytes != 0) {
3819 		PR0("VD_OP_RESET:  Expected nbytes = 0, got %lu",
3820 		    request->nbytes);
3821 		return (EINVAL);
3822 	}
3823 
3824 	request->status = vd_scsi_reset(vd);
3825 
3826 	return (0);
3827 }
3828 
3829 static int
3830 vd_get_capacity(vd_task_t *task)
3831 {
3832 	int rv;
3833 	size_t nbytes;
3834 	vd_t *vd = task->vd;
3835 	vd_dring_payload_t *request = task->request;
3836 	vd_capacity_t vd_cap = { 0 };
3837 
3838 	ASSERT(request->operation == VD_OP_GET_CAPACITY);
3839 
3840 	PR0("Performing VD_OP_GET_CAPACITY");
3841 
3842 	nbytes = request->nbytes;
3843 
3844 	if (nbytes != RNDSIZE(vd_capacity_t)) {
3845 		PR0("VD_OP_GET_CAPACITY:  Expected nbytes = %lu, got %lu",
3846 		    RNDSIZE(vd_capacity_t), nbytes);
3847 		return (EINVAL);
3848 	}
3849 
3850 	/*
3851 	 * Check the backend size in case it has changed. If the check fails
3852 	 * then we will return the last known size.
3853 	 */
3854 
3855 	(void) vd_backend_check_size(vd);
3856 	ASSERT(vd->vdisk_size != 0);
3857 
3858 	request->status = 0;
3859 
3860 	vd_cap.vdisk_block_size = vd->vdisk_bsize;
3861 	vd_cap.vdisk_size = vd->vdisk_size;
3862 
3863 	if ((rv = ldc_mem_copy(vd->ldc_handle, (char *)&vd_cap, 0, &nbytes,
3864 	    request->cookie, request->ncookies, LDC_COPY_OUT)) != 0) {
3865 		PR0("ldc_mem_copy() returned errno %d copying to client", rv);
3866 		return (rv);
3867 	}
3868 
3869 	return (0);
3870 }
3871 
3872 static int
3873 vd_get_access(vd_task_t *task)
3874 {
3875 	uint64_t access;
3876 	int rv, rval = 0;
3877 	size_t nbytes;
3878 	vd_t *vd = task->vd;
3879 	vd_dring_payload_t *request = task->request;
3880 
3881 	ASSERT(request->operation == VD_OP_GET_ACCESS);
3882 	ASSERT(vd->scsi);
3883 
3884 	PR0("Performing VD_OP_GET_ACCESS");
3885 
3886 	nbytes = request->nbytes;
3887 
3888 	if (nbytes != sizeof (uint64_t)) {
3889 		PR0("VD_OP_GET_ACCESS:  Expected nbytes = %lu, got %lu",
3890 		    sizeof (uint64_t), nbytes);
3891 		return (EINVAL);
3892 	}
3893 
3894 	request->status = ldi_ioctl(vd->ldi_handle[request->slice], MHIOCSTATUS,
3895 	    (intptr_t)NULL, (vd->open_flags | FKIOCTL), kcred, &rval);
3896 
3897 	if (request->status != 0)
3898 		return (0);
3899 
3900 	access = (rval == 0)? VD_ACCESS_ALLOWED : VD_ACCESS_DENIED;
3901 
3902 	if ((rv = ldc_mem_copy(vd->ldc_handle, (char *)&access, 0, &nbytes,
3903 	    request->cookie, request->ncookies, LDC_COPY_OUT)) != 0) {
3904 		PR0("ldc_mem_copy() returned errno %d copying to client", rv);
3905 		return (rv);
3906 	}
3907 
3908 	return (0);
3909 }
3910 
3911 static int
3912 vd_set_access(vd_task_t *task)
3913 {
3914 	uint64_t flags;
3915 	int rv, rval;
3916 	size_t nbytes;
3917 	vd_t *vd = task->vd;
3918 	vd_dring_payload_t *request = task->request;
3919 
3920 	ASSERT(request->operation == VD_OP_SET_ACCESS);
3921 	ASSERT(vd->scsi);
3922 
3923 	nbytes = request->nbytes;
3924 
3925 	if (nbytes != sizeof (uint64_t)) {
3926 		PR0("VD_OP_SET_ACCESS:  Expected nbytes = %lu, got %lu",
3927 		    sizeof (uint64_t), nbytes);
3928 		return (EINVAL);
3929 	}
3930 
3931 	if ((rv = ldc_mem_copy(vd->ldc_handle, (char *)&flags, 0, &nbytes,
3932 	    request->cookie, request->ncookies, LDC_COPY_IN)) != 0) {
3933 		PR0("ldc_mem_copy() returned errno %d copying from client", rv);
3934 		return (rv);
3935 	}
3936 
3937 	if (flags == VD_ACCESS_SET_CLEAR) {
3938 		PR0("Performing VD_OP_SET_ACCESS (CLEAR)");
3939 		request->status = ldi_ioctl(vd->ldi_handle[request->slice],
3940 		    MHIOCRELEASE, (intptr_t)NULL, (vd->open_flags | FKIOCTL),
3941 		    kcred, &rval);
3942 		if (request->status == 0)
3943 			vd->ownership = B_FALSE;
3944 		return (0);
3945 	}
3946 
3947 	/*
3948 	 * As per the VIO spec, the PREEMPT and PRESERVE flags are only valid
3949 	 * when the EXCLUSIVE flag is set.
3950 	 */
3951 	if (!(flags & VD_ACCESS_SET_EXCLUSIVE)) {
3952 		PR0("Invalid VD_OP_SET_ACCESS flags: 0x%lx", flags);
3953 		request->status = EINVAL;
3954 		return (0);
3955 	}
3956 
3957 	switch (flags & (VD_ACCESS_SET_PREEMPT | VD_ACCESS_SET_PRESERVE)) {
3958 
3959 	case VD_ACCESS_SET_PREEMPT | VD_ACCESS_SET_PRESERVE:
3960 		/*
3961 		 * Flags EXCLUSIVE and PREEMPT and PRESERVE. We have to
3962 		 * acquire exclusive access rights, preserve them and we
3963 		 * can use preemption. So we can use the MHIOCTKNOWN ioctl.
3964 		 */
3965 		PR0("Performing VD_OP_SET_ACCESS (EXCLUSIVE|PREEMPT|PRESERVE)");
3966 		request->status = ldi_ioctl(vd->ldi_handle[request->slice],
3967 		    MHIOCTKOWN, (intptr_t)NULL, (vd->open_flags | FKIOCTL),
3968 		    kcred, &rval);
3969 		break;
3970 
3971 	case VD_ACCESS_SET_PRESERVE:
3972 		/*
3973 		 * Flags EXCLUSIVE and PRESERVE. We have to acquire exclusive
3974 		 * access rights and preserve them, but not preempt any other
3975 		 * host. So we need to use the MHIOCTKOWN ioctl to enable the
3976 		 * "preserve" feature but we can not called it directly
3977 		 * because it uses preemption. So before that, we use the
3978 		 * MHIOCQRESERVE ioctl to ensure we can get exclusive rights
3979 		 * without preempting anyone.
3980 		 */
3981 		PR0("Performing VD_OP_SET_ACCESS (EXCLUSIVE|PRESERVE)");
3982 		request->status = ldi_ioctl(vd->ldi_handle[request->slice],
3983 		    MHIOCQRESERVE, (intptr_t)NULL, (vd->open_flags | FKIOCTL),
3984 		    kcred, &rval);
3985 		if (request->status != 0)
3986 			break;
3987 		request->status = ldi_ioctl(vd->ldi_handle[request->slice],
3988 		    MHIOCTKOWN, (intptr_t)NULL, (vd->open_flags | FKIOCTL),
3989 		    kcred, &rval);
3990 		break;
3991 
3992 	case VD_ACCESS_SET_PREEMPT:
3993 		/*
3994 		 * Flags EXCLUSIVE and PREEMPT. We have to acquire exclusive
3995 		 * access rights and we can use preemption. So we try to do
3996 		 * a SCSI reservation, if it fails we reset the disk to clear
3997 		 * any reservation and we try to reserve again.
3998 		 */
3999 		PR0("Performing VD_OP_SET_ACCESS (EXCLUSIVE|PREEMPT)");
4000 		request->status = ldi_ioctl(vd->ldi_handle[request->slice],
4001 		    MHIOCQRESERVE, (intptr_t)NULL, (vd->open_flags | FKIOCTL),
4002 		    kcred, &rval);
4003 		if (request->status == 0)
4004 			break;
4005 
4006 		/* reset the disk */
4007 		(void) vd_scsi_reset(vd);
4008 
4009 		/* try again even if the reset has failed */
4010 		request->status = ldi_ioctl(vd->ldi_handle[request->slice],
4011 		    MHIOCQRESERVE, (intptr_t)NULL, (vd->open_flags | FKIOCTL),
4012 		    kcred, &rval);
4013 		break;
4014 
4015 	case 0:
4016 		/* Flag EXCLUSIVE only. Just issue a SCSI reservation */
4017 		PR0("Performing VD_OP_SET_ACCESS (EXCLUSIVE)");
4018 		request->status = ldi_ioctl(vd->ldi_handle[request->slice],
4019 		    MHIOCQRESERVE, (intptr_t)NULL, (vd->open_flags | FKIOCTL),
4020 		    kcred, &rval);
4021 		break;
4022 	}
4023 
4024 	if (request->status == 0)
4025 		vd->ownership = B_TRUE;
4026 	else
4027 		PR0("VD_OP_SET_ACCESS: error %d", request->status);
4028 
4029 	return (0);
4030 }
4031 
4032 static void
4033 vd_reset_access(vd_t *vd)
4034 {
4035 	int status, rval;
4036 
4037 	if (vd->file || vd->volume || !vd->ownership)
4038 		return;
4039 
4040 	PR0("Releasing disk ownership");
4041 	status = ldi_ioctl(vd->ldi_handle[0], MHIOCRELEASE, (intptr_t)NULL,
4042 	    (vd->open_flags | FKIOCTL), kcred, &rval);
4043 
4044 	/*
4045 	 * An EACCES failure means that there is a reservation conflict,
4046 	 * so we are not the owner of the disk anymore.
4047 	 */
4048 	if (status == 0 || status == EACCES) {
4049 		vd->ownership = B_FALSE;
4050 		return;
4051 	}
4052 
4053 	PR0("Fail to release ownership, error %d", status);
4054 
4055 	/*
4056 	 * We have failed to release the ownership, try to reset the disk
4057 	 * to release reservations.
4058 	 */
4059 	PR0("Resetting disk");
4060 	status = vd_scsi_reset(vd);
4061 
4062 	if (status != 0)
4063 		PR0("Fail to reset disk, error %d", status);
4064 
4065 	/* whatever the result of the reset is, we try the release again */
4066 	status = ldi_ioctl(vd->ldi_handle[0], MHIOCRELEASE, (intptr_t)NULL,
4067 	    (vd->open_flags | FKIOCTL), kcred, &rval);
4068 
4069 	if (status == 0 || status == EACCES) {
4070 		vd->ownership = B_FALSE;
4071 		return;
4072 	}
4073 
4074 	PR0("Fail to release ownership, error %d", status);
4075 
4076 	/*
4077 	 * At this point we have done our best to try to reset the
4078 	 * access rights to the disk and we don't know if we still
4079 	 * own a reservation and if any mechanism to preserve the
4080 	 * ownership is still in place. The ultimate solution would
4081 	 * be to reset the system but this is usually not what we
4082 	 * want to happen.
4083 	 */
4084 
4085 	if (vd_reset_access_failure == A_REBOOT) {
4086 		cmn_err(CE_WARN, VD_RESET_ACCESS_FAILURE_MSG
4087 		    ", rebooting the system", vd->device_path);
4088 		(void) uadmin(A_SHUTDOWN, AD_BOOT, (uintptr_t)NULL);
4089 	} else if (vd_reset_access_failure == A_DUMP) {
4090 		panic(VD_RESET_ACCESS_FAILURE_MSG, vd->device_path);
4091 	}
4092 
4093 	cmn_err(CE_WARN, VD_RESET_ACCESS_FAILURE_MSG, vd->device_path);
4094 }
4095 
4096 /*
4097  * Define the supported operations once the functions for performing them have
4098  * been defined
4099  */
4100 static const vds_operation_t	vds_operation[] = {
4101 #define	X(_s)	#_s, _s
4102 	{X(VD_OP_BREAD),	vd_start_bio,	vd_complete_bio},
4103 	{X(VD_OP_BWRITE),	vd_start_bio,	vd_complete_bio},
4104 	{X(VD_OP_FLUSH),	vd_ioctl,	NULL},
4105 	{X(VD_OP_GET_WCE),	vd_ioctl,	NULL},
4106 	{X(VD_OP_SET_WCE),	vd_ioctl,	NULL},
4107 	{X(VD_OP_GET_VTOC),	vd_ioctl,	NULL},
4108 	{X(VD_OP_SET_VTOC),	vd_ioctl,	NULL},
4109 	{X(VD_OP_GET_DISKGEOM),	vd_ioctl,	NULL},
4110 	{X(VD_OP_SET_DISKGEOM),	vd_ioctl,	NULL},
4111 	{X(VD_OP_GET_EFI),	vd_ioctl,	NULL},
4112 	{X(VD_OP_SET_EFI),	vd_ioctl,	NULL},
4113 	{X(VD_OP_GET_DEVID),	vd_get_devid,	NULL},
4114 	{X(VD_OP_SCSICMD),	vd_ioctl,	NULL},
4115 	{X(VD_OP_RESET),	vd_reset,	NULL},
4116 	{X(VD_OP_GET_CAPACITY),	vd_get_capacity, NULL},
4117 	{X(VD_OP_SET_ACCESS),	vd_set_access,	NULL},
4118 	{X(VD_OP_GET_ACCESS),	vd_get_access,	NULL},
4119 #undef	X
4120 };
4121 
4122 static const size_t	vds_noperations =
4123 	(sizeof (vds_operation))/(sizeof (vds_operation[0]));
4124 
4125 /*
4126  * Process a task specifying a client I/O request
4127  *
4128  * Parameters:
4129  *	task		- structure containing the request sent from client
4130  *
4131  * Return Value
4132  *	0	- success
4133  *	ENOTSUP	- Unknown/Unsupported VD_OP_XXX operation
4134  *	EINVAL	- Invalid disk slice
4135  *	!= 0	- some other non-zero return value from start function
4136  */
4137 static int
4138 vd_do_process_task(vd_task_t *task)
4139 {
4140 	int			i;
4141 	vd_t			*vd		= task->vd;
4142 	vd_dring_payload_t	*request	= task->request;
4143 
4144 	ASSERT(vd != NULL);
4145 	ASSERT(request != NULL);
4146 
4147 	/* Find the requested operation */
4148 	for (i = 0; i < vds_noperations; i++) {
4149 		if (request->operation == vds_operation[i].operation) {
4150 			/* all operations should have a start func */
4151 			ASSERT(vds_operation[i].start != NULL);
4152 
4153 			task->completef = vds_operation[i].complete;
4154 			break;
4155 		}
4156 	}
4157 
4158 	/*
4159 	 * We need to check that the requested operation is permitted
4160 	 * for the particular client that sent it or that the loop above
4161 	 * did not complete without finding the operation type (indicating
4162 	 * that the requested operation is unknown/unimplemented)
4163 	 */
4164 	if ((VD_OP_SUPPORTED(vd->operations, request->operation) == B_FALSE) ||
4165 	    (i == vds_noperations)) {
4166 		PR0("Unsupported operation %u", request->operation);
4167 		request->status = ENOTSUP;
4168 		return (0);
4169 	}
4170 
4171 	/* Range-check slice */
4172 	if (request->slice >= vd->nslices &&
4173 	    ((vd->vdisk_type != VD_DISK_TYPE_DISK && vd_slice_single_slice) ||
4174 	    request->slice != VD_SLICE_NONE)) {
4175 		PR0("Invalid \"slice\" %u (max %u) for virtual disk",
4176 		    request->slice, (vd->nslices - 1));
4177 		request->status = EINVAL;
4178 		return (0);
4179 	}
4180 
4181 	/*
4182 	 * Call the function pointer that starts the operation.
4183 	 */
4184 	return (vds_operation[i].start(task));
4185 }
4186 
4187 /*
4188  * Description:
4189  *	This function is called by both the in-band and descriptor ring
4190  *	message processing functions paths to actually execute the task
4191  *	requested by the vDisk client. It in turn calls its worker
4192  *	function, vd_do_process_task(), to carry our the request.
4193  *
4194  *	Any transport errors (e.g. LDC errors, vDisk protocol errors) are
4195  *	saved in the 'status' field of the task and are propagated back
4196  *	up the call stack to trigger a NACK
4197  *
4198  *	Any request errors (e.g. ENOTTY from an ioctl) are saved in
4199  *	the 'status' field of the request and result in an ACK being sent
4200  *	by the completion handler.
4201  *
4202  * Parameters:
4203  *	task		- structure containing the request sent from client
4204  *
4205  * Return Value
4206  *	0		- successful synchronous request.
4207  *	!= 0		- transport error (e.g. LDC errors, vDisk protocol)
4208  *	EINPROGRESS	- task will be finished in a completion handler
4209  */
4210 static int
4211 vd_process_task(vd_task_t *task)
4212 {
4213 	vd_t	*vd = task->vd;
4214 	int	status;
4215 
4216 	DTRACE_PROBE1(task__start, vd_task_t *, task);
4217 
4218 	task->status =  vd_do_process_task(task);
4219 
4220 	/*
4221 	 * If the task processing function returned EINPROGRESS indicating
4222 	 * that the task needs completing then schedule a taskq entry to
4223 	 * finish it now.
4224 	 *
4225 	 * Otherwise the task processing function returned either zero
4226 	 * indicating that the task was finished in the start function (and we
4227 	 * don't need to wait in a completion function) or the start function
4228 	 * returned an error - in both cases all that needs to happen is the
4229 	 * notification to the vDisk client higher up the call stack.
4230 	 * If the task was using a Descriptor Ring, we need to mark it as done
4231 	 * at this stage.
4232 	 */
4233 	if (task->status == EINPROGRESS) {
4234 		/* Queue a task to complete the operation */
4235 		(void) ddi_taskq_dispatch(vd->completionq, vd_complete,
4236 		    task, DDI_SLEEP);
4237 		return (EINPROGRESS);
4238 	}
4239 
4240 	if (!vd->reset_state && (vd->xfer_mode == VIO_DRING_MODE_V1_0)) {
4241 		/* Update the dring element if it's a dring client */
4242 		status = vd_mark_elem_done(vd, task->index,
4243 		    task->request->status, task->request->nbytes);
4244 		if (status == ECONNRESET)
4245 			vd_mark_in_reset(vd);
4246 		else if (status == EACCES)
4247 			vd_need_reset(vd, B_TRUE);
4248 	}
4249 
4250 	return (task->status);
4251 }
4252 
4253 /*
4254  * Return true if the "type", "subtype", and "env" fields of the "tag" first
4255  * argument match the corresponding remaining arguments; otherwise, return false
4256  */
4257 boolean_t
4258 vd_msgtype(vio_msg_tag_t *tag, int type, int subtype, int env)
4259 {
4260 	return ((tag->vio_msgtype == type) &&
4261 	    (tag->vio_subtype == subtype) &&
4262 	    (tag->vio_subtype_env == env)) ? B_TRUE : B_FALSE;
4263 }
4264 
4265 /*
4266  * Check whether the major/minor version specified in "ver_msg" is supported
4267  * by this server.
4268  */
4269 static boolean_t
4270 vds_supported_version(vio_ver_msg_t *ver_msg)
4271 {
4272 	for (int i = 0; i < vds_num_versions; i++) {
4273 		ASSERT(vds_version[i].major > 0);
4274 		ASSERT((i == 0) ||
4275 		    (vds_version[i].major < vds_version[i-1].major));
4276 
4277 		/*
4278 		 * If the major versions match, adjust the minor version, if
4279 		 * necessary, down to the highest value supported by this
4280 		 * server and return true so this message will get "ack"ed;
4281 		 * the client should also support all minor versions lower
4282 		 * than the value it sent
4283 		 */
4284 		if (ver_msg->ver_major == vds_version[i].major) {
4285 			if (ver_msg->ver_minor > vds_version[i].minor) {
4286 				PR0("Adjusting minor version from %u to %u",
4287 				    ver_msg->ver_minor, vds_version[i].minor);
4288 				ver_msg->ver_minor = vds_version[i].minor;
4289 			}
4290 			return (B_TRUE);
4291 		}
4292 
4293 		/*
4294 		 * If the message contains a higher major version number, set
4295 		 * the message's major/minor versions to the current values
4296 		 * and return false, so this message will get "nack"ed with
4297 		 * these values, and the client will potentially try again
4298 		 * with the same or a lower version
4299 		 */
4300 		if (ver_msg->ver_major > vds_version[i].major) {
4301 			ver_msg->ver_major = vds_version[i].major;
4302 			ver_msg->ver_minor = vds_version[i].minor;
4303 			return (B_FALSE);
4304 		}
4305 
4306 		/*
4307 		 * Otherwise, the message's major version is less than the
4308 		 * current major version, so continue the loop to the next
4309 		 * (lower) supported version
4310 		 */
4311 	}
4312 
4313 	/*
4314 	 * No common version was found; "ground" the version pair in the
4315 	 * message to terminate negotiation
4316 	 */
4317 	ver_msg->ver_major = 0;
4318 	ver_msg->ver_minor = 0;
4319 	return (B_FALSE);
4320 }
4321 
4322 /*
4323  * Process a version message from a client.  vds expects to receive version
4324  * messages from clients seeking service, but never issues version messages
4325  * itself; therefore, vds can ACK or NACK client version messages, but does
4326  * not expect to receive version-message ACKs or NACKs (and will treat such
4327  * messages as invalid).
4328  */
4329 static int
4330 vd_process_ver_msg(vd_t *vd, vio_msg_t *msg, size_t msglen)
4331 {
4332 	vio_ver_msg_t	*ver_msg = (vio_ver_msg_t *)msg;
4333 
4334 
4335 	ASSERT(msglen >= sizeof (msg->tag));
4336 
4337 	if (!vd_msgtype(&msg->tag, VIO_TYPE_CTRL, VIO_SUBTYPE_INFO,
4338 	    VIO_VER_INFO)) {
4339 		return (ENOMSG);	/* not a version message */
4340 	}
4341 
4342 	if (msglen != sizeof (*ver_msg)) {
4343 		PR0("Expected %lu-byte version message; "
4344 		    "received %lu bytes", sizeof (*ver_msg), msglen);
4345 		return (EBADMSG);
4346 	}
4347 
4348 	if (ver_msg->dev_class != VDEV_DISK) {
4349 		PR0("Expected device class %u (disk); received %u",
4350 		    VDEV_DISK, ver_msg->dev_class);
4351 		return (EBADMSG);
4352 	}
4353 
4354 	/*
4355 	 * We're talking to the expected kind of client; set our device class
4356 	 * for "ack/nack" back to the client
4357 	 */
4358 	ver_msg->dev_class = VDEV_DISK_SERVER;
4359 
4360 	/*
4361 	 * Check whether the (valid) version message specifies a version
4362 	 * supported by this server.  If the version is not supported, return
4363 	 * EBADMSG so the message will get "nack"ed; vds_supported_version()
4364 	 * will have updated the message with a supported version for the
4365 	 * client to consider
4366 	 */
4367 	if (!vds_supported_version(ver_msg))
4368 		return (EBADMSG);
4369 
4370 
4371 	/*
4372 	 * A version has been agreed upon; use the client's SID for
4373 	 * communication on this channel now
4374 	 */
4375 	ASSERT(!(vd->initialized & VD_SID));
4376 	vd->sid = ver_msg->tag.vio_sid;
4377 	vd->initialized |= VD_SID;
4378 
4379 	/*
4380 	 * Store the negotiated major and minor version values in the "vd" data
4381 	 * structure so that we can check if certain operations are supported
4382 	 * by the client.
4383 	 */
4384 	vd->version.major = ver_msg->ver_major;
4385 	vd->version.minor = ver_msg->ver_minor;
4386 
4387 	PR0("Using major version %u, minor version %u",
4388 	    ver_msg->ver_major, ver_msg->ver_minor);
4389 	return (0);
4390 }
4391 
4392 static void
4393 vd_set_exported_operations(vd_t *vd)
4394 {
4395 	vd->operations = 0;	/* clear field */
4396 
4397 	/*
4398 	 * We need to check from the highest version supported to the
4399 	 * lowest because versions with a higher minor number implicitly
4400 	 * support versions with a lower minor number.
4401 	 */
4402 	if (vio_ver_is_supported(vd->version, 1, 1)) {
4403 		ASSERT(vd->open_flags & FREAD);
4404 		vd->operations |= VD_OP_MASK_READ | (1 << VD_OP_GET_CAPACITY);
4405 
4406 		if (vd->open_flags & FWRITE)
4407 			vd->operations |= VD_OP_MASK_WRITE;
4408 
4409 		if (vd->scsi)
4410 			vd->operations |= VD_OP_MASK_SCSI;
4411 
4412 		if (VD_DSKIMG(vd) && vd_dskimg_is_iso_image(vd)) {
4413 			/*
4414 			 * can't write to ISO images, make sure that write
4415 			 * support is not set in case administrator did not
4416 			 * use "options=ro" when doing an ldm add-vdsdev
4417 			 */
4418 			vd->operations &= ~VD_OP_MASK_WRITE;
4419 		}
4420 	} else if (vio_ver_is_supported(vd->version, 1, 0)) {
4421 		vd->operations = VD_OP_MASK_READ | VD_OP_MASK_WRITE;
4422 	}
4423 
4424 	/* we should have already agreed on a version */
4425 	ASSERT(vd->operations != 0);
4426 }
4427 
4428 static int
4429 vd_process_attr_msg(vd_t *vd, vio_msg_t *msg, size_t msglen)
4430 {
4431 	vd_attr_msg_t	*attr_msg = (vd_attr_msg_t *)msg;
4432 	int		status, retry = 0;
4433 
4434 
4435 	ASSERT(msglen >= sizeof (msg->tag));
4436 
4437 	if (!vd_msgtype(&msg->tag, VIO_TYPE_CTRL, VIO_SUBTYPE_INFO,
4438 	    VIO_ATTR_INFO)) {
4439 		PR0("Message is not an attribute message");
4440 		return (ENOMSG);
4441 	}
4442 
4443 	if (msglen != sizeof (*attr_msg)) {
4444 		PR0("Expected %lu-byte attribute message; "
4445 		    "received %lu bytes", sizeof (*attr_msg), msglen);
4446 		return (EBADMSG);
4447 	}
4448 
4449 	if (attr_msg->max_xfer_sz == 0) {
4450 		PR0("Received maximum transfer size of 0 from client");
4451 		return (EBADMSG);
4452 	}
4453 
4454 	if ((attr_msg->xfer_mode != VIO_DESC_MODE) &&
4455 	    (attr_msg->xfer_mode != VIO_DRING_MODE_V1_0)) {
4456 		PR0("Client requested unsupported transfer mode");
4457 		return (EBADMSG);
4458 	}
4459 
4460 	/*
4461 	 * check if the underlying disk is ready, if not try accessing
4462 	 * the device again. Open the vdisk device and extract info
4463 	 * about it, as this is needed to respond to the attr info msg
4464 	 */
4465 	if ((vd->initialized & VD_DISK_READY) == 0) {
4466 		PR0("Retry setting up disk (%s)", vd->device_path);
4467 		do {
4468 			status = vd_setup_vd(vd);
4469 			if (status != EAGAIN || ++retry > vds_dev_retries)
4470 				break;
4471 
4472 			/* incremental delay */
4473 			delay(drv_usectohz(vds_dev_delay));
4474 
4475 			/* if vdisk is no longer enabled - return error */
4476 			if (!vd_enabled(vd))
4477 				return (ENXIO);
4478 
4479 		} while (status == EAGAIN);
4480 
4481 		if (status)
4482 			return (ENXIO);
4483 
4484 		vd->initialized |= VD_DISK_READY;
4485 		ASSERT(vd->nslices > 0 && vd->nslices <= V_NUMPAR);
4486 		PR0("vdisk_type = %s, volume = %s, file = %s, nslices = %u",
4487 		    ((vd->vdisk_type == VD_DISK_TYPE_DISK) ? "disk" : "slice"),
4488 		    (vd->volume ? "yes" : "no"),
4489 		    (vd->file ? "yes" : "no"),
4490 		    vd->nslices);
4491 	}
4492 
4493 	/* Success:  valid message and transfer mode */
4494 	vd->xfer_mode = attr_msg->xfer_mode;
4495 
4496 	if (vd->xfer_mode == VIO_DESC_MODE) {
4497 
4498 		/*
4499 		 * The vd_dring_inband_msg_t contains one cookie; need room
4500 		 * for up to n-1 more cookies, where "n" is the number of full
4501 		 * pages plus possibly one partial page required to cover
4502 		 * "max_xfer_sz".  Add room for one more cookie if
4503 		 * "max_xfer_sz" isn't an integral multiple of the page size.
4504 		 * Must first get the maximum transfer size in bytes.
4505 		 */
4506 		size_t	max_xfer_bytes = attr_msg->vdisk_block_size ?
4507 		    attr_msg->vdisk_block_size * attr_msg->max_xfer_sz :
4508 		    attr_msg->max_xfer_sz;
4509 		size_t	max_inband_msglen =
4510 		    sizeof (vd_dring_inband_msg_t) +
4511 		    ((max_xfer_bytes/PAGESIZE +
4512 		    ((max_xfer_bytes % PAGESIZE) ? 1 : 0))*
4513 		    (sizeof (ldc_mem_cookie_t)));
4514 
4515 		/*
4516 		 * Set the maximum expected message length to
4517 		 * accommodate in-band-descriptor messages with all
4518 		 * their cookies
4519 		 */
4520 		vd->max_msglen = MAX(vd->max_msglen, max_inband_msglen);
4521 
4522 		/*
4523 		 * Initialize the data structure for processing in-band I/O
4524 		 * request descriptors
4525 		 */
4526 		vd->inband_task.vd	= vd;
4527 		vd->inband_task.msg	= kmem_alloc(vd->max_msglen, KM_SLEEP);
4528 		vd->inband_task.index	= 0;
4529 		vd->inband_task.type	= VD_FINAL_RANGE_TASK;	/* range == 1 */
4530 	}
4531 
4532 	/* Return the device's block size and max transfer size to the client */
4533 	attr_msg->vdisk_block_size	= vd->vdisk_bsize;
4534 	attr_msg->max_xfer_sz		= vd->max_xfer_sz;
4535 
4536 	attr_msg->vdisk_size = vd->vdisk_size;
4537 	attr_msg->vdisk_type = (vd_slice_single_slice)? vd->vdisk_type :
4538 	    VD_DISK_TYPE_DISK;
4539 	attr_msg->vdisk_media = vd->vdisk_media;
4540 
4541 	/* Discover and save the list of supported VD_OP_XXX operations */
4542 	vd_set_exported_operations(vd);
4543 	attr_msg->operations = vd->operations;
4544 
4545 	PR0("%s", VD_CLIENT(vd));
4546 
4547 	ASSERT(vd->dring_task == NULL);
4548 
4549 	return (0);
4550 }
4551 
4552 static int
4553 vd_process_dring_reg_msg(vd_t *vd, vio_msg_t *msg, size_t msglen)
4554 {
4555 	int			status;
4556 	size_t			expected;
4557 	ldc_mem_info_t		dring_minfo;
4558 	uint8_t			mtype;
4559 	vio_dring_reg_msg_t	*reg_msg = (vio_dring_reg_msg_t *)msg;
4560 
4561 
4562 	ASSERT(msglen >= sizeof (msg->tag));
4563 
4564 	if (!vd_msgtype(&msg->tag, VIO_TYPE_CTRL, VIO_SUBTYPE_INFO,
4565 	    VIO_DRING_REG)) {
4566 		PR0("Message is not a register-dring message");
4567 		return (ENOMSG);
4568 	}
4569 
4570 	if (msglen < sizeof (*reg_msg)) {
4571 		PR0("Expected at least %lu-byte register-dring message; "
4572 		    "received %lu bytes", sizeof (*reg_msg), msglen);
4573 		return (EBADMSG);
4574 	}
4575 
4576 	expected = sizeof (*reg_msg) +
4577 	    (reg_msg->ncookies - 1)*(sizeof (reg_msg->cookie[0]));
4578 	if (msglen != expected) {
4579 		PR0("Expected %lu-byte register-dring message; "
4580 		    "received %lu bytes", expected, msglen);
4581 		return (EBADMSG);
4582 	}
4583 
4584 	if (vd->initialized & VD_DRING) {
4585 		PR0("A dring was previously registered; only support one");
4586 		return (EBADMSG);
4587 	}
4588 
4589 	if (reg_msg->num_descriptors > INT32_MAX) {
4590 		PR0("reg_msg->num_descriptors = %u; must be <= %u (%s)",
4591 		    reg_msg->ncookies, INT32_MAX, STRINGIZE(INT32_MAX));
4592 		return (EBADMSG);
4593 	}
4594 
4595 	if (reg_msg->ncookies != 1) {
4596 		/*
4597 		 * In addition to fixing the assertion in the success case
4598 		 * below, supporting drings which require more than one
4599 		 * "cookie" requires increasing the value of vd->max_msglen
4600 		 * somewhere in the code path prior to receiving the message
4601 		 * which results in calling this function.  Note that without
4602 		 * making this change, the larger message size required to
4603 		 * accommodate multiple cookies cannot be successfully
4604 		 * received, so this function will not even get called.
4605 		 * Gracefully accommodating more dring cookies might
4606 		 * reasonably demand exchanging an additional attribute or
4607 		 * making a minor protocol adjustment
4608 		 */
4609 		PR0("reg_msg->ncookies = %u != 1", reg_msg->ncookies);
4610 		return (EBADMSG);
4611 	}
4612 
4613 	if (vd_direct_mapped_drings)
4614 		mtype = LDC_DIRECT_MAP;
4615 	else
4616 		mtype = LDC_SHADOW_MAP;
4617 
4618 	status = ldc_mem_dring_map(vd->ldc_handle, reg_msg->cookie,
4619 	    reg_msg->ncookies, reg_msg->num_descriptors,
4620 	    reg_msg->descriptor_size, mtype, &vd->dring_handle);
4621 	if (status != 0) {
4622 		PR0("ldc_mem_dring_map() returned errno %d", status);
4623 		return (status);
4624 	}
4625 
4626 	/*
4627 	 * To remove the need for this assertion, must call
4628 	 * ldc_mem_dring_nextcookie() successfully ncookies-1 times after a
4629 	 * successful call to ldc_mem_dring_map()
4630 	 */
4631 	ASSERT(reg_msg->ncookies == 1);
4632 
4633 	if ((status =
4634 	    ldc_mem_dring_info(vd->dring_handle, &dring_minfo)) != 0) {
4635 		PR0("ldc_mem_dring_info() returned errno %d", status);
4636 		if ((status = ldc_mem_dring_unmap(vd->dring_handle)) != 0)
4637 			PR0("ldc_mem_dring_unmap() returned errno %d", status);
4638 		return (status);
4639 	}
4640 
4641 	if (dring_minfo.vaddr == NULL) {
4642 		PR0("Descriptor ring virtual address is NULL");
4643 		return (ENXIO);
4644 	}
4645 
4646 
4647 	/* Initialize for valid message and mapped dring */
4648 	vd->initialized |= VD_DRING;
4649 	vd->dring_ident = 1;	/* "There Can Be Only One" */
4650 	vd->dring = dring_minfo.vaddr;
4651 	vd->descriptor_size = reg_msg->descriptor_size;
4652 	vd->dring_len = reg_msg->num_descriptors;
4653 	vd->dring_mtype = dring_minfo.mtype;
4654 	reg_msg->dring_ident = vd->dring_ident;
4655 	PR1("descriptor size = %u, dring length = %u",
4656 	    vd->descriptor_size, vd->dring_len);
4657 
4658 	/*
4659 	 * Allocate and initialize a "shadow" array of data structures for
4660 	 * tasks to process I/O requests in dring elements
4661 	 */
4662 	vd->dring_task =
4663 	    kmem_zalloc((sizeof (*vd->dring_task)) * vd->dring_len, KM_SLEEP);
4664 	for (int i = 0; i < vd->dring_len; i++) {
4665 		vd->dring_task[i].vd		= vd;
4666 		vd->dring_task[i].index		= i;
4667 
4668 		status = ldc_mem_alloc_handle(vd->ldc_handle,
4669 		    &(vd->dring_task[i].mhdl));
4670 		if (status) {
4671 			PR0("ldc_mem_alloc_handle() returned err %d ", status);
4672 			return (ENXIO);
4673 		}
4674 
4675 		/*
4676 		 * The descriptor payload varies in length. Calculate its
4677 		 * size by subtracting the header size from the total
4678 		 * descriptor size.
4679 		 */
4680 		vd->dring_task[i].request = kmem_zalloc((vd->descriptor_size -
4681 		    sizeof (vio_dring_entry_hdr_t)), KM_SLEEP);
4682 		vd->dring_task[i].msg = kmem_alloc(vd->max_msglen, KM_SLEEP);
4683 	}
4684 
4685 	if (vd->file || vd->zvol) {
4686 		vd->write_queue =
4687 		    kmem_zalloc(sizeof (buf_t *) * vd->dring_len, KM_SLEEP);
4688 	}
4689 
4690 	return (0);
4691 }
4692 
4693 static int
4694 vd_process_dring_unreg_msg(vd_t *vd, vio_msg_t *msg, size_t msglen)
4695 {
4696 	vio_dring_unreg_msg_t	*unreg_msg = (vio_dring_unreg_msg_t *)msg;
4697 
4698 
4699 	ASSERT(msglen >= sizeof (msg->tag));
4700 
4701 	if (!vd_msgtype(&msg->tag, VIO_TYPE_CTRL, VIO_SUBTYPE_INFO,
4702 	    VIO_DRING_UNREG)) {
4703 		PR0("Message is not an unregister-dring message");
4704 		return (ENOMSG);
4705 	}
4706 
4707 	if (msglen != sizeof (*unreg_msg)) {
4708 		PR0("Expected %lu-byte unregister-dring message; "
4709 		    "received %lu bytes", sizeof (*unreg_msg), msglen);
4710 		return (EBADMSG);
4711 	}
4712 
4713 	if (unreg_msg->dring_ident != vd->dring_ident) {
4714 		PR0("Expected dring ident %lu; received %lu",
4715 		    vd->dring_ident, unreg_msg->dring_ident);
4716 		return (EBADMSG);
4717 	}
4718 
4719 	return (0);
4720 }
4721 
4722 static int
4723 process_rdx_msg(vio_msg_t *msg, size_t msglen)
4724 {
4725 	ASSERT(msglen >= sizeof (msg->tag));
4726 
4727 	if (!vd_msgtype(&msg->tag, VIO_TYPE_CTRL, VIO_SUBTYPE_INFO, VIO_RDX)) {
4728 		PR0("Message is not an RDX message");
4729 		return (ENOMSG);
4730 	}
4731 
4732 	if (msglen != sizeof (vio_rdx_msg_t)) {
4733 		PR0("Expected %lu-byte RDX message; received %lu bytes",
4734 		    sizeof (vio_rdx_msg_t), msglen);
4735 		return (EBADMSG);
4736 	}
4737 
4738 	PR0("Valid RDX message");
4739 	return (0);
4740 }
4741 
4742 static int
4743 vd_check_seq_num(vd_t *vd, uint64_t seq_num)
4744 {
4745 	if ((vd->initialized & VD_SEQ_NUM) && (seq_num != vd->seq_num + 1)) {
4746 		PR0("Received seq_num %lu; expected %lu",
4747 		    seq_num, (vd->seq_num + 1));
4748 		PR0("initiating soft reset");
4749 		vd_need_reset(vd, B_FALSE);
4750 		return (1);
4751 	}
4752 
4753 	vd->seq_num = seq_num;
4754 	vd->initialized |= VD_SEQ_NUM;	/* superfluous after first time... */
4755 	return (0);
4756 }
4757 
4758 /*
4759  * Return the expected size of an inband-descriptor message with all the
4760  * cookies it claims to include
4761  */
4762 static size_t
4763 expected_inband_size(vd_dring_inband_msg_t *msg)
4764 {
4765 	return ((sizeof (*msg)) +
4766 	    (msg->payload.ncookies - 1)*(sizeof (msg->payload.cookie[0])));
4767 }
4768 
4769 /*
4770  * Process an in-band descriptor message:  used with clients like OBP, with
4771  * which vds exchanges descriptors within VIO message payloads, rather than
4772  * operating on them within a descriptor ring
4773  */
4774 static int
4775 vd_process_desc_msg(vd_t *vd, vio_msg_t *msg, size_t msglen)
4776 {
4777 	size_t			expected;
4778 	vd_dring_inband_msg_t	*desc_msg = (vd_dring_inband_msg_t *)msg;
4779 
4780 
4781 	ASSERT(msglen >= sizeof (msg->tag));
4782 
4783 	if (!vd_msgtype(&msg->tag, VIO_TYPE_DATA, VIO_SUBTYPE_INFO,
4784 	    VIO_DESC_DATA)) {
4785 		PR1("Message is not an in-band-descriptor message");
4786 		return (ENOMSG);
4787 	}
4788 
4789 	if (msglen < sizeof (*desc_msg)) {
4790 		PR0("Expected at least %lu-byte descriptor message; "
4791 		    "received %lu bytes", sizeof (*desc_msg), msglen);
4792 		return (EBADMSG);
4793 	}
4794 
4795 	if (msglen != (expected = expected_inband_size(desc_msg))) {
4796 		PR0("Expected %lu-byte descriptor message; "
4797 		    "received %lu bytes", expected, msglen);
4798 		return (EBADMSG);
4799 	}
4800 
4801 	if (vd_check_seq_num(vd, desc_msg->hdr.seq_num) != 0)
4802 		return (EBADMSG);
4803 
4804 	/*
4805 	 * Valid message:  Set up the in-band descriptor task and process the
4806 	 * request.  Arrange to acknowledge the client's message, unless an
4807 	 * error processing the descriptor task results in setting
4808 	 * VIO_SUBTYPE_NACK
4809 	 */
4810 	PR1("Valid in-band-descriptor message");
4811 	msg->tag.vio_subtype = VIO_SUBTYPE_ACK;
4812 
4813 	ASSERT(vd->inband_task.msg != NULL);
4814 
4815 	bcopy(msg, vd->inband_task.msg, msglen);
4816 	vd->inband_task.msglen	= msglen;
4817 
4818 	/*
4819 	 * The task request is now the payload of the message
4820 	 * that was just copied into the body of the task.
4821 	 */
4822 	desc_msg = (vd_dring_inband_msg_t *)vd->inband_task.msg;
4823 	vd->inband_task.request	= &desc_msg->payload;
4824 
4825 	return (vd_process_task(&vd->inband_task));
4826 }
4827 
4828 static int
4829 vd_process_element(vd_t *vd, vd_task_type_t type, uint32_t idx,
4830     vio_msg_t *msg, size_t msglen)
4831 {
4832 	int			status;
4833 	boolean_t		ready;
4834 	on_trap_data_t		otd;
4835 	vd_dring_entry_t	*elem = VD_DRING_ELEM(idx);
4836 
4837 	/* Accept the updated dring element */
4838 	if ((status = VIO_DRING_ACQUIRE(&otd, vd->dring_mtype,
4839 	    vd->dring_handle, idx, idx)) != 0) {
4840 		return (status);
4841 	}
4842 	ready = (elem->hdr.dstate == VIO_DESC_READY);
4843 	if (ready) {
4844 		elem->hdr.dstate = VIO_DESC_ACCEPTED;
4845 		bcopy(&elem->payload, vd->dring_task[idx].request,
4846 		    (vd->descriptor_size - sizeof (vio_dring_entry_hdr_t)));
4847 	} else {
4848 		PR0("descriptor %u not ready", idx);
4849 		VD_DUMP_DRING_ELEM(elem);
4850 	}
4851 	if ((status = VIO_DRING_RELEASE(vd->dring_mtype,
4852 	    vd->dring_handle, idx, idx)) != 0) {
4853 		PR0("VIO_DRING_RELEASE() returned errno %d", status);
4854 		return (status);
4855 	}
4856 	if (!ready)
4857 		return (EBUSY);
4858 
4859 
4860 	/* Initialize a task and process the accepted element */
4861 	PR1("Processing dring element %u", idx);
4862 	vd->dring_task[idx].type	= type;
4863 
4864 	/* duplicate msg buf for cookies etc. */
4865 	bcopy(msg, vd->dring_task[idx].msg, msglen);
4866 
4867 	vd->dring_task[idx].msglen	= msglen;
4868 	return (vd_process_task(&vd->dring_task[idx]));
4869 }
4870 
4871 static int
4872 vd_process_element_range(vd_t *vd, int start, int end,
4873     vio_msg_t *msg, size_t msglen)
4874 {
4875 	int		i, n, nelem, status = 0;
4876 	boolean_t	inprogress = B_FALSE;
4877 	vd_task_type_t	type;
4878 
4879 
4880 	ASSERT(start >= 0);
4881 	ASSERT(end >= 0);
4882 
4883 	/*
4884 	 * Arrange to acknowledge the client's message, unless an error
4885 	 * processing one of the dring elements results in setting
4886 	 * VIO_SUBTYPE_NACK
4887 	 */
4888 	msg->tag.vio_subtype = VIO_SUBTYPE_ACK;
4889 
4890 	/*
4891 	 * Process the dring elements in the range
4892 	 */
4893 	nelem = ((end < start) ? end + vd->dring_len : end) - start + 1;
4894 	for (i = start, n = nelem; n > 0; i = (i + 1) % vd->dring_len, n--) {
4895 		((vio_dring_msg_t *)msg)->end_idx = i;
4896 		type = (n == 1) ? VD_FINAL_RANGE_TASK : VD_NONFINAL_RANGE_TASK;
4897 		status = vd_process_element(vd, type, i, msg, msglen);
4898 		if (status == EINPROGRESS)
4899 			inprogress = B_TRUE;
4900 		else if (status != 0)
4901 			break;
4902 	}
4903 
4904 	/*
4905 	 * If some, but not all, operations of a multi-element range are in
4906 	 * progress, wait for other operations to complete before returning
4907 	 * (which will result in "ack" or "nack" of the message).  Note that
4908 	 * all outstanding operations will need to complete, not just the ones
4909 	 * corresponding to the current range of dring elements; howevever, as
4910 	 * this situation is an error case, performance is less critical.
4911 	 */
4912 	if ((nelem > 1) && (status != EINPROGRESS) && inprogress) {
4913 		if (vd->ioq != NULL)
4914 			ddi_taskq_wait(vd->ioq);
4915 		ddi_taskq_wait(vd->completionq);
4916 	}
4917 
4918 	return (status);
4919 }
4920 
4921 static int
4922 vd_process_dring_msg(vd_t *vd, vio_msg_t *msg, size_t msglen)
4923 {
4924 	vio_dring_msg_t	*dring_msg = (vio_dring_msg_t *)msg;
4925 
4926 
4927 	ASSERT(msglen >= sizeof (msg->tag));
4928 
4929 	if (!vd_msgtype(&msg->tag, VIO_TYPE_DATA, VIO_SUBTYPE_INFO,
4930 	    VIO_DRING_DATA)) {
4931 		PR1("Message is not a dring-data message");
4932 		return (ENOMSG);
4933 	}
4934 
4935 	if (msglen != sizeof (*dring_msg)) {
4936 		PR0("Expected %lu-byte dring message; received %lu bytes",
4937 		    sizeof (*dring_msg), msglen);
4938 		return (EBADMSG);
4939 	}
4940 
4941 	if (vd_check_seq_num(vd, dring_msg->seq_num) != 0)
4942 		return (EBADMSG);
4943 
4944 	if (dring_msg->dring_ident != vd->dring_ident) {
4945 		PR0("Expected dring ident %lu; received ident %lu",
4946 		    vd->dring_ident, dring_msg->dring_ident);
4947 		return (EBADMSG);
4948 	}
4949 
4950 	if (dring_msg->start_idx >= vd->dring_len) {
4951 		PR0("\"start_idx\" = %u; must be less than %u",
4952 		    dring_msg->start_idx, vd->dring_len);
4953 		return (EBADMSG);
4954 	}
4955 
4956 	if ((dring_msg->end_idx < 0) ||
4957 	    (dring_msg->end_idx >= vd->dring_len)) {
4958 		PR0("\"end_idx\" = %u; must be >= 0 and less than %u",
4959 		    dring_msg->end_idx, vd->dring_len);
4960 		return (EBADMSG);
4961 	}
4962 
4963 	/* Valid message; process range of updated dring elements */
4964 	PR1("Processing descriptor range, start = %u, end = %u",
4965 	    dring_msg->start_idx, dring_msg->end_idx);
4966 	return (vd_process_element_range(vd, dring_msg->start_idx,
4967 	    dring_msg->end_idx, msg, msglen));
4968 }
4969 
4970 static int
4971 recv_msg(ldc_handle_t ldc_handle, void *msg, size_t *nbytes)
4972 {
4973 	int	retry, status;
4974 	size_t	size = *nbytes;
4975 
4976 
4977 	for (retry = 0, status = ETIMEDOUT;
4978 	    retry < vds_ldc_retries && status == ETIMEDOUT;
4979 	    retry++) {
4980 		PR1("ldc_read() attempt %d", (retry + 1));
4981 		*nbytes = size;
4982 		status = ldc_read(ldc_handle, msg, nbytes);
4983 	}
4984 
4985 	if (status) {
4986 		PR0("ldc_read() returned errno %d", status);
4987 		if (status != ECONNRESET)
4988 			return (ENOMSG);
4989 		return (status);
4990 	} else if (*nbytes == 0) {
4991 		PR1("ldc_read() returned 0 and no message read");
4992 		return (ENOMSG);
4993 	}
4994 
4995 	PR1("RCVD %lu-byte message", *nbytes);
4996 	return (0);
4997 }
4998 
4999 static int
5000 vd_do_process_msg(vd_t *vd, vio_msg_t *msg, size_t msglen)
5001 {
5002 	int		status;
5003 
5004 
5005 	PR1("Processing (%x/%x/%x) message", msg->tag.vio_msgtype,
5006 	    msg->tag.vio_subtype, msg->tag.vio_subtype_env);
5007 #ifdef	DEBUG
5008 	vd_decode_tag(msg);
5009 #endif
5010 
5011 	/*
5012 	 * Validate session ID up front, since it applies to all messages
5013 	 * once set
5014 	 */
5015 	if ((msg->tag.vio_sid != vd->sid) && (vd->initialized & VD_SID)) {
5016 		PR0("Expected SID %u, received %u", vd->sid,
5017 		    msg->tag.vio_sid);
5018 		return (EBADMSG);
5019 	}
5020 
5021 	PR1("\tWhile in state %d (%s)", vd->state, vd_decode_state(vd->state));
5022 
5023 	/*
5024 	 * Process the received message based on connection state
5025 	 */
5026 	switch (vd->state) {
5027 	case VD_STATE_INIT:	/* expect version message */
5028 		if ((status = vd_process_ver_msg(vd, msg, msglen)) != 0)
5029 			return (status);
5030 
5031 		/* Version negotiated, move to that state */
5032 		vd->state = VD_STATE_VER;
5033 		return (0);
5034 
5035 	case VD_STATE_VER:	/* expect attribute message */
5036 		if ((status = vd_process_attr_msg(vd, msg, msglen)) != 0)
5037 			return (status);
5038 
5039 		/* Attributes exchanged, move to that state */
5040 		vd->state = VD_STATE_ATTR;
5041 		return (0);
5042 
5043 	case VD_STATE_ATTR:
5044 		switch (vd->xfer_mode) {
5045 		case VIO_DESC_MODE:	/* expect RDX message */
5046 			if ((status = process_rdx_msg(msg, msglen)) != 0)
5047 				return (status);
5048 
5049 			/* Ready to receive in-band descriptors */
5050 			vd->state = VD_STATE_DATA;
5051 			return (0);
5052 
5053 		case VIO_DRING_MODE_V1_0:  /* expect register-dring message */
5054 			if ((status =
5055 			    vd_process_dring_reg_msg(vd, msg, msglen)) != 0)
5056 				return (status);
5057 
5058 			/* One dring negotiated, move to that state */
5059 			vd->state = VD_STATE_DRING;
5060 			return (0);
5061 
5062 		default:
5063 			ASSERT("Unsupported transfer mode");
5064 			PR0("Unsupported transfer mode");
5065 			return (ENOTSUP);
5066 		}
5067 
5068 	case VD_STATE_DRING:	/* expect RDX, register-dring, or unreg-dring */
5069 		if ((status = process_rdx_msg(msg, msglen)) == 0) {
5070 			/* Ready to receive data */
5071 			vd->state = VD_STATE_DATA;
5072 			return (0);
5073 		} else if (status != ENOMSG) {
5074 			return (status);
5075 		}
5076 
5077 
5078 		/*
5079 		 * If another register-dring message is received, stay in
5080 		 * dring state in case the client sends RDX; although the
5081 		 * protocol allows multiple drings, this server does not
5082 		 * support using more than one
5083 		 */
5084 		if ((status =
5085 		    vd_process_dring_reg_msg(vd, msg, msglen)) != ENOMSG)
5086 			return (status);
5087 
5088 		/*
5089 		 * Acknowledge an unregister-dring message, but reset the
5090 		 * connection anyway:  Although the protocol allows
5091 		 * unregistering drings, this server cannot serve a vdisk
5092 		 * without its only dring
5093 		 */
5094 		status = vd_process_dring_unreg_msg(vd, msg, msglen);
5095 		return ((status == 0) ? ENOTSUP : status);
5096 
5097 	case VD_STATE_DATA:
5098 		switch (vd->xfer_mode) {
5099 		case VIO_DESC_MODE:	/* expect in-band-descriptor message */
5100 			return (vd_process_desc_msg(vd, msg, msglen));
5101 
5102 		case VIO_DRING_MODE_V1_0: /* expect dring-data or unreg-dring */
5103 			/*
5104 			 * Typically expect dring-data messages, so handle
5105 			 * them first
5106 			 */
5107 			if ((status = vd_process_dring_msg(vd, msg,
5108 			    msglen)) != ENOMSG)
5109 				return (status);
5110 
5111 			/*
5112 			 * Acknowledge an unregister-dring message, but reset
5113 			 * the connection anyway:  Although the protocol
5114 			 * allows unregistering drings, this server cannot
5115 			 * serve a vdisk without its only dring
5116 			 */
5117 			status = vd_process_dring_unreg_msg(vd, msg, msglen);
5118 			return ((status == 0) ? ENOTSUP : status);
5119 
5120 		default:
5121 			ASSERT("Unsupported transfer mode");
5122 			PR0("Unsupported transfer mode");
5123 			return (ENOTSUP);
5124 		}
5125 
5126 	default:
5127 		ASSERT("Invalid client connection state");
5128 		PR0("Invalid client connection state");
5129 		return (ENOTSUP);
5130 	}
5131 }
5132 
5133 static int
5134 vd_process_msg(vd_t *vd, vio_msg_t *msg, size_t msglen)
5135 {
5136 	int		status;
5137 	boolean_t	reset_ldc = B_FALSE;
5138 	vd_task_t	task;
5139 
5140 	/*
5141 	 * Check that the message is at least big enough for a "tag", so that
5142 	 * message processing can proceed based on tag-specified message type
5143 	 */
5144 	if (msglen < sizeof (vio_msg_tag_t)) {
5145 		PR0("Received short (%lu-byte) message", msglen);
5146 		/* Can't "nack" short message, so drop the big hammer */
5147 		PR0("initiating full reset");
5148 		vd_need_reset(vd, B_TRUE);
5149 		return (EBADMSG);
5150 	}
5151 
5152 	/*
5153 	 * Process the message
5154 	 */
5155 	switch (status = vd_do_process_msg(vd, msg, msglen)) {
5156 	case 0:
5157 		/* "ack" valid, successfully-processed messages */
5158 		msg->tag.vio_subtype = VIO_SUBTYPE_ACK;
5159 		break;
5160 
5161 	case EINPROGRESS:
5162 		/* The completion handler will "ack" or "nack" the message */
5163 		return (EINPROGRESS);
5164 	case ENOMSG:
5165 		PR0("Received unexpected message");
5166 		_NOTE(FALLTHROUGH);
5167 	case EBADMSG:
5168 	case ENOTSUP:
5169 		/* "transport" error will cause NACK of invalid messages */
5170 		msg->tag.vio_subtype = VIO_SUBTYPE_NACK;
5171 		break;
5172 
5173 	default:
5174 		/* "transport" error will cause NACK of invalid messages */
5175 		msg->tag.vio_subtype = VIO_SUBTYPE_NACK;
5176 		/* An LDC error probably occurred, so try resetting it */
5177 		reset_ldc = B_TRUE;
5178 		break;
5179 	}
5180 
5181 	PR1("\tResulting in state %d (%s)", vd->state,
5182 	    vd_decode_state(vd->state));
5183 
5184 	/* populate the task so we can dispatch it on the taskq */
5185 	task.vd = vd;
5186 	task.msg = msg;
5187 	task.msglen = msglen;
5188 
5189 	/*
5190 	 * Queue a task to send the notification that the operation completed.
5191 	 * We need to ensure that requests are responded to in the correct
5192 	 * order and since the taskq is processed serially this ordering
5193 	 * is maintained.
5194 	 */
5195 	(void) ddi_taskq_dispatch(vd->completionq, vd_serial_notify,
5196 	    &task, DDI_SLEEP);
5197 
5198 	/*
5199 	 * To ensure handshake negotiations do not happen out of order, such
5200 	 * requests that come through this path should not be done in parallel
5201 	 * so we need to wait here until the response is sent to the client.
5202 	 */
5203 	ddi_taskq_wait(vd->completionq);
5204 
5205 	/* Arrange to reset the connection for nack'ed or failed messages */
5206 	if ((status != 0) || reset_ldc) {
5207 		PR0("initiating %s reset",
5208 		    (reset_ldc) ? "full" : "soft");
5209 		vd_need_reset(vd, reset_ldc);
5210 	}
5211 
5212 	return (status);
5213 }
5214 
5215 static boolean_t
5216 vd_enabled(vd_t *vd)
5217 {
5218 	boolean_t	enabled;
5219 
5220 	mutex_enter(&vd->lock);
5221 	enabled = vd->enabled;
5222 	mutex_exit(&vd->lock);
5223 	return (enabled);
5224 }
5225 
5226 static void
5227 vd_recv_msg(void *arg)
5228 {
5229 	vd_t	*vd = (vd_t *)arg;
5230 	int	rv = 0, status = 0;
5231 
5232 	ASSERT(vd != NULL);
5233 
5234 	PR2("New task to receive incoming message(s)");
5235 
5236 
5237 	while (vd_enabled(vd) && status == 0) {
5238 		size_t		msglen, msgsize;
5239 		ldc_status_t	lstatus;
5240 
5241 		/*
5242 		 * Receive and process a message
5243 		 */
5244 		vd_reset_if_needed(vd);	/* can change vd->max_msglen */
5245 
5246 		/*
5247 		 * check if channel is UP - else break out of loop
5248 		 */
5249 		status = ldc_status(vd->ldc_handle, &lstatus);
5250 		if (lstatus != LDC_UP) {
5251 			PR0("channel not up (status=%d), exiting recv loop\n",
5252 			    lstatus);
5253 			break;
5254 		}
5255 
5256 		ASSERT(vd->max_msglen != 0);
5257 
5258 		msgsize = vd->max_msglen; /* stable copy for alloc/free */
5259 		msglen	= msgsize;	  /* actual len after recv_msg() */
5260 
5261 		status = recv_msg(vd->ldc_handle, vd->vio_msgp, &msglen);
5262 		switch (status) {
5263 		case 0:
5264 			rv = vd_process_msg(vd, (void *)vd->vio_msgp, msglen);
5265 			/* check if max_msglen changed */
5266 			if (msgsize != vd->max_msglen) {
5267 				PR0("max_msglen changed 0x%lx to 0x%lx bytes\n",
5268 				    msgsize, vd->max_msglen);
5269 				kmem_free(vd->vio_msgp, msgsize);
5270 				vd->vio_msgp =
5271 				    kmem_alloc(vd->max_msglen, KM_SLEEP);
5272 			}
5273 			if (rv == EINPROGRESS)
5274 				continue;
5275 			break;
5276 
5277 		case ENOMSG:
5278 			break;
5279 
5280 		case ECONNRESET:
5281 			PR0("initiating soft reset (ECONNRESET)\n");
5282 			vd_need_reset(vd, B_FALSE);
5283 			status = 0;
5284 			break;
5285 
5286 		default:
5287 			/* Probably an LDC failure; arrange to reset it */
5288 			PR0("initiating full reset (status=0x%x)", status);
5289 			vd_need_reset(vd, B_TRUE);
5290 			break;
5291 		}
5292 	}
5293 
5294 	PR2("Task finished");
5295 }
5296 
5297 static uint_t
5298 vd_handle_ldc_events(uint64_t event, caddr_t arg)
5299 {
5300 	vd_t	*vd = (vd_t *)(void *)arg;
5301 	int	status;
5302 
5303 	ASSERT(vd != NULL);
5304 
5305 	if (!vd_enabled(vd))
5306 		return (LDC_SUCCESS);
5307 
5308 	if (event & LDC_EVT_DOWN) {
5309 		PR0("LDC_EVT_DOWN: LDC channel went down");
5310 
5311 		vd_need_reset(vd, B_TRUE);
5312 		status = ddi_taskq_dispatch(vd->startq, vd_recv_msg, vd,
5313 		    DDI_SLEEP);
5314 		if (status == DDI_FAILURE) {
5315 			PR0("cannot schedule task to recv msg\n");
5316 			vd_need_reset(vd, B_TRUE);
5317 		}
5318 	}
5319 
5320 	if (event & LDC_EVT_RESET) {
5321 		PR0("LDC_EVT_RESET: LDC channel was reset");
5322 
5323 		if (vd->state != VD_STATE_INIT) {
5324 			PR0("scheduling full reset");
5325 			vd_need_reset(vd, B_FALSE);
5326 			status = ddi_taskq_dispatch(vd->startq, vd_recv_msg,
5327 			    vd, DDI_SLEEP);
5328 			if (status == DDI_FAILURE) {
5329 				PR0("cannot schedule task to recv msg\n");
5330 				vd_need_reset(vd, B_TRUE);
5331 			}
5332 
5333 		} else {
5334 			PR0("channel already reset, ignoring...\n");
5335 			PR0("doing ldc up...\n");
5336 			(void) ldc_up(vd->ldc_handle);
5337 		}
5338 
5339 		return (LDC_SUCCESS);
5340 	}
5341 
5342 	if (event & LDC_EVT_UP) {
5343 		PR0("EVT_UP: LDC is up\nResetting client connection state");
5344 		PR0("initiating soft reset");
5345 		vd_need_reset(vd, B_FALSE);
5346 		status = ddi_taskq_dispatch(vd->startq, vd_recv_msg,
5347 		    vd, DDI_SLEEP);
5348 		if (status == DDI_FAILURE) {
5349 			PR0("cannot schedule task to recv msg\n");
5350 			vd_need_reset(vd, B_TRUE);
5351 			return (LDC_SUCCESS);
5352 		}
5353 	}
5354 
5355 	if (event & LDC_EVT_READ) {
5356 		int	status;
5357 
5358 		PR1("New data available");
5359 		/* Queue a task to receive the new data */
5360 		status = ddi_taskq_dispatch(vd->startq, vd_recv_msg, vd,
5361 		    DDI_SLEEP);
5362 
5363 		if (status == DDI_FAILURE) {
5364 			PR0("cannot schedule task to recv msg\n");
5365 			vd_need_reset(vd, B_TRUE);
5366 		}
5367 	}
5368 
5369 	return (LDC_SUCCESS);
5370 }
5371 
5372 static uint_t
5373 vds_check_for_vd(mod_hash_key_t key, mod_hash_val_t *val, void *arg)
5374 {
5375 	_NOTE(ARGUNUSED(key, val))
5376 	(*((uint_t *)arg))++;
5377 	return (MH_WALK_TERMINATE);
5378 }
5379 
5380 
5381 static int
5382 vds_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
5383 {
5384 	uint_t	vd_present = 0;
5385 	minor_t	instance;
5386 	vds_t	*vds;
5387 
5388 
5389 	switch (cmd) {
5390 	case DDI_DETACH:
5391 		/* the real work happens below */
5392 		break;
5393 	case DDI_SUSPEND:
5394 		PR0("No action required for DDI_SUSPEND");
5395 		return (DDI_SUCCESS);
5396 	default:
5397 		PR0("Unrecognized \"cmd\"");
5398 		return (DDI_FAILURE);
5399 	}
5400 
5401 	ASSERT(cmd == DDI_DETACH);
5402 	instance = ddi_get_instance(dip);
5403 	if ((vds = ddi_get_soft_state(vds_state, instance)) == NULL) {
5404 		PR0("Could not get state for instance %u", instance);
5405 		ddi_soft_state_free(vds_state, instance);
5406 		return (DDI_FAILURE);
5407 	}
5408 
5409 	/* Do no detach when serving any vdisks */
5410 	mod_hash_walk(vds->vd_table, vds_check_for_vd, &vd_present);
5411 	if (vd_present) {
5412 		PR0("Not detaching because serving vdisks");
5413 		return (DDI_FAILURE);
5414 	}
5415 
5416 	PR0("Detaching");
5417 	if (vds->initialized & VDS_MDEG) {
5418 		(void) mdeg_unregister(vds->mdeg);
5419 		kmem_free(vds->ispecp->specp, sizeof (vds_prop_template));
5420 		kmem_free(vds->ispecp, sizeof (mdeg_node_spec_t));
5421 		vds->ispecp = NULL;
5422 		vds->mdeg = 0;
5423 	}
5424 
5425 	vds_driver_types_free(vds);
5426 
5427 	if (vds->initialized & VDS_LDI)
5428 		(void) ldi_ident_release(vds->ldi_ident);
5429 	mod_hash_destroy_hash(vds->vd_table);
5430 	ddi_soft_state_free(vds_state, instance);
5431 	return (DDI_SUCCESS);
5432 }
5433 
5434 /*
5435  * Description:
5436  *	This function checks to see if the disk image being used as a
5437  *	virtual disk is an ISO image. An ISO image is a special case
5438  *	which can be booted/installed from like a CD/DVD.
5439  *
5440  * Parameters:
5441  *	vd		- disk on which the operation is performed.
5442  *
5443  * Return Code:
5444  *	B_TRUE		- The disk image is an ISO 9660 compliant image
5445  *	B_FALSE		- just a regular disk image
5446  */
5447 static boolean_t
5448 vd_dskimg_is_iso_image(vd_t *vd)
5449 {
5450 	char	iso_buf[ISO_SECTOR_SIZE];
5451 	int	i, rv;
5452 	uint_t	sec;
5453 
5454 	ASSERT(VD_DSKIMG(vd));
5455 
5456 	/*
5457 	 * If we have already discovered and saved this info we can
5458 	 * short-circuit the check and avoid reading the disk image.
5459 	 */
5460 	if (vd->vdisk_media == VD_MEDIA_DVD || vd->vdisk_media == VD_MEDIA_CD)
5461 		return (B_TRUE);
5462 
5463 	/*
5464 	 * We wish to read the sector that should contain the 2nd ISO volume
5465 	 * descriptor. The second field in this descriptor is called the
5466 	 * Standard Identifier and is set to CD001 for a CD-ROM compliant
5467 	 * to the ISO 9660 standard.
5468 	 */
5469 	sec = (ISO_VOLDESC_SEC * ISO_SECTOR_SIZE) / vd->vdisk_bsize;
5470 	rv = vd_dskimg_rw(vd, VD_SLICE_NONE, VD_OP_BREAD, (caddr_t)iso_buf,
5471 	    sec, ISO_SECTOR_SIZE);
5472 
5473 	if (rv < 0)
5474 		return (B_FALSE);
5475 
5476 	for (i = 0; i < ISO_ID_STRLEN; i++) {
5477 		if (ISO_STD_ID(iso_buf)[i] != ISO_ID_STRING[i])
5478 			return (B_FALSE);
5479 	}
5480 
5481 	return (B_TRUE);
5482 }
5483 
5484 /*
5485  * Description:
5486  *	This function checks to see if the virtual device is an ATAPI
5487  *	device. ATAPI devices use Group 1 Read/Write commands, so
5488  *	any USCSI calls vds makes need to take this into account.
5489  *
5490  * Parameters:
5491  *	vd		- disk on which the operation is performed.
5492  *
5493  * Return Code:
5494  *	B_TRUE		- The virtual disk is backed by an ATAPI device
5495  *	B_FALSE		- not an ATAPI device (presumably SCSI)
5496  */
5497 static boolean_t
5498 vd_is_atapi_device(vd_t *vd)
5499 {
5500 	boolean_t	is_atapi = B_FALSE;
5501 	char		*variantp;
5502 	int		rv;
5503 
5504 	ASSERT(vd->ldi_handle[0] != NULL);
5505 	ASSERT(!vd->file);
5506 
5507 	rv = ldi_prop_lookup_string(vd->ldi_handle[0],
5508 	    (LDI_DEV_T_ANY | DDI_PROP_DONTPASS), "variant", &variantp);
5509 	if (rv == DDI_PROP_SUCCESS) {
5510 		PR0("'variant' property exists for %s", vd->device_path);
5511 		if (strcmp(variantp, "atapi") == 0)
5512 			is_atapi = B_TRUE;
5513 		ddi_prop_free(variantp);
5514 	}
5515 
5516 	rv = ldi_prop_exists(vd->ldi_handle[0], LDI_DEV_T_ANY, "atapi");
5517 	if (rv) {
5518 		PR0("'atapi' property exists for %s", vd->device_path);
5519 		is_atapi = B_TRUE;
5520 	}
5521 
5522 	return (is_atapi);
5523 }
5524 
5525 static int
5526 vd_setup_full_disk(vd_t *vd)
5527 {
5528 	int		status;
5529 	major_t		major = getmajor(vd->dev[0]);
5530 	minor_t		minor = getminor(vd->dev[0]) - VD_ENTIRE_DISK_SLICE;
5531 
5532 	ASSERT(vd->vdisk_type == VD_DISK_TYPE_DISK);
5533 
5534 	/* set the disk size, block size and the media type of the disk */
5535 	status = vd_backend_check_size(vd);
5536 
5537 	if (status != 0) {
5538 		if (!vd->scsi) {
5539 			/* unexpected failure */
5540 			PRN("Check size failed for %s (errno %d)",
5541 			    vd->device_path, status);
5542 			return (EIO);
5543 		}
5544 
5545 		/*
5546 		 * The function can fail for SCSI disks which are present but
5547 		 * reserved by another system. In that case, we don't know the
5548 		 * size of the disk and the block size.
5549 		 */
5550 		vd->vdisk_size = VD_SIZE_UNKNOWN;
5551 		vd->vdisk_bsize = 0;
5552 		vd->backend_bsize = 0;
5553 		vd->vdisk_media = VD_MEDIA_FIXED;
5554 	}
5555 
5556 	/* Move dev number and LDI handle to entire-disk-slice array elements */
5557 	vd->dev[VD_ENTIRE_DISK_SLICE]		= vd->dev[0];
5558 	vd->dev[0]				= 0;
5559 	vd->ldi_handle[VD_ENTIRE_DISK_SLICE]	= vd->ldi_handle[0];
5560 	vd->ldi_handle[0]			= NULL;
5561 
5562 	/* Initialize device numbers for remaining slices and open them */
5563 	for (int slice = 0; slice < vd->nslices; slice++) {
5564 		/*
5565 		 * Skip the entire-disk slice, as it's already open and its
5566 		 * device known
5567 		 */
5568 		if (slice == VD_ENTIRE_DISK_SLICE)
5569 			continue;
5570 		ASSERT(vd->dev[slice] == 0);
5571 		ASSERT(vd->ldi_handle[slice] == NULL);
5572 
5573 		/*
5574 		 * Construct the device number for the current slice
5575 		 */
5576 		vd->dev[slice] = makedevice(major, (minor + slice));
5577 
5578 		/*
5579 		 * Open all slices of the disk to serve them to the client.
5580 		 * Slices are opened exclusively to prevent other threads or
5581 		 * processes in the service domain from performing I/O to
5582 		 * slices being accessed by a client.  Failure to open a slice
5583 		 * results in vds not serving this disk, as the client could
5584 		 * attempt (and should be able) to access any slice immediately.
5585 		 * Any slices successfully opened before a failure will get
5586 		 * closed by vds_destroy_vd() as a result of the error returned
5587 		 * by this function.
5588 		 *
5589 		 * We need to do the open with FNDELAY so that opening an empty
5590 		 * slice does not fail.
5591 		 */
5592 		PR0("Opening device major %u, minor %u = slice %u",
5593 		    major, minor, slice);
5594 
5595 		/*
5596 		 * Try to open the device. This can fail for example if we are
5597 		 * opening an empty slice. So in case of a failure, we try the
5598 		 * open again but this time with the FNDELAY flag.
5599 		 */
5600 		status = ldi_open_by_dev(&vd->dev[slice], OTYP_BLK,
5601 		    vd->open_flags, kcred, &vd->ldi_handle[slice],
5602 		    vd->vds->ldi_ident);
5603 
5604 		if (status != 0) {
5605 			status = ldi_open_by_dev(&vd->dev[slice], OTYP_BLK,
5606 			    vd->open_flags | FNDELAY, kcred,
5607 			    &vd->ldi_handle[slice], vd->vds->ldi_ident);
5608 		}
5609 
5610 		if (status != 0) {
5611 			PRN("ldi_open_by_dev() returned errno %d "
5612 			    "for slice %u", status, slice);
5613 			/* vds_destroy_vd() will close any open slices */
5614 			vd->ldi_handle[slice] = NULL;
5615 			return (status);
5616 		}
5617 	}
5618 
5619 	return (0);
5620 }
5621 
5622 /*
5623  * When a slice or a volume is exported as a single-slice disk, we want
5624  * the disk backend (i.e. the slice or volume) to be entirely mapped as
5625  * a slice without the addition of any metadata.
5626  *
5627  * So when exporting the disk as a VTOC disk, we fake a disk with the following
5628  * layout:
5629  *                flabel +--- flabel_limit
5630  *                 <->   V
5631  *                 0 1   C                          D  E
5632  *                 +-+---+--------------------------+--+
5633  *  virtual disk:  |L|XXX|           slice 0        |AA|
5634  *                 +-+---+--------------------------+--+
5635  *                  ^    :                          :
5636  *                  |    :                          :
5637  *      VTOC LABEL--+    :                          :
5638  *                       +--------------------------+
5639  *  disk backend:        |     slice/volume/file    |
5640  *                       +--------------------------+
5641  *                       0                          N
5642  *
5643  * N is the number of blocks in the slice/volume/file.
5644  *
5645  * We simulate a disk with N+M blocks, where M is the number of blocks
5646  * simluated at the beginning and at the end of the disk (blocks 0-C
5647  * and D-E).
5648  *
5649  * The first blocks (0 to C-1) are emulated and can not be changed. Blocks C
5650  * to D defines slice 0 and are mapped to the backend. Finally we emulate 2
5651  * alternate cylinders at the end of the disk (blocks D-E). In summary we have:
5652  *
5653  * - block 0 (L) returns a fake VTOC label
5654  * - blocks 1 to C-1 (X) are unused and return 0
5655  * - blocks C to D-1 are mapped to the exported slice or volume
5656  * - blocks D and E (A) are blocks defining alternate cylinders (2 cylinders)
5657  *
5658  * Note: because we define a fake disk geometry, it is possible that the length
5659  * of the backend is not a multiple of the size of cylinder, in that case the
5660  * very end of the backend will not map to any block of the virtual disk.
5661  */
5662 static int
5663 vd_setup_partition_vtoc(vd_t *vd)
5664 {
5665 	char *device_path = vd->device_path;
5666 	char unit;
5667 	size_t size, csize;
5668 
5669 	/* Initialize dk_geom structure for single-slice device */
5670 	if (vd->dk_geom.dkg_nsect == 0) {
5671 		PRN("%s geometry claims 0 sectors per track", device_path);
5672 		return (EIO);
5673 	}
5674 	if (vd->dk_geom.dkg_nhead == 0) {
5675 		PRN("%s geometry claims 0 heads", device_path);
5676 		return (EIO);
5677 	}
5678 
5679 	/* size of a cylinder in block */
5680 	csize = vd->dk_geom.dkg_nhead * vd->dk_geom.dkg_nsect;
5681 
5682 	/*
5683 	 * Add extra cylinders: we emulate the first cylinder (which contains
5684 	 * the disk label).
5685 	 */
5686 	vd->dk_geom.dkg_ncyl = vd->vdisk_size / csize + 1;
5687 
5688 	/* we emulate 2 alternate cylinders */
5689 	vd->dk_geom.dkg_acyl = 2;
5690 	vd->dk_geom.dkg_pcyl = vd->dk_geom.dkg_ncyl + vd->dk_geom.dkg_acyl;
5691 
5692 
5693 	/* Initialize vtoc structure for single-slice device */
5694 	bzero(vd->vtoc.v_part, sizeof (vd->vtoc.v_part));
5695 	vd->vtoc.v_part[0].p_tag = V_UNASSIGNED;
5696 	vd->vtoc.v_part[0].p_flag = 0;
5697 	/*
5698 	 * Partition 0 starts on cylinder 1 and its size has to be
5699 	 * a multiple of a number of cylinder.
5700 	 */
5701 	vd->vtoc.v_part[0].p_start = csize; /* start on cylinder 1 */
5702 	vd->vtoc.v_part[0].p_size = (vd->vdisk_size / csize) * csize;
5703 
5704 	if (vd_slice_single_slice) {
5705 		vd->vtoc.v_nparts = 1;
5706 		bcopy(VD_ASCIILABEL, vd->vtoc.v_asciilabel,
5707 		    MIN(sizeof (VD_ASCIILABEL),
5708 		    sizeof (vd->vtoc.v_asciilabel)));
5709 		bcopy(VD_VOLUME_NAME, vd->vtoc.v_volume,
5710 		    MIN(sizeof (VD_VOLUME_NAME), sizeof (vd->vtoc.v_volume)));
5711 	} else {
5712 		/* adjust the number of slices */
5713 		vd->nslices = V_NUMPAR;
5714 		vd->vtoc.v_nparts = V_NUMPAR;
5715 
5716 		/* define slice 2 representing the entire disk */
5717 		vd->vtoc.v_part[VD_ENTIRE_DISK_SLICE].p_tag = V_BACKUP;
5718 		vd->vtoc.v_part[VD_ENTIRE_DISK_SLICE].p_flag = 0;
5719 		vd->vtoc.v_part[VD_ENTIRE_DISK_SLICE].p_start = 0;
5720 		vd->vtoc.v_part[VD_ENTIRE_DISK_SLICE].p_size =
5721 		    vd->dk_geom.dkg_ncyl * csize;
5722 
5723 		vd_get_readable_size(vd->vdisk_size * vd->vdisk_bsize,
5724 		    &size, &unit);
5725 
5726 		/*
5727 		 * Set some attributes of the geometry to what format(1m) uses
5728 		 * so that writing a default label using format(1m) does not
5729 		 * produce any error.
5730 		 */
5731 		vd->dk_geom.dkg_bcyl = 0;
5732 		vd->dk_geom.dkg_intrlv = 1;
5733 		vd->dk_geom.dkg_write_reinstruct = 0;
5734 		vd->dk_geom.dkg_read_reinstruct = 0;
5735 
5736 		/*
5737 		 * We must have a correct label name otherwise format(1m) will
5738 		 * not recognized the disk as labeled.
5739 		 */
5740 		(void) snprintf(vd->vtoc.v_asciilabel, LEN_DKL_ASCII,
5741 		    "SUN-DiskSlice-%ld%cB cyl %d alt %d hd %d sec %d",
5742 		    size, unit,
5743 		    vd->dk_geom.dkg_ncyl, vd->dk_geom.dkg_acyl,
5744 		    vd->dk_geom.dkg_nhead, vd->dk_geom.dkg_nsect);
5745 		bzero(vd->vtoc.v_volume, sizeof (vd->vtoc.v_volume));
5746 
5747 		/* create a fake label from the vtoc and geometry */
5748 		vd->flabel_limit = (uint_t)csize;
5749 		vd->flabel_size = VD_LABEL_VTOC_SIZE(vd->vdisk_bsize);
5750 		vd->flabel = kmem_zalloc(vd->flabel_size, KM_SLEEP);
5751 		vd_vtocgeom_to_label(&vd->vtoc, &vd->dk_geom,
5752 		    VD_LABEL_VTOC(vd));
5753 	}
5754 
5755 	/* adjust the vdisk_size, we emulate 3 cylinders */
5756 	vd->vdisk_size += csize * 3;
5757 
5758 	return (0);
5759 }
5760 
5761 /*
5762  * When a slice, volume or file is exported as a single-slice disk, we want
5763  * the disk backend (i.e. the slice, volume or file) to be entirely mapped
5764  * as a slice without the addition of any metadata.
5765  *
5766  * So when exporting the disk as an EFI disk, we fake a disk with the following
5767  * layout: (assuming the block size is 512 bytes)
5768  *
5769  *                  flabel        +--- flabel_limit
5770  *                 <------>       v
5771  *                 0 1 2  L      34                        34+N      P
5772  *                 +-+-+--+-------+--------------------------+-------+
5773  *  virtual disk:  |X|T|EE|XXXXXXX|           slice 0        |RRRRRRR|
5774  *                 +-+-+--+-------+--------------------------+-------+
5775  *                    ^ ^         :                          :
5776  *                    | |         :                          :
5777  *                GPT-+ +-GPE     :                          :
5778  *                                +--------------------------+
5779  *  disk backend:                 |     slice/volume/file    |
5780  *                                +--------------------------+
5781  *                                0                          N
5782  *
5783  * N is the number of blocks in the slice/volume/file.
5784  *
5785  * We simulate a disk with N+M blocks, where M is the number of blocks
5786  * simluated at the beginning and at the end of the disk (blocks 0-34
5787  * and 34+N-P).
5788  *
5789  * The first 34 blocks (0 to 33) are emulated and can not be changed. Blocks 34
5790  * to 34+N defines slice 0 and are mapped to the exported backend, and we
5791  * emulate some blocks at the end of the disk (blocks 34+N to P) as a the EFI
5792  * reserved partition.
5793  *
5794  * - block 0 (X) is unused and return 0
5795  * - block 1 (T) returns a fake EFI GPT (via DKIOCGETEFI)
5796  * - blocks 2 to L-1 (E) defines a fake EFI GPE (via DKIOCGETEFI)
5797  * - blocks L to 33 (X) are unused and return 0
5798  * - blocks 34 to 34+N are mapped to the exported slice, volume or file
5799  * - blocks 34+N+1 to P define a fake reserved partition and backup label, it
5800  *   returns 0
5801  *
5802  * Note: if the backend size is not a multiple of the vdisk block size then
5803  * the very end of the backend will not map to any block of the virtual disk.
5804  */
5805 static int
5806 vd_setup_partition_efi(vd_t *vd)
5807 {
5808 	efi_gpt_t *gpt;
5809 	efi_gpe_t *gpe;
5810 	struct uuid uuid = EFI_USR;
5811 	struct uuid efi_reserved = EFI_RESERVED;
5812 	uint32_t crc;
5813 	uint64_t s0_start, s0_end, first_u_lba;
5814 	size_t bsize;
5815 
5816 	ASSERT(vd->vdisk_bsize > 0);
5817 
5818 	bsize = vd->vdisk_bsize;
5819 	/*
5820 	 * The minimum size for the label is 16K (EFI_MIN_ARRAY_SIZE)
5821 	 * for GPEs plus one block for the GPT and one for PMBR.
5822 	 */
5823 	first_u_lba = (EFI_MIN_ARRAY_SIZE / bsize) + 2;
5824 	vd->flabel_limit = (uint_t)first_u_lba;
5825 	vd->flabel_size = VD_LABEL_EFI_SIZE(bsize);
5826 	vd->flabel = kmem_zalloc(vd->flabel_size, KM_SLEEP);
5827 	gpt = VD_LABEL_EFI_GPT(vd, bsize);
5828 	gpe = VD_LABEL_EFI_GPE(vd, bsize);
5829 
5830 	/*
5831 	 * Adjust the vdisk_size, we emulate the first few blocks
5832 	 * for the disk label.
5833 	 */
5834 	vd->vdisk_size += first_u_lba;
5835 	s0_start = first_u_lba;
5836 	s0_end = vd->vdisk_size - 1;
5837 
5838 	gpt->efi_gpt_Signature = LE_64(EFI_SIGNATURE);
5839 	gpt->efi_gpt_Revision = LE_32(EFI_VERSION_CURRENT);
5840 	gpt->efi_gpt_HeaderSize = LE_32(EFI_HEADER_SIZE);
5841 	gpt->efi_gpt_FirstUsableLBA = LE_64(first_u_lba);
5842 	gpt->efi_gpt_PartitionEntryLBA = LE_64(2ULL);
5843 	gpt->efi_gpt_SizeOfPartitionEntry = LE_32(sizeof (efi_gpe_t));
5844 
5845 	UUID_LE_CONVERT(gpe[0].efi_gpe_PartitionTypeGUID, uuid);
5846 	gpe[0].efi_gpe_StartingLBA = LE_64(s0_start);
5847 	gpe[0].efi_gpe_EndingLBA = LE_64(s0_end);
5848 
5849 	if (vd_slice_single_slice) {
5850 		gpt->efi_gpt_NumberOfPartitionEntries = LE_32(1);
5851 	} else {
5852 		/* adjust the number of slices */
5853 		gpt->efi_gpt_NumberOfPartitionEntries = LE_32(VD_MAXPART);
5854 		vd->nslices = V_NUMPAR;
5855 
5856 		/* define a fake reserved partition */
5857 		UUID_LE_CONVERT(gpe[VD_MAXPART - 1].efi_gpe_PartitionTypeGUID,
5858 		    efi_reserved);
5859 		gpe[VD_MAXPART - 1].efi_gpe_StartingLBA =
5860 		    LE_64(s0_end + 1);
5861 		gpe[VD_MAXPART - 1].efi_gpe_EndingLBA =
5862 		    LE_64(s0_end + EFI_MIN_RESV_SIZE);
5863 
5864 		/* adjust the vdisk_size to include the reserved slice */
5865 		vd->vdisk_size += EFI_MIN_RESV_SIZE;
5866 	}
5867 
5868 	gpt->efi_gpt_LastUsableLBA = LE_64(vd->vdisk_size - 1);
5869 
5870 	/* adjust the vdisk size for the backup GPT and GPE */
5871 	vd->vdisk_size += (EFI_MIN_ARRAY_SIZE / bsize) + 1;
5872 	gpt->efi_gpt_AlternateLBA = LE_64(vd->vdisk_size - 1);
5873 
5874 	CRC32(crc, gpe, sizeof (efi_gpe_t) * VD_MAXPART, -1U, crc32_table);
5875 	gpt->efi_gpt_PartitionEntryArrayCRC32 = LE_32(~crc);
5876 
5877 	CRC32(crc, gpt, EFI_HEADER_SIZE, -1U, crc32_table);
5878 	gpt->efi_gpt_HeaderCRC32 = LE_32(~crc);
5879 
5880 	return (0);
5881 }
5882 
5883 /*
5884  * Setup for a virtual disk whose backend is a file (exported as a single slice
5885  * or as a full disk). In that case, the backend is accessed using the vnode
5886  * interface.
5887  */
5888 static int
5889 vd_setup_backend_vnode(vd_t *vd)
5890 {
5891 	int		rval, status;
5892 	dev_t		dev;
5893 	char		*file_path = vd->device_path;
5894 	ldi_handle_t	lhandle;
5895 	struct dk_cinfo	dk_cinfo;
5896 
5897 	ASSERT(!vd->volume);
5898 
5899 	if ((status = vn_open(file_path, UIO_SYSSPACE, vd->open_flags | FOFFMAX,
5900 	    0, &vd->file_vnode, 0, 0)) != 0) {
5901 		if ((status == ENXIO || status == ENODEV || status == ENOENT ||
5902 		    status == EROFS) && (!(vd->initialized & VD_SETUP_ERROR) &&
5903 		    !(DEVI_IS_ATTACHING(vd->vds->dip)))) {
5904 			PRN("vn_open(%s) = errno %d", file_path, status);
5905 		}
5906 		return (status);
5907 	}
5908 
5909 	/*
5910 	 * We set vd->file now so that vds_destroy_vd will take care of
5911 	 * closing the file and releasing the vnode in case of an error.
5912 	 */
5913 	vd->file = B_TRUE;
5914 
5915 	vd->max_xfer_sz = maxphys / DEV_BSIZE; /* default transfer size */
5916 
5917 	/*
5918 	 * Get max_xfer_sz from the device where the file is.
5919 	 */
5920 	dev = vd->file_vnode->v_vfsp->vfs_dev;
5921 	PR0("underlying device of %s = (%d, %d)\n", file_path,
5922 	    getmajor(dev), getminor(dev));
5923 
5924 	status = ldi_open_by_dev(&dev, OTYP_BLK, FREAD, kcred, &lhandle,
5925 	    vd->vds->ldi_ident);
5926 
5927 	if (status != 0) {
5928 		PR0("ldi_open() returned errno %d for underlying device",
5929 		    status);
5930 	} else {
5931 		if ((status = ldi_ioctl(lhandle, DKIOCINFO,
5932 		    (intptr_t)&dk_cinfo, (vd->open_flags | FKIOCTL), kcred,
5933 		    &rval)) != 0) {
5934 			PR0("ldi_ioctl(DKIOCINFO) returned errno %d for "
5935 			    "underlying device", status);
5936 		} else {
5937 			/*
5938 			 * Store the device's max transfer size for
5939 			 * return to the client
5940 			 */
5941 			vd->max_xfer_sz = dk_cinfo.dki_maxtransfer;
5942 		}
5943 
5944 		PR0("close the underlying device");
5945 		(void) ldi_close(lhandle, FREAD, kcred);
5946 	}
5947 
5948 	PR0("using file %s on device (%d, %d), max_xfer = %u blks",
5949 	    file_path, getmajor(dev), getminor(dev), vd->max_xfer_sz);
5950 
5951 	if (vd->vdisk_type == VD_DISK_TYPE_SLICE)
5952 		status = vd_setup_slice_image(vd);
5953 	else
5954 		status = vd_setup_disk_image(vd);
5955 
5956 	return (status);
5957 }
5958 
5959 static int
5960 vd_setup_slice_image(vd_t *vd)
5961 {
5962 	struct dk_label label;
5963 	int status;
5964 
5965 	if ((status = vd_backend_check_size(vd)) != 0) {
5966 		PRN("Check size failed for %s (errno %d)",
5967 		    vd->device_path, status);
5968 		return (EIO);
5969 	}
5970 
5971 	vd->vdisk_media = VD_MEDIA_FIXED;
5972 	vd->vdisk_label = (vd_slice_label == VD_DISK_LABEL_UNK)?
5973 	    vd_file_slice_label : vd_slice_label;
5974 
5975 	if (vd->vdisk_label == VD_DISK_LABEL_EFI ||
5976 	    vd->dskimg_size >= 2 * ONE_TERABYTE) {
5977 		status = vd_setup_partition_efi(vd);
5978 	} else {
5979 		/*
5980 		 * We build a default label to get a geometry for
5981 		 * the vdisk. Then the partition setup function will
5982 		 * adjust the vtoc so that it defines a single-slice
5983 		 * disk.
5984 		 */
5985 		vd_build_default_label(vd->dskimg_size, vd->vdisk_bsize,
5986 		    &label);
5987 		vd_label_to_vtocgeom(&label, &vd->vtoc, &vd->dk_geom);
5988 		status = vd_setup_partition_vtoc(vd);
5989 	}
5990 
5991 	return (status);
5992 }
5993 
5994 static int
5995 vd_setup_disk_image(vd_t *vd)
5996 {
5997 	int status;
5998 	char *backend_path = vd->device_path;
5999 
6000 	if ((status = vd_backend_check_size(vd)) != 0) {
6001 		PRN("Check size failed for %s (errno %d)",
6002 		    backend_path, status);
6003 		return (EIO);
6004 	}
6005 
6006 	/* size should be at least sizeof(dk_label) */
6007 	if (vd->dskimg_size < sizeof (struct dk_label)) {
6008 		PRN("Size of file has to be at least %ld bytes",
6009 		    sizeof (struct dk_label));
6010 		return (EIO);
6011 	}
6012 
6013 	/*
6014 	 * Find and validate the geometry of a disk image.
6015 	 */
6016 	status = vd_dskimg_validate_geometry(vd);
6017 	if (status != 0 && status != EINVAL && status != ENOTSUP) {
6018 		PRN("Failed to read label from %s", backend_path);
6019 		return (EIO);
6020 	}
6021 
6022 	if (vd_dskimg_is_iso_image(vd)) {
6023 		/*
6024 		 * Indicate whether to call this a CD or DVD from the size
6025 		 * of the ISO image (images for both drive types are stored
6026 		 * in the ISO-9600 format). CDs can store up to just under 1Gb
6027 		 */
6028 		if ((vd->vdisk_size * vd->vdisk_bsize) > ONE_GIGABYTE)
6029 			vd->vdisk_media = VD_MEDIA_DVD;
6030 		else
6031 			vd->vdisk_media = VD_MEDIA_CD;
6032 	} else {
6033 		vd->vdisk_media = VD_MEDIA_FIXED;
6034 	}
6035 
6036 	/* Setup devid for the disk image */
6037 
6038 	if (vd->vdisk_label != VD_DISK_LABEL_UNK) {
6039 
6040 		status = vd_dskimg_read_devid(vd, &vd->dskimg_devid);
6041 
6042 		if (status == 0) {
6043 			/* a valid devid was found */
6044 			return (0);
6045 		}
6046 
6047 		if (status != EINVAL) {
6048 			/*
6049 			 * There was an error while trying to read the devid.
6050 			 * So this disk image may have a devid but we are
6051 			 * unable to read it.
6052 			 */
6053 			PR0("can not read devid for %s", backend_path);
6054 			vd->dskimg_devid = NULL;
6055 			return (0);
6056 		}
6057 	}
6058 
6059 	/*
6060 	 * No valid device id was found so we create one. Note that a failure
6061 	 * to create a device id is not fatal and does not prevent the disk
6062 	 * image from being attached.
6063 	 */
6064 	PR1("creating devid for %s", backend_path);
6065 
6066 	if (ddi_devid_init(vd->vds->dip, DEVID_FAB, 0, 0,
6067 	    &vd->dskimg_devid) != DDI_SUCCESS) {
6068 		PR0("fail to create devid for %s", backend_path);
6069 		vd->dskimg_devid = NULL;
6070 		return (0);
6071 	}
6072 
6073 	/*
6074 	 * Write devid to the disk image. The devid is stored into the disk
6075 	 * image if we have a valid label; otherwise the devid will be stored
6076 	 * when the user writes a valid label.
6077 	 */
6078 	if (vd->vdisk_label != VD_DISK_LABEL_UNK) {
6079 		if (vd_dskimg_write_devid(vd, vd->dskimg_devid) != 0) {
6080 			PR0("fail to write devid for %s", backend_path);
6081 			ddi_devid_free(vd->dskimg_devid);
6082 			vd->dskimg_devid = NULL;
6083 		}
6084 	}
6085 
6086 	return (0);
6087 }
6088 
6089 
6090 /*
6091  * Description:
6092  *	Open a device using its device path (supplied by ldm(1m))
6093  *
6094  * Parameters:
6095  *	vd	- pointer to structure containing the vDisk info
6096  *	flags	- open flags
6097  *
6098  * Return Value
6099  *	0	- success
6100  *	!= 0	- some other non-zero return value from ldi(9F) functions
6101  */
6102 static int
6103 vd_open_using_ldi_by_name(vd_t *vd, int flags)
6104 {
6105 	int		status;
6106 	char		*device_path = vd->device_path;
6107 
6108 	/* Attempt to open device */
6109 	status = ldi_open_by_name(device_path, flags, kcred,
6110 	    &vd->ldi_handle[0], vd->vds->ldi_ident);
6111 
6112 	/*
6113 	 * The open can fail for example if we are opening an empty slice.
6114 	 * In case of a failure, we try the open again but this time with
6115 	 * the FNDELAY flag.
6116 	 */
6117 	if (status != 0)
6118 		status = ldi_open_by_name(device_path, flags | FNDELAY,
6119 		    kcred, &vd->ldi_handle[0], vd->vds->ldi_ident);
6120 
6121 	if (status != 0) {
6122 		PR0("ldi_open_by_name(%s) = errno %d", device_path, status);
6123 		vd->ldi_handle[0] = NULL;
6124 		return (status);
6125 	}
6126 
6127 	return (0);
6128 }
6129 
6130 /*
6131  * Setup for a virtual disk which backend is a device (a physical disk,
6132  * slice or volume device) exported as a full disk or as a slice. In these
6133  * cases, the backend is accessed using the LDI interface.
6134  */
6135 static int
6136 vd_setup_backend_ldi(vd_t *vd)
6137 {
6138 	int		rval, status;
6139 	struct dk_cinfo	dk_cinfo;
6140 	char		*device_path = vd->device_path;
6141 
6142 	/* device has been opened by vd_identify_dev() */
6143 	ASSERT(vd->ldi_handle[0] != NULL);
6144 	ASSERT(vd->dev[0] != NULL);
6145 
6146 	vd->file = B_FALSE;
6147 
6148 	/* Verify backing device supports dk_cinfo */
6149 	if ((status = ldi_ioctl(vd->ldi_handle[0], DKIOCINFO,
6150 	    (intptr_t)&dk_cinfo, (vd->open_flags | FKIOCTL), kcred,
6151 	    &rval)) != 0) {
6152 		PRN("ldi_ioctl(DKIOCINFO) returned errno %d for %s",
6153 		    status, device_path);
6154 		return (status);
6155 	}
6156 	if (dk_cinfo.dki_partition >= V_NUMPAR) {
6157 		PRN("slice %u >= maximum slice %u for %s",
6158 		    dk_cinfo.dki_partition, V_NUMPAR, device_path);
6159 		return (EIO);
6160 	}
6161 
6162 	/*
6163 	 * The device has been opened read-only by vd_identify_dev(), re-open
6164 	 * it read-write if the write flag is set and we don't have an optical
6165 	 * device such as a CD-ROM, which, for now, we do not permit writes to
6166 	 * and thus should not export write operations to the client.
6167 	 *
6168 	 * Future: if/when we implement support for guest domains writing to
6169 	 * optical devices we will need to do further checking of the media type
6170 	 * to distinguish between read-only and writable discs.
6171 	 */
6172 	if (dk_cinfo.dki_ctype == DKC_CDROM) {
6173 
6174 		vd->open_flags &= ~FWRITE;
6175 
6176 	} else if (vd->open_flags & FWRITE) {
6177 
6178 		(void) ldi_close(vd->ldi_handle[0], vd->open_flags & ~FWRITE,
6179 		    kcred);
6180 		status = vd_open_using_ldi_by_name(vd, vd->open_flags);
6181 		if (status != 0) {
6182 			PR0("Failed to open (%s) = errno %d",
6183 			    device_path, status);
6184 			return (status);
6185 		}
6186 	}
6187 
6188 	/* Store the device's max transfer size for return to the client */
6189 	vd->max_xfer_sz = dk_cinfo.dki_maxtransfer;
6190 
6191 	/*
6192 	 * We need to work out if it's an ATAPI (IDE CD-ROM) or SCSI device so
6193 	 * that we can use the correct CDB group when sending USCSI commands.
6194 	 */
6195 	vd->is_atapi_dev = vd_is_atapi_device(vd);
6196 
6197 	/*
6198 	 * Export a full disk.
6199 	 *
6200 	 * The exported device can be either a volume, a disk or a CD/DVD
6201 	 * device.  We export a device as a full disk if we have an entire
6202 	 * disk slice (slice 2) and if this slice is exported as a full disk
6203 	 * and not as a single slice disk. A CD or DVD device is exported
6204 	 * as a full disk (even if it isn't s2). A volume is exported as a
6205 	 * full disk as long as the "slice" option is not specified.
6206 	 */
6207 	if (vd->vdisk_type == VD_DISK_TYPE_DISK) {
6208 
6209 		if (vd->volume) {
6210 			/* setup disk image */
6211 			return (vd_setup_disk_image(vd));
6212 		}
6213 
6214 		if (dk_cinfo.dki_partition == VD_ENTIRE_DISK_SLICE ||
6215 		    dk_cinfo.dki_ctype == DKC_CDROM) {
6216 			ASSERT(!vd->volume);
6217 			if (dk_cinfo.dki_ctype == DKC_SCSI_CCS)
6218 				vd->scsi = B_TRUE;
6219 			return (vd_setup_full_disk(vd));
6220 		}
6221 	}
6222 
6223 	/*
6224 	 * Export a single slice disk.
6225 	 *
6226 	 * The exported device can be either a volume device or a disk slice. If
6227 	 * it is a disk slice different from slice 2 then it is always exported
6228 	 * as a single slice disk even if the "slice" option is not specified.
6229 	 * If it is disk slice 2 or a volume device then it is exported as a
6230 	 * single slice disk only if the "slice" option is specified.
6231 	 */
6232 	return (vd_setup_single_slice_disk(vd));
6233 }
6234 
6235 static int
6236 vd_setup_single_slice_disk(vd_t *vd)
6237 {
6238 	int status, rval;
6239 	struct dk_label label;
6240 	char *device_path = vd->device_path;
6241 	struct vtoc vtoc;
6242 
6243 	vd->vdisk_media = VD_MEDIA_FIXED;
6244 
6245 	if (vd->volume) {
6246 		ASSERT(vd->vdisk_type == VD_DISK_TYPE_SLICE);
6247 	}
6248 
6249 	/*
6250 	 * We export the slice as a single slice disk even if the "slice"
6251 	 * option was not specified.
6252 	 */
6253 	vd->vdisk_type  = VD_DISK_TYPE_SLICE;
6254 	vd->nslices	= 1;
6255 
6256 	/* Get size of backing device */
6257 	if ((status = vd_backend_check_size(vd)) != 0) {
6258 		PRN("Check size failed for %s (errno %d)", device_path, status);
6259 		return (EIO);
6260 	}
6261 
6262 	/*
6263 	 * When exporting a slice or a device as a single slice disk, we don't
6264 	 * care about any partitioning exposed by the backend. The goal is just
6265 	 * to export the backend as a flat storage. We provide a fake partition
6266 	 * table (either a VTOC or EFI), which presents only one slice, to
6267 	 * accommodate tools expecting a disk label. The selection of the label
6268 	 * type (VTOC or EFI) depends on the value of the vd_slice_label
6269 	 * variable.
6270 	 */
6271 	if (vd_slice_label == VD_DISK_LABEL_EFI ||
6272 	    vd->vdisk_size >= ONE_TERABYTE / vd->vdisk_bsize) {
6273 		vd->vdisk_label = VD_DISK_LABEL_EFI;
6274 	} else {
6275 		status = ldi_ioctl(vd->ldi_handle[0], DKIOCGEXTVTOC,
6276 		    (intptr_t)&vd->vtoc, (vd->open_flags | FKIOCTL),
6277 		    kcred, &rval);
6278 
6279 		if (status == ENOTTY) {
6280 			/* try with the non-extended vtoc ioctl */
6281 			status = ldi_ioctl(vd->ldi_handle[0], DKIOCGVTOC,
6282 			    (intptr_t)&vtoc, (vd->open_flags | FKIOCTL),
6283 			    kcred, &rval);
6284 			vtoctoextvtoc(vtoc, vd->vtoc);
6285 		}
6286 
6287 		if (status == 0) {
6288 			status = ldi_ioctl(vd->ldi_handle[0], DKIOCGGEOM,
6289 			    (intptr_t)&vd->dk_geom, (vd->open_flags | FKIOCTL),
6290 			    kcred, &rval);
6291 
6292 			if (status != 0) {
6293 				PRN("ldi_ioctl(DKIOCGEOM) returned errno %d "
6294 				    "for %s", status, device_path);
6295 				return (status);
6296 			}
6297 			vd->vdisk_label = VD_DISK_LABEL_VTOC;
6298 
6299 		} else if (vd_slice_label == VD_DISK_LABEL_VTOC) {
6300 
6301 			vd->vdisk_label = VD_DISK_LABEL_VTOC;
6302 			vd_build_default_label(vd->vdisk_size * vd->vdisk_bsize,
6303 			    vd->vdisk_bsize, &label);
6304 			vd_label_to_vtocgeom(&label, &vd->vtoc, &vd->dk_geom);
6305 
6306 		} else {
6307 			vd->vdisk_label = VD_DISK_LABEL_EFI;
6308 		}
6309 	}
6310 
6311 	if (vd->vdisk_label == VD_DISK_LABEL_VTOC) {
6312 		/* export with a fake VTOC label */
6313 		status = vd_setup_partition_vtoc(vd);
6314 
6315 	} else {
6316 		/* export with a fake EFI label */
6317 		status = vd_setup_partition_efi(vd);
6318 	}
6319 
6320 	return (status);
6321 }
6322 
6323 /*
6324  * This function is invoked when setting up the vdisk backend and to process
6325  * the VD_OP_GET_CAPACITY operation. It checks the backend size and set the
6326  * following attributes of the vd structure:
6327  *
6328  * - vdisk_bsize: block size for the virtual disk used by the VIO protocol. Its
6329  *   value is 512 bytes (DEV_BSIZE) when the backend is a file, a volume or a
6330  *   CD/DVD. When the backend is a disk or a disk slice then it has the value
6331  *   of the logical block size of that disk (as returned by the DKIOCGMEDIAINFO
6332  *   ioctl). This block size is expected to be a power of 2 and a multiple of
6333  *   512.
6334  *
6335  * - vdisk_size: size of the virtual disk expressed as a number of vdisk_bsize
6336  *   blocks.
6337  *
6338  * vdisk_size and vdisk_bsize are sent to the vdisk client during the connection
6339  * handshake and in the result of a VD_OP_GET_CAPACITY operation.
6340  *
6341  * - backend_bsize: block size of the backend device. backend_bsize has the same
6342  *   value as vdisk_bsize except when the backend is a CD/DVD. In that case,
6343  *   vdisk_bsize is set to 512 (DEV_BSIZE) while backend_bsize is set to the
6344  *   effective logical block size of the CD/DVD (usually 2048).
6345  *
6346  * - dskimg_size: size of the backend when the backend is a disk image. This
6347  *   attribute is set only when the backend is a file or a volume, otherwise it
6348  *   is unused.
6349  *
6350  * - vio_bshift: number of bit to shift to convert a VIO block number (which
6351  *   uses a block size of vdisk_bsize) to a buf(9s) block number (which uses a
6352  *   block size of 512 bytes) i.e. we have vdisk_bsize = 512 x 2 ^ vio_bshift
6353  *
6354  * - vdisk_media: media of the virtual disk. This function only sets this
6355  *   attribute for physical disk and CD/DVD. For other backend types, this
6356  *   attribute is set in the setup function of the backend.
6357  */
6358 static int
6359 vd_backend_check_size(vd_t *vd)
6360 {
6361 	size_t backend_size, backend_bsize, vdisk_bsize;
6362 	size_t old_size, new_size;
6363 	struct dk_minfo minfo;
6364 	vattr_t vattr;
6365 	int rval, rv, media, nshift = 0;
6366 	uint32_t n;
6367 
6368 	if (vd->file) {
6369 
6370 		/* file (slice or full disk) */
6371 		vattr.va_mask = AT_SIZE;
6372 		rv = VOP_GETATTR(vd->file_vnode, &vattr, 0, kcred, NULL);
6373 		if (rv != 0) {
6374 			PR0("VOP_GETATTR(%s) = errno %d", vd->device_path, rv);
6375 			return (rv);
6376 		}
6377 		backend_size = vattr.va_size;
6378 		backend_bsize = DEV_BSIZE;
6379 		vdisk_bsize = DEV_BSIZE;
6380 
6381 	} else if (vd->volume) {
6382 
6383 		/* volume (slice or full disk) */
6384 		rv = ldi_get_size(vd->ldi_handle[0], &backend_size);
6385 		if (rv != DDI_SUCCESS) {
6386 			PR0("ldi_get_size() failed for %s", vd->device_path);
6387 			return (EIO);
6388 		}
6389 		backend_bsize = DEV_BSIZE;
6390 		vdisk_bsize = DEV_BSIZE;
6391 
6392 	} else {
6393 
6394 		/* physical disk or slice */
6395 		rv = ldi_ioctl(vd->ldi_handle[0], DKIOCGMEDIAINFO,
6396 		    (intptr_t)&minfo, (vd->open_flags | FKIOCTL),
6397 		    kcred, &rval);
6398 		if (rv != 0) {
6399 			PR0("DKIOCGMEDIAINFO failed for %s (err=%d)",
6400 			    vd->device_path, rv);
6401 			return (rv);
6402 		}
6403 
6404 		if (vd->vdisk_type == VD_DISK_TYPE_SLICE) {
6405 			rv = ldi_get_size(vd->ldi_handle[0], &backend_size);
6406 			if (rv != DDI_SUCCESS) {
6407 				PR0("ldi_get_size() failed for %s",
6408 				    vd->device_path);
6409 				return (EIO);
6410 			}
6411 		} else {
6412 			ASSERT(vd->vdisk_type == VD_DISK_TYPE_DISK);
6413 			backend_size = minfo.dki_capacity * minfo.dki_lbsize;
6414 		}
6415 
6416 		backend_bsize = minfo.dki_lbsize;
6417 		media = DK_MEDIATYPE2VD_MEDIATYPE(minfo.dki_media_type);
6418 
6419 		/*
6420 		 * If the device is a CD or a DVD then we force the vdisk block
6421 		 * size to 512 bytes (DEV_BSIZE). In that case, vdisk_bsize can
6422 		 * be different from backend_size.
6423 		 */
6424 		if (media == VD_MEDIA_CD || media == VD_MEDIA_DVD)
6425 			vdisk_bsize = DEV_BSIZE;
6426 		else
6427 			vdisk_bsize = backend_bsize;
6428 	}
6429 
6430 	/* check vdisk block size */
6431 	if (vdisk_bsize == 0 || vdisk_bsize % DEV_BSIZE != 0)
6432 		return (EINVAL);
6433 
6434 	old_size = vd->vdisk_size;
6435 	new_size = backend_size / vdisk_bsize;
6436 
6437 	/* check if size has changed */
6438 	if (old_size != VD_SIZE_UNKNOWN && old_size == new_size &&
6439 	    vd->vdisk_bsize == vdisk_bsize)
6440 		return (0);
6441 
6442 	/* cache info for blk conversion */
6443 	for (n = vdisk_bsize / DEV_BSIZE; n > 1; n >>= 1) {
6444 		if ((n & 0x1) != 0) {
6445 			/* blk_size is not a power of 2 */
6446 			return (EINVAL);
6447 		}
6448 		nshift++;
6449 	}
6450 
6451 	vd->vio_bshift = nshift;
6452 	vd->vdisk_size = new_size;
6453 	vd->vdisk_bsize = vdisk_bsize;
6454 	vd->backend_bsize = backend_bsize;
6455 
6456 	if (vd->file || vd->volume)
6457 		vd->dskimg_size = backend_size;
6458 
6459 	/*
6460 	 * If we are exporting a single-slice disk and the size of the backend
6461 	 * has changed then we regenerate the partition setup so that the
6462 	 * partitioning matches with the new disk backend size.
6463 	 */
6464 
6465 	if (vd->vdisk_type == VD_DISK_TYPE_SLICE) {
6466 		/* slice or file or device exported as a slice */
6467 		if (vd->vdisk_label == VD_DISK_LABEL_VTOC) {
6468 			rv = vd_setup_partition_vtoc(vd);
6469 			if (rv != 0) {
6470 				PR0("vd_setup_partition_vtoc() failed for %s "
6471 				    "(err = %d)", vd->device_path, rv);
6472 				return (rv);
6473 			}
6474 		} else {
6475 			rv = vd_setup_partition_efi(vd);
6476 			if (rv != 0) {
6477 				PR0("vd_setup_partition_efi() failed for %s "
6478 				    "(err = %d)", vd->device_path, rv);
6479 				return (rv);
6480 			}
6481 		}
6482 
6483 	} else if (!vd->file && !vd->volume) {
6484 		/* physical disk */
6485 		ASSERT(vd->vdisk_type == VD_DISK_TYPE_DISK);
6486 		vd->vdisk_media = media;
6487 	}
6488 
6489 	return (0);
6490 }
6491 
6492 /*
6493  * Description:
6494  *	Open a device using its device path and identify if this is
6495  *	a disk device or a volume device.
6496  *
6497  * Parameters:
6498  *	vd	- pointer to structure containing the vDisk info
6499  *	dtype	- return the driver type of the device
6500  *
6501  * Return Value
6502  *	0	- success
6503  *	!= 0	- some other non-zero return value from ldi(9F) functions
6504  */
6505 static int
6506 vd_identify_dev(vd_t *vd, int *dtype)
6507 {
6508 	int status, i;
6509 	char *device_path = vd->device_path;
6510 	char *drv_name;
6511 	int drv_type;
6512 	vds_t *vds = vd->vds;
6513 
6514 	status = vd_open_using_ldi_by_name(vd, vd->open_flags & ~FWRITE);
6515 	if (status != 0) {
6516 		PR0("Failed to open (%s) = errno %d", device_path, status);
6517 		return (status);
6518 	}
6519 
6520 	/* Get device number of backing device */
6521 	if ((status = ldi_get_dev(vd->ldi_handle[0], &vd->dev[0])) != 0) {
6522 		PRN("ldi_get_dev() returned errno %d for %s",
6523 		    status, device_path);
6524 		return (status);
6525 	}
6526 
6527 	/*
6528 	 * We start by looking if the driver is in the list from vds.conf
6529 	 * so that we can override the built-in list using vds.conf.
6530 	 */
6531 	drv_name = ddi_major_to_name(getmajor(vd->dev[0]));
6532 	drv_type = VD_DRIVER_UNKNOWN;
6533 
6534 	/* check vds.conf list */
6535 	for (i = 0; i < vds->num_drivers; i++) {
6536 		if (vds->driver_types[i].type == VD_DRIVER_UNKNOWN) {
6537 			/* ignore invalid entries */
6538 			continue;
6539 		}
6540 		if (strcmp(drv_name, vds->driver_types[i].name) == 0) {
6541 			drv_type = vds->driver_types[i].type;
6542 			goto done;
6543 		}
6544 	}
6545 
6546 	/* check built-in list */
6547 	for (i = 0; i < VDS_NUM_DRIVERS; i++) {
6548 		if (strcmp(drv_name, vds_driver_types[i].name) == 0) {
6549 			drv_type = vds_driver_types[i].type;
6550 			goto done;
6551 		}
6552 	}
6553 
6554 done:
6555 	PR0("driver %s identified as %s", drv_name,
6556 	    (drv_type == VD_DRIVER_DISK)? "DISK" :
6557 	    (drv_type == VD_DRIVER_VOLUME)? "VOLUME" : "UNKNOWN");
6558 
6559 	if (strcmp(drv_name, "zfs") == 0)
6560 		vd->zvol = B_TRUE;
6561 
6562 	*dtype = drv_type;
6563 
6564 	return (0);
6565 }
6566 
6567 static int
6568 vd_setup_vd(vd_t *vd)
6569 {
6570 	int		status, drv_type, pseudo;
6571 	dev_info_t	*dip;
6572 	vnode_t		*vnp;
6573 	char		*path = vd->device_path;
6574 	char		tq_name[TASKQ_NAMELEN];
6575 
6576 	/* make sure the vdisk backend is valid */
6577 	if ((status = lookupname(path, UIO_SYSSPACE,
6578 	    FOLLOW, NULLVPP, &vnp)) != 0) {
6579 		PR0("Cannot lookup %s errno %d", path, status);
6580 		goto done;
6581 	}
6582 
6583 	switch (vnp->v_type) {
6584 	case VREG:
6585 		/*
6586 		 * Backend is a file so it is exported as a full disk or as a
6587 		 * single slice disk using the vnode interface.
6588 		 */
6589 		VN_RELE(vnp);
6590 		vd->volume = B_FALSE;
6591 		status = vd_setup_backend_vnode(vd);
6592 		break;
6593 
6594 	case VBLK:
6595 	case VCHR:
6596 		/*
6597 		 * Backend is a device. In that case, it is exported using the
6598 		 * LDI interface, and it is exported either as a single-slice
6599 		 * disk or as a full disk depending on the "slice" option and
6600 		 * on the type of device.
6601 		 *
6602 		 * - A volume device is exported as a single-slice disk if the
6603 		 *   "slice" is specified, otherwise it is exported as a full
6604 		 *   disk.
6605 		 *
6606 		 * - A disk slice (different from slice 2) is always exported
6607 		 *   as a single slice disk using the LDI interface.
6608 		 *
6609 		 * - The slice 2 of a disk is exported as a single slice disk
6610 		 *   if the "slice" option is specified, otherwise the entire
6611 		 *   disk will be exported.
6612 		 *
6613 		 * - The slice of a CD or DVD is exported as single slice disk
6614 		 *   if the "slice" option is specified, otherwise the entire
6615 		 *   disk will be exported.
6616 		 */
6617 
6618 		/* check if this is a pseudo device */
6619 		if ((dip = ddi_hold_devi_by_instance(getmajor(vnp->v_rdev),
6620 		    dev_to_instance(vnp->v_rdev), 0))  == NULL) {
6621 			PRN("%s is no longer accessible", path);
6622 			VN_RELE(vnp);
6623 			status = EIO;
6624 			break;
6625 		}
6626 		pseudo = is_pseudo_device(dip);
6627 		ddi_release_devi(dip);
6628 		VN_RELE(vnp);
6629 
6630 		if ((status = vd_identify_dev(vd, &drv_type)) != 0) {
6631 			if (status != ENODEV && status != ENXIO &&
6632 			    status != ENOENT && status != EROFS) {
6633 				PRN("%s identification failed with status %d",
6634 				    path, status);
6635 				status = EIO;
6636 			}
6637 			break;
6638 		}
6639 
6640 		/*
6641 		 * If the driver hasn't been identified then we consider that
6642 		 * pseudo devices are volumes and other devices are disks.
6643 		 */
6644 		if (drv_type == VD_DRIVER_VOLUME ||
6645 		    (drv_type == VD_DRIVER_UNKNOWN && pseudo)) {
6646 			vd->volume = B_TRUE;
6647 		}
6648 
6649 		/*
6650 		 * If this is a volume device then its usage depends if the
6651 		 * "slice" option is set or not. If the "slice" option is set
6652 		 * then the volume device will be exported as a single slice,
6653 		 * otherwise it will be exported as a full disk.
6654 		 *
6655 		 * For backward compatibility, if vd_volume_force_slice is set
6656 		 * then we always export volume devices as slices.
6657 		 */
6658 		if (vd->volume && vd_volume_force_slice) {
6659 			vd->vdisk_type = VD_DISK_TYPE_SLICE;
6660 			vd->nslices = 1;
6661 		}
6662 
6663 		status = vd_setup_backend_ldi(vd);
6664 		break;
6665 
6666 	default:
6667 		PRN("Unsupported vdisk backend %s", path);
6668 		VN_RELE(vnp);
6669 		status = EBADF;
6670 	}
6671 
6672 done:
6673 	if (status != 0) {
6674 		/*
6675 		 * If the error is retryable print an error message only
6676 		 * during the first try.
6677 		 */
6678 		if (status == ENXIO || status == ENODEV ||
6679 		    status == ENOENT || status == EROFS) {
6680 			if (!(vd->initialized & VD_SETUP_ERROR) &&
6681 			    !(DEVI_IS_ATTACHING(vd->vds->dip))) {
6682 				PRN("%s is currently inaccessible (error %d)",
6683 				    path, status);
6684 			}
6685 			status = EAGAIN;
6686 		} else {
6687 			PRN("%s can not be exported as a virtual disk "
6688 			    "(error %d)", path, status);
6689 		}
6690 		vd->initialized |= VD_SETUP_ERROR;
6691 
6692 	} else if (vd->initialized & VD_SETUP_ERROR) {
6693 		/* print a message only if we previously had an error */
6694 		PRN("%s is now online", path);
6695 		vd->initialized &= ~VD_SETUP_ERROR;
6696 	}
6697 
6698 	/*
6699 	 * For file or ZFS volume we also need an I/O queue.
6700 	 *
6701 	 * The I/O task queue is initialized here and not in vds_do_init_vd()
6702 	 * (as the start and completion queues) because vd_setup_vd() will be
6703 	 * call again if the backend is not available, and we need to know if
6704 	 * the backend is a ZFS volume or a file.
6705 	 */
6706 	if ((vd->file || vd->zvol) && vd->ioq == NULL) {
6707 		(void) snprintf(tq_name, sizeof (tq_name), "vd_ioq%lu", vd->id);
6708 
6709 		if ((vd->ioq = ddi_taskq_create(vd->vds->dip, tq_name,
6710 		    vd_ioq_nthreads, TASKQ_DEFAULTPRI, 0)) == NULL) {
6711 			PRN("Could not create io task queue");
6712 			return (EIO);
6713 		}
6714 	}
6715 
6716 	return (status);
6717 }
6718 
6719 static int
6720 vds_do_init_vd(vds_t *vds, uint64_t id, char *device_path, uint64_t options,
6721     uint64_t ldc_id, vd_t **vdp)
6722 {
6723 	char			tq_name[TASKQ_NAMELEN];
6724 	int			status;
6725 	ddi_iblock_cookie_t	iblock = NULL;
6726 	ldc_attr_t		ldc_attr;
6727 	vd_t			*vd;
6728 
6729 
6730 	ASSERT(vds != NULL);
6731 	ASSERT(device_path != NULL);
6732 	ASSERT(vdp != NULL);
6733 	PR0("Adding vdisk for %s", device_path);
6734 
6735 	if ((vd = kmem_zalloc(sizeof (*vd), KM_NOSLEEP)) == NULL) {
6736 		PRN("No memory for virtual disk");
6737 		return (EAGAIN);
6738 	}
6739 	*vdp = vd;	/* assign here so vds_destroy_vd() can cleanup later */
6740 	vd->id = id;
6741 	vd->vds = vds;
6742 	(void) strncpy(vd->device_path, device_path, MAXPATHLEN);
6743 
6744 	/* Setup open flags */
6745 	vd->open_flags = FREAD;
6746 
6747 	if (!(options & VD_OPT_RDONLY))
6748 		vd->open_flags |= FWRITE;
6749 
6750 	if (options & VD_OPT_EXCLUSIVE)
6751 		vd->open_flags |= FEXCL;
6752 
6753 	/* Setup disk type */
6754 	if (options & VD_OPT_SLICE) {
6755 		vd->vdisk_type = VD_DISK_TYPE_SLICE;
6756 		vd->nslices = 1;
6757 	} else {
6758 		vd->vdisk_type = VD_DISK_TYPE_DISK;
6759 		vd->nslices = V_NUMPAR;
6760 	}
6761 
6762 	/* default disk label */
6763 	vd->vdisk_label = VD_DISK_LABEL_UNK;
6764 
6765 	/* Open vdisk and initialize parameters */
6766 	if ((status = vd_setup_vd(vd)) == 0) {
6767 		vd->initialized |= VD_DISK_READY;
6768 
6769 		ASSERT(vd->nslices > 0 && vd->nslices <= V_NUMPAR);
6770 		PR0("vdisk_type = %s, volume = %s, file = %s, nslices = %u",
6771 		    ((vd->vdisk_type == VD_DISK_TYPE_DISK) ? "disk" : "slice"),
6772 		    (vd->volume ? "yes" : "no"), (vd->file ? "yes" : "no"),
6773 		    vd->nslices);
6774 	} else {
6775 		if (status != EAGAIN)
6776 			return (status);
6777 	}
6778 
6779 	/* Initialize locking */
6780 	if (ddi_get_soft_iblock_cookie(vds->dip, DDI_SOFTINT_MED,
6781 	    &iblock) != DDI_SUCCESS) {
6782 		PRN("Could not get iblock cookie.");
6783 		return (EIO);
6784 	}
6785 
6786 	mutex_init(&vd->lock, NULL, MUTEX_DRIVER, iblock);
6787 	vd->initialized |= VD_LOCKING;
6788 
6789 
6790 	/* Create start and completion task queues for the vdisk */
6791 	(void) snprintf(tq_name, sizeof (tq_name), "vd_startq%lu", id);
6792 	PR1("tq_name = %s", tq_name);
6793 	if ((vd->startq = ddi_taskq_create(vds->dip, tq_name, 1,
6794 	    TASKQ_DEFAULTPRI, 0)) == NULL) {
6795 		PRN("Could not create task queue");
6796 		return (EIO);
6797 	}
6798 	(void) snprintf(tq_name, sizeof (tq_name), "vd_completionq%lu", id);
6799 	PR1("tq_name = %s", tq_name);
6800 	if ((vd->completionq = ddi_taskq_create(vds->dip, tq_name, 1,
6801 	    TASKQ_DEFAULTPRI, 0)) == NULL) {
6802 		PRN("Could not create task queue");
6803 		return (EIO);
6804 	}
6805 
6806 	/* Allocate the staging buffer */
6807 	vd->max_msglen = sizeof (vio_msg_t);	/* baseline vio message size */
6808 	vd->vio_msgp = kmem_alloc(vd->max_msglen, KM_SLEEP);
6809 
6810 	vd->enabled = 1;	/* before callback can dispatch to startq */
6811 
6812 
6813 	/* Bring up LDC */
6814 	ldc_attr.devclass	= LDC_DEV_BLK_SVC;
6815 	ldc_attr.instance	= ddi_get_instance(vds->dip);
6816 	ldc_attr.mode		= LDC_MODE_UNRELIABLE;
6817 	ldc_attr.mtu		= VD_LDC_MTU;
6818 	if ((status = ldc_init(ldc_id, &ldc_attr, &vd->ldc_handle)) != 0) {
6819 		PRN("Could not initialize LDC channel %lx, "
6820 		    "init failed with error %d", ldc_id, status);
6821 		return (status);
6822 	}
6823 	vd->initialized |= VD_LDC;
6824 
6825 	if ((status = ldc_reg_callback(vd->ldc_handle, vd_handle_ldc_events,
6826 	    (caddr_t)vd)) != 0) {
6827 		PRN("Could not initialize LDC channel %lu,"
6828 		    "reg_callback failed with error %d", ldc_id, status);
6829 		return (status);
6830 	}
6831 
6832 	if ((status = ldc_open(vd->ldc_handle)) != 0) {
6833 		PRN("Could not initialize LDC channel %lu,"
6834 		    "open failed with error %d", ldc_id, status);
6835 		return (status);
6836 	}
6837 
6838 	if ((status = ldc_up(vd->ldc_handle)) != 0) {
6839 		PR0("ldc_up() returned errno %d", status);
6840 	}
6841 
6842 	/* Allocate the inband task memory handle */
6843 	status = ldc_mem_alloc_handle(vd->ldc_handle, &(vd->inband_task.mhdl));
6844 	if (status) {
6845 		PRN("Could not initialize LDC channel %lu,"
6846 		    "alloc_handle failed with error %d", ldc_id, status);
6847 		return (ENXIO);
6848 	}
6849 
6850 	/* Add the successfully-initialized vdisk to the server's table */
6851 	if (mod_hash_insert(vds->vd_table, (mod_hash_key_t)id, vd) != 0) {
6852 		PRN("Error adding vdisk ID %lu to table", id);
6853 		return (EIO);
6854 	}
6855 
6856 	/* store initial state */
6857 	vd->state = VD_STATE_INIT;
6858 
6859 	return (0);
6860 }
6861 
6862 static void
6863 vd_free_dring_task(vd_t *vdp)
6864 {
6865 	if (vdp->dring_task != NULL) {
6866 		ASSERT(vdp->dring_len != 0);
6867 		/* Free all dring_task memory handles */
6868 		for (int i = 0; i < vdp->dring_len; i++) {
6869 			(void) ldc_mem_free_handle(vdp->dring_task[i].mhdl);
6870 			kmem_free(vdp->dring_task[i].request,
6871 			    (vdp->descriptor_size -
6872 			    sizeof (vio_dring_entry_hdr_t)));
6873 			vdp->dring_task[i].request = NULL;
6874 			kmem_free(vdp->dring_task[i].msg, vdp->max_msglen);
6875 			vdp->dring_task[i].msg = NULL;
6876 		}
6877 		kmem_free(vdp->dring_task,
6878 		    (sizeof (*vdp->dring_task)) * vdp->dring_len);
6879 		vdp->dring_task = NULL;
6880 	}
6881 
6882 	if (vdp->write_queue != NULL) {
6883 		kmem_free(vdp->write_queue, sizeof (buf_t *) * vdp->dring_len);
6884 		vdp->write_queue = NULL;
6885 	}
6886 }
6887 
6888 /*
6889  * Destroy the state associated with a virtual disk
6890  */
6891 static void
6892 vds_destroy_vd(void *arg)
6893 {
6894 	vd_t	*vd = (vd_t *)arg;
6895 	int	retry = 0, rv;
6896 
6897 	if (vd == NULL)
6898 		return;
6899 
6900 	PR0("Destroying vdisk state");
6901 
6902 	/* Disable queuing requests for the vdisk */
6903 	if (vd->initialized & VD_LOCKING) {
6904 		mutex_enter(&vd->lock);
6905 		vd->enabled = 0;
6906 		mutex_exit(&vd->lock);
6907 	}
6908 
6909 	/* Drain and destroy start queue (*before* destroying ioq) */
6910 	if (vd->startq != NULL)
6911 		ddi_taskq_destroy(vd->startq);	/* waits for queued tasks */
6912 
6913 	/* Drain and destroy the I/O queue (*before* destroying completionq) */
6914 	if (vd->ioq != NULL)
6915 		ddi_taskq_destroy(vd->ioq);
6916 
6917 	/* Drain and destroy completion queue (*before* shutting down LDC) */
6918 	if (vd->completionq != NULL)
6919 		ddi_taskq_destroy(vd->completionq);	/* waits for tasks */
6920 
6921 	vd_free_dring_task(vd);
6922 
6923 	/* Free the inband task memory handle */
6924 	(void) ldc_mem_free_handle(vd->inband_task.mhdl);
6925 
6926 	/* Shut down LDC */
6927 	if (vd->initialized & VD_LDC) {
6928 		/* unmap the dring */
6929 		if (vd->initialized & VD_DRING)
6930 			(void) ldc_mem_dring_unmap(vd->dring_handle);
6931 
6932 		/* close LDC channel - retry on EAGAIN */
6933 		while ((rv = ldc_close(vd->ldc_handle)) == EAGAIN) {
6934 			if (++retry > vds_ldc_retries) {
6935 				PR0("Timed out closing channel");
6936 				break;
6937 			}
6938 			drv_usecwait(vds_ldc_delay);
6939 		}
6940 		if (rv == 0) {
6941 			(void) ldc_unreg_callback(vd->ldc_handle);
6942 			(void) ldc_fini(vd->ldc_handle);
6943 		} else {
6944 			/*
6945 			 * Closing the LDC channel has failed. Ideally we should
6946 			 * fail here but there is no Zeus level infrastructure
6947 			 * to handle this. The MD has already been changed and
6948 			 * we have to do the close. So we try to do as much
6949 			 * clean up as we can.
6950 			 */
6951 			(void) ldc_set_cb_mode(vd->ldc_handle, LDC_CB_DISABLE);
6952 			while (ldc_unreg_callback(vd->ldc_handle) == EAGAIN)
6953 				drv_usecwait(vds_ldc_delay);
6954 		}
6955 	}
6956 
6957 	/* Free the staging buffer for msgs */
6958 	if (vd->vio_msgp != NULL) {
6959 		kmem_free(vd->vio_msgp, vd->max_msglen);
6960 		vd->vio_msgp = NULL;
6961 	}
6962 
6963 	/* Free the inband message buffer */
6964 	if (vd->inband_task.msg != NULL) {
6965 		kmem_free(vd->inband_task.msg, vd->max_msglen);
6966 		vd->inband_task.msg = NULL;
6967 	}
6968 
6969 	if (vd->file) {
6970 		/* Close file */
6971 		(void) VOP_CLOSE(vd->file_vnode, vd->open_flags, 1,
6972 		    0, kcred, NULL);
6973 		VN_RELE(vd->file_vnode);
6974 	} else {
6975 		/* Close any open backing-device slices */
6976 		for (uint_t slice = 0; slice < V_NUMPAR; slice++) {
6977 			if (vd->ldi_handle[slice] != NULL) {
6978 				PR0("Closing slice %u", slice);
6979 				(void) ldi_close(vd->ldi_handle[slice],
6980 				    vd->open_flags, kcred);
6981 			}
6982 		}
6983 	}
6984 
6985 	/* Free disk image devid */
6986 	if (vd->dskimg_devid != NULL)
6987 		ddi_devid_free(vd->dskimg_devid);
6988 
6989 	/* Free any fake label */
6990 	if (vd->flabel) {
6991 		kmem_free(vd->flabel, vd->flabel_size);
6992 		vd->flabel = NULL;
6993 		vd->flabel_size = 0;
6994 	}
6995 
6996 	/* Free lock */
6997 	if (vd->initialized & VD_LOCKING)
6998 		mutex_destroy(&vd->lock);
6999 
7000 	/* Finally, free the vdisk structure itself */
7001 	kmem_free(vd, sizeof (*vd));
7002 }
7003 
7004 static int
7005 vds_init_vd(vds_t *vds, uint64_t id, char *device_path, uint64_t options,
7006     uint64_t ldc_id)
7007 {
7008 	int	status;
7009 	vd_t	*vd = NULL;
7010 
7011 
7012 	if ((status = vds_do_init_vd(vds, id, device_path, options,
7013 	    ldc_id, &vd)) != 0)
7014 		vds_destroy_vd(vd);
7015 
7016 	return (status);
7017 }
7018 
7019 static int
7020 vds_do_get_ldc_id(md_t *md, mde_cookie_t vd_node, mde_cookie_t *channel,
7021     uint64_t *ldc_id)
7022 {
7023 	int	num_channels;
7024 
7025 
7026 	/* Look for channel endpoint child(ren) of the vdisk MD node */
7027 	if ((num_channels = md_scan_dag(md, vd_node,
7028 	    md_find_name(md, VD_CHANNEL_ENDPOINT),
7029 	    md_find_name(md, "fwd"), channel)) <= 0) {
7030 		PRN("No \"%s\" found for virtual disk", VD_CHANNEL_ENDPOINT);
7031 		return (-1);
7032 	}
7033 
7034 	/* Get the "id" value for the first channel endpoint node */
7035 	if (md_get_prop_val(md, channel[0], VD_ID_PROP, ldc_id) != 0) {
7036 		PRN("No \"%s\" property found for \"%s\" of vdisk",
7037 		    VD_ID_PROP, VD_CHANNEL_ENDPOINT);
7038 		return (-1);
7039 	}
7040 
7041 	if (num_channels > 1) {
7042 		PRN("Using ID of first of multiple channels for this vdisk");
7043 	}
7044 
7045 	return (0);
7046 }
7047 
7048 static int
7049 vds_get_ldc_id(md_t *md, mde_cookie_t vd_node, uint64_t *ldc_id)
7050 {
7051 	int		num_nodes, status;
7052 	size_t		size;
7053 	mde_cookie_t	*channel;
7054 
7055 
7056 	if ((num_nodes = md_node_count(md)) <= 0) {
7057 		PRN("Invalid node count in Machine Description subtree");
7058 		return (-1);
7059 	}
7060 	size = num_nodes*(sizeof (*channel));
7061 	channel = kmem_zalloc(size, KM_SLEEP);
7062 	status = vds_do_get_ldc_id(md, vd_node, channel, ldc_id);
7063 	kmem_free(channel, size);
7064 
7065 	return (status);
7066 }
7067 
7068 /*
7069  * Function:
7070  *	vds_get_options
7071  *
7072  * Description:
7073  *	Parse the options of a vds node. Options are defined as an array
7074  *	of strings in the vds-block-device-opts property of the vds node
7075  *	in the machine description. Options are returned as a bitmask. The
7076  *	mapping between the bitmask options and the options strings from the
7077  *	machine description is defined in the vd_bdev_options[] array.
7078  *
7079  *	The vds-block-device-opts property is optional. If a vds has no such
7080  *	property then no option is defined.
7081  *
7082  * Parameters:
7083  *	md		- machine description.
7084  *	vd_node		- vds node in the machine description for which
7085  *			  options have to be parsed.
7086  *	options		- the returned options.
7087  *
7088  * Return Code:
7089  *	none.
7090  */
7091 static void
7092 vds_get_options(md_t *md, mde_cookie_t vd_node, uint64_t *options)
7093 {
7094 	char	*optstr, *opt;
7095 	int	len, n, i;
7096 
7097 	*options = 0;
7098 
7099 	if (md_get_prop_data(md, vd_node, VD_BLOCK_DEVICE_OPTS,
7100 	    (uint8_t **)&optstr, &len) != 0) {
7101 		PR0("No options found");
7102 		return;
7103 	}
7104 
7105 	/* parse options */
7106 	opt = optstr;
7107 	n = sizeof (vd_bdev_options) / sizeof (vd_option_t);
7108 
7109 	while (opt < optstr + len) {
7110 		for (i = 0; i < n; i++) {
7111 			if (strncmp(vd_bdev_options[i].vdo_name,
7112 			    opt, VD_OPTION_NLEN) == 0) {
7113 				*options |= vd_bdev_options[i].vdo_value;
7114 				break;
7115 			}
7116 		}
7117 
7118 		if (i < n) {
7119 			PR0("option: %s", opt);
7120 		} else {
7121 			PRN("option %s is unknown or unsupported", opt);
7122 		}
7123 
7124 		opt += strlen(opt) + 1;
7125 	}
7126 }
7127 
7128 static void
7129 vds_driver_types_free(vds_t *vds)
7130 {
7131 	if (vds->driver_types != NULL) {
7132 		kmem_free(vds->driver_types, sizeof (vd_driver_type_t) *
7133 		    vds->num_drivers);
7134 		vds->driver_types = NULL;
7135 		vds->num_drivers = 0;
7136 	}
7137 }
7138 
7139 /*
7140  * Update the driver type list with information from vds.conf.
7141  */
7142 static void
7143 vds_driver_types_update(vds_t *vds)
7144 {
7145 	char **list, *s;
7146 	uint_t i, num, count = 0, len;
7147 
7148 	if (ddi_prop_lookup_string_array(DDI_DEV_T_ANY, vds->dip,
7149 	    DDI_PROP_DONTPASS, "driver-type-list", &list, &num) !=
7150 	    DDI_PROP_SUCCESS)
7151 		return;
7152 
7153 	/*
7154 	 * We create a driver_types list with as many as entries as there
7155 	 * is in the driver-type-list from vds.conf. However only valid
7156 	 * entries will be populated (i.e. entries from driver-type-list
7157 	 * with a valid syntax). Invalid entries will be left blank so
7158 	 * they will have no driver name and the driver type will be
7159 	 * VD_DRIVER_UNKNOWN (= 0).
7160 	 */
7161 	vds->num_drivers = num;
7162 	vds->driver_types = kmem_zalloc(sizeof (vd_driver_type_t) * num,
7163 	    KM_SLEEP);
7164 
7165 	for (i = 0; i < num; i++) {
7166 
7167 		s = strchr(list[i], ':');
7168 
7169 		if (s == NULL) {
7170 			PRN("vds.conf: driver-type-list, entry %d (%s): "
7171 			    "a colon is expected in the entry",
7172 			    i, list[i]);
7173 			continue;
7174 		}
7175 
7176 		len = (uintptr_t)s - (uintptr_t)list[i];
7177 
7178 		if (len == 0) {
7179 			PRN("vds.conf: driver-type-list, entry %d (%s): "
7180 			    "the driver name is empty",
7181 			    i, list[i]);
7182 			continue;
7183 		}
7184 
7185 		if (len >= VD_DRIVER_NAME_LEN) {
7186 			PRN("vds.conf: driver-type-list, entry %d (%s): "
7187 			    "the driver name is too long",
7188 			    i, list[i]);
7189 			continue;
7190 		}
7191 
7192 		if (strcmp(s + 1, "disk") == 0) {
7193 
7194 			vds->driver_types[i].type = VD_DRIVER_DISK;
7195 
7196 		} else if (strcmp(s + 1, "volume") == 0) {
7197 
7198 			vds->driver_types[i].type = VD_DRIVER_VOLUME;
7199 
7200 		} else {
7201 			PRN("vds.conf: driver-type-list, entry %d (%s): "
7202 			    "the driver type is invalid",
7203 			    i, list[i]);
7204 			continue;
7205 		}
7206 
7207 		(void) strncpy(vds->driver_types[i].name, list[i], len);
7208 
7209 		PR0("driver-type-list, entry %d (%s) added",
7210 		    i, list[i]);
7211 
7212 		count++;
7213 	}
7214 
7215 	ddi_prop_free(list);
7216 
7217 	if (count == 0) {
7218 		/* nothing was added, clean up */
7219 		vds_driver_types_free(vds);
7220 	}
7221 }
7222 
7223 static void
7224 vds_add_vd(vds_t *vds, md_t *md, mde_cookie_t vd_node)
7225 {
7226 	char		*device_path = NULL;
7227 	uint64_t	id = 0, ldc_id = 0, options = 0;
7228 
7229 	if (md_get_prop_val(md, vd_node, VD_ID_PROP, &id) != 0) {
7230 		PRN("Error getting vdisk \"%s\"", VD_ID_PROP);
7231 		return;
7232 	}
7233 	PR0("Adding vdisk ID %lu", id);
7234 	if (md_get_prop_str(md, vd_node, VD_BLOCK_DEVICE_PROP,
7235 	    &device_path) != 0) {
7236 		PRN("Error getting vdisk \"%s\"", VD_BLOCK_DEVICE_PROP);
7237 		return;
7238 	}
7239 
7240 	vds_get_options(md, vd_node, &options);
7241 
7242 	if (vds_get_ldc_id(md, vd_node, &ldc_id) != 0) {
7243 		PRN("Error getting LDC ID for vdisk %lu", id);
7244 		return;
7245 	}
7246 
7247 	if (vds_init_vd(vds, id, device_path, options, ldc_id) != 0) {
7248 		PRN("Failed to add vdisk ID %lu", id);
7249 		if (mod_hash_destroy(vds->vd_table, (mod_hash_key_t)id) != 0)
7250 			PRN("No vDisk entry found for vdisk ID %lu", id);
7251 		return;
7252 	}
7253 }
7254 
7255 static void
7256 vds_remove_vd(vds_t *vds, md_t *md, mde_cookie_t vd_node)
7257 {
7258 	uint64_t	id = 0;
7259 
7260 
7261 	if (md_get_prop_val(md, vd_node, VD_ID_PROP, &id) != 0) {
7262 		PRN("Unable to get \"%s\" property from vdisk's MD node",
7263 		    VD_ID_PROP);
7264 		return;
7265 	}
7266 	PR0("Removing vdisk ID %lu", id);
7267 	if (mod_hash_destroy(vds->vd_table, (mod_hash_key_t)id) != 0)
7268 		PRN("No vdisk entry found for vdisk ID %lu", id);
7269 }
7270 
7271 static void
7272 vds_change_vd(vds_t *vds, md_t *prev_md, mde_cookie_t prev_vd_node,
7273     md_t *curr_md, mde_cookie_t curr_vd_node)
7274 {
7275 	char		*curr_dev, *prev_dev;
7276 	uint64_t	curr_id = 0, curr_ldc_id = 0, curr_options = 0;
7277 	uint64_t	prev_id = 0, prev_ldc_id = 0, prev_options = 0;
7278 	size_t		len;
7279 
7280 
7281 	/* Validate that vdisk ID has not changed */
7282 	if (md_get_prop_val(prev_md, prev_vd_node, VD_ID_PROP, &prev_id) != 0) {
7283 		PRN("Error getting previous vdisk \"%s\" property",
7284 		    VD_ID_PROP);
7285 		return;
7286 	}
7287 	if (md_get_prop_val(curr_md, curr_vd_node, VD_ID_PROP, &curr_id) != 0) {
7288 		PRN("Error getting current vdisk \"%s\" property", VD_ID_PROP);
7289 		return;
7290 	}
7291 	if (curr_id != prev_id) {
7292 		PRN("Not changing vdisk:  ID changed from %lu to %lu",
7293 		    prev_id, curr_id);
7294 		return;
7295 	}
7296 
7297 	/* Validate that LDC ID has not changed */
7298 	if (vds_get_ldc_id(prev_md, prev_vd_node, &prev_ldc_id) != 0) {
7299 		PRN("Error getting LDC ID for vdisk %lu", prev_id);
7300 		return;
7301 	}
7302 
7303 	if (vds_get_ldc_id(curr_md, curr_vd_node, &curr_ldc_id) != 0) {
7304 		PRN("Error getting LDC ID for vdisk %lu", curr_id);
7305 		return;
7306 	}
7307 	if (curr_ldc_id != prev_ldc_id) {
7308 		_NOTE(NOTREACHED);	/* lint is confused */
7309 		PRN("Not changing vdisk:  "
7310 		    "LDC ID changed from %lu to %lu", prev_ldc_id, curr_ldc_id);
7311 		return;
7312 	}
7313 
7314 	/* Determine whether device path has changed */
7315 	if (md_get_prop_str(prev_md, prev_vd_node, VD_BLOCK_DEVICE_PROP,
7316 	    &prev_dev) != 0) {
7317 		PRN("Error getting previous vdisk \"%s\"",
7318 		    VD_BLOCK_DEVICE_PROP);
7319 		return;
7320 	}
7321 	if (md_get_prop_str(curr_md, curr_vd_node, VD_BLOCK_DEVICE_PROP,
7322 	    &curr_dev) != 0) {
7323 		PRN("Error getting current vdisk \"%s\"", VD_BLOCK_DEVICE_PROP);
7324 		return;
7325 	}
7326 	if (((len = strlen(curr_dev)) == strlen(prev_dev)) &&
7327 	    (strncmp(curr_dev, prev_dev, len) == 0))
7328 		return;	/* no relevant (supported) change */
7329 
7330 	/* Validate that options have not changed */
7331 	vds_get_options(prev_md, prev_vd_node, &prev_options);
7332 	vds_get_options(curr_md, curr_vd_node, &curr_options);
7333 	if (prev_options != curr_options) {
7334 		PRN("Not changing vdisk:  options changed from %lx to %lx",
7335 		    prev_options, curr_options);
7336 		return;
7337 	}
7338 
7339 	PR0("Changing vdisk ID %lu", prev_id);
7340 
7341 	/* Remove old state, which will close vdisk and reset */
7342 	if (mod_hash_destroy(vds->vd_table, (mod_hash_key_t)prev_id) != 0)
7343 		PRN("No entry found for vdisk ID %lu", prev_id);
7344 
7345 	/* Re-initialize vdisk with new state */
7346 	if (vds_init_vd(vds, curr_id, curr_dev, curr_options,
7347 	    curr_ldc_id) != 0) {
7348 		PRN("Failed to change vdisk ID %lu", curr_id);
7349 		return;
7350 	}
7351 }
7352 
7353 static int
7354 vds_process_md(void *arg, mdeg_result_t *md)
7355 {
7356 	int	i;
7357 	vds_t	*vds = arg;
7358 
7359 
7360 	if (md == NULL)
7361 		return (MDEG_FAILURE);
7362 	ASSERT(vds != NULL);
7363 
7364 	for (i = 0; i < md->removed.nelem; i++)
7365 		vds_remove_vd(vds, md->removed.mdp, md->removed.mdep[i]);
7366 	for (i = 0; i < md->match_curr.nelem; i++)
7367 		vds_change_vd(vds, md->match_prev.mdp, md->match_prev.mdep[i],
7368 		    md->match_curr.mdp, md->match_curr.mdep[i]);
7369 	for (i = 0; i < md->added.nelem; i++)
7370 		vds_add_vd(vds, md->added.mdp, md->added.mdep[i]);
7371 
7372 	return (MDEG_SUCCESS);
7373 }
7374 
7375 
7376 static int
7377 vds_do_attach(dev_info_t *dip)
7378 {
7379 	int			status, sz;
7380 	int			cfg_handle;
7381 	minor_t			instance = ddi_get_instance(dip);
7382 	vds_t			*vds;
7383 	mdeg_prop_spec_t	*pspecp;
7384 	mdeg_node_spec_t	*ispecp;
7385 
7386 	/*
7387 	 * The "cfg-handle" property of a vds node in an MD contains the MD's
7388 	 * notion of "instance", or unique identifier, for that node; OBP
7389 	 * stores the value of the "cfg-handle" MD property as the value of
7390 	 * the "reg" property on the node in the device tree it builds from
7391 	 * the MD and passes to Solaris.  Thus, we look up the devinfo node's
7392 	 * "reg" property value to uniquely identify this device instance when
7393 	 * registering with the MD event-generation framework.  If the "reg"
7394 	 * property cannot be found, the device tree state is presumably so
7395 	 * broken that there is no point in continuing.
7396 	 */
7397 	if (!ddi_prop_exists(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
7398 	    VD_REG_PROP)) {
7399 		PRN("vds \"%s\" property does not exist", VD_REG_PROP);
7400 		return (DDI_FAILURE);
7401 	}
7402 
7403 	/* Get the MD instance for later MDEG registration */
7404 	cfg_handle = ddi_prop_get_int(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
7405 	    VD_REG_PROP, -1);
7406 
7407 	if (ddi_soft_state_zalloc(vds_state, instance) != DDI_SUCCESS) {
7408 		PRN("Could not allocate state for instance %u", instance);
7409 		return (DDI_FAILURE);
7410 	}
7411 
7412 	if ((vds = ddi_get_soft_state(vds_state, instance)) == NULL) {
7413 		PRN("Could not get state for instance %u", instance);
7414 		ddi_soft_state_free(vds_state, instance);
7415 		return (DDI_FAILURE);
7416 	}
7417 
7418 	vds->dip	= dip;
7419 	vds->vd_table	= mod_hash_create_ptrhash("vds_vd_table", VDS_NCHAINS,
7420 	    vds_destroy_vd, sizeof (void *));
7421 
7422 	ASSERT(vds->vd_table != NULL);
7423 
7424 	if ((status = ldi_ident_from_dip(dip, &vds->ldi_ident)) != 0) {
7425 		PRN("ldi_ident_from_dip() returned errno %d", status);
7426 		return (DDI_FAILURE);
7427 	}
7428 	vds->initialized |= VDS_LDI;
7429 
7430 	/* Register for MD updates */
7431 	sz = sizeof (vds_prop_template);
7432 	pspecp = kmem_alloc(sz, KM_SLEEP);
7433 	bcopy(vds_prop_template, pspecp, sz);
7434 
7435 	VDS_SET_MDEG_PROP_INST(pspecp, cfg_handle);
7436 
7437 	/* initialize the complete prop spec structure */
7438 	ispecp = kmem_zalloc(sizeof (mdeg_node_spec_t), KM_SLEEP);
7439 	ispecp->namep = "virtual-device";
7440 	ispecp->specp = pspecp;
7441 
7442 	if (mdeg_register(ispecp, &vd_match, vds_process_md, vds,
7443 	    &vds->mdeg) != MDEG_SUCCESS) {
7444 		PRN("Unable to register for MD updates");
7445 		kmem_free(ispecp, sizeof (mdeg_node_spec_t));
7446 		kmem_free(pspecp, sz);
7447 		return (DDI_FAILURE);
7448 	}
7449 
7450 	vds->ispecp = ispecp;
7451 	vds->initialized |= VDS_MDEG;
7452 
7453 	/* Prevent auto-detaching so driver is available whenever MD changes */
7454 	if (ddi_prop_update_int(DDI_DEV_T_NONE, dip, DDI_NO_AUTODETACH, 1) !=
7455 	    DDI_PROP_SUCCESS) {
7456 		PRN("failed to set \"%s\" property for instance %u",
7457 		    DDI_NO_AUTODETACH, instance);
7458 	}
7459 
7460 	/* read any user defined driver types from conf file and update list */
7461 	vds_driver_types_update(vds);
7462 
7463 	ddi_report_dev(dip);
7464 	return (DDI_SUCCESS);
7465 }
7466 
7467 static int
7468 vds_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
7469 {
7470 	int	status;
7471 
7472 	switch (cmd) {
7473 	case DDI_ATTACH:
7474 		PR0("Attaching");
7475 		if ((status = vds_do_attach(dip)) != DDI_SUCCESS)
7476 			(void) vds_detach(dip, DDI_DETACH);
7477 		return (status);
7478 	case DDI_RESUME:
7479 		PR0("No action required for DDI_RESUME");
7480 		return (DDI_SUCCESS);
7481 	default:
7482 		return (DDI_FAILURE);
7483 	}
7484 }
7485 
7486 static struct dev_ops vds_ops = {
7487 	DEVO_REV,	/* devo_rev */
7488 	0,		/* devo_refcnt */
7489 	ddi_no_info,	/* devo_getinfo */
7490 	nulldev,	/* devo_identify */
7491 	nulldev,	/* devo_probe */
7492 	vds_attach,	/* devo_attach */
7493 	vds_detach,	/* devo_detach */
7494 	nodev,		/* devo_reset */
7495 	NULL,		/* devo_cb_ops */
7496 	NULL,		/* devo_bus_ops */
7497 	nulldev,	/* devo_power */
7498 	ddi_quiesce_not_needed,	/* devo_quiesce */
7499 };
7500 
7501 static struct modldrv modldrv = {
7502 	&mod_driverops,
7503 	"virtual disk server",
7504 	&vds_ops,
7505 };
7506 
7507 static struct modlinkage modlinkage = {
7508 	MODREV_1,
7509 	&modldrv,
7510 	NULL
7511 };
7512 
7513 
7514 int
7515 _init(void)
7516 {
7517 	int		status;
7518 
7519 	if ((status = ddi_soft_state_init(&vds_state, sizeof (vds_t), 1)) != 0)
7520 		return (status);
7521 
7522 	if ((status = mod_install(&modlinkage)) != 0) {
7523 		ddi_soft_state_fini(&vds_state);
7524 		return (status);
7525 	}
7526 
7527 	return (0);
7528 }
7529 
7530 int
7531 _info(struct modinfo *modinfop)
7532 {
7533 	return (mod_info(&modlinkage, modinfop));
7534 }
7535 
7536 int
7537 _fini(void)
7538 {
7539 	int	status;
7540 
7541 	if ((status = mod_remove(&modlinkage)) != 0)
7542 		return (status);
7543 	ddi_soft_state_fini(&vds_state);
7544 	return (0);
7545 }
7546