xref: /titanic_53/usr/src/uts/sun4v/io/vdc.c (revision 193974072f41a843678abf5f61979c748687e66b)
11ae08745Sheppo /*
21ae08745Sheppo  * CDDL HEADER START
31ae08745Sheppo  *
41ae08745Sheppo  * The contents of this file are subject to the terms of the
51ae08745Sheppo  * Common Development and Distribution License (the "License").
61ae08745Sheppo  * You may not use this file except in compliance with the License.
71ae08745Sheppo  *
81ae08745Sheppo  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
91ae08745Sheppo  * or http://www.opensolaris.org/os/licensing.
101ae08745Sheppo  * See the License for the specific language governing permissions
111ae08745Sheppo  * and limitations under the License.
121ae08745Sheppo  *
131ae08745Sheppo  * When distributing Covered Code, include this CDDL HEADER in each
141ae08745Sheppo  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
151ae08745Sheppo  * If applicable, add the following below this CDDL HEADER, with the
161ae08745Sheppo  * fields enclosed by brackets "[]" replaced with your own identifying
171ae08745Sheppo  * information: Portions Copyright [yyyy] [name of copyright owner]
181ae08745Sheppo  *
191ae08745Sheppo  * CDDL HEADER END
201ae08745Sheppo  */
211ae08745Sheppo 
221ae08745Sheppo /*
23edcc0754Sachartre  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
241ae08745Sheppo  * Use is subject to license terms.
251ae08745Sheppo  */
261ae08745Sheppo 
271ae08745Sheppo /*
281ae08745Sheppo  * LDoms virtual disk client (vdc) device driver
291ae08745Sheppo  *
301ae08745Sheppo  * This driver runs on a guest logical domain and communicates with the virtual
311ae08745Sheppo  * disk server (vds) driver running on the service domain which is exporting
321ae08745Sheppo  * virtualized "disks" to the guest logical domain.
331ae08745Sheppo  *
341ae08745Sheppo  * The driver can be divided into four sections:
351ae08745Sheppo  *
361ae08745Sheppo  * 1) generic device driver housekeeping
371ae08745Sheppo  *	_init, _fini, attach, detach, ops structures, etc.
381ae08745Sheppo  *
391ae08745Sheppo  * 2) communication channel setup
401ae08745Sheppo  *	Setup the communications link over the LDC channel that vdc uses to
411ae08745Sheppo  *	talk to the vDisk server. Initialise the descriptor ring which
421ae08745Sheppo  *	allows the LDC clients to transfer data via memory mappings.
431ae08745Sheppo  *
441ae08745Sheppo  * 3) Support exported to upper layers (filesystems, etc)
451ae08745Sheppo  *	The upper layers call into vdc via strategy(9E) and DKIO(7I)
461ae08745Sheppo  *	ioctl calls. vdc will copy the data to be written to the descriptor
471ae08745Sheppo  *	ring or maps the buffer to store the data read by the vDisk
481ae08745Sheppo  *	server into the descriptor ring. It then sends a message to the
491ae08745Sheppo  *	vDisk server requesting it to complete the operation.
501ae08745Sheppo  *
511ae08745Sheppo  * 4) Handling responses from vDisk server.
521ae08745Sheppo  *	The vDisk server will ACK some or all of the messages vdc sends to it
531ae08745Sheppo  *	(this is configured during the handshake). Upon receipt of an ACK
541ae08745Sheppo  *	vdc will check the descriptor ring and signal to the upper layer
551ae08745Sheppo  *	code waiting on the IO.
561ae08745Sheppo  */
571ae08745Sheppo 
58e1ebb9ecSlm66018 #include <sys/atomic.h>
591ae08745Sheppo #include <sys/conf.h>
601ae08745Sheppo #include <sys/disp.h>
611ae08745Sheppo #include <sys/ddi.h>
621ae08745Sheppo #include <sys/dkio.h>
631ae08745Sheppo #include <sys/efi_partition.h>
641ae08745Sheppo #include <sys/fcntl.h>
651ae08745Sheppo #include <sys/file.h>
66366a92acSlm66018 #include <sys/kstat.h>
671ae08745Sheppo #include <sys/mach_descrip.h>
681ae08745Sheppo #include <sys/modctl.h>
691ae08745Sheppo #include <sys/mdeg.h>
701ae08745Sheppo #include <sys/note.h>
711ae08745Sheppo #include <sys/open.h>
72d10e4ef2Snarayan #include <sys/sdt.h>
731ae08745Sheppo #include <sys/stat.h>
741ae08745Sheppo #include <sys/sunddi.h>
751ae08745Sheppo #include <sys/types.h>
761ae08745Sheppo #include <sys/promif.h>
772f5224aeSachartre #include <sys/var.h>
781ae08745Sheppo #include <sys/vtoc.h>
791ae08745Sheppo #include <sys/archsystm.h>
801ae08745Sheppo #include <sys/sysmacros.h>
811ae08745Sheppo 
821ae08745Sheppo #include <sys/cdio.h>
831ae08745Sheppo #include <sys/dktp/fdisk.h>
8487a7269eSachartre #include <sys/dktp/dadkio.h>
852f5224aeSachartre #include <sys/mhd.h>
861ae08745Sheppo #include <sys/scsi/generic/sense.h>
872f5224aeSachartre #include <sys/scsi/impl/uscsi.h>
882f5224aeSachartre #include <sys/scsi/impl/services.h>
892f5224aeSachartre #include <sys/scsi/targets/sddef.h>
901ae08745Sheppo 
911ae08745Sheppo #include <sys/ldoms.h>
921ae08745Sheppo #include <sys/ldc.h>
931ae08745Sheppo #include <sys/vio_common.h>
941ae08745Sheppo #include <sys/vio_mailbox.h>
9517cadca8Slm66018 #include <sys/vio_util.h>
961ae08745Sheppo #include <sys/vdsk_common.h>
971ae08745Sheppo #include <sys/vdsk_mailbox.h>
981ae08745Sheppo #include <sys/vdc.h>
991ae08745Sheppo 
100342440ecSPrasad Singamsetty #define	VD_OLDVTOC_LIMIT	0x7fffffff
101342440ecSPrasad Singamsetty 
1021ae08745Sheppo /*
1031ae08745Sheppo  * function prototypes
1041ae08745Sheppo  */
1051ae08745Sheppo 
1061ae08745Sheppo /* standard driver functions */
1071ae08745Sheppo static int	vdc_open(dev_t *dev, int flag, int otyp, cred_t *cred);
1081ae08745Sheppo static int	vdc_close(dev_t dev, int flag, int otyp, cred_t *cred);
1091ae08745Sheppo static int	vdc_strategy(struct buf *buf);
1101ae08745Sheppo static int	vdc_print(dev_t dev, char *str);
1111ae08745Sheppo static int	vdc_dump(dev_t dev, caddr_t addr, daddr_t blkno, int nblk);
1121ae08745Sheppo static int	vdc_read(dev_t dev, struct uio *uio, cred_t *cred);
1131ae08745Sheppo static int	vdc_write(dev_t dev, struct uio *uio, cred_t *cred);
1141ae08745Sheppo static int	vdc_ioctl(dev_t dev, int cmd, intptr_t arg, int mode,
1151ae08745Sheppo 			cred_t *credp, int *rvalp);
1161ae08745Sheppo static int	vdc_aread(dev_t dev, struct aio_req *aio, cred_t *cred);
1171ae08745Sheppo static int	vdc_awrite(dev_t dev, struct aio_req *aio, cred_t *cred);
1181ae08745Sheppo 
1191ae08745Sheppo static int	vdc_getinfo(dev_info_t *dip, ddi_info_cmd_t cmd,
1201ae08745Sheppo 			void *arg, void **resultp);
1211ae08745Sheppo static int	vdc_attach(dev_info_t *dip, ddi_attach_cmd_t cmd);
1221ae08745Sheppo static int	vdc_detach(dev_info_t *dip, ddi_detach_cmd_t cmd);
1235b98b509Sachartre static int	vdc_prop_op(dev_t dev, dev_info_t *dip, ddi_prop_op_t prop_op,
1245b98b509Sachartre 		    int mod_flags, char *name, caddr_t valuep, int *lengthp);
1251ae08745Sheppo 
1261ae08745Sheppo /* setup */
1270d0c8d4bSnarayan static void	vdc_min(struct buf *bufp);
1280a55fbb7Slm66018 static int	vdc_send(vdc_t *vdc, caddr_t pkt, size_t *msglen);
1298cd10891Snarayan static int	vdc_do_ldc_init(vdc_t *vdc, vdc_server_t *srvr);
1301ae08745Sheppo static int	vdc_start_ldc_connection(vdc_t *vdc);
1311ae08745Sheppo static int	vdc_create_device_nodes(vdc_t *vdc);
1324bac2208Snarayan static int	vdc_create_device_nodes_efi(vdc_t *vdc);
1334bac2208Snarayan static int	vdc_create_device_nodes_vtoc(vdc_t *vdc);
134366a92acSlm66018 static void	vdc_create_io_kstats(vdc_t *vdc);
135366a92acSlm66018 static void	vdc_create_err_kstats(vdc_t *vdc);
136366a92acSlm66018 static void	vdc_set_err_kstats(vdc_t *vdc);
137655fd6a9Sachartre static int	vdc_get_md_node(dev_info_t *dip, md_t **mdpp,
1388cd10891Snarayan 		    mde_cookie_t *vd_nodep);
1398cd10891Snarayan static int	vdc_init_ports(vdc_t *vdc, md_t *mdp, mde_cookie_t vd_nodep);
1408cd10891Snarayan static void	vdc_fini_ports(vdc_t *vdc);
1418cd10891Snarayan static void	vdc_switch_server(vdc_t *vdcp);
1420a55fbb7Slm66018 static int	vdc_do_ldc_up(vdc_t *vdc);
1438cd10891Snarayan static void	vdc_terminate_ldc(vdc_t *vdc, vdc_server_t *srvr);
1441ae08745Sheppo static int	vdc_init_descriptor_ring(vdc_t *vdc);
1451ae08745Sheppo static void	vdc_destroy_descriptor_ring(vdc_t *vdc);
1464bac2208Snarayan static int	vdc_setup_devid(vdc_t *vdc);
147edcc0754Sachartre static void	vdc_store_label_efi(vdc_t *, efi_gpt_t *, efi_gpe_t *);
148342440ecSPrasad Singamsetty static void	vdc_store_label_vtoc(vdc_t *, struct dk_geom *,
149342440ecSPrasad Singamsetty 		    struct extvtoc *);
15078fcd0a1Sachartre static void	vdc_store_label_unk(vdc_t *vdc);
15178fcd0a1Sachartre static boolean_t vdc_is_opened(vdc_t *vdc);
152de3a5331SRamesh Chitrothu static void	vdc_update_size(vdc_t *vdc, size_t, size_t, size_t);
1531ae08745Sheppo 
1541ae08745Sheppo /* handshake with vds */
1550a55fbb7Slm66018 static int		vdc_init_ver_negotiation(vdc_t *vdc, vio_ver_t ver);
1563af08d82Slm66018 static int		vdc_ver_negotiation(vdc_t *vdcp);
1571ae08745Sheppo static int		vdc_init_attr_negotiation(vdc_t *vdc);
1583af08d82Slm66018 static int		vdc_attr_negotiation(vdc_t *vdcp);
1591ae08745Sheppo static int		vdc_init_dring_negotiate(vdc_t *vdc);
1603af08d82Slm66018 static int		vdc_dring_negotiation(vdc_t *vdcp);
1613af08d82Slm66018 static int		vdc_send_rdx(vdc_t *vdcp);
1623af08d82Slm66018 static int		vdc_rdx_exchange(vdc_t *vdcp);
1630a55fbb7Slm66018 static boolean_t	vdc_is_supported_version(vio_ver_msg_t *ver_msg);
1641ae08745Sheppo 
1650a55fbb7Slm66018 /* processing incoming messages from vDisk server */
1661ae08745Sheppo static void	vdc_process_msg_thread(vdc_t *vdc);
1673af08d82Slm66018 static int	vdc_recv(vdc_t *vdc, vio_msg_t *msgp, size_t *nbytesp);
1683af08d82Slm66018 
1690a55fbb7Slm66018 static uint_t	vdc_handle_cb(uint64_t event, caddr_t arg);
1703af08d82Slm66018 static int	vdc_process_data_msg(vdc_t *vdc, vio_msg_t *msg);
1710a55fbb7Slm66018 static int	vdc_handle_ver_msg(vdc_t *vdc, vio_ver_msg_t *ver_msg);
1720a55fbb7Slm66018 static int	vdc_handle_attr_msg(vdc_t *vdc, vd_attr_msg_t *attr_msg);
1730a55fbb7Slm66018 static int	vdc_handle_dring_reg_msg(vdc_t *vdc, vio_dring_reg_msg_t *msg);
1743af08d82Slm66018 static int 	vdc_send_request(vdc_t *vdcp, int operation,
1753af08d82Slm66018 		    caddr_t addr, size_t nbytes, int slice, diskaddr_t offset,
1763af08d82Slm66018 		    int cb_type, void *cb_arg, vio_desc_direction_t dir);
1773af08d82Slm66018 static int	vdc_map_to_shared_dring(vdc_t *vdcp, int idx);
1783af08d82Slm66018 static int 	vdc_populate_descriptor(vdc_t *vdcp, int operation,
1793af08d82Slm66018 		    caddr_t addr, size_t nbytes, int slice, diskaddr_t offset,
1803af08d82Slm66018 		    int cb_type, void *cb_arg, vio_desc_direction_t dir);
1812f5224aeSachartre static int 	vdc_do_sync_op(vdc_t *vdcp, int operation, caddr_t addr,
1822f5224aeSachartre 		    size_t nbytes, int slice, diskaddr_t offset, int cb_type,
1832f5224aeSachartre 		    void *cb_arg, vio_desc_direction_t dir, boolean_t);
1843af08d82Slm66018 
1853af08d82Slm66018 static int	vdc_wait_for_response(vdc_t *vdcp, vio_msg_t *msgp);
1863c2ebf09Sachartre static int	vdc_drain_response(vdc_t *vdcp, struct buf *buf);
1871ae08745Sheppo static int	vdc_depopulate_descriptor(vdc_t *vdc, uint_t idx);
1883af08d82Slm66018 static int	vdc_populate_mem_hdl(vdc_t *vdcp, vdc_local_desc_t *ldep);
189e1ebb9ecSlm66018 static int	vdc_verify_seq_num(vdc_t *vdc, vio_dring_msg_t *dring_msg);
1901ae08745Sheppo 
1911ae08745Sheppo /* dkio */
1922f5224aeSachartre static int	vd_process_ioctl(dev_t dev, int cmd, caddr_t arg, int mode,
1932f5224aeSachartre 		    int *rvalp);
194edcc0754Sachartre static int	vd_process_efi_ioctl(void *vdisk, int cmd, uintptr_t arg);
19578fcd0a1Sachartre static void	vdc_create_fake_geometry(vdc_t *vdc);
19678fcd0a1Sachartre static int	vdc_validate_geometry(vdc_t *vdc);
19778fcd0a1Sachartre static void	vdc_validate(vdc_t *vdc);
19878fcd0a1Sachartre static void	vdc_validate_task(void *arg);
199d10e4ef2Snarayan static int	vdc_null_copy_func(vdc_t *vdc, void *from, void *to,
200d10e4ef2Snarayan 		    int mode, int dir);
2014bac2208Snarayan static int	vdc_get_wce_convert(vdc_t *vdc, void *from, void *to,
2024bac2208Snarayan 		    int mode, int dir);
2034bac2208Snarayan static int	vdc_set_wce_convert(vdc_t *vdc, void *from, void *to,
2044bac2208Snarayan 		    int mode, int dir);
205d10e4ef2Snarayan static int	vdc_get_vtoc_convert(vdc_t *vdc, void *from, void *to,
206d10e4ef2Snarayan 		    int mode, int dir);
207d10e4ef2Snarayan static int	vdc_set_vtoc_convert(vdc_t *vdc, void *from, void *to,
208d10e4ef2Snarayan 		    int mode, int dir);
209342440ecSPrasad Singamsetty static int	vdc_get_extvtoc_convert(vdc_t *vdc, void *from, void *to,
210342440ecSPrasad Singamsetty 		    int mode, int dir);
211342440ecSPrasad Singamsetty static int	vdc_set_extvtoc_convert(vdc_t *vdc, void *from, void *to,
212342440ecSPrasad Singamsetty 		    int mode, int dir);
213d10e4ef2Snarayan static int	vdc_get_geom_convert(vdc_t *vdc, void *from, void *to,
214d10e4ef2Snarayan 		    int mode, int dir);
215d10e4ef2Snarayan static int	vdc_set_geom_convert(vdc_t *vdc, void *from, void *to,
216d10e4ef2Snarayan 		    int mode, int dir);
2174bac2208Snarayan static int	vdc_get_efi_convert(vdc_t *vdc, void *from, void *to,
2184bac2208Snarayan 		    int mode, int dir);
2194bac2208Snarayan static int	vdc_set_efi_convert(vdc_t *vdc, void *from, void *to,
2204bac2208Snarayan 		    int mode, int dir);
2211ae08745Sheppo 
2222f5224aeSachartre static void 	vdc_ownership_update(vdc_t *vdc, int ownership_flags);
2232f5224aeSachartre static int	vdc_access_set(vdc_t *vdc, uint64_t flags, int mode);
2242f5224aeSachartre static vdc_io_t	*vdc_failfast_io_queue(vdc_t *vdc, struct buf *buf);
2252f5224aeSachartre static int	vdc_failfast_check_resv(vdc_t *vdc);
2262f5224aeSachartre 
2271ae08745Sheppo /*
2281ae08745Sheppo  * Module variables
2291ae08745Sheppo  */
230e1ebb9ecSlm66018 
231e1ebb9ecSlm66018 /*
232e1ebb9ecSlm66018  * Tunable variables to control how long vdc waits before timing out on
233e1ebb9ecSlm66018  * various operations
234e1ebb9ecSlm66018  */
2353c96341aSnarayan static int	vdc_hshake_retries = 3;
236e1ebb9ecSlm66018 
237655fd6a9Sachartre static int	vdc_timeout = 0; /* units: seconds */
2388cd10891Snarayan static int 	vdc_ldcup_timeout = 1; /* units: seconds */
239655fd6a9Sachartre 
2403af08d82Slm66018 static uint64_t vdc_hz_min_ldc_delay;
2413af08d82Slm66018 static uint64_t vdc_min_timeout_ldc = 1 * MILLISEC;
2423af08d82Slm66018 static uint64_t vdc_hz_max_ldc_delay;
2433af08d82Slm66018 static uint64_t vdc_max_timeout_ldc = 100 * MILLISEC;
2443af08d82Slm66018 
2453af08d82Slm66018 static uint64_t vdc_ldc_read_init_delay = 1 * MILLISEC;
2463af08d82Slm66018 static uint64_t vdc_ldc_read_max_delay = 100 * MILLISEC;
247e1ebb9ecSlm66018 
248e1ebb9ecSlm66018 /* values for dumping - need to run in a tighter loop */
249e1ebb9ecSlm66018 static uint64_t	vdc_usec_timeout_dump = 100 * MILLISEC;	/* 0.1s units: ns */
250e1ebb9ecSlm66018 static int	vdc_dump_retries = 100;
251e1ebb9ecSlm66018 
2522f5224aeSachartre static uint16_t	vdc_scsi_timeout = 60;	/* 60s units: seconds  */
2532f5224aeSachartre 
2542f5224aeSachartre static uint64_t vdc_ownership_delay = 6 * MICROSEC; /* 6s units: usec */
2552f5224aeSachartre 
256e1ebb9ecSlm66018 /* Count of the number of vdc instances attached */
257e1ebb9ecSlm66018 static volatile uint32_t	vdc_instance_count = 0;
2581ae08745Sheppo 
2592f5224aeSachartre /* Tunable to log all SCSI errors */
2602f5224aeSachartre static boolean_t vdc_scsi_log_error = B_FALSE;
2612f5224aeSachartre 
2621ae08745Sheppo /* Soft state pointer */
2631ae08745Sheppo static void	*vdc_state;
2641ae08745Sheppo 
2653af08d82Slm66018 /*
2663af08d82Slm66018  * Controlling the verbosity of the error/debug messages
2673af08d82Slm66018  *
2683af08d82Slm66018  * vdc_msglevel - controls level of messages
2693af08d82Slm66018  * vdc_matchinst - 64-bit variable where each bit corresponds
2703af08d82Slm66018  *                 to the vdc instance the vdc_msglevel applies.
2713af08d82Slm66018  */
2723af08d82Slm66018 int		vdc_msglevel = 0x0;
2733af08d82Slm66018 uint64_t	vdc_matchinst = 0ull;
2741ae08745Sheppo 
2750a55fbb7Slm66018 /*
2760a55fbb7Slm66018  * Supported vDisk protocol version pairs.
2770a55fbb7Slm66018  *
2780a55fbb7Slm66018  * The first array entry is the latest and preferred version.
2790a55fbb7Slm66018  */
28017cadca8Slm66018 static const vio_ver_t	vdc_version[] = {{1, 1}};
2811ae08745Sheppo 
2821ae08745Sheppo static struct cb_ops vdc_cb_ops = {
2831ae08745Sheppo 	vdc_open,	/* cb_open */
2841ae08745Sheppo 	vdc_close,	/* cb_close */
2851ae08745Sheppo 	vdc_strategy,	/* cb_strategy */
2861ae08745Sheppo 	vdc_print,	/* cb_print */
2871ae08745Sheppo 	vdc_dump,	/* cb_dump */
2881ae08745Sheppo 	vdc_read,	/* cb_read */
2891ae08745Sheppo 	vdc_write,	/* cb_write */
2901ae08745Sheppo 	vdc_ioctl,	/* cb_ioctl */
2911ae08745Sheppo 	nodev,		/* cb_devmap */
2921ae08745Sheppo 	nodev,		/* cb_mmap */
2931ae08745Sheppo 	nodev,		/* cb_segmap */
2941ae08745Sheppo 	nochpoll,	/* cb_chpoll */
2955b98b509Sachartre 	vdc_prop_op,	/* cb_prop_op */
2961ae08745Sheppo 	NULL,		/* cb_str */
2971ae08745Sheppo 	D_MP | D_64BIT,	/* cb_flag */
2981ae08745Sheppo 	CB_REV,		/* cb_rev */
2991ae08745Sheppo 	vdc_aread,	/* cb_aread */
3001ae08745Sheppo 	vdc_awrite	/* cb_awrite */
3011ae08745Sheppo };
3021ae08745Sheppo 
3031ae08745Sheppo static struct dev_ops vdc_ops = {
3041ae08745Sheppo 	DEVO_REV,	/* devo_rev */
3051ae08745Sheppo 	0,		/* devo_refcnt */
3061ae08745Sheppo 	vdc_getinfo,	/* devo_getinfo */
3071ae08745Sheppo 	nulldev,	/* devo_identify */
3081ae08745Sheppo 	nulldev,	/* devo_probe */
3091ae08745Sheppo 	vdc_attach,	/* devo_attach */
3101ae08745Sheppo 	vdc_detach,	/* devo_detach */
3111ae08745Sheppo 	nodev,		/* devo_reset */
3121ae08745Sheppo 	&vdc_cb_ops,	/* devo_cb_ops */
3131ae08745Sheppo 	NULL,		/* devo_bus_ops */
314*19397407SSherry Moore 	nulldev,	/* devo_power */
315*19397407SSherry Moore 	ddi_quiesce_not_needed,	/* devo_quiesce */
3161ae08745Sheppo };
3171ae08745Sheppo 
3181ae08745Sheppo static struct modldrv modldrv = {
3191ae08745Sheppo 	&mod_driverops,
320205eeb1aSlm66018 	"virtual disk client",
3211ae08745Sheppo 	&vdc_ops,
3221ae08745Sheppo };
3231ae08745Sheppo 
3241ae08745Sheppo static struct modlinkage modlinkage = {
3251ae08745Sheppo 	MODREV_1,
3261ae08745Sheppo 	&modldrv,
3271ae08745Sheppo 	NULL
3281ae08745Sheppo };
3291ae08745Sheppo 
3301ae08745Sheppo /* -------------------------------------------------------------------------- */
3311ae08745Sheppo 
3321ae08745Sheppo /*
3331ae08745Sheppo  * Device Driver housekeeping and setup
3341ae08745Sheppo  */
3351ae08745Sheppo 
3361ae08745Sheppo int
3371ae08745Sheppo _init(void)
3381ae08745Sheppo {
3391ae08745Sheppo 	int	status;
3401ae08745Sheppo 
3411ae08745Sheppo 	if ((status = ddi_soft_state_init(&vdc_state, sizeof (vdc_t), 1)) != 0)
3421ae08745Sheppo 		return (status);
3431ae08745Sheppo 	if ((status = mod_install(&modlinkage)) != 0)
3441ae08745Sheppo 		ddi_soft_state_fini(&vdc_state);
3451ae08745Sheppo 	return (status);
3461ae08745Sheppo }
3471ae08745Sheppo 
3481ae08745Sheppo int
3491ae08745Sheppo _info(struct modinfo *modinfop)
3501ae08745Sheppo {
3511ae08745Sheppo 	return (mod_info(&modlinkage, modinfop));
3521ae08745Sheppo }
3531ae08745Sheppo 
3541ae08745Sheppo int
3551ae08745Sheppo _fini(void)
3561ae08745Sheppo {
3571ae08745Sheppo 	int	status;
3581ae08745Sheppo 
3591ae08745Sheppo 	if ((status = mod_remove(&modlinkage)) != 0)
3601ae08745Sheppo 		return (status);
3611ae08745Sheppo 	ddi_soft_state_fini(&vdc_state);
3621ae08745Sheppo 	return (0);
3631ae08745Sheppo }
3641ae08745Sheppo 
3651ae08745Sheppo static int
3661ae08745Sheppo vdc_getinfo(dev_info_t *dip, ddi_info_cmd_t cmd,  void *arg, void **resultp)
3671ae08745Sheppo {
3681ae08745Sheppo 	_NOTE(ARGUNUSED(dip))
3691ae08745Sheppo 
3700d0c8d4bSnarayan 	int	instance = VDCUNIT((dev_t)arg);
3711ae08745Sheppo 	vdc_t	*vdc = NULL;
3721ae08745Sheppo 
3731ae08745Sheppo 	switch (cmd) {
3741ae08745Sheppo 	case DDI_INFO_DEVT2DEVINFO:
3751ae08745Sheppo 		if ((vdc = ddi_get_soft_state(vdc_state, instance)) == NULL) {
3761ae08745Sheppo 			*resultp = NULL;
3771ae08745Sheppo 			return (DDI_FAILURE);
3781ae08745Sheppo 		}
3791ae08745Sheppo 		*resultp = vdc->dip;
3801ae08745Sheppo 		return (DDI_SUCCESS);
3811ae08745Sheppo 	case DDI_INFO_DEVT2INSTANCE:
3821ae08745Sheppo 		*resultp = (void *)(uintptr_t)instance;
3831ae08745Sheppo 		return (DDI_SUCCESS);
3841ae08745Sheppo 	default:
3851ae08745Sheppo 		*resultp = NULL;
3861ae08745Sheppo 		return (DDI_FAILURE);
3871ae08745Sheppo 	}
3881ae08745Sheppo }
3891ae08745Sheppo 
3901ae08745Sheppo static int
3911ae08745Sheppo vdc_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
3921ae08745Sheppo {
3932f5224aeSachartre 	kt_did_t failfast_tid, ownership_tid;
3941ae08745Sheppo 	int	instance;
3951ae08745Sheppo 	int	rv;
396d7400d00Sachartre 	vdc_server_t *srvr;
3971ae08745Sheppo 	vdc_t	*vdc = NULL;
3981ae08745Sheppo 
3991ae08745Sheppo 	switch (cmd) {
4001ae08745Sheppo 	case DDI_DETACH:
4011ae08745Sheppo 		/* the real work happens below */
4021ae08745Sheppo 		break;
4031ae08745Sheppo 	case DDI_SUSPEND:
4041ae08745Sheppo 		/* nothing to do for this non-device */
4051ae08745Sheppo 		return (DDI_SUCCESS);
4061ae08745Sheppo 	default:
4071ae08745Sheppo 		return (DDI_FAILURE);
4081ae08745Sheppo 	}
4091ae08745Sheppo 
4101ae08745Sheppo 	ASSERT(cmd == DDI_DETACH);
4111ae08745Sheppo 	instance = ddi_get_instance(dip);
4123af08d82Slm66018 	DMSGX(1, "[%d] Entered\n", instance);
4131ae08745Sheppo 
4141ae08745Sheppo 	if ((vdc = ddi_get_soft_state(vdc_state, instance)) == NULL) {
415e1ebb9ecSlm66018 		cmn_err(CE_NOTE, "[%d] Couldn't get state structure", instance);
4161ae08745Sheppo 		return (DDI_FAILURE);
4171ae08745Sheppo 	}
4181ae08745Sheppo 
4192f5224aeSachartre 	/*
4202f5224aeSachartre 	 * This function is called when vdc is detached or if it has failed to
4212f5224aeSachartre 	 * attach. In that case, the attach may have fail before the vdisk type
4222f5224aeSachartre 	 * has been set so we can't call vdc_is_opened(). However as the attach
4232f5224aeSachartre 	 * has failed, we know that the vdisk is not opened and we can safely
4242f5224aeSachartre 	 * detach.
4252f5224aeSachartre 	 */
4262f5224aeSachartre 	if (vdc->vdisk_type != VD_DISK_TYPE_UNK && vdc_is_opened(vdc)) {
4273af08d82Slm66018 		DMSG(vdc, 0, "[%d] Cannot detach: device is open", instance);
4281ae08745Sheppo 		return (DDI_FAILURE);
4291ae08745Sheppo 	}
4301ae08745Sheppo 
43178fcd0a1Sachartre 	if (vdc->dkio_flush_pending) {
43278fcd0a1Sachartre 		DMSG(vdc, 0,
43378fcd0a1Sachartre 		    "[%d] Cannot detach: %d outstanding DKIO flushes\n",
43478fcd0a1Sachartre 		    instance, vdc->dkio_flush_pending);
43578fcd0a1Sachartre 		return (DDI_FAILURE);
43678fcd0a1Sachartre 	}
43778fcd0a1Sachartre 
43878fcd0a1Sachartre 	if (vdc->validate_pending) {
43978fcd0a1Sachartre 		DMSG(vdc, 0,
44078fcd0a1Sachartre 		    "[%d] Cannot detach: %d outstanding validate request\n",
44178fcd0a1Sachartre 		    instance, vdc->validate_pending);
44278fcd0a1Sachartre 		return (DDI_FAILURE);
44378fcd0a1Sachartre 	}
44478fcd0a1Sachartre 
4453af08d82Slm66018 	DMSG(vdc, 0, "[%d] proceeding...\n", instance);
4463af08d82Slm66018 
4472f5224aeSachartre 	/* If we took ownership, release ownership */
4482f5224aeSachartre 	mutex_enter(&vdc->ownership_lock);
4492f5224aeSachartre 	if (vdc->ownership & VDC_OWNERSHIP_GRANTED) {
4502f5224aeSachartre 		rv = vdc_access_set(vdc, VD_ACCESS_SET_CLEAR, FKIOCTL);
4512f5224aeSachartre 		if (rv == 0) {
4522f5224aeSachartre 			vdc_ownership_update(vdc, VDC_OWNERSHIP_NONE);
4532f5224aeSachartre 		}
4542f5224aeSachartre 	}
4552f5224aeSachartre 	mutex_exit(&vdc->ownership_lock);
4562f5224aeSachartre 
4573af08d82Slm66018 	/* mark instance as detaching */
4583af08d82Slm66018 	vdc->lifecycle	= VDC_LC_DETACHING;
4591ae08745Sheppo 
4601ae08745Sheppo 	/*
461d7400d00Sachartre 	 * Try and disable callbacks to prevent another handshake. We have to
462d7400d00Sachartre 	 * disable callbacks for all servers.
4631ae08745Sheppo 	 */
464d7400d00Sachartre 	for (srvr = vdc->server_list; srvr != NULL; srvr = srvr->next) {
465d7400d00Sachartre 		rv = ldc_set_cb_mode(srvr->ldc_handle, LDC_CB_DISABLE);
466d7400d00Sachartre 		DMSG(vdc, 0, "callback disabled (ldc=%lu, rv=%d)\n",
467d7400d00Sachartre 		    srvr->ldc_id, rv);
4688cd10891Snarayan 	}
4691ae08745Sheppo 
4701ae08745Sheppo 	if (vdc->initialized & VDC_THREAD) {
4713af08d82Slm66018 		mutex_enter(&vdc->read_lock);
4723af08d82Slm66018 		if ((vdc->read_state == VDC_READ_WAITING) ||
4733af08d82Slm66018 		    (vdc->read_state == VDC_READ_RESET)) {
4743af08d82Slm66018 			vdc->read_state = VDC_READ_RESET;
4753af08d82Slm66018 			cv_signal(&vdc->read_cv);
4761ae08745Sheppo 		}
4773af08d82Slm66018 
4783af08d82Slm66018 		mutex_exit(&vdc->read_lock);
4793af08d82Slm66018 
4803af08d82Slm66018 		/* wake up any thread waiting for connection to come online */
4813af08d82Slm66018 		mutex_enter(&vdc->lock);
4823af08d82Slm66018 		if (vdc->state == VDC_STATE_INIT_WAITING) {
4833af08d82Slm66018 			DMSG(vdc, 0,
4843af08d82Slm66018 			    "[%d] write reset - move to resetting state...\n",
4853af08d82Slm66018 			    instance);
4863af08d82Slm66018 			vdc->state = VDC_STATE_RESETTING;
4873af08d82Slm66018 			cv_signal(&vdc->initwait_cv);
4883af08d82Slm66018 		}
4893af08d82Slm66018 		mutex_exit(&vdc->lock);
4903af08d82Slm66018 
4913af08d82Slm66018 		/* now wait until state transitions to VDC_STATE_DETACH */
4923af08d82Slm66018 		thread_join(vdc->msg_proc_thr->t_did);
4933af08d82Slm66018 		ASSERT(vdc->state == VDC_STATE_DETACH);
4943af08d82Slm66018 		DMSG(vdc, 0, "[%d] Reset thread exit and join ..\n",
4953af08d82Slm66018 		    vdc->instance);
4961ae08745Sheppo 	}
4971ae08745Sheppo 
4981ae08745Sheppo 	mutex_enter(&vdc->lock);
4991ae08745Sheppo 
5001ae08745Sheppo 	if (vdc->initialized & VDC_DRING)
5011ae08745Sheppo 		vdc_destroy_descriptor_ring(vdc);
5021ae08745Sheppo 
5038cd10891Snarayan 	vdc_fini_ports(vdc);
5041ae08745Sheppo 
5052f5224aeSachartre 	if (vdc->failfast_thread) {
5062f5224aeSachartre 		failfast_tid = vdc->failfast_thread->t_did;
5072f5224aeSachartre 		vdc->failfast_interval = 0;
5082f5224aeSachartre 		cv_signal(&vdc->failfast_cv);
5092f5224aeSachartre 	} else {
5102f5224aeSachartre 		failfast_tid = 0;
5112f5224aeSachartre 	}
5122f5224aeSachartre 
5132f5224aeSachartre 	if (vdc->ownership & VDC_OWNERSHIP_WANTED) {
5142f5224aeSachartre 		ownership_tid = vdc->ownership_thread->t_did;
5152f5224aeSachartre 		vdc->ownership = VDC_OWNERSHIP_NONE;
5162f5224aeSachartre 		cv_signal(&vdc->ownership_cv);
5172f5224aeSachartre 	} else {
5182f5224aeSachartre 		ownership_tid = 0;
5192f5224aeSachartre 	}
5202f5224aeSachartre 
5211ae08745Sheppo 	mutex_exit(&vdc->lock);
5221ae08745Sheppo 
5232f5224aeSachartre 	if (failfast_tid != 0)
5242f5224aeSachartre 		thread_join(failfast_tid);
5252f5224aeSachartre 
5262f5224aeSachartre 	if (ownership_tid != 0)
5272f5224aeSachartre 		thread_join(ownership_tid);
5282f5224aeSachartre 
5295b98b509Sachartre 	if (vdc->initialized & VDC_MINOR)
5301ae08745Sheppo 		ddi_remove_minor_node(dip, NULL);
5311ae08745Sheppo 
532366a92acSlm66018 	if (vdc->io_stats) {
533366a92acSlm66018 		kstat_delete(vdc->io_stats);
534366a92acSlm66018 		vdc->io_stats = NULL;
535366a92acSlm66018 	}
536366a92acSlm66018 
537366a92acSlm66018 	if (vdc->err_stats) {
538366a92acSlm66018 		kstat_delete(vdc->err_stats);
539366a92acSlm66018 		vdc->err_stats = NULL;
540366a92acSlm66018 	}
541366a92acSlm66018 
5421ae08745Sheppo 	if (vdc->initialized & VDC_LOCKS) {
5431ae08745Sheppo 		mutex_destroy(&vdc->lock);
5443af08d82Slm66018 		mutex_destroy(&vdc->read_lock);
5452f5224aeSachartre 		mutex_destroy(&vdc->ownership_lock);
5463af08d82Slm66018 		cv_destroy(&vdc->initwait_cv);
5473af08d82Slm66018 		cv_destroy(&vdc->dring_free_cv);
5483af08d82Slm66018 		cv_destroy(&vdc->membind_cv);
5493af08d82Slm66018 		cv_destroy(&vdc->sync_pending_cv);
5503af08d82Slm66018 		cv_destroy(&vdc->sync_blocked_cv);
5513af08d82Slm66018 		cv_destroy(&vdc->read_cv);
5523af08d82Slm66018 		cv_destroy(&vdc->running_cv);
5532f5224aeSachartre 		cv_destroy(&vdc->ownership_cv);
5542f5224aeSachartre 		cv_destroy(&vdc->failfast_cv);
5552f5224aeSachartre 		cv_destroy(&vdc->failfast_io_cv);
5561ae08745Sheppo 	}
5571ae08745Sheppo 
5581ae08745Sheppo 	if (vdc->minfo)
5591ae08745Sheppo 		kmem_free(vdc->minfo, sizeof (struct dk_minfo));
5601ae08745Sheppo 
5611ae08745Sheppo 	if (vdc->cinfo)
5621ae08745Sheppo 		kmem_free(vdc->cinfo, sizeof (struct dk_cinfo));
5631ae08745Sheppo 
5641ae08745Sheppo 	if (vdc->vtoc)
565342440ecSPrasad Singamsetty 		kmem_free(vdc->vtoc, sizeof (struct extvtoc));
5661ae08745Sheppo 
56778fcd0a1Sachartre 	if (vdc->geom)
56878fcd0a1Sachartre 		kmem_free(vdc->geom, sizeof (struct dk_geom));
5690a55fbb7Slm66018 
5704bac2208Snarayan 	if (vdc->devid) {
5714bac2208Snarayan 		ddi_devid_unregister(dip);
5724bac2208Snarayan 		ddi_devid_free(vdc->devid);
5734bac2208Snarayan 	}
5744bac2208Snarayan 
5751ae08745Sheppo 	if (vdc->initialized & VDC_SOFT_STATE)
5761ae08745Sheppo 		ddi_soft_state_free(vdc_state, instance);
5771ae08745Sheppo 
5783af08d82Slm66018 	DMSG(vdc, 0, "[%d] End %p\n", instance, (void *)vdc);
5791ae08745Sheppo 
5801ae08745Sheppo 	return (DDI_SUCCESS);
5811ae08745Sheppo }
5821ae08745Sheppo 
5831ae08745Sheppo 
5841ae08745Sheppo static int
5851ae08745Sheppo vdc_do_attach(dev_info_t *dip)
5861ae08745Sheppo {
5871ae08745Sheppo 	int		instance;
5881ae08745Sheppo 	vdc_t		*vdc = NULL;
5891ae08745Sheppo 	int		status;
590655fd6a9Sachartre 	md_t		*mdp;
5918cd10891Snarayan 	mde_cookie_t	vd_node;
5921ae08745Sheppo 
5931ae08745Sheppo 	ASSERT(dip != NULL);
5941ae08745Sheppo 
5951ae08745Sheppo 	instance = ddi_get_instance(dip);
5961ae08745Sheppo 	if (ddi_soft_state_zalloc(vdc_state, instance) != DDI_SUCCESS) {
597e1ebb9ecSlm66018 		cmn_err(CE_NOTE, "[%d] Couldn't alloc state structure",
598e1ebb9ecSlm66018 		    instance);
5991ae08745Sheppo 		return (DDI_FAILURE);
6001ae08745Sheppo 	}
6011ae08745Sheppo 
6021ae08745Sheppo 	if ((vdc = ddi_get_soft_state(vdc_state, instance)) == NULL) {
603e1ebb9ecSlm66018 		cmn_err(CE_NOTE, "[%d] Couldn't get state structure", instance);
6041ae08745Sheppo 		return (DDI_FAILURE);
6051ae08745Sheppo 	}
6061ae08745Sheppo 
6071ae08745Sheppo 	/*
6081ae08745Sheppo 	 * We assign the value to initialized in this case to zero out the
6091ae08745Sheppo 	 * variable and then set bits in it to indicate what has been done
6101ae08745Sheppo 	 */
6111ae08745Sheppo 	vdc->initialized = VDC_SOFT_STATE;
6121ae08745Sheppo 
6133af08d82Slm66018 	vdc_hz_min_ldc_delay = drv_usectohz(vdc_min_timeout_ldc);
6143af08d82Slm66018 	vdc_hz_max_ldc_delay = drv_usectohz(vdc_max_timeout_ldc);
6151ae08745Sheppo 
6161ae08745Sheppo 	vdc->dip	= dip;
6171ae08745Sheppo 	vdc->instance	= instance;
6181ae08745Sheppo 	vdc->vdisk_type	= VD_DISK_TYPE_UNK;
6194bac2208Snarayan 	vdc->vdisk_label = VD_DISK_LABEL_UNK;
6203af08d82Slm66018 	vdc->state	= VDC_STATE_INIT;
6213af08d82Slm66018 	vdc->lifecycle	= VDC_LC_ATTACHING;
6221ae08745Sheppo 	vdc->session_id = 0;
6231ae08745Sheppo 	vdc->block_size = DEV_BSIZE;
6248e6a2a04Slm66018 	vdc->max_xfer_sz = maxphys / DEV_BSIZE;
6251ae08745Sheppo 
62617cadca8Slm66018 	/*
62717cadca8Slm66018 	 * We assume, for now, that the vDisk server will export 'read'
62817cadca8Slm66018 	 * operations to us at a minimum (this is needed because of checks
62917cadca8Slm66018 	 * in vdc for supported operations early in the handshake process).
63017cadca8Slm66018 	 * The vDisk server will return ENOTSUP if this is not the case.
63117cadca8Slm66018 	 * The value will be overwritten during the attribute exchange with
63217cadca8Slm66018 	 * the bitmask of operations exported by server.
63317cadca8Slm66018 	 */
63417cadca8Slm66018 	vdc->operations = VD_OP_MASK_READ;
63517cadca8Slm66018 
6361ae08745Sheppo 	vdc->vtoc = NULL;
63778fcd0a1Sachartre 	vdc->geom = NULL;
6381ae08745Sheppo 	vdc->cinfo = NULL;
6391ae08745Sheppo 	vdc->minfo = NULL;
6401ae08745Sheppo 
6411ae08745Sheppo 	mutex_init(&vdc->lock, NULL, MUTEX_DRIVER, NULL);
6423af08d82Slm66018 	cv_init(&vdc->initwait_cv, NULL, CV_DRIVER, NULL);
6433af08d82Slm66018 	cv_init(&vdc->dring_free_cv, NULL, CV_DRIVER, NULL);
6443af08d82Slm66018 	cv_init(&vdc->membind_cv, NULL, CV_DRIVER, NULL);
6453af08d82Slm66018 	cv_init(&vdc->running_cv, NULL, CV_DRIVER, NULL);
6463af08d82Slm66018 
6473af08d82Slm66018 	vdc->threads_pending = 0;
6483af08d82Slm66018 	vdc->sync_op_pending = B_FALSE;
6493af08d82Slm66018 	vdc->sync_op_blocked = B_FALSE;
6503af08d82Slm66018 	cv_init(&vdc->sync_pending_cv, NULL, CV_DRIVER, NULL);
6513af08d82Slm66018 	cv_init(&vdc->sync_blocked_cv, NULL, CV_DRIVER, NULL);
6523af08d82Slm66018 
6532f5224aeSachartre 	mutex_init(&vdc->ownership_lock, NULL, MUTEX_DRIVER, NULL);
6542f5224aeSachartre 	cv_init(&vdc->ownership_cv, NULL, CV_DRIVER, NULL);
6552f5224aeSachartre 	cv_init(&vdc->failfast_cv, NULL, CV_DRIVER, NULL);
6562f5224aeSachartre 	cv_init(&vdc->failfast_io_cv, NULL, CV_DRIVER, NULL);
6572f5224aeSachartre 
6583af08d82Slm66018 	/* init blocking msg read functionality */
6593af08d82Slm66018 	mutex_init(&vdc->read_lock, NULL, MUTEX_DRIVER, NULL);
6603af08d82Slm66018 	cv_init(&vdc->read_cv, NULL, CV_DRIVER, NULL);
6613af08d82Slm66018 	vdc->read_state = VDC_READ_IDLE;
6623af08d82Slm66018 
6631ae08745Sheppo 	vdc->initialized |= VDC_LOCKS;
6641ae08745Sheppo 
665655fd6a9Sachartre 	/* get device and port MD node for this disk instance */
6668cd10891Snarayan 	if (vdc_get_md_node(dip, &mdp, &vd_node) != 0) {
667655fd6a9Sachartre 		cmn_err(CE_NOTE, "[%d] Could not get machine description node",
668655fd6a9Sachartre 		    instance);
669655fd6a9Sachartre 		return (DDI_FAILURE);
670655fd6a9Sachartre 	}
671655fd6a9Sachartre 
6728cd10891Snarayan 	if (vdc_init_ports(vdc, mdp, vd_node) != 0) {
6738cd10891Snarayan 		cmn_err(CE_NOTE, "[%d] Error initialising ports", instance);
6748cd10891Snarayan 		return (DDI_FAILURE);
675655fd6a9Sachartre 	}
676655fd6a9Sachartre 
677655fd6a9Sachartre 	(void) md_fini_handle(mdp);
678655fd6a9Sachartre 
679de3a5331SRamesh Chitrothu 	/* Create the kstats for saving the I/O statistics used by iostat(1M) */
680de3a5331SRamesh Chitrothu 	vdc_create_io_kstats(vdc);
681de3a5331SRamesh Chitrothu 	vdc_create_err_kstats(vdc);
682de3a5331SRamesh Chitrothu 
683de3a5331SRamesh Chitrothu 	/* Initialize remaining structures before starting the msg thread */
684de3a5331SRamesh Chitrothu 	vdc->vdisk_label = VD_DISK_LABEL_UNK;
685342440ecSPrasad Singamsetty 	vdc->vtoc = kmem_zalloc(sizeof (struct extvtoc), KM_SLEEP);
686de3a5331SRamesh Chitrothu 	vdc->geom = kmem_zalloc(sizeof (struct dk_geom), KM_SLEEP);
687de3a5331SRamesh Chitrothu 	vdc->minfo = kmem_zalloc(sizeof (struct dk_minfo), KM_SLEEP);
688de3a5331SRamesh Chitrothu 
6893af08d82Slm66018 	/* initialize the thread responsible for managing state with server */
6903af08d82Slm66018 	vdc->msg_proc_thr = thread_create(NULL, 0, vdc_process_msg_thread,
6911ae08745Sheppo 	    vdc, 0, &p0, TS_RUN, minclsyspri);
6923af08d82Slm66018 	if (vdc->msg_proc_thr == NULL) {
6931ae08745Sheppo 		cmn_err(CE_NOTE, "[%d] Failed to create msg processing thread",
6941ae08745Sheppo 		    instance);
6951ae08745Sheppo 		return (DDI_FAILURE);
6961ae08745Sheppo 	}
6973af08d82Slm66018 
6981ae08745Sheppo 	vdc->initialized |= VDC_THREAD;
6991ae08745Sheppo 
700e1ebb9ecSlm66018 	atomic_inc_32(&vdc_instance_count);
7011ae08745Sheppo 
7020a55fbb7Slm66018 	/*
70378fcd0a1Sachartre 	 * Check the disk label. This will send requests and do the handshake.
70478fcd0a1Sachartre 	 * We don't really care about the disk label now. What we really need is
70578fcd0a1Sachartre 	 * the handshake do be done so that we know the type of the disk (slice
70678fcd0a1Sachartre 	 * or full disk) and the appropriate device nodes can be created.
7070a55fbb7Slm66018 	 */
70878fcd0a1Sachartre 
70978fcd0a1Sachartre 	mutex_enter(&vdc->lock);
71078fcd0a1Sachartre 	(void) vdc_validate_geometry(vdc);
71178fcd0a1Sachartre 	mutex_exit(&vdc->lock);
7121ae08745Sheppo 
7131ae08745Sheppo 	/*
7145b98b509Sachartre 	 * Now that we have the device info we can create the device nodes
7151ae08745Sheppo 	 */
7161ae08745Sheppo 	status = vdc_create_device_nodes(vdc);
7171ae08745Sheppo 	if (status) {
7183af08d82Slm66018 		DMSG(vdc, 0, "[%d] Failed to create device nodes",
7191ae08745Sheppo 		    instance);
7203af08d82Slm66018 		goto return_status;
7211ae08745Sheppo 	}
7221ae08745Sheppo 
7234bac2208Snarayan 	/*
7244bac2208Snarayan 	 * Setup devid
7254bac2208Snarayan 	 */
7264bac2208Snarayan 	if (vdc_setup_devid(vdc)) {
7273af08d82Slm66018 		DMSG(vdc, 0, "[%d] No device id available\n", instance);
7284bac2208Snarayan 	}
7294bac2208Snarayan 
730366a92acSlm66018 	/*
731366a92acSlm66018 	 * Fill in the fields of the error statistics kstat that were not
732366a92acSlm66018 	 * available when creating the kstat
733366a92acSlm66018 	 */
734366a92acSlm66018 	vdc_set_err_kstats(vdc);
735366a92acSlm66018 
7361ae08745Sheppo 	ddi_report_dev(dip);
7373af08d82Slm66018 	vdc->lifecycle	= VDC_LC_ONLINE;
7383af08d82Slm66018 	DMSG(vdc, 0, "[%d] Attach tasks successful\n", instance);
7391ae08745Sheppo 
7403af08d82Slm66018 return_status:
7413af08d82Slm66018 	DMSG(vdc, 0, "[%d] Attach completed\n", instance);
7421ae08745Sheppo 	return (status);
7431ae08745Sheppo }
7441ae08745Sheppo 
7451ae08745Sheppo static int
7461ae08745Sheppo vdc_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
7471ae08745Sheppo {
7481ae08745Sheppo 	int	status;
7491ae08745Sheppo 
7501ae08745Sheppo 	switch (cmd) {
7511ae08745Sheppo 	case DDI_ATTACH:
7521ae08745Sheppo 		if ((status = vdc_do_attach(dip)) != 0)
7531ae08745Sheppo 			(void) vdc_detach(dip, DDI_DETACH);
7541ae08745Sheppo 		return (status);
7551ae08745Sheppo 	case DDI_RESUME:
7561ae08745Sheppo 		/* nothing to do for this non-device */
7571ae08745Sheppo 		return (DDI_SUCCESS);
7581ae08745Sheppo 	default:
7591ae08745Sheppo 		return (DDI_FAILURE);
7601ae08745Sheppo 	}
7611ae08745Sheppo }
7621ae08745Sheppo 
7631ae08745Sheppo static int
7648cd10891Snarayan vdc_do_ldc_init(vdc_t *vdc, vdc_server_t *srvr)
7651ae08745Sheppo {
7661ae08745Sheppo 	int			status = 0;
7671ae08745Sheppo 	ldc_status_t		ldc_state;
7681ae08745Sheppo 	ldc_attr_t		ldc_attr;
7691ae08745Sheppo 
7701ae08745Sheppo 	ASSERT(vdc != NULL);
7718cd10891Snarayan 	ASSERT(srvr != NULL);
7721ae08745Sheppo 
7731ae08745Sheppo 	ldc_attr.devclass = LDC_DEV_BLK;
7741ae08745Sheppo 	ldc_attr.instance = vdc->instance;
7751ae08745Sheppo 	ldc_attr.mode = LDC_MODE_UNRELIABLE;	/* unreliable transport */
776e1ebb9ecSlm66018 	ldc_attr.mtu = VD_LDC_MTU;
7771ae08745Sheppo 
7788cd10891Snarayan 	if ((srvr->state & VDC_LDC_INIT) == 0) {
7798cd10891Snarayan 		status = ldc_init(srvr->ldc_id, &ldc_attr,
7808cd10891Snarayan 		    &srvr->ldc_handle);
7811ae08745Sheppo 		if (status != 0) {
7823af08d82Slm66018 			DMSG(vdc, 0, "[%d] ldc_init(chan %ld) returned %d",
7838cd10891Snarayan 			    vdc->instance, srvr->ldc_id, status);
7841ae08745Sheppo 			return (status);
7851ae08745Sheppo 		}
7868cd10891Snarayan 		srvr->state |= VDC_LDC_INIT;
7871ae08745Sheppo 	}
7888cd10891Snarayan 	status = ldc_status(srvr->ldc_handle, &ldc_state);
7891ae08745Sheppo 	if (status != 0) {
7903af08d82Slm66018 		DMSG(vdc, 0, "[%d] Cannot discover LDC status [err=%d]",
791e1ebb9ecSlm66018 		    vdc->instance, status);
7928cd10891Snarayan 		goto init_exit;
7931ae08745Sheppo 	}
7948cd10891Snarayan 	srvr->ldc_state = ldc_state;
7951ae08745Sheppo 
7968cd10891Snarayan 	if ((srvr->state & VDC_LDC_CB) == 0) {
7978cd10891Snarayan 		status = ldc_reg_callback(srvr->ldc_handle, vdc_handle_cb,
7988cd10891Snarayan 		    (caddr_t)srvr);
7991ae08745Sheppo 		if (status != 0) {
8003af08d82Slm66018 			DMSG(vdc, 0, "[%d] LDC callback reg. failed (%d)",
801e1ebb9ecSlm66018 			    vdc->instance, status);
8028cd10891Snarayan 			goto init_exit;
8031ae08745Sheppo 		}
8048cd10891Snarayan 		srvr->state |= VDC_LDC_CB;
8051ae08745Sheppo 	}
8061ae08745Sheppo 
8071ae08745Sheppo 	/*
8081ae08745Sheppo 	 * At this stage we have initialised LDC, we will now try and open
8091ae08745Sheppo 	 * the connection.
8101ae08745Sheppo 	 */
8118cd10891Snarayan 	if (srvr->ldc_state == LDC_INIT) {
8128cd10891Snarayan 		status = ldc_open(srvr->ldc_handle);
8131ae08745Sheppo 		if (status != 0) {
8143af08d82Slm66018 			DMSG(vdc, 0, "[%d] ldc_open(chan %ld) returned %d",
8158cd10891Snarayan 			    vdc->instance, srvr->ldc_id, status);
8168cd10891Snarayan 			goto init_exit;
8171ae08745Sheppo 		}
8188cd10891Snarayan 		srvr->state |= VDC_LDC_OPEN;
8198cd10891Snarayan 	}
8208cd10891Snarayan 
8218cd10891Snarayan init_exit:
8228cd10891Snarayan 	if (status) {
8238cd10891Snarayan 		vdc_terminate_ldc(vdc, srvr);
8241ae08745Sheppo 	}
8251ae08745Sheppo 
8261ae08745Sheppo 	return (status);
8271ae08745Sheppo }
8281ae08745Sheppo 
8291ae08745Sheppo static int
8301ae08745Sheppo vdc_start_ldc_connection(vdc_t *vdc)
8311ae08745Sheppo {
8321ae08745Sheppo 	int		status = 0;
8331ae08745Sheppo 
8341ae08745Sheppo 	ASSERT(vdc != NULL);
8351ae08745Sheppo 
8363af08d82Slm66018 	ASSERT(MUTEX_HELD(&vdc->lock));
8371ae08745Sheppo 
8380a55fbb7Slm66018 	status = vdc_do_ldc_up(vdc);
8391ae08745Sheppo 
8403af08d82Slm66018 	DMSG(vdc, 0, "[%d] Finished bringing up LDC\n", vdc->instance);
8411ae08745Sheppo 
8423af08d82Slm66018 	return (status);
8433af08d82Slm66018 }
8443af08d82Slm66018 
8453af08d82Slm66018 static int
8463af08d82Slm66018 vdc_stop_ldc_connection(vdc_t *vdcp)
8473af08d82Slm66018 {
8483af08d82Slm66018 	int	status;
8493af08d82Slm66018 
8508cd10891Snarayan 	ASSERT(vdcp != NULL);
8518cd10891Snarayan 
8528cd10891Snarayan 	ASSERT(MUTEX_HELD(&vdcp->lock));
8538cd10891Snarayan 
8543af08d82Slm66018 	DMSG(vdcp, 0, ": Resetting connection to vDisk server : state %d\n",
8553af08d82Slm66018 	    vdcp->state);
8563af08d82Slm66018 
8578cd10891Snarayan 	status = ldc_down(vdcp->curr_server->ldc_handle);
8583af08d82Slm66018 	DMSG(vdcp, 0, "ldc_down() = %d\n", status);
8593af08d82Slm66018 
8603af08d82Slm66018 	vdcp->initialized &= ~VDC_HANDSHAKE;
8613af08d82Slm66018 	DMSG(vdcp, 0, "initialized=%x\n", vdcp->initialized);
8621ae08745Sheppo 
8631ae08745Sheppo 	return (status);
8641ae08745Sheppo }
8651ae08745Sheppo 
866366a92acSlm66018 static void
867366a92acSlm66018 vdc_create_io_kstats(vdc_t *vdc)
868366a92acSlm66018 {
869366a92acSlm66018 	if (vdc->io_stats != NULL) {
870366a92acSlm66018 		DMSG(vdc, 0, "[%d] I/O kstat already exists\n", vdc->instance);
871366a92acSlm66018 		return;
872366a92acSlm66018 	}
873366a92acSlm66018 
874366a92acSlm66018 	vdc->io_stats = kstat_create(VDC_DRIVER_NAME, vdc->instance, NULL,
875366a92acSlm66018 	    "disk", KSTAT_TYPE_IO, 1, KSTAT_FLAG_PERSISTENT);
876366a92acSlm66018 	if (vdc->io_stats != NULL) {
877366a92acSlm66018 		vdc->io_stats->ks_lock = &vdc->lock;
878366a92acSlm66018 		kstat_install(vdc->io_stats);
879366a92acSlm66018 	} else {
880366a92acSlm66018 		cmn_err(CE_NOTE, "[%d] Failed to create kstat: I/O statistics"
881366a92acSlm66018 		    " will not be gathered", vdc->instance);
882366a92acSlm66018 	}
883366a92acSlm66018 }
884366a92acSlm66018 
885366a92acSlm66018 static void
886366a92acSlm66018 vdc_create_err_kstats(vdc_t *vdc)
887366a92acSlm66018 {
888366a92acSlm66018 	vd_err_stats_t	*stp;
889366a92acSlm66018 	char	kstatmodule_err[KSTAT_STRLEN];
890366a92acSlm66018 	char	kstatname[KSTAT_STRLEN];
891366a92acSlm66018 	int	ndata = (sizeof (vd_err_stats_t) / sizeof (kstat_named_t));
892366a92acSlm66018 	int	instance = vdc->instance;
893366a92acSlm66018 
894366a92acSlm66018 	if (vdc->err_stats != NULL) {
895366a92acSlm66018 		DMSG(vdc, 0, "[%d] ERR kstat already exists\n", vdc->instance);
896366a92acSlm66018 		return;
897366a92acSlm66018 	}
898366a92acSlm66018 
899366a92acSlm66018 	(void) snprintf(kstatmodule_err, sizeof (kstatmodule_err),
900366a92acSlm66018 	    "%serr", VDC_DRIVER_NAME);
901366a92acSlm66018 	(void) snprintf(kstatname, sizeof (kstatname),
902366a92acSlm66018 	    "%s%d,err", VDC_DRIVER_NAME, instance);
903366a92acSlm66018 
904366a92acSlm66018 	vdc->err_stats = kstat_create(kstatmodule_err, instance, kstatname,
905366a92acSlm66018 	    "device_error", KSTAT_TYPE_NAMED, ndata, KSTAT_FLAG_PERSISTENT);
906366a92acSlm66018 
907366a92acSlm66018 	if (vdc->err_stats == NULL) {
908366a92acSlm66018 		cmn_err(CE_NOTE, "[%d] Failed to create kstat: Error statistics"
909366a92acSlm66018 		    " will not be gathered", instance);
910366a92acSlm66018 		return;
911366a92acSlm66018 	}
912366a92acSlm66018 
913366a92acSlm66018 	stp = (vd_err_stats_t *)vdc->err_stats->ks_data;
914366a92acSlm66018 	kstat_named_init(&stp->vd_softerrs,	"Soft Errors",
915366a92acSlm66018 	    KSTAT_DATA_UINT32);
916366a92acSlm66018 	kstat_named_init(&stp->vd_transerrs,	"Transport Errors",
917366a92acSlm66018 	    KSTAT_DATA_UINT32);
918366a92acSlm66018 	kstat_named_init(&stp->vd_protoerrs,	"Protocol Errors",
919366a92acSlm66018 	    KSTAT_DATA_UINT32);
920366a92acSlm66018 	kstat_named_init(&stp->vd_vid,		"Vendor",
921366a92acSlm66018 	    KSTAT_DATA_CHAR);
922366a92acSlm66018 	kstat_named_init(&stp->vd_pid,		"Product",
923366a92acSlm66018 	    KSTAT_DATA_CHAR);
924366a92acSlm66018 	kstat_named_init(&stp->vd_capacity,	"Size",
925366a92acSlm66018 	    KSTAT_DATA_ULONGLONG);
926366a92acSlm66018 
927366a92acSlm66018 	vdc->err_stats->ks_update  = nulldev;
928366a92acSlm66018 
929366a92acSlm66018 	kstat_install(vdc->err_stats);
930366a92acSlm66018 }
931366a92acSlm66018 
932366a92acSlm66018 static void
933366a92acSlm66018 vdc_set_err_kstats(vdc_t *vdc)
934366a92acSlm66018 {
935366a92acSlm66018 	vd_err_stats_t  *stp;
936366a92acSlm66018 
937366a92acSlm66018 	if (vdc->err_stats == NULL)
938366a92acSlm66018 		return;
939366a92acSlm66018 
940366a92acSlm66018 	mutex_enter(&vdc->lock);
941366a92acSlm66018 
942366a92acSlm66018 	stp = (vd_err_stats_t *)vdc->err_stats->ks_data;
943366a92acSlm66018 	ASSERT(stp != NULL);
944366a92acSlm66018 
945366a92acSlm66018 	stp->vd_capacity.value.ui64 = vdc->vdisk_size * vdc->block_size;
946366a92acSlm66018 	(void) strcpy(stp->vd_vid.value.c, "SUN");
947366a92acSlm66018 	(void) strcpy(stp->vd_pid.value.c, "VDSK");
948366a92acSlm66018 
949366a92acSlm66018 	mutex_exit(&vdc->lock);
950366a92acSlm66018 }
951366a92acSlm66018 
9524bac2208Snarayan static int
9534bac2208Snarayan vdc_create_device_nodes_efi(vdc_t *vdc)
9544bac2208Snarayan {
9554bac2208Snarayan 	ddi_remove_minor_node(vdc->dip, "h");
9564bac2208Snarayan 	ddi_remove_minor_node(vdc->dip, "h,raw");
9574bac2208Snarayan 
9584bac2208Snarayan 	if (ddi_create_minor_node(vdc->dip, "wd", S_IFBLK,
9594bac2208Snarayan 	    VD_MAKE_DEV(vdc->instance, VD_EFI_WD_SLICE),
9604bac2208Snarayan 	    DDI_NT_BLOCK, 0) != DDI_SUCCESS) {
9614bac2208Snarayan 		cmn_err(CE_NOTE, "[%d] Couldn't add block node 'wd'",
9624bac2208Snarayan 		    vdc->instance);
9634bac2208Snarayan 		return (EIO);
9644bac2208Snarayan 	}
9654bac2208Snarayan 
9664bac2208Snarayan 	/* if any device node is created we set this flag */
9674bac2208Snarayan 	vdc->initialized |= VDC_MINOR;
9684bac2208Snarayan 
9694bac2208Snarayan 	if (ddi_create_minor_node(vdc->dip, "wd,raw", S_IFCHR,
9704bac2208Snarayan 	    VD_MAKE_DEV(vdc->instance, VD_EFI_WD_SLICE),
9714bac2208Snarayan 	    DDI_NT_BLOCK, 0) != DDI_SUCCESS) {
9724bac2208Snarayan 		cmn_err(CE_NOTE, "[%d] Couldn't add block node 'wd,raw'",
9734bac2208Snarayan 		    vdc->instance);
9744bac2208Snarayan 		return (EIO);
9754bac2208Snarayan 	}
9764bac2208Snarayan 
9774bac2208Snarayan 	return (0);
9784bac2208Snarayan }
9794bac2208Snarayan 
9804bac2208Snarayan static int
9814bac2208Snarayan vdc_create_device_nodes_vtoc(vdc_t *vdc)
9824bac2208Snarayan {
9834bac2208Snarayan 	ddi_remove_minor_node(vdc->dip, "wd");
9844bac2208Snarayan 	ddi_remove_minor_node(vdc->dip, "wd,raw");
9854bac2208Snarayan 
9864bac2208Snarayan 	if (ddi_create_minor_node(vdc->dip, "h", S_IFBLK,
9874bac2208Snarayan 	    VD_MAKE_DEV(vdc->instance, VD_EFI_WD_SLICE),
9884bac2208Snarayan 	    DDI_NT_BLOCK, 0) != DDI_SUCCESS) {
9894bac2208Snarayan 		cmn_err(CE_NOTE, "[%d] Couldn't add block node 'h'",
9904bac2208Snarayan 		    vdc->instance);
9914bac2208Snarayan 		return (EIO);
9924bac2208Snarayan 	}
9934bac2208Snarayan 
9944bac2208Snarayan 	/* if any device node is created we set this flag */
9954bac2208Snarayan 	vdc->initialized |= VDC_MINOR;
9964bac2208Snarayan 
9974bac2208Snarayan 	if (ddi_create_minor_node(vdc->dip, "h,raw", S_IFCHR,
9984bac2208Snarayan 	    VD_MAKE_DEV(vdc->instance, VD_EFI_WD_SLICE),
9994bac2208Snarayan 	    DDI_NT_BLOCK, 0) != DDI_SUCCESS) {
10004bac2208Snarayan 		cmn_err(CE_NOTE, "[%d] Couldn't add block node 'h,raw'",
10014bac2208Snarayan 		    vdc->instance);
10024bac2208Snarayan 		return (EIO);
10034bac2208Snarayan 	}
10044bac2208Snarayan 
10054bac2208Snarayan 	return (0);
10064bac2208Snarayan }
10071ae08745Sheppo 
10081ae08745Sheppo /*
10091ae08745Sheppo  * Function:
10101ae08745Sheppo  *	vdc_create_device_nodes
10111ae08745Sheppo  *
10121ae08745Sheppo  * Description:
10131ae08745Sheppo  *	This function creates the block and character device nodes under
10145b98b509Sachartre  *	/devices. It is called as part of the attach(9E) of the instance
10155b98b509Sachartre  *	during the handshake with vds after vds has sent the attributes
10165b98b509Sachartre  *	to vdc.
10171ae08745Sheppo  *
10181ae08745Sheppo  *	If the device is of type VD_DISK_TYPE_SLICE then the minor node
10191ae08745Sheppo  *	of 2 is used in keeping with the Solaris convention that slice 2
10201ae08745Sheppo  *	refers to a whole disk. Slices start at 'a'
10211ae08745Sheppo  *
10221ae08745Sheppo  * Parameters:
10231ae08745Sheppo  *	vdc 		- soft state pointer
10241ae08745Sheppo  *
10251ae08745Sheppo  * Return Values
10261ae08745Sheppo  *	0		- Success
10271ae08745Sheppo  *	EIO		- Failed to create node
10281ae08745Sheppo  *	EINVAL		- Unknown type of disk exported
10291ae08745Sheppo  */
10301ae08745Sheppo static int
10311ae08745Sheppo vdc_create_device_nodes(vdc_t *vdc)
10321ae08745Sheppo {
10334bac2208Snarayan 	char		name[sizeof ("s,raw")];
10341ae08745Sheppo 	dev_info_t	*dip = NULL;
10354bac2208Snarayan 	int		instance, status;
10361ae08745Sheppo 	int		num_slices = 1;
10371ae08745Sheppo 	int		i;
10381ae08745Sheppo 
10391ae08745Sheppo 	ASSERT(vdc != NULL);
10401ae08745Sheppo 
10411ae08745Sheppo 	instance = vdc->instance;
10421ae08745Sheppo 	dip = vdc->dip;
10431ae08745Sheppo 
10441ae08745Sheppo 	switch (vdc->vdisk_type) {
10451ae08745Sheppo 	case VD_DISK_TYPE_DISK:
10461ae08745Sheppo 		num_slices = V_NUMPAR;
10471ae08745Sheppo 		break;
10481ae08745Sheppo 	case VD_DISK_TYPE_SLICE:
10491ae08745Sheppo 		num_slices = 1;
10501ae08745Sheppo 		break;
10511ae08745Sheppo 	case VD_DISK_TYPE_UNK:
10521ae08745Sheppo 	default:
10531ae08745Sheppo 		return (EINVAL);
10541ae08745Sheppo 	}
10551ae08745Sheppo 
10564bac2208Snarayan 	/*
10574bac2208Snarayan 	 * Minor nodes are different for EFI disks: EFI disks do not have
10584bac2208Snarayan 	 * a minor node 'g' for the minor number corresponding to slice
10594bac2208Snarayan 	 * VD_EFI_WD_SLICE (slice 7) instead they have a minor node 'wd'
10604bac2208Snarayan 	 * representing the whole disk.
10614bac2208Snarayan 	 */
10621ae08745Sheppo 	for (i = 0; i < num_slices; i++) {
10634bac2208Snarayan 
10644bac2208Snarayan 		if (i == VD_EFI_WD_SLICE) {
10654bac2208Snarayan 			if (vdc->vdisk_label == VD_DISK_LABEL_EFI)
10664bac2208Snarayan 				status = vdc_create_device_nodes_efi(vdc);
10674bac2208Snarayan 			else
10684bac2208Snarayan 				status = vdc_create_device_nodes_vtoc(vdc);
10694bac2208Snarayan 			if (status != 0)
10704bac2208Snarayan 				return (status);
10714bac2208Snarayan 			continue;
10724bac2208Snarayan 		}
10734bac2208Snarayan 
10741ae08745Sheppo 		(void) snprintf(name, sizeof (name), "%c", 'a' + i);
10751ae08745Sheppo 		if (ddi_create_minor_node(dip, name, S_IFBLK,
10761ae08745Sheppo 		    VD_MAKE_DEV(instance, i), DDI_NT_BLOCK, 0) != DDI_SUCCESS) {
1077e1ebb9ecSlm66018 			cmn_err(CE_NOTE, "[%d] Couldn't add block node '%s'",
1078e1ebb9ecSlm66018 			    instance, name);
10791ae08745Sheppo 			return (EIO);
10801ae08745Sheppo 		}
10811ae08745Sheppo 
10821ae08745Sheppo 		/* if any device node is created we set this flag */
10831ae08745Sheppo 		vdc->initialized |= VDC_MINOR;
10841ae08745Sheppo 
108587a7269eSachartre 		(void) snprintf(name, sizeof (name), "%c%s", 'a' + i, ",raw");
108687a7269eSachartre 
10871ae08745Sheppo 		if (ddi_create_minor_node(dip, name, S_IFCHR,
10881ae08745Sheppo 		    VD_MAKE_DEV(instance, i), DDI_NT_BLOCK, 0) != DDI_SUCCESS) {
1089e1ebb9ecSlm66018 			cmn_err(CE_NOTE, "[%d] Couldn't add raw node '%s'",
1090e1ebb9ecSlm66018 			    instance, name);
10911ae08745Sheppo 			return (EIO);
10921ae08745Sheppo 		}
10931ae08745Sheppo 	}
10941ae08745Sheppo 
10951ae08745Sheppo 	return (0);
10961ae08745Sheppo }
10971ae08745Sheppo 
10981ae08745Sheppo /*
10995b98b509Sachartre  * Driver prop_op(9e) entry point function. Return the number of blocks for
11005b98b509Sachartre  * the partition in question or forward the request to the property facilities.
11011ae08745Sheppo  */
11021ae08745Sheppo static int
11035b98b509Sachartre vdc_prop_op(dev_t dev, dev_info_t *dip, ddi_prop_op_t prop_op, int mod_flags,
11045b98b509Sachartre     char *name, caddr_t valuep, int *lengthp)
11051ae08745Sheppo {
11065b98b509Sachartre 	int instance = ddi_get_instance(dip);
11075b98b509Sachartre 	vdc_t *vdc;
11085b98b509Sachartre 	uint64_t nblocks;
11095b98b509Sachartre 	uint_t blksize;
11101ae08745Sheppo 
11115b98b509Sachartre 	vdc = ddi_get_soft_state(vdc_state, instance);
11121ae08745Sheppo 
11135b98b509Sachartre 	if (dev == DDI_DEV_T_ANY || vdc == NULL) {
11145b98b509Sachartre 		return (ddi_prop_op(dev, dip, prop_op, mod_flags,
11155b98b509Sachartre 		    name, valuep, lengthp));
11161ae08745Sheppo 	}
11171ae08745Sheppo 
11185b98b509Sachartre 	mutex_enter(&vdc->lock);
11195b98b509Sachartre 	(void) vdc_validate_geometry(vdc);
112078fcd0a1Sachartre 	if (vdc->vdisk_label == VD_DISK_LABEL_UNK) {
11215b98b509Sachartre 		mutex_exit(&vdc->lock);
11225b98b509Sachartre 		return (ddi_prop_op(dev, dip, prop_op, mod_flags,
11235b98b509Sachartre 		    name, valuep, lengthp));
112478fcd0a1Sachartre 	}
11255b98b509Sachartre 	nblocks = vdc->slice[VDCPART(dev)].nblocks;
11265b98b509Sachartre 	blksize = vdc->block_size;
11275b98b509Sachartre 	mutex_exit(&vdc->lock);
112878fcd0a1Sachartre 
11295b98b509Sachartre 	return (ddi_prop_op_nblocks_blksize(dev, dip, prop_op, mod_flags,
11305b98b509Sachartre 	    name, valuep, lengthp, nblocks, blksize));
11311ae08745Sheppo }
11321ae08745Sheppo 
113378fcd0a1Sachartre /*
113478fcd0a1Sachartre  * Function:
113578fcd0a1Sachartre  *	vdc_is_opened
113678fcd0a1Sachartre  *
113778fcd0a1Sachartre  * Description:
113878fcd0a1Sachartre  *	This function checks if any slice of a given virtual disk is
113978fcd0a1Sachartre  *	currently opened.
114078fcd0a1Sachartre  *
114178fcd0a1Sachartre  * Parameters:
114278fcd0a1Sachartre  *	vdc 		- soft state pointer
114378fcd0a1Sachartre  *
114478fcd0a1Sachartre  * Return Values
114578fcd0a1Sachartre  *	B_TRUE		- at least one slice is opened.
114678fcd0a1Sachartre  *	B_FALSE		- no slice is opened.
114778fcd0a1Sachartre  */
114878fcd0a1Sachartre static boolean_t
114978fcd0a1Sachartre vdc_is_opened(vdc_t *vdc)
115078fcd0a1Sachartre {
115178fcd0a1Sachartre 	int i, nslices;
115278fcd0a1Sachartre 
115378fcd0a1Sachartre 	switch (vdc->vdisk_type) {
115478fcd0a1Sachartre 	case VD_DISK_TYPE_DISK:
115578fcd0a1Sachartre 		nslices = V_NUMPAR;
115678fcd0a1Sachartre 		break;
115778fcd0a1Sachartre 	case VD_DISK_TYPE_SLICE:
115878fcd0a1Sachartre 		nslices = 1;
115978fcd0a1Sachartre 		break;
116078fcd0a1Sachartre 	case VD_DISK_TYPE_UNK:
116178fcd0a1Sachartre 	default:
116278fcd0a1Sachartre 		ASSERT(0);
116378fcd0a1Sachartre 	}
116478fcd0a1Sachartre 
116578fcd0a1Sachartre 	/* check if there's any layered open */
116678fcd0a1Sachartre 	for (i = 0; i < nslices; i++) {
116778fcd0a1Sachartre 		if (vdc->open_lyr[i] > 0)
116878fcd0a1Sachartre 			return (B_TRUE);
116978fcd0a1Sachartre 	}
117078fcd0a1Sachartre 
117178fcd0a1Sachartre 	/* check if there is any other kind of open */
117278fcd0a1Sachartre 	for (i = 0; i < OTYPCNT; i++) {
117378fcd0a1Sachartre 		if (vdc->open[i] != 0)
117478fcd0a1Sachartre 			return (B_TRUE);
117578fcd0a1Sachartre 	}
117678fcd0a1Sachartre 
117778fcd0a1Sachartre 	return (B_FALSE);
117878fcd0a1Sachartre }
117978fcd0a1Sachartre 
118078fcd0a1Sachartre static int
118178fcd0a1Sachartre vdc_mark_opened(vdc_t *vdc, int slice, int flag, int otyp)
118278fcd0a1Sachartre {
118378fcd0a1Sachartre 	uint8_t slicemask;
118478fcd0a1Sachartre 	int i;
118578fcd0a1Sachartre 
118678fcd0a1Sachartre 	ASSERT(otyp < OTYPCNT);
118778fcd0a1Sachartre 	ASSERT(slice < V_NUMPAR);
118878fcd0a1Sachartre 	ASSERT(MUTEX_HELD(&vdc->lock));
118978fcd0a1Sachartre 
119078fcd0a1Sachartre 	slicemask = 1 << slice;
119178fcd0a1Sachartre 
119278fcd0a1Sachartre 	/* check if slice is already exclusively opened */
119378fcd0a1Sachartre 	if (vdc->open_excl & slicemask)
119478fcd0a1Sachartre 		return (EBUSY);
119578fcd0a1Sachartre 
119678fcd0a1Sachartre 	/* if open exclusive, check if slice is already opened */
119778fcd0a1Sachartre 	if (flag & FEXCL) {
119878fcd0a1Sachartre 		if (vdc->open_lyr[slice] > 0)
119978fcd0a1Sachartre 			return (EBUSY);
120078fcd0a1Sachartre 		for (i = 0; i < OTYPCNT; i++) {
120178fcd0a1Sachartre 			if (vdc->open[i] & slicemask)
120278fcd0a1Sachartre 				return (EBUSY);
120378fcd0a1Sachartre 		}
120478fcd0a1Sachartre 		vdc->open_excl |= slicemask;
120578fcd0a1Sachartre 	}
120678fcd0a1Sachartre 
120778fcd0a1Sachartre 	/* mark slice as opened */
120878fcd0a1Sachartre 	if (otyp == OTYP_LYR) {
120978fcd0a1Sachartre 		vdc->open_lyr[slice]++;
121078fcd0a1Sachartre 	} else {
121178fcd0a1Sachartre 		vdc->open[otyp] |= slicemask;
121278fcd0a1Sachartre 	}
121378fcd0a1Sachartre 
121478fcd0a1Sachartre 	return (0);
121578fcd0a1Sachartre }
121678fcd0a1Sachartre 
121778fcd0a1Sachartre static void
121878fcd0a1Sachartre vdc_mark_closed(vdc_t *vdc, int slice, int flag, int otyp)
121978fcd0a1Sachartre {
122078fcd0a1Sachartre 	uint8_t slicemask;
122178fcd0a1Sachartre 
122278fcd0a1Sachartre 	ASSERT(otyp < OTYPCNT);
122378fcd0a1Sachartre 	ASSERT(slice < V_NUMPAR);
122478fcd0a1Sachartre 	ASSERT(MUTEX_HELD(&vdc->lock));
122578fcd0a1Sachartre 
122678fcd0a1Sachartre 	slicemask = 1 << slice;
122778fcd0a1Sachartre 
122878fcd0a1Sachartre 	if (otyp == OTYP_LYR) {
122978fcd0a1Sachartre 		ASSERT(vdc->open_lyr[slice] > 0);
123078fcd0a1Sachartre 		vdc->open_lyr[slice]--;
123178fcd0a1Sachartre 	} else {
123278fcd0a1Sachartre 		vdc->open[otyp] &= ~slicemask;
123378fcd0a1Sachartre 	}
123478fcd0a1Sachartre 
123578fcd0a1Sachartre 	if (flag & FEXCL)
123678fcd0a1Sachartre 		vdc->open_excl &= ~slicemask;
123778fcd0a1Sachartre }
123878fcd0a1Sachartre 
12391ae08745Sheppo static int
12401ae08745Sheppo vdc_open(dev_t *dev, int flag, int otyp, cred_t *cred)
12411ae08745Sheppo {
12421ae08745Sheppo 	_NOTE(ARGUNUSED(cred))
12431ae08745Sheppo 
1244179e09c2Sachartre 	int	instance, nodelay;
124578fcd0a1Sachartre 	int	slice, status = 0;
12461ae08745Sheppo 	vdc_t	*vdc;
12471ae08745Sheppo 
12481ae08745Sheppo 	ASSERT(dev != NULL);
12490d0c8d4bSnarayan 	instance = VDCUNIT(*dev);
12501ae08745Sheppo 
125178fcd0a1Sachartre 	if (otyp >= OTYPCNT)
12521ae08745Sheppo 		return (EINVAL);
12531ae08745Sheppo 
12541ae08745Sheppo 	if ((vdc = ddi_get_soft_state(vdc_state, instance)) == NULL) {
1255e1ebb9ecSlm66018 		cmn_err(CE_NOTE, "[%d] Couldn't get state structure", instance);
12561ae08745Sheppo 		return (ENXIO);
12571ae08745Sheppo 	}
12581ae08745Sheppo 
12593af08d82Slm66018 	DMSG(vdc, 0, "minor = %d flag = %x, otyp = %x\n",
12603af08d82Slm66018 	    getminor(*dev), flag, otyp);
12611ae08745Sheppo 
126278fcd0a1Sachartre 	slice = VDCPART(*dev);
126378fcd0a1Sachartre 
1264179e09c2Sachartre 	nodelay = flag & (FNDELAY | FNONBLOCK);
1265179e09c2Sachartre 
1266179e09c2Sachartre 	if ((flag & FWRITE) && (!nodelay) &&
1267179e09c2Sachartre 	    !(VD_OP_SUPPORTED(vdc->operations, VD_OP_BWRITE))) {
1268179e09c2Sachartre 		return (EROFS);
1269179e09c2Sachartre 	}
1270179e09c2Sachartre 
12711ae08745Sheppo 	mutex_enter(&vdc->lock);
127278fcd0a1Sachartre 
127378fcd0a1Sachartre 	status = vdc_mark_opened(vdc, slice, flag, otyp);
127478fcd0a1Sachartre 
127578fcd0a1Sachartre 	if (status != 0) {
127678fcd0a1Sachartre 		mutex_exit(&vdc->lock);
127778fcd0a1Sachartre 		return (status);
127878fcd0a1Sachartre 	}
127978fcd0a1Sachartre 
1280179e09c2Sachartre 	if (nodelay) {
128178fcd0a1Sachartre 
128278fcd0a1Sachartre 		/* don't resubmit a validate request if there's already one */
128378fcd0a1Sachartre 		if (vdc->validate_pending > 0) {
128478fcd0a1Sachartre 			mutex_exit(&vdc->lock);
128578fcd0a1Sachartre 			return (0);
128678fcd0a1Sachartre 		}
128778fcd0a1Sachartre 
128878fcd0a1Sachartre 		/* call vdc_validate() asynchronously to avoid blocking */
128978fcd0a1Sachartre 		if (taskq_dispatch(system_taskq, vdc_validate_task,
129078fcd0a1Sachartre 		    (void *)vdc, TQ_NOSLEEP) == NULL) {
129178fcd0a1Sachartre 			vdc_mark_closed(vdc, slice, flag, otyp);
129278fcd0a1Sachartre 			mutex_exit(&vdc->lock);
129378fcd0a1Sachartre 			return (ENXIO);
129478fcd0a1Sachartre 		}
129578fcd0a1Sachartre 
129678fcd0a1Sachartre 		vdc->validate_pending++;
129778fcd0a1Sachartre 		mutex_exit(&vdc->lock);
129878fcd0a1Sachartre 		return (0);
129978fcd0a1Sachartre 	}
130078fcd0a1Sachartre 
13011ae08745Sheppo 	mutex_exit(&vdc->lock);
13021ae08745Sheppo 
130378fcd0a1Sachartre 	vdc_validate(vdc);
130478fcd0a1Sachartre 
130578fcd0a1Sachartre 	mutex_enter(&vdc->lock);
130678fcd0a1Sachartre 
130778fcd0a1Sachartre 	if (vdc->vdisk_label == VD_DISK_LABEL_UNK ||
1308edcc0754Sachartre 	    vdc->slice[slice].nblocks == 0) {
130978fcd0a1Sachartre 		vdc_mark_closed(vdc, slice, flag, otyp);
131078fcd0a1Sachartre 		status = EIO;
131178fcd0a1Sachartre 	}
131278fcd0a1Sachartre 
131378fcd0a1Sachartre 	mutex_exit(&vdc->lock);
131478fcd0a1Sachartre 
131578fcd0a1Sachartre 	return (status);
13161ae08745Sheppo }
13171ae08745Sheppo 
13181ae08745Sheppo static int
13191ae08745Sheppo vdc_close(dev_t dev, int flag, int otyp, cred_t *cred)
13201ae08745Sheppo {
13211ae08745Sheppo 	_NOTE(ARGUNUSED(cred))
13221ae08745Sheppo 
13231ae08745Sheppo 	int	instance;
132478fcd0a1Sachartre 	int	slice;
13252f5224aeSachartre 	int	rv, rval;
13261ae08745Sheppo 	vdc_t	*vdc;
13271ae08745Sheppo 
13280d0c8d4bSnarayan 	instance = VDCUNIT(dev);
13291ae08745Sheppo 
133078fcd0a1Sachartre 	if (otyp >= OTYPCNT)
13311ae08745Sheppo 		return (EINVAL);
13321ae08745Sheppo 
13331ae08745Sheppo 	if ((vdc = ddi_get_soft_state(vdc_state, instance)) == NULL) {
1334e1ebb9ecSlm66018 		cmn_err(CE_NOTE, "[%d] Couldn't get state structure", instance);
13351ae08745Sheppo 		return (ENXIO);
13361ae08745Sheppo 	}
13371ae08745Sheppo 
13383af08d82Slm66018 	DMSG(vdc, 0, "[%d] flag = %x, otyp = %x\n", instance, flag, otyp);
13391ae08745Sheppo 
134078fcd0a1Sachartre 	slice = VDCPART(dev);
134178fcd0a1Sachartre 
13428259acd8Szk194757 	/*
13438259acd8Szk194757 	 * Attempt to flush the W$ on a close operation. If this is
13448259acd8Szk194757 	 * not a supported IOCTL command or the backing device is read-only
13458259acd8Szk194757 	 * do not fail the close operation.
13468259acd8Szk194757 	 */
13472f5224aeSachartre 	rv = vd_process_ioctl(dev, DKIOCFLUSHWRITECACHE, NULL, FKIOCTL, &rval);
13488259acd8Szk194757 
13498259acd8Szk194757 	if (rv != 0 && rv != ENOTSUP && rv != ENOTTY && rv != EROFS) {
13508259acd8Szk194757 		DMSG(vdc, 0, "[%d] flush failed with error %d on close\n",
13518259acd8Szk194757 		    instance, rv);
13528259acd8Szk194757 		return (EIO);
13538259acd8Szk194757 	}
13548259acd8Szk194757 
13551ae08745Sheppo 	mutex_enter(&vdc->lock);
135678fcd0a1Sachartre 	vdc_mark_closed(vdc, slice, flag, otyp);
13571ae08745Sheppo 	mutex_exit(&vdc->lock);
13581ae08745Sheppo 
13591ae08745Sheppo 	return (0);
13601ae08745Sheppo }
13611ae08745Sheppo 
13621ae08745Sheppo static int
13631ae08745Sheppo vdc_ioctl(dev_t dev, int cmd, intptr_t arg, int mode, cred_t *credp, int *rvalp)
13641ae08745Sheppo {
13651ae08745Sheppo 	_NOTE(ARGUNUSED(credp))
13661ae08745Sheppo 
13672f5224aeSachartre 	return (vd_process_ioctl(dev, cmd, (caddr_t)arg, mode, rvalp));
13681ae08745Sheppo }
13691ae08745Sheppo 
13701ae08745Sheppo static int
13711ae08745Sheppo vdc_print(dev_t dev, char *str)
13721ae08745Sheppo {
13730d0c8d4bSnarayan 	cmn_err(CE_NOTE, "vdc%d:  %s", VDCUNIT(dev), str);
13741ae08745Sheppo 	return (0);
13751ae08745Sheppo }
13761ae08745Sheppo 
13771ae08745Sheppo static int
13781ae08745Sheppo vdc_dump(dev_t dev, caddr_t addr, daddr_t blkno, int nblk)
13791ae08745Sheppo {
1380d10e4ef2Snarayan 	int	rv;
1381d10e4ef2Snarayan 	size_t	nbytes = nblk * DEV_BSIZE;
13820d0c8d4bSnarayan 	int	instance = VDCUNIT(dev);
1383d10e4ef2Snarayan 	vdc_t	*vdc = NULL;
13841ae08745Sheppo 
13851ae08745Sheppo 	if ((vdc = ddi_get_soft_state(vdc_state, instance)) == NULL) {
1386e1ebb9ecSlm66018 		cmn_err(CE_NOTE, "[%d] Couldn't get state structure", instance);
13871ae08745Sheppo 		return (ENXIO);
13881ae08745Sheppo 	}
13891ae08745Sheppo 
13903af08d82Slm66018 	DMSG(vdc, 2, "[%d] dump %ld bytes at block 0x%lx : addr=0x%p\n",
13913af08d82Slm66018 	    instance, nbytes, blkno, (void *)addr);
13923af08d82Slm66018 	rv = vdc_send_request(vdc, VD_OP_BWRITE, addr, nbytes,
13930d0c8d4bSnarayan 	    VDCPART(dev), blkno, CB_STRATEGY, 0, VIO_write_dir);
13943af08d82Slm66018 	if (rv) {
13953af08d82Slm66018 		DMSG(vdc, 0, "Failed to do a disk dump (err=%d)\n", rv);
13961ae08745Sheppo 		return (rv);
13971ae08745Sheppo 	}
13981ae08745Sheppo 
13993af08d82Slm66018 	if (ddi_in_panic())
14003c2ebf09Sachartre 		(void) vdc_drain_response(vdc, NULL);
14013af08d82Slm66018 
14023af08d82Slm66018 	DMSG(vdc, 0, "[%d] End\n", instance);
14033af08d82Slm66018 
14043af08d82Slm66018 	return (0);
14053af08d82Slm66018 }
14063af08d82Slm66018 
14071ae08745Sheppo /* -------------------------------------------------------------------------- */
14081ae08745Sheppo 
14091ae08745Sheppo /*
14101ae08745Sheppo  * Disk access routines
14111ae08745Sheppo  *
14121ae08745Sheppo  */
14131ae08745Sheppo 
14141ae08745Sheppo /*
14151ae08745Sheppo  * vdc_strategy()
14161ae08745Sheppo  *
14171ae08745Sheppo  * Return Value:
14181ae08745Sheppo  *	0:	As per strategy(9E), the strategy() function must return 0
14191ae08745Sheppo  *		[ bioerror(9f) sets b_flags to the proper error code ]
14201ae08745Sheppo  */
14211ae08745Sheppo static int
14221ae08745Sheppo vdc_strategy(struct buf *buf)
14231ae08745Sheppo {
14241ae08745Sheppo 	int	rv = -1;
14251ae08745Sheppo 	vdc_t	*vdc = NULL;
14260d0c8d4bSnarayan 	int	instance = VDCUNIT(buf->b_edev);
14271ae08745Sheppo 	int	op = (buf->b_flags & B_READ) ? VD_OP_BREAD : VD_OP_BWRITE;
142887a7269eSachartre 	int	slice;
14291ae08745Sheppo 
14301ae08745Sheppo 	if ((vdc = ddi_get_soft_state(vdc_state, instance)) == NULL) {
1431e1ebb9ecSlm66018 		cmn_err(CE_NOTE, "[%d] Couldn't get state structure", instance);
14321ae08745Sheppo 		bioerror(buf, ENXIO);
14331ae08745Sheppo 		biodone(buf);
14341ae08745Sheppo 		return (0);
14351ae08745Sheppo 	}
14361ae08745Sheppo 
14373af08d82Slm66018 	DMSG(vdc, 2, "[%d] %s %ld bytes at block %llx : b_addr=0x%p\n",
14383af08d82Slm66018 	    instance, (buf->b_flags & B_READ) ? "Read" : "Write",
14393af08d82Slm66018 	    buf->b_bcount, buf->b_lblkno, (void *)buf->b_un.b_addr);
1440d10e4ef2Snarayan 
14411ae08745Sheppo 	bp_mapin(buf);
14421ae08745Sheppo 
144387a7269eSachartre 	if ((long)buf->b_private == VD_SLICE_NONE) {
144487a7269eSachartre 		/* I/O using an absolute disk offset */
144587a7269eSachartre 		slice = VD_SLICE_NONE;
144687a7269eSachartre 	} else {
144787a7269eSachartre 		slice = VDCPART(buf->b_edev);
144887a7269eSachartre 	}
144987a7269eSachartre 
14503af08d82Slm66018 	rv = vdc_send_request(vdc, op, (caddr_t)buf->b_un.b_addr,
145187a7269eSachartre 	    buf->b_bcount, slice, buf->b_lblkno,
14523af08d82Slm66018 	    CB_STRATEGY, buf, (op == VD_OP_BREAD) ? VIO_read_dir :
14533af08d82Slm66018 	    VIO_write_dir);
14543af08d82Slm66018 
1455d10e4ef2Snarayan 	/*
1456d10e4ef2Snarayan 	 * If the request was successfully sent, the strategy call returns and
1457d10e4ef2Snarayan 	 * the ACK handler calls the bioxxx functions when the vDisk server is
1458366a92acSlm66018 	 * done otherwise we handle the error here.
1459d10e4ef2Snarayan 	 */
1460d10e4ef2Snarayan 	if (rv) {
14613af08d82Slm66018 		DMSG(vdc, 0, "Failed to read/write (err=%d)\n", rv);
14621ae08745Sheppo 		bioerror(buf, rv);
14631ae08745Sheppo 		biodone(buf);
14643c2ebf09Sachartre 	} else if (ddi_in_panic()) {
14653c2ebf09Sachartre 		(void) vdc_drain_response(vdc, buf);
1466d10e4ef2Snarayan 	}
1467d10e4ef2Snarayan 
14681ae08745Sheppo 	return (0);
14691ae08745Sheppo }
14701ae08745Sheppo 
14710d0c8d4bSnarayan /*
14720d0c8d4bSnarayan  * Function:
14730d0c8d4bSnarayan  *	vdc_min
14740d0c8d4bSnarayan  *
14750d0c8d4bSnarayan  * Description:
14760d0c8d4bSnarayan  *	Routine to limit the size of a data transfer. Used in
14770d0c8d4bSnarayan  *	conjunction with physio(9F).
14780d0c8d4bSnarayan  *
14790d0c8d4bSnarayan  * Arguments:
14800d0c8d4bSnarayan  *	bp - pointer to the indicated buf(9S) struct.
14810d0c8d4bSnarayan  *
14820d0c8d4bSnarayan  */
14830d0c8d4bSnarayan static void
14840d0c8d4bSnarayan vdc_min(struct buf *bufp)
14850d0c8d4bSnarayan {
14860d0c8d4bSnarayan 	vdc_t	*vdc = NULL;
14870d0c8d4bSnarayan 	int	instance = VDCUNIT(bufp->b_edev);
14880d0c8d4bSnarayan 
14890d0c8d4bSnarayan 	vdc = ddi_get_soft_state(vdc_state, instance);
14900d0c8d4bSnarayan 	VERIFY(vdc != NULL);
14910d0c8d4bSnarayan 
14920d0c8d4bSnarayan 	if (bufp->b_bcount > (vdc->max_xfer_sz * vdc->block_size)) {
14930d0c8d4bSnarayan 		bufp->b_bcount = vdc->max_xfer_sz * vdc->block_size;
14940d0c8d4bSnarayan 	}
14950d0c8d4bSnarayan }
14961ae08745Sheppo 
14971ae08745Sheppo static int
14981ae08745Sheppo vdc_read(dev_t dev, struct uio *uio, cred_t *cred)
14991ae08745Sheppo {
15001ae08745Sheppo 	_NOTE(ARGUNUSED(cred))
15011ae08745Sheppo 
15020d0c8d4bSnarayan 	DMSGX(1, "[%d] Entered", VDCUNIT(dev));
15030d0c8d4bSnarayan 	return (physio(vdc_strategy, NULL, dev, B_READ, vdc_min, uio));
15041ae08745Sheppo }
15051ae08745Sheppo 
15061ae08745Sheppo static int
15071ae08745Sheppo vdc_write(dev_t dev, struct uio *uio, cred_t *cred)
15081ae08745Sheppo {
15091ae08745Sheppo 	_NOTE(ARGUNUSED(cred))
15101ae08745Sheppo 
15110d0c8d4bSnarayan 	DMSGX(1, "[%d] Entered", VDCUNIT(dev));
15120d0c8d4bSnarayan 	return (physio(vdc_strategy, NULL, dev, B_WRITE, vdc_min, uio));
15131ae08745Sheppo }
15141ae08745Sheppo 
15151ae08745Sheppo static int
15161ae08745Sheppo vdc_aread(dev_t dev, struct aio_req *aio, cred_t *cred)
15171ae08745Sheppo {
15181ae08745Sheppo 	_NOTE(ARGUNUSED(cred))
15191ae08745Sheppo 
15200d0c8d4bSnarayan 	DMSGX(1, "[%d] Entered", VDCUNIT(dev));
15210d0c8d4bSnarayan 	return (aphysio(vdc_strategy, anocancel, dev, B_READ, vdc_min, aio));
15221ae08745Sheppo }
15231ae08745Sheppo 
15241ae08745Sheppo static int
15251ae08745Sheppo vdc_awrite(dev_t dev, struct aio_req *aio, cred_t *cred)
15261ae08745Sheppo {
15271ae08745Sheppo 	_NOTE(ARGUNUSED(cred))
15281ae08745Sheppo 
15290d0c8d4bSnarayan 	DMSGX(1, "[%d] Entered", VDCUNIT(dev));
15300d0c8d4bSnarayan 	return (aphysio(vdc_strategy, anocancel, dev, B_WRITE, vdc_min, aio));
15311ae08745Sheppo }
15321ae08745Sheppo 
15331ae08745Sheppo 
15341ae08745Sheppo /* -------------------------------------------------------------------------- */
15351ae08745Sheppo 
15361ae08745Sheppo /*
15371ae08745Sheppo  * Handshake support
15381ae08745Sheppo  */
15391ae08745Sheppo 
15401ae08745Sheppo 
15410a55fbb7Slm66018 /*
15420a55fbb7Slm66018  * Function:
15430a55fbb7Slm66018  *	vdc_init_ver_negotiation()
15440a55fbb7Slm66018  *
15450a55fbb7Slm66018  * Description:
15460a55fbb7Slm66018  *
15470a55fbb7Slm66018  * Arguments:
15480a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
15490a55fbb7Slm66018  *
15500a55fbb7Slm66018  * Return Code:
15510a55fbb7Slm66018  *	0	- Success
15520a55fbb7Slm66018  */
15531ae08745Sheppo static int
15540a55fbb7Slm66018 vdc_init_ver_negotiation(vdc_t *vdc, vio_ver_t ver)
15551ae08745Sheppo {
15561ae08745Sheppo 	vio_ver_msg_t	pkt;
15571ae08745Sheppo 	size_t		msglen = sizeof (pkt);
15581ae08745Sheppo 	int		status = -1;
15591ae08745Sheppo 
15601ae08745Sheppo 	ASSERT(vdc != NULL);
15611ae08745Sheppo 	ASSERT(mutex_owned(&vdc->lock));
15621ae08745Sheppo 
15633af08d82Slm66018 	DMSG(vdc, 0, "[%d] Entered.\n", vdc->instance);
1564e1ebb9ecSlm66018 
15651ae08745Sheppo 	/*
15661ae08745Sheppo 	 * set the Session ID to a unique value
15671ae08745Sheppo 	 * (the lower 32 bits of the clock tick)
15681ae08745Sheppo 	 */
15691ae08745Sheppo 	vdc->session_id = ((uint32_t)gettick() & 0xffffffff);
15703af08d82Slm66018 	DMSG(vdc, 0, "[%d] Set SID to 0x%lx\n", vdc->instance, vdc->session_id);
15711ae08745Sheppo 
15721ae08745Sheppo 	pkt.tag.vio_msgtype = VIO_TYPE_CTRL;
15731ae08745Sheppo 	pkt.tag.vio_subtype = VIO_SUBTYPE_INFO;
15741ae08745Sheppo 	pkt.tag.vio_subtype_env = VIO_VER_INFO;
15751ae08745Sheppo 	pkt.tag.vio_sid = vdc->session_id;
15761ae08745Sheppo 	pkt.dev_class = VDEV_DISK;
15770a55fbb7Slm66018 	pkt.ver_major = ver.major;
15780a55fbb7Slm66018 	pkt.ver_minor = ver.minor;
15791ae08745Sheppo 
15800a55fbb7Slm66018 	status = vdc_send(vdc, (caddr_t)&pkt, &msglen);
15813af08d82Slm66018 	DMSG(vdc, 0, "[%d] Ver info sent (status = %d)\n",
15823af08d82Slm66018 	    vdc->instance, status);
15831ae08745Sheppo 	if ((status != 0) || (msglen != sizeof (vio_ver_msg_t))) {
15843af08d82Slm66018 		DMSG(vdc, 0, "[%d] Failed to send Ver negotiation info: "
15858cd10891Snarayan 		    "id(%lx) rv(%d) size(%ld)", vdc->instance,
15868cd10891Snarayan 		    vdc->curr_server->ldc_handle, status, msglen);
15871ae08745Sheppo 		if (msglen != sizeof (vio_ver_msg_t))
15881ae08745Sheppo 			status = ENOMSG;
15891ae08745Sheppo 	}
15901ae08745Sheppo 
15911ae08745Sheppo 	return (status);
15921ae08745Sheppo }
15931ae08745Sheppo 
15940a55fbb7Slm66018 /*
15950a55fbb7Slm66018  * Function:
15963af08d82Slm66018  *	vdc_ver_negotiation()
15973af08d82Slm66018  *
15983af08d82Slm66018  * Description:
15993af08d82Slm66018  *
16003af08d82Slm66018  * Arguments:
16013af08d82Slm66018  *	vdcp	- soft state pointer for this instance of the device driver.
16023af08d82Slm66018  *
16033af08d82Slm66018  * Return Code:
16043af08d82Slm66018  *	0	- Success
16053af08d82Slm66018  */
16063af08d82Slm66018 static int
16073af08d82Slm66018 vdc_ver_negotiation(vdc_t *vdcp)
16083af08d82Slm66018 {
16093af08d82Slm66018 	vio_msg_t vio_msg;
16103af08d82Slm66018 	int status;
16113af08d82Slm66018 
16123af08d82Slm66018 	if (status = vdc_init_ver_negotiation(vdcp, vdc_version[0]))
16133af08d82Slm66018 		return (status);
16143af08d82Slm66018 
16153af08d82Slm66018 	/* release lock and wait for response */
16163af08d82Slm66018 	mutex_exit(&vdcp->lock);
16173af08d82Slm66018 	status = vdc_wait_for_response(vdcp, &vio_msg);
16183af08d82Slm66018 	mutex_enter(&vdcp->lock);
16193af08d82Slm66018 	if (status) {
16203af08d82Slm66018 		DMSG(vdcp, 0,
16213af08d82Slm66018 		    "[%d] Failed waiting for Ver negotiation response, rv(%d)",
16223af08d82Slm66018 		    vdcp->instance, status);
16233af08d82Slm66018 		return (status);
16243af08d82Slm66018 	}
16253af08d82Slm66018 
16263af08d82Slm66018 	/* check type and sub_type ... */
16273af08d82Slm66018 	if (vio_msg.tag.vio_msgtype != VIO_TYPE_CTRL ||
16283af08d82Slm66018 	    vio_msg.tag.vio_subtype == VIO_SUBTYPE_INFO) {
16293af08d82Slm66018 		DMSG(vdcp, 0, "[%d] Invalid ver negotiation response\n",
16303af08d82Slm66018 		    vdcp->instance);
16313af08d82Slm66018 		return (EPROTO);
16323af08d82Slm66018 	}
16333af08d82Slm66018 
16343af08d82Slm66018 	return (vdc_handle_ver_msg(vdcp, (vio_ver_msg_t *)&vio_msg));
16353af08d82Slm66018 }
16363af08d82Slm66018 
16373af08d82Slm66018 /*
16383af08d82Slm66018  * Function:
16390a55fbb7Slm66018  *	vdc_init_attr_negotiation()
16400a55fbb7Slm66018  *
16410a55fbb7Slm66018  * Description:
16420a55fbb7Slm66018  *
16430a55fbb7Slm66018  * Arguments:
16440a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
16450a55fbb7Slm66018  *
16460a55fbb7Slm66018  * Return Code:
16470a55fbb7Slm66018  *	0	- Success
16480a55fbb7Slm66018  */
16491ae08745Sheppo static int
16501ae08745Sheppo vdc_init_attr_negotiation(vdc_t *vdc)
16511ae08745Sheppo {
16521ae08745Sheppo 	vd_attr_msg_t	pkt;
16531ae08745Sheppo 	size_t		msglen = sizeof (pkt);
16541ae08745Sheppo 	int		status;
16551ae08745Sheppo 
16561ae08745Sheppo 	ASSERT(vdc != NULL);
16571ae08745Sheppo 	ASSERT(mutex_owned(&vdc->lock));
16581ae08745Sheppo 
16593af08d82Slm66018 	DMSG(vdc, 0, "[%d] entered\n", vdc->instance);
16601ae08745Sheppo 
16611ae08745Sheppo 	/* fill in tag */
16621ae08745Sheppo 	pkt.tag.vio_msgtype = VIO_TYPE_CTRL;
16631ae08745Sheppo 	pkt.tag.vio_subtype = VIO_SUBTYPE_INFO;
16641ae08745Sheppo 	pkt.tag.vio_subtype_env = VIO_ATTR_INFO;
16651ae08745Sheppo 	pkt.tag.vio_sid = vdc->session_id;
16661ae08745Sheppo 	/* fill in payload */
16671ae08745Sheppo 	pkt.max_xfer_sz = vdc->max_xfer_sz;
16681ae08745Sheppo 	pkt.vdisk_block_size = vdc->block_size;
1669f0ca1d9aSsb155480 	pkt.xfer_mode = VIO_DRING_MODE_V1_0;
16701ae08745Sheppo 	pkt.operations = 0;	/* server will set bits of valid operations */
16711ae08745Sheppo 	pkt.vdisk_type = 0;	/* server will set to valid device type */
167217cadca8Slm66018 	pkt.vdisk_media = 0;	/* server will set to valid media type */
16731ae08745Sheppo 	pkt.vdisk_size = 0;	/* server will set to valid size */
16741ae08745Sheppo 
16750a55fbb7Slm66018 	status = vdc_send(vdc, (caddr_t)&pkt, &msglen);
16763af08d82Slm66018 	DMSG(vdc, 0, "Attr info sent (status = %d)\n", status);
16771ae08745Sheppo 
1678f3241e46Sanbui 	if ((status != 0) || (msglen != sizeof (vd_attr_msg_t))) {
16793af08d82Slm66018 		DMSG(vdc, 0, "[%d] Failed to send Attr negotiation info: "
16808cd10891Snarayan 		    "id(%lx) rv(%d) size(%ld)", vdc->instance,
16818cd10891Snarayan 		    vdc->curr_server->ldc_handle, status, msglen);
1682f3241e46Sanbui 		if (msglen != sizeof (vd_attr_msg_t))
16831ae08745Sheppo 			status = ENOMSG;
16841ae08745Sheppo 	}
16851ae08745Sheppo 
16861ae08745Sheppo 	return (status);
16871ae08745Sheppo }
16881ae08745Sheppo 
16890a55fbb7Slm66018 /*
16900a55fbb7Slm66018  * Function:
16913af08d82Slm66018  *	vdc_attr_negotiation()
16923af08d82Slm66018  *
16933af08d82Slm66018  * Description:
16943af08d82Slm66018  *
16953af08d82Slm66018  * Arguments:
16963af08d82Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
16973af08d82Slm66018  *
16983af08d82Slm66018  * Return Code:
16993af08d82Slm66018  *	0	- Success
17003af08d82Slm66018  */
17013af08d82Slm66018 static int
17023af08d82Slm66018 vdc_attr_negotiation(vdc_t *vdcp)
17033af08d82Slm66018 {
17043af08d82Slm66018 	int status;
17053af08d82Slm66018 	vio_msg_t vio_msg;
17063af08d82Slm66018 
17073af08d82Slm66018 	if (status = vdc_init_attr_negotiation(vdcp))
17083af08d82Slm66018 		return (status);
17093af08d82Slm66018 
17103af08d82Slm66018 	/* release lock and wait for response */
17113af08d82Slm66018 	mutex_exit(&vdcp->lock);
17123af08d82Slm66018 	status = vdc_wait_for_response(vdcp, &vio_msg);
17133af08d82Slm66018 	mutex_enter(&vdcp->lock);
17143af08d82Slm66018 	if (status) {
17153af08d82Slm66018 		DMSG(vdcp, 0,
17163af08d82Slm66018 		    "[%d] Failed waiting for Attr negotiation response, rv(%d)",
17173af08d82Slm66018 		    vdcp->instance, status);
17183af08d82Slm66018 		return (status);
17193af08d82Slm66018 	}
17203af08d82Slm66018 
17213af08d82Slm66018 	/* check type and sub_type ... */
17223af08d82Slm66018 	if (vio_msg.tag.vio_msgtype != VIO_TYPE_CTRL ||
17233af08d82Slm66018 	    vio_msg.tag.vio_subtype == VIO_SUBTYPE_INFO) {
17243af08d82Slm66018 		DMSG(vdcp, 0, "[%d] Invalid attr negotiation response\n",
17253af08d82Slm66018 		    vdcp->instance);
17263af08d82Slm66018 		return (EPROTO);
17273af08d82Slm66018 	}
17283af08d82Slm66018 
17293af08d82Slm66018 	return (vdc_handle_attr_msg(vdcp, (vd_attr_msg_t *)&vio_msg));
17303af08d82Slm66018 }
17313af08d82Slm66018 
17323af08d82Slm66018 
17333af08d82Slm66018 /*
17343af08d82Slm66018  * Function:
17350a55fbb7Slm66018  *	vdc_init_dring_negotiate()
17360a55fbb7Slm66018  *
17370a55fbb7Slm66018  * Description:
17380a55fbb7Slm66018  *
17390a55fbb7Slm66018  * Arguments:
17400a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
17410a55fbb7Slm66018  *
17420a55fbb7Slm66018  * Return Code:
17430a55fbb7Slm66018  *	0	- Success
17440a55fbb7Slm66018  */
17451ae08745Sheppo static int
17461ae08745Sheppo vdc_init_dring_negotiate(vdc_t *vdc)
17471ae08745Sheppo {
17481ae08745Sheppo 	vio_dring_reg_msg_t	pkt;
17491ae08745Sheppo 	size_t			msglen = sizeof (pkt);
17501ae08745Sheppo 	int			status = -1;
17513af08d82Slm66018 	int			retry;
17523af08d82Slm66018 	int			nretries = 10;
17531ae08745Sheppo 
17541ae08745Sheppo 	ASSERT(vdc != NULL);
17551ae08745Sheppo 	ASSERT(mutex_owned(&vdc->lock));
17561ae08745Sheppo 
17573af08d82Slm66018 	for (retry = 0; retry < nretries; retry++) {
17581ae08745Sheppo 		status = vdc_init_descriptor_ring(vdc);
17593af08d82Slm66018 		if (status != EAGAIN)
17603af08d82Slm66018 			break;
17613af08d82Slm66018 		drv_usecwait(vdc_min_timeout_ldc);
17623af08d82Slm66018 	}
17633af08d82Slm66018 
17641ae08745Sheppo 	if (status != 0) {
17653af08d82Slm66018 		DMSG(vdc, 0, "[%d] Failed to init DRing (status = %d)\n",
17661ae08745Sheppo 		    vdc->instance, status);
17671ae08745Sheppo 		return (status);
17681ae08745Sheppo 	}
17693af08d82Slm66018 
17703af08d82Slm66018 	DMSG(vdc, 0, "[%d] Init of descriptor ring completed (status = %d)\n",
1771e1ebb9ecSlm66018 	    vdc->instance, status);
17721ae08745Sheppo 
17731ae08745Sheppo 	/* fill in tag */
17741ae08745Sheppo 	pkt.tag.vio_msgtype = VIO_TYPE_CTRL;
17751ae08745Sheppo 	pkt.tag.vio_subtype = VIO_SUBTYPE_INFO;
17761ae08745Sheppo 	pkt.tag.vio_subtype_env = VIO_DRING_REG;
17771ae08745Sheppo 	pkt.tag.vio_sid = vdc->session_id;
17781ae08745Sheppo 	/* fill in payload */
17791ae08745Sheppo 	pkt.dring_ident = 0;
1780e1ebb9ecSlm66018 	pkt.num_descriptors = vdc->dring_len;
1781e1ebb9ecSlm66018 	pkt.descriptor_size = vdc->dring_entry_size;
17821ae08745Sheppo 	pkt.options = (VIO_TX_DRING | VIO_RX_DRING);
17831ae08745Sheppo 	pkt.ncookies = vdc->dring_cookie_count;
17841ae08745Sheppo 	pkt.cookie[0] = vdc->dring_cookie[0];	/* for now just one cookie */
17851ae08745Sheppo 
17860a55fbb7Slm66018 	status = vdc_send(vdc, (caddr_t)&pkt, &msglen);
17871ae08745Sheppo 	if (status != 0) {
17883af08d82Slm66018 		DMSG(vdc, 0, "[%d] Failed to register DRing (err = %d)",
1789e1ebb9ecSlm66018 		    vdc->instance, status);
17901ae08745Sheppo 	}
17911ae08745Sheppo 
17921ae08745Sheppo 	return (status);
17931ae08745Sheppo }
17941ae08745Sheppo 
17951ae08745Sheppo 
17963af08d82Slm66018 /*
17973af08d82Slm66018  * Function:
17983af08d82Slm66018  *	vdc_dring_negotiation()
17993af08d82Slm66018  *
18003af08d82Slm66018  * Description:
18013af08d82Slm66018  *
18023af08d82Slm66018  * Arguments:
18033af08d82Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
18043af08d82Slm66018  *
18053af08d82Slm66018  * Return Code:
18063af08d82Slm66018  *	0	- Success
18073af08d82Slm66018  */
18083af08d82Slm66018 static int
18093af08d82Slm66018 vdc_dring_negotiation(vdc_t *vdcp)
18103af08d82Slm66018 {
18113af08d82Slm66018 	int status;
18123af08d82Slm66018 	vio_msg_t vio_msg;
18133af08d82Slm66018 
18143af08d82Slm66018 	if (status = vdc_init_dring_negotiate(vdcp))
18153af08d82Slm66018 		return (status);
18163af08d82Slm66018 
18173af08d82Slm66018 	/* release lock and wait for response */
18183af08d82Slm66018 	mutex_exit(&vdcp->lock);
18193af08d82Slm66018 	status = vdc_wait_for_response(vdcp, &vio_msg);
18203af08d82Slm66018 	mutex_enter(&vdcp->lock);
18213af08d82Slm66018 	if (status) {
18223af08d82Slm66018 		DMSG(vdcp, 0,
18233af08d82Slm66018 		    "[%d] Failed waiting for Dring negotiation response,"
18243af08d82Slm66018 		    " rv(%d)", vdcp->instance, status);
18253af08d82Slm66018 		return (status);
18263af08d82Slm66018 	}
18273af08d82Slm66018 
18283af08d82Slm66018 	/* check type and sub_type ... */
18293af08d82Slm66018 	if (vio_msg.tag.vio_msgtype != VIO_TYPE_CTRL ||
18303af08d82Slm66018 	    vio_msg.tag.vio_subtype == VIO_SUBTYPE_INFO) {
18313af08d82Slm66018 		DMSG(vdcp, 0, "[%d] Invalid Dring negotiation response\n",
18323af08d82Slm66018 		    vdcp->instance);
18333af08d82Slm66018 		return (EPROTO);
18343af08d82Slm66018 	}
18353af08d82Slm66018 
18363af08d82Slm66018 	return (vdc_handle_dring_reg_msg(vdcp,
18373af08d82Slm66018 	    (vio_dring_reg_msg_t *)&vio_msg));
18383af08d82Slm66018 }
18393af08d82Slm66018 
18403af08d82Slm66018 
18413af08d82Slm66018 /*
18423af08d82Slm66018  * Function:
18433af08d82Slm66018  *	vdc_send_rdx()
18443af08d82Slm66018  *
18453af08d82Slm66018  * Description:
18463af08d82Slm66018  *
18473af08d82Slm66018  * Arguments:
18483af08d82Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
18493af08d82Slm66018  *
18503af08d82Slm66018  * Return Code:
18513af08d82Slm66018  *	0	- Success
18523af08d82Slm66018  */
18533af08d82Slm66018 static int
18543af08d82Slm66018 vdc_send_rdx(vdc_t *vdcp)
18553af08d82Slm66018 {
18563af08d82Slm66018 	vio_msg_t	msg;
18573af08d82Slm66018 	size_t		msglen = sizeof (vio_msg_t);
18583af08d82Slm66018 	int		status;
18593af08d82Slm66018 
18603af08d82Slm66018 	/*
18613af08d82Slm66018 	 * Send an RDX message to vds to indicate we are ready
18623af08d82Slm66018 	 * to send data
18633af08d82Slm66018 	 */
18643af08d82Slm66018 	msg.tag.vio_msgtype = VIO_TYPE_CTRL;
18653af08d82Slm66018 	msg.tag.vio_subtype = VIO_SUBTYPE_INFO;
18663af08d82Slm66018 	msg.tag.vio_subtype_env = VIO_RDX;
18673af08d82Slm66018 	msg.tag.vio_sid = vdcp->session_id;
18683af08d82Slm66018 	status = vdc_send(vdcp, (caddr_t)&msg, &msglen);
18693af08d82Slm66018 	if (status != 0) {
18703af08d82Slm66018 		DMSG(vdcp, 0, "[%d] Failed to send RDX message (%d)",
18713af08d82Slm66018 		    vdcp->instance, status);
18723af08d82Slm66018 	}
18733af08d82Slm66018 
18743af08d82Slm66018 	return (status);
18753af08d82Slm66018 }
18763af08d82Slm66018 
18773af08d82Slm66018 /*
18783af08d82Slm66018  * Function:
18793af08d82Slm66018  *	vdc_handle_rdx()
18803af08d82Slm66018  *
18813af08d82Slm66018  * Description:
18823af08d82Slm66018  *
18833af08d82Slm66018  * Arguments:
18843af08d82Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
18853af08d82Slm66018  *	msgp	- received msg
18863af08d82Slm66018  *
18873af08d82Slm66018  * Return Code:
18883af08d82Slm66018  *	0	- Success
18893af08d82Slm66018  */
18903af08d82Slm66018 static int
18913af08d82Slm66018 vdc_handle_rdx(vdc_t *vdcp, vio_rdx_msg_t *msgp)
18923af08d82Slm66018 {
18933af08d82Slm66018 	_NOTE(ARGUNUSED(vdcp))
18943af08d82Slm66018 	_NOTE(ARGUNUSED(msgp))
18953af08d82Slm66018 
18963af08d82Slm66018 	ASSERT(msgp->tag.vio_msgtype == VIO_TYPE_CTRL);
18973af08d82Slm66018 	ASSERT(msgp->tag.vio_subtype == VIO_SUBTYPE_ACK);
18983af08d82Slm66018 	ASSERT(msgp->tag.vio_subtype_env == VIO_RDX);
18993af08d82Slm66018 
19003af08d82Slm66018 	DMSG(vdcp, 1, "[%d] Got an RDX msg", vdcp->instance);
19013af08d82Slm66018 
19023af08d82Slm66018 	return (0);
19033af08d82Slm66018 }
19043af08d82Slm66018 
19053af08d82Slm66018 /*
19063af08d82Slm66018  * Function:
19073af08d82Slm66018  *	vdc_rdx_exchange()
19083af08d82Slm66018  *
19093af08d82Slm66018  * Description:
19103af08d82Slm66018  *
19113af08d82Slm66018  * Arguments:
19123af08d82Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
19133af08d82Slm66018  *
19143af08d82Slm66018  * Return Code:
19153af08d82Slm66018  *	0	- Success
19163af08d82Slm66018  */
19173af08d82Slm66018 static int
19183af08d82Slm66018 vdc_rdx_exchange(vdc_t *vdcp)
19193af08d82Slm66018 {
19203af08d82Slm66018 	int status;
19213af08d82Slm66018 	vio_msg_t vio_msg;
19223af08d82Slm66018 
19233af08d82Slm66018 	if (status = vdc_send_rdx(vdcp))
19243af08d82Slm66018 		return (status);
19253af08d82Slm66018 
19263af08d82Slm66018 	/* release lock and wait for response */
19273af08d82Slm66018 	mutex_exit(&vdcp->lock);
19283af08d82Slm66018 	status = vdc_wait_for_response(vdcp, &vio_msg);
19293af08d82Slm66018 	mutex_enter(&vdcp->lock);
19303af08d82Slm66018 	if (status) {
193187a7269eSachartre 		DMSG(vdcp, 0, "[%d] Failed waiting for RDX response, rv(%d)",
193287a7269eSachartre 		    vdcp->instance, status);
19333af08d82Slm66018 		return (status);
19343af08d82Slm66018 	}
19353af08d82Slm66018 
19363af08d82Slm66018 	/* check type and sub_type ... */
19373af08d82Slm66018 	if (vio_msg.tag.vio_msgtype != VIO_TYPE_CTRL ||
19383af08d82Slm66018 	    vio_msg.tag.vio_subtype != VIO_SUBTYPE_ACK) {
193987a7269eSachartre 		DMSG(vdcp, 0, "[%d] Invalid RDX response\n", vdcp->instance);
19403af08d82Slm66018 		return (EPROTO);
19413af08d82Slm66018 	}
19423af08d82Slm66018 
19433af08d82Slm66018 	return (vdc_handle_rdx(vdcp, (vio_rdx_msg_t *)&vio_msg));
19443af08d82Slm66018 }
19453af08d82Slm66018 
19463af08d82Slm66018 
19471ae08745Sheppo /* -------------------------------------------------------------------------- */
19481ae08745Sheppo 
19491ae08745Sheppo /*
19501ae08745Sheppo  * LDC helper routines
19511ae08745Sheppo  */
19521ae08745Sheppo 
19533af08d82Slm66018 static int
19543af08d82Slm66018 vdc_recv(vdc_t *vdc, vio_msg_t *msgp, size_t *nbytesp)
19553af08d82Slm66018 {
19563af08d82Slm66018 	int		status;
19573af08d82Slm66018 	boolean_t	q_has_pkts = B_FALSE;
195817cadca8Slm66018 	uint64_t	delay_time;
19593af08d82Slm66018 	size_t		len;
19603af08d82Slm66018 
19613af08d82Slm66018 	mutex_enter(&vdc->read_lock);
19623af08d82Slm66018 
19633af08d82Slm66018 	if (vdc->read_state == VDC_READ_IDLE)
19643af08d82Slm66018 		vdc->read_state = VDC_READ_WAITING;
19653af08d82Slm66018 
19663af08d82Slm66018 	while (vdc->read_state != VDC_READ_PENDING) {
19673af08d82Slm66018 
19683af08d82Slm66018 		/* detect if the connection has been reset */
19693af08d82Slm66018 		if (vdc->read_state == VDC_READ_RESET) {
19703af08d82Slm66018 			status = ECONNRESET;
19713af08d82Slm66018 			goto done;
19723af08d82Slm66018 		}
19733af08d82Slm66018 
19743af08d82Slm66018 		cv_wait(&vdc->read_cv, &vdc->read_lock);
19753af08d82Slm66018 	}
19763af08d82Slm66018 
19773af08d82Slm66018 	/*
19783af08d82Slm66018 	 * Until we get a blocking ldc read we have to retry
19793af08d82Slm66018 	 * until the entire LDC message has arrived before
19803af08d82Slm66018 	 * ldc_read() will succeed. Note we also bail out if
1981eff7243fSlm66018 	 * the channel is reset or goes away.
19823af08d82Slm66018 	 */
19833af08d82Slm66018 	delay_time = vdc_ldc_read_init_delay;
19843af08d82Slm66018 loop:
19853af08d82Slm66018 	len = *nbytesp;
19868cd10891Snarayan 	status = ldc_read(vdc->curr_server->ldc_handle, (caddr_t)msgp, &len);
19873af08d82Slm66018 	switch (status) {
19883af08d82Slm66018 	case EAGAIN:
19893af08d82Slm66018 		delay_time *= 2;
19903af08d82Slm66018 		if (delay_time >= vdc_ldc_read_max_delay)
19913af08d82Slm66018 			delay_time = vdc_ldc_read_max_delay;
19923af08d82Slm66018 		delay(delay_time);
19933af08d82Slm66018 		goto loop;
19943af08d82Slm66018 
19953af08d82Slm66018 	case 0:
19963af08d82Slm66018 		if (len == 0) {
199717cadca8Slm66018 			DMSG(vdc, 1, "[%d] ldc_read returned 0 bytes with "
19983af08d82Slm66018 			    "no error!\n", vdc->instance);
19993af08d82Slm66018 			goto loop;
20003af08d82Slm66018 		}
20013af08d82Slm66018 
20023af08d82Slm66018 		*nbytesp = len;
20033af08d82Slm66018 
20043af08d82Slm66018 		/*
20053af08d82Slm66018 		 * If there are pending messages, leave the
20063af08d82Slm66018 		 * read state as pending. Otherwise, set the state
20073af08d82Slm66018 		 * back to idle.
20083af08d82Slm66018 		 */
20098cd10891Snarayan 		status = ldc_chkq(vdc->curr_server->ldc_handle, &q_has_pkts);
20103af08d82Slm66018 		if (status == 0 && !q_has_pkts)
20113af08d82Slm66018 			vdc->read_state = VDC_READ_IDLE;
20123af08d82Slm66018 
20133af08d82Slm66018 		break;
20143af08d82Slm66018 	default:
20153af08d82Slm66018 		DMSG(vdc, 0, "ldc_read returned %d\n", status);
20163af08d82Slm66018 		break;
20173af08d82Slm66018 	}
20183af08d82Slm66018 
20193af08d82Slm66018 done:
20203af08d82Slm66018 	mutex_exit(&vdc->read_lock);
20213af08d82Slm66018 
20223af08d82Slm66018 	return (status);
20233af08d82Slm66018 }
20243af08d82Slm66018 
20253af08d82Slm66018 
20263af08d82Slm66018 
20273af08d82Slm66018 #ifdef DEBUG
20283af08d82Slm66018 void
20293af08d82Slm66018 vdc_decode_tag(vdc_t *vdcp, vio_msg_t *msg)
20303af08d82Slm66018 {
20313af08d82Slm66018 	char *ms, *ss, *ses;
20323af08d82Slm66018 	switch (msg->tag.vio_msgtype) {
20333af08d82Slm66018 #define	Q(_s)	case _s : ms = #_s; break;
20343af08d82Slm66018 	Q(VIO_TYPE_CTRL)
20353af08d82Slm66018 	Q(VIO_TYPE_DATA)
20363af08d82Slm66018 	Q(VIO_TYPE_ERR)
20373af08d82Slm66018 #undef Q
20383af08d82Slm66018 	default: ms = "unknown"; break;
20393af08d82Slm66018 	}
20403af08d82Slm66018 
20413af08d82Slm66018 	switch (msg->tag.vio_subtype) {
20423af08d82Slm66018 #define	Q(_s)	case _s : ss = #_s; break;
20433af08d82Slm66018 	Q(VIO_SUBTYPE_INFO)
20443af08d82Slm66018 	Q(VIO_SUBTYPE_ACK)
20453af08d82Slm66018 	Q(VIO_SUBTYPE_NACK)
20463af08d82Slm66018 #undef Q
20473af08d82Slm66018 	default: ss = "unknown"; break;
20483af08d82Slm66018 	}
20493af08d82Slm66018 
20503af08d82Slm66018 	switch (msg->tag.vio_subtype_env) {
20513af08d82Slm66018 #define	Q(_s)	case _s : ses = #_s; break;
20523af08d82Slm66018 	Q(VIO_VER_INFO)
20533af08d82Slm66018 	Q(VIO_ATTR_INFO)
20543af08d82Slm66018 	Q(VIO_DRING_REG)
20553af08d82Slm66018 	Q(VIO_DRING_UNREG)
20563af08d82Slm66018 	Q(VIO_RDX)
20573af08d82Slm66018 	Q(VIO_PKT_DATA)
20583af08d82Slm66018 	Q(VIO_DESC_DATA)
20593af08d82Slm66018 	Q(VIO_DRING_DATA)
20603af08d82Slm66018 #undef Q
20613af08d82Slm66018 	default: ses = "unknown"; break;
20623af08d82Slm66018 	}
20633af08d82Slm66018 
20643af08d82Slm66018 	DMSG(vdcp, 3, "(%x/%x/%x) message : (%s/%s/%s)\n",
20653af08d82Slm66018 	    msg->tag.vio_msgtype, msg->tag.vio_subtype,
20663af08d82Slm66018 	    msg->tag.vio_subtype_env, ms, ss, ses);
20673af08d82Slm66018 }
20683af08d82Slm66018 #endif
20693af08d82Slm66018 
20701ae08745Sheppo /*
20711ae08745Sheppo  * Function:
20721ae08745Sheppo  *	vdc_send()
20731ae08745Sheppo  *
20741ae08745Sheppo  * Description:
20751ae08745Sheppo  *	The function encapsulates the call to write a message using LDC.
20761ae08745Sheppo  *	If LDC indicates that the call failed due to the queue being full,
207717cadca8Slm66018  *	we retry the ldc_write(), otherwise we return the error returned by LDC.
20781ae08745Sheppo  *
20791ae08745Sheppo  * Arguments:
20801ae08745Sheppo  *	ldc_handle	- LDC handle for the channel this instance of vdc uses
20811ae08745Sheppo  *	pkt		- address of LDC message to be sent
20821ae08745Sheppo  *	msglen		- the size of the message being sent. When the function
20831ae08745Sheppo  *			  returns, this contains the number of bytes written.
20841ae08745Sheppo  *
20851ae08745Sheppo  * Return Code:
20861ae08745Sheppo  *	0		- Success.
20871ae08745Sheppo  *	EINVAL		- pkt or msglen were NULL
20881ae08745Sheppo  *	ECONNRESET	- The connection was not up.
20891ae08745Sheppo  *	EWOULDBLOCK	- LDC queue is full
20901ae08745Sheppo  *	xxx		- other error codes returned by ldc_write
20911ae08745Sheppo  */
20921ae08745Sheppo static int
20930a55fbb7Slm66018 vdc_send(vdc_t *vdc, caddr_t pkt, size_t *msglen)
20941ae08745Sheppo {
20951ae08745Sheppo 	size_t	size = 0;
20961ae08745Sheppo 	int	status = 0;
20973af08d82Slm66018 	clock_t delay_ticks;
20981ae08745Sheppo 
20990a55fbb7Slm66018 	ASSERT(vdc != NULL);
21000a55fbb7Slm66018 	ASSERT(mutex_owned(&vdc->lock));
21011ae08745Sheppo 	ASSERT(msglen != NULL);
21021ae08745Sheppo 	ASSERT(*msglen != 0);
21031ae08745Sheppo 
21043af08d82Slm66018 #ifdef DEBUG
210517cadca8Slm66018 	vdc_decode_tag(vdc, (vio_msg_t *)(uintptr_t)pkt);
21063af08d82Slm66018 #endif
21073af08d82Slm66018 	/*
21083af08d82Slm66018 	 * Wait indefinitely to send if channel
21093af08d82Slm66018 	 * is busy, but bail out if we succeed or
21103af08d82Slm66018 	 * if the channel closes or is reset.
21113af08d82Slm66018 	 */
21123af08d82Slm66018 	delay_ticks = vdc_hz_min_ldc_delay;
21131ae08745Sheppo 	do {
21141ae08745Sheppo 		size = *msglen;
21158cd10891Snarayan 		status = ldc_write(vdc->curr_server->ldc_handle, pkt, &size);
21163af08d82Slm66018 		if (status == EWOULDBLOCK) {
21173af08d82Slm66018 			delay(delay_ticks);
21183af08d82Slm66018 			/* geometric backoff */
21193af08d82Slm66018 			delay_ticks *= 2;
21203af08d82Slm66018 			if (delay_ticks > vdc_hz_max_ldc_delay)
21213af08d82Slm66018 				delay_ticks = vdc_hz_max_ldc_delay;
21223af08d82Slm66018 		}
21233af08d82Slm66018 	} while (status == EWOULDBLOCK);
21241ae08745Sheppo 
21250a55fbb7Slm66018 	/* if LDC had serious issues --- reset vdc state */
21260a55fbb7Slm66018 	if (status == EIO || status == ECONNRESET) {
21273af08d82Slm66018 		/* LDC had serious issues --- reset vdc state */
21283af08d82Slm66018 		mutex_enter(&vdc->read_lock);
21293af08d82Slm66018 		if ((vdc->read_state == VDC_READ_WAITING) ||
21303af08d82Slm66018 		    (vdc->read_state == VDC_READ_RESET))
21313af08d82Slm66018 			cv_signal(&vdc->read_cv);
21323af08d82Slm66018 		vdc->read_state = VDC_READ_RESET;
21333af08d82Slm66018 		mutex_exit(&vdc->read_lock);
21343af08d82Slm66018 
21353af08d82Slm66018 		/* wake up any waiters in the reset thread */
21363af08d82Slm66018 		if (vdc->state == VDC_STATE_INIT_WAITING) {
21373af08d82Slm66018 			DMSG(vdc, 0, "[%d] write reset - "
21383af08d82Slm66018 			    "vdc is resetting ..\n", vdc->instance);
21393af08d82Slm66018 			vdc->state = VDC_STATE_RESETTING;
21403af08d82Slm66018 			cv_signal(&vdc->initwait_cv);
21413af08d82Slm66018 		}
21423af08d82Slm66018 
21433af08d82Slm66018 		return (ECONNRESET);
21440a55fbb7Slm66018 	}
21450a55fbb7Slm66018 
21461ae08745Sheppo 	/* return the last size written */
21471ae08745Sheppo 	*msglen = size;
21481ae08745Sheppo 
21491ae08745Sheppo 	return (status);
21501ae08745Sheppo }
21511ae08745Sheppo 
21521ae08745Sheppo /*
21531ae08745Sheppo  * Function:
2154655fd6a9Sachartre  *	vdc_get_md_node
21551ae08745Sheppo  *
21561ae08745Sheppo  * Description:
21578cd10891Snarayan  *	Get the MD, the device node for the given disk instance. The
21588cd10891Snarayan  *	caller is responsible for cleaning up the reference to the
21598cd10891Snarayan  *	returned MD (mdpp) by calling md_fini_handle().
21601ae08745Sheppo  *
21611ae08745Sheppo  * Arguments:
21621ae08745Sheppo  *	dip	- dev info pointer for this instance of the device driver.
2163655fd6a9Sachartre  *	mdpp	- the returned MD.
2164655fd6a9Sachartre  *	vd_nodep - the returned device node.
21651ae08745Sheppo  *
21661ae08745Sheppo  * Return Code:
21671ae08745Sheppo  *	0	- Success.
21681ae08745Sheppo  *	ENOENT	- Expected node or property did not exist.
21691ae08745Sheppo  *	ENXIO	- Unexpected error communicating with MD framework
21701ae08745Sheppo  */
21711ae08745Sheppo static int
21728cd10891Snarayan vdc_get_md_node(dev_info_t *dip, md_t **mdpp, mde_cookie_t *vd_nodep)
21731ae08745Sheppo {
21741ae08745Sheppo 	int		status = ENOENT;
21751ae08745Sheppo 	char		*node_name = NULL;
21761ae08745Sheppo 	md_t		*mdp = NULL;
21771ae08745Sheppo 	int		num_nodes;
21781ae08745Sheppo 	int		num_vdevs;
21791ae08745Sheppo 	mde_cookie_t	rootnode;
21801ae08745Sheppo 	mde_cookie_t	*listp = NULL;
21811ae08745Sheppo 	boolean_t	found_inst = B_FALSE;
21821ae08745Sheppo 	int		listsz;
21831ae08745Sheppo 	int		idx;
21841ae08745Sheppo 	uint64_t	md_inst;
21851ae08745Sheppo 	int		obp_inst;
21861ae08745Sheppo 	int		instance = ddi_get_instance(dip);
21871ae08745Sheppo 
21881ae08745Sheppo 	/*
21891ae08745Sheppo 	 * Get the OBP instance number for comparison with the MD instance
21901ae08745Sheppo 	 *
21911ae08745Sheppo 	 * The "cfg-handle" property of a vdc node in an MD contains the MD's
21921ae08745Sheppo 	 * notion of "instance", or unique identifier, for that node; OBP
21931ae08745Sheppo 	 * stores the value of the "cfg-handle" MD property as the value of
21941ae08745Sheppo 	 * the "reg" property on the node in the device tree it builds from
21951ae08745Sheppo 	 * the MD and passes to Solaris.  Thus, we look up the devinfo node's
21961ae08745Sheppo 	 * "reg" property value to uniquely identify this device instance.
21971ae08745Sheppo 	 * If the "reg" property cannot be found, the device tree state is
21981ae08745Sheppo 	 * presumably so broken that there is no point in continuing.
21991ae08745Sheppo 	 */
22001ae08745Sheppo 	if (!ddi_prop_exists(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS, OBP_REG)) {
22011ae08745Sheppo 		cmn_err(CE_WARN, "'%s' property does not exist", OBP_REG);
22021ae08745Sheppo 		return (ENOENT);
22031ae08745Sheppo 	}
22041ae08745Sheppo 	obp_inst = ddi_prop_get_int(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
22051ae08745Sheppo 	    OBP_REG, -1);
22063af08d82Slm66018 	DMSGX(1, "[%d] OBP inst=%d\n", instance, obp_inst);
22071ae08745Sheppo 
22081ae08745Sheppo 	/*
2209655fd6a9Sachartre 	 * We now walk the MD nodes to find the node for this vdisk.
22101ae08745Sheppo 	 */
22111ae08745Sheppo 	if ((mdp = md_get_handle()) == NULL) {
22121ae08745Sheppo 		cmn_err(CE_WARN, "unable to init machine description");
22131ae08745Sheppo 		return (ENXIO);
22141ae08745Sheppo 	}
22151ae08745Sheppo 
22161ae08745Sheppo 	num_nodes = md_node_count(mdp);
22171ae08745Sheppo 	ASSERT(num_nodes > 0);
22181ae08745Sheppo 
22191ae08745Sheppo 	listsz = num_nodes * sizeof (mde_cookie_t);
22201ae08745Sheppo 
22211ae08745Sheppo 	/* allocate memory for nodes */
22221ae08745Sheppo 	listp = kmem_zalloc(listsz, KM_SLEEP);
22231ae08745Sheppo 
22241ae08745Sheppo 	rootnode = md_root_node(mdp);
22251ae08745Sheppo 	ASSERT(rootnode != MDE_INVAL_ELEM_COOKIE);
22261ae08745Sheppo 
22271ae08745Sheppo 	/*
22281ae08745Sheppo 	 * Search for all the virtual devices, we will then check to see which
22291ae08745Sheppo 	 * ones are disk nodes.
22301ae08745Sheppo 	 */
22311ae08745Sheppo 	num_vdevs = md_scan_dag(mdp, rootnode,
22321ae08745Sheppo 	    md_find_name(mdp, VDC_MD_VDEV_NAME),
22331ae08745Sheppo 	    md_find_name(mdp, "fwd"), listp);
22341ae08745Sheppo 
22351ae08745Sheppo 	if (num_vdevs <= 0) {
22361ae08745Sheppo 		cmn_err(CE_NOTE, "No '%s' node found", VDC_MD_VDEV_NAME);
22371ae08745Sheppo 		status = ENOENT;
22381ae08745Sheppo 		goto done;
22391ae08745Sheppo 	}
22401ae08745Sheppo 
22413af08d82Slm66018 	DMSGX(1, "[%d] num_vdevs=%d\n", instance, num_vdevs);
22421ae08745Sheppo 	for (idx = 0; idx < num_vdevs; idx++) {
22431ae08745Sheppo 		status = md_get_prop_str(mdp, listp[idx], "name", &node_name);
22441ae08745Sheppo 		if ((status != 0) || (node_name == NULL)) {
22451ae08745Sheppo 			cmn_err(CE_NOTE, "Unable to get name of node type '%s'"
22461ae08745Sheppo 			    ": err %d", VDC_MD_VDEV_NAME, status);
22471ae08745Sheppo 			continue;
22481ae08745Sheppo 		}
22491ae08745Sheppo 
22503af08d82Slm66018 		DMSGX(1, "[%d] Found node '%s'\n", instance, node_name);
22511ae08745Sheppo 		if (strcmp(VDC_MD_DISK_NAME, node_name) == 0) {
22521ae08745Sheppo 			status = md_get_prop_val(mdp, listp[idx],
22531ae08745Sheppo 			    VDC_MD_CFG_HDL, &md_inst);
22543af08d82Slm66018 			DMSGX(1, "[%d] vdc inst in MD=%lx\n",
22553af08d82Slm66018 			    instance, md_inst);
22561ae08745Sheppo 			if ((status == 0) && (md_inst == obp_inst)) {
22571ae08745Sheppo 				found_inst = B_TRUE;
22581ae08745Sheppo 				break;
22591ae08745Sheppo 			}
22601ae08745Sheppo 		}
22611ae08745Sheppo 	}
22621ae08745Sheppo 
22630a55fbb7Slm66018 	if (!found_inst) {
22643af08d82Slm66018 		DMSGX(0, "Unable to find correct '%s' node", VDC_MD_DISK_NAME);
22651ae08745Sheppo 		status = ENOENT;
22661ae08745Sheppo 		goto done;
22671ae08745Sheppo 	}
22683af08d82Slm66018 	DMSGX(0, "[%d] MD inst=%lx\n", instance, md_inst);
22691ae08745Sheppo 
2270655fd6a9Sachartre 	*vd_nodep = listp[idx];
2271655fd6a9Sachartre 	*mdpp = mdp;
2272655fd6a9Sachartre done:
2273655fd6a9Sachartre 	kmem_free(listp, listsz);
2274655fd6a9Sachartre 	return (status);
2275655fd6a9Sachartre }
2276655fd6a9Sachartre 
2277655fd6a9Sachartre /*
2278655fd6a9Sachartre  * Function:
22798cd10891Snarayan  *	vdc_init_ports
2280655fd6a9Sachartre  *
2281655fd6a9Sachartre  * Description:
22828cd10891Snarayan  *	Initialize all the ports for this vdisk instance.
2283655fd6a9Sachartre  *
2284655fd6a9Sachartre  * Arguments:
22858cd10891Snarayan  *	vdc	- soft state pointer for this instance of the device driver.
22868cd10891Snarayan  *	mdp	- md pointer
22878cd10891Snarayan  *	vd_nodep - device md node.
2288655fd6a9Sachartre  *
2289655fd6a9Sachartre  * Return Code:
2290655fd6a9Sachartre  *	0	- Success.
2291655fd6a9Sachartre  *	ENOENT	- Expected node or property did not exist.
2292655fd6a9Sachartre  */
2293655fd6a9Sachartre static int
22948cd10891Snarayan vdc_init_ports(vdc_t *vdc, md_t *mdp, mde_cookie_t vd_nodep)
2295655fd6a9Sachartre {
2296655fd6a9Sachartre 	int		status = 0;
22978cd10891Snarayan 	int		idx;
22988cd10891Snarayan 	int		num_nodes;
22998cd10891Snarayan 	int		num_vports;
23008cd10891Snarayan 	int		num_chans;
23018cd10891Snarayan 	int		listsz;
23028cd10891Snarayan 	mde_cookie_t	vd_port;
23038cd10891Snarayan 	mde_cookie_t	*chanp = NULL;
23048cd10891Snarayan 	mde_cookie_t	*portp = NULL;
23058cd10891Snarayan 	vdc_server_t	*srvr;
23068cd10891Snarayan 	vdc_server_t	*prev_srvr = NULL;
2307655fd6a9Sachartre 
23088cd10891Snarayan 	/*
23098cd10891Snarayan 	 * We now walk the MD nodes to find the port nodes for this vdisk.
23108cd10891Snarayan 	 */
2311655fd6a9Sachartre 	num_nodes = md_node_count(mdp);
2312655fd6a9Sachartre 	ASSERT(num_nodes > 0);
2313655fd6a9Sachartre 
2314655fd6a9Sachartre 	listsz = num_nodes * sizeof (mde_cookie_t);
2315655fd6a9Sachartre 
2316655fd6a9Sachartre 	/* allocate memory for nodes */
23178cd10891Snarayan 	portp = kmem_zalloc(listsz, KM_SLEEP);
2318655fd6a9Sachartre 	chanp = kmem_zalloc(listsz, KM_SLEEP);
2319655fd6a9Sachartre 
23208cd10891Snarayan 	num_vports = md_scan_dag(mdp, vd_nodep,
23218cd10891Snarayan 	    md_find_name(mdp, VDC_MD_PORT_NAME),
23228cd10891Snarayan 	    md_find_name(mdp, "fwd"), portp);
23238cd10891Snarayan 	if (num_vports == 0) {
23248cd10891Snarayan 		DMSGX(0, "Found no '%s' node for '%s' port\n",
23258cd10891Snarayan 		    VDC_MD_PORT_NAME, VDC_MD_VDEV_NAME);
23268cd10891Snarayan 		status = ENOENT;
23278cd10891Snarayan 		goto done;
23288cd10891Snarayan 	}
23298cd10891Snarayan 
23308cd10891Snarayan 	DMSGX(1, "Found %d '%s' node(s) for '%s' port\n",
23318cd10891Snarayan 	    num_vports, VDC_MD_PORT_NAME, VDC_MD_VDEV_NAME);
23328cd10891Snarayan 
23338cd10891Snarayan 	vdc->num_servers = 0;
23348cd10891Snarayan 	for (idx = 0; idx < num_vports; idx++) {
23358cd10891Snarayan 
23368cd10891Snarayan 		/* initialize this port */
23378cd10891Snarayan 		vd_port = portp[idx];
23388cd10891Snarayan 		srvr = kmem_zalloc(sizeof (vdc_server_t), KM_SLEEP);
23398cd10891Snarayan 		srvr->vdcp = vdc;
23408cd10891Snarayan 
23418cd10891Snarayan 		/* get port id */
23428cd10891Snarayan 		if (md_get_prop_val(mdp, vd_port, VDC_MD_ID, &srvr->id) != 0) {
23438cd10891Snarayan 			cmn_err(CE_NOTE, "vDisk port '%s' property not found",
23448cd10891Snarayan 			    VDC_MD_ID);
23458cd10891Snarayan 			kmem_free(srvr, sizeof (vdc_server_t));
23468cd10891Snarayan 			continue;
23478cd10891Snarayan 		}
23488cd10891Snarayan 
23498cd10891Snarayan 		/* set the connection timeout */
23508cd10891Snarayan 		if (md_get_prop_val(mdp, vd_port, VDC_MD_TIMEOUT,
23518cd10891Snarayan 		    &srvr->ctimeout) != 0) {
23528cd10891Snarayan 			srvr->ctimeout = 0;
23538cd10891Snarayan 		}
23548cd10891Snarayan 
23558cd10891Snarayan 		/* get the ldc id */
23568cd10891Snarayan 		num_chans = md_scan_dag(mdp, vd_port,
23571ae08745Sheppo 		    md_find_name(mdp, VDC_MD_CHAN_NAME),
23581ae08745Sheppo 		    md_find_name(mdp, "fwd"), chanp);
23591ae08745Sheppo 
23601ae08745Sheppo 		/* expecting at least one channel */
23611ae08745Sheppo 		if (num_chans <= 0) {
23621ae08745Sheppo 			cmn_err(CE_NOTE, "No '%s' node for '%s' port",
23631ae08745Sheppo 			    VDC_MD_CHAN_NAME, VDC_MD_VDEV_NAME);
23648cd10891Snarayan 			kmem_free(srvr, sizeof (vdc_server_t));
23658cd10891Snarayan 			continue;
23661ae08745Sheppo 		} else if (num_chans != 1) {
23678cd10891Snarayan 			DMSGX(0, "Expected 1 '%s' node for '%s' port, "
23688cd10891Snarayan 			    "found %d\n", VDC_MD_CHAN_NAME, VDC_MD_VDEV_NAME,
23698cd10891Snarayan 			    num_chans);
23701ae08745Sheppo 		}
23711ae08745Sheppo 
23721ae08745Sheppo 		/*
23731ae08745Sheppo 		 * We use the first channel found (index 0), irrespective of how
23741ae08745Sheppo 		 * many are there in total.
23751ae08745Sheppo 		 */
23768cd10891Snarayan 		if (md_get_prop_val(mdp, chanp[0], VDC_MD_ID,
23778cd10891Snarayan 		    &srvr->ldc_id) != 0) {
23788cd10891Snarayan 			cmn_err(CE_NOTE, "Channel '%s' property not found",
23798cd10891Snarayan 			    VDC_MD_ID);
23808cd10891Snarayan 			kmem_free(srvr, sizeof (vdc_server_t));
23818cd10891Snarayan 			continue;
23828cd10891Snarayan 		}
23838cd10891Snarayan 
23848cd10891Snarayan 		/*
23858cd10891Snarayan 		 * now initialise LDC channel which will be used to
23868cd10891Snarayan 		 * communicate with this server
23878cd10891Snarayan 		 */
23888cd10891Snarayan 		if (vdc_do_ldc_init(vdc, srvr) != 0) {
23898cd10891Snarayan 			kmem_free(srvr, sizeof (vdc_server_t));
23908cd10891Snarayan 			continue;
23918cd10891Snarayan 		}
23928cd10891Snarayan 
23938cd10891Snarayan 		/* add server to list */
2394d7400d00Sachartre 		if (prev_srvr)
23958cd10891Snarayan 			prev_srvr->next = srvr;
2396d7400d00Sachartre 		else
23978cd10891Snarayan 			vdc->server_list = srvr;
2398d7400d00Sachartre 
23998cd10891Snarayan 		prev_srvr = srvr;
24008cd10891Snarayan 
24018cd10891Snarayan 		/* inc numbers of servers */
24028cd10891Snarayan 		vdc->num_servers++;
24038cd10891Snarayan 	}
24048cd10891Snarayan 
24058cd10891Snarayan 	/*
24068cd10891Snarayan 	 * Adjust the max number of handshake retries to match
24078cd10891Snarayan 	 * the number of vdisk servers.
24088cd10891Snarayan 	 */
24098cd10891Snarayan 	if (vdc_hshake_retries < vdc->num_servers)
24108cd10891Snarayan 		vdc_hshake_retries = vdc->num_servers;
24118cd10891Snarayan 
24128cd10891Snarayan 	/* pick first server as current server */
24138cd10891Snarayan 	if (vdc->server_list != NULL) {
24148cd10891Snarayan 		vdc->curr_server = vdc->server_list;
24158cd10891Snarayan 		status = 0;
24168cd10891Snarayan 	} else {
24171ae08745Sheppo 		status = ENOENT;
24181ae08745Sheppo 	}
24191ae08745Sheppo 
24201ae08745Sheppo done:
24211ae08745Sheppo 	kmem_free(chanp, listsz);
24228cd10891Snarayan 	kmem_free(portp, listsz);
24231ae08745Sheppo 	return (status);
24241ae08745Sheppo }
24251ae08745Sheppo 
24268cd10891Snarayan 
24278cd10891Snarayan /*
24288cd10891Snarayan  * Function:
24298cd10891Snarayan  *	vdc_do_ldc_up
24308cd10891Snarayan  *
24318cd10891Snarayan  * Description:
24328cd10891Snarayan  *	Bring the channel for the current server up.
24338cd10891Snarayan  *
24348cd10891Snarayan  * Arguments:
24358cd10891Snarayan  *	vdc	- soft state pointer for this instance of the device driver.
24368cd10891Snarayan  *
24378cd10891Snarayan  * Return Code:
24388cd10891Snarayan  *	0		- Success.
24398cd10891Snarayan  *	EINVAL		- Driver is detaching / LDC error
24408cd10891Snarayan  *	ECONNREFUSED	- Other end is not listening
24418cd10891Snarayan  */
24420a55fbb7Slm66018 static int
24430a55fbb7Slm66018 vdc_do_ldc_up(vdc_t *vdc)
24440a55fbb7Slm66018 {
24450a55fbb7Slm66018 	int		status;
24463af08d82Slm66018 	ldc_status_t	ldc_state;
24470a55fbb7Slm66018 
24488cd10891Snarayan 	ASSERT(MUTEX_HELD(&vdc->lock));
24498cd10891Snarayan 
24503af08d82Slm66018 	DMSG(vdc, 0, "[%d] Bringing up channel %lx\n",
24518cd10891Snarayan 	    vdc->instance, vdc->curr_server->ldc_id);
24523af08d82Slm66018 
24533af08d82Slm66018 	if (vdc->lifecycle == VDC_LC_DETACHING)
24543af08d82Slm66018 		return (EINVAL);
24550a55fbb7Slm66018 
24568cd10891Snarayan 	if ((status = ldc_up(vdc->curr_server->ldc_handle)) != 0) {
24570a55fbb7Slm66018 		switch (status) {
24580a55fbb7Slm66018 		case ECONNREFUSED:	/* listener not ready at other end */
24593af08d82Slm66018 			DMSG(vdc, 0, "[%d] ldc_up(%lx,...) return %d\n",
24608cd10891Snarayan 			    vdc->instance, vdc->curr_server->ldc_id, status);
24610a55fbb7Slm66018 			status = 0;
24620a55fbb7Slm66018 			break;
24630a55fbb7Slm66018 		default:
24643af08d82Slm66018 			DMSG(vdc, 0, "[%d] Failed to bring up LDC: "
24658cd10891Snarayan 			    "channel=%ld, err=%d", vdc->instance,
24668cd10891Snarayan 			    vdc->curr_server->ldc_id, status);
24673af08d82Slm66018 			break;
24683af08d82Slm66018 		}
24693af08d82Slm66018 	}
24703af08d82Slm66018 
24718cd10891Snarayan 	if (ldc_status(vdc->curr_server->ldc_handle, &ldc_state) == 0) {
24728cd10891Snarayan 		vdc->curr_server->ldc_state = ldc_state;
24733af08d82Slm66018 		if (ldc_state == LDC_UP) {
24743af08d82Slm66018 			DMSG(vdc, 0, "[%d] LDC channel already up\n",
24753af08d82Slm66018 			    vdc->instance);
24763af08d82Slm66018 			vdc->seq_num = 1;
24773af08d82Slm66018 			vdc->seq_num_reply = 0;
24780a55fbb7Slm66018 		}
24790a55fbb7Slm66018 	}
24800a55fbb7Slm66018 
24810a55fbb7Slm66018 	return (status);
24820a55fbb7Slm66018 }
24830a55fbb7Slm66018 
24840a55fbb7Slm66018 /*
24850a55fbb7Slm66018  * Function:
24860a55fbb7Slm66018  *	vdc_terminate_ldc()
24870a55fbb7Slm66018  *
24880a55fbb7Slm66018  * Description:
24890a55fbb7Slm66018  *
24900a55fbb7Slm66018  * Arguments:
24910a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
24928cd10891Snarayan  *	srvr	- vdc per-server info structure
24930a55fbb7Slm66018  *
24940a55fbb7Slm66018  * Return Code:
24950a55fbb7Slm66018  *	None
24960a55fbb7Slm66018  */
24971ae08745Sheppo static void
24988cd10891Snarayan vdc_terminate_ldc(vdc_t *vdc, vdc_server_t *srvr)
24991ae08745Sheppo {
25001ae08745Sheppo 	int	instance = ddi_get_instance(vdc->dip);
25011ae08745Sheppo 
25028cd10891Snarayan 	if (srvr->state & VDC_LDC_OPEN) {
25038cd10891Snarayan 		DMSG(vdc, 0, "[%d] ldc_close()\n", instance);
25048cd10891Snarayan 		(void) ldc_close(srvr->ldc_handle);
25058cd10891Snarayan 	}
25068cd10891Snarayan 	if (srvr->state & VDC_LDC_CB) {
25078cd10891Snarayan 		DMSG(vdc, 0, "[%d] ldc_unreg_callback()\n", instance);
25088cd10891Snarayan 		(void) ldc_unreg_callback(srvr->ldc_handle);
25098cd10891Snarayan 	}
25108cd10891Snarayan 	if (srvr->state & VDC_LDC_INIT) {
25118cd10891Snarayan 		DMSG(vdc, 0, "[%d] ldc_fini()\n", instance);
25128cd10891Snarayan 		(void) ldc_fini(srvr->ldc_handle);
25138cd10891Snarayan 		srvr->ldc_handle = NULL;
25148cd10891Snarayan 	}
25158cd10891Snarayan 
25168cd10891Snarayan 	srvr->state &= ~(VDC_LDC_INIT | VDC_LDC_CB | VDC_LDC_OPEN);
25178cd10891Snarayan }
25188cd10891Snarayan 
25198cd10891Snarayan /*
25208cd10891Snarayan  * Function:
25218cd10891Snarayan  *	vdc_fini_ports()
25228cd10891Snarayan  *
25238cd10891Snarayan  * Description:
25248cd10891Snarayan  *	Finalize all ports by closing the channel associated with each
25258cd10891Snarayan  *	port and also freeing the server structure.
25268cd10891Snarayan  *
25278cd10891Snarayan  * Arguments:
25288cd10891Snarayan  *	vdc	- soft state pointer for this instance of the device driver.
25298cd10891Snarayan  *
25308cd10891Snarayan  * Return Code:
25318cd10891Snarayan  *	None
25328cd10891Snarayan  */
25338cd10891Snarayan static void
25348cd10891Snarayan vdc_fini_ports(vdc_t *vdc)
25358cd10891Snarayan {
25368cd10891Snarayan 	int		instance = ddi_get_instance(vdc->dip);
25378cd10891Snarayan 	vdc_server_t	*srvr, *prev_srvr;
25388cd10891Snarayan 
25391ae08745Sheppo 	ASSERT(vdc != NULL);
25401ae08745Sheppo 	ASSERT(mutex_owned(&vdc->lock));
25411ae08745Sheppo 
25423af08d82Slm66018 	DMSG(vdc, 0, "[%d] initialized=%x\n", instance, vdc->initialized);
25431ae08745Sheppo 
25448cd10891Snarayan 	srvr = vdc->server_list;
25458cd10891Snarayan 
25468cd10891Snarayan 	while (srvr) {
25478cd10891Snarayan 
25488cd10891Snarayan 		vdc_terminate_ldc(vdc, srvr);
25498cd10891Snarayan 
25508cd10891Snarayan 		/* next server */
25518cd10891Snarayan 		prev_srvr = srvr;
25528cd10891Snarayan 		srvr = srvr->next;
25538cd10891Snarayan 
25548cd10891Snarayan 		/* free server */
25558cd10891Snarayan 		kmem_free(prev_srvr, sizeof (vdc_server_t));
25561ae08745Sheppo 	}
25571ae08745Sheppo 
25588cd10891Snarayan 	vdc->server_list = NULL;
25591ae08745Sheppo }
25601ae08745Sheppo 
25611ae08745Sheppo /* -------------------------------------------------------------------------- */
25621ae08745Sheppo 
25631ae08745Sheppo /*
25641ae08745Sheppo  * Descriptor Ring helper routines
25651ae08745Sheppo  */
25661ae08745Sheppo 
25670a55fbb7Slm66018 /*
25680a55fbb7Slm66018  * Function:
25690a55fbb7Slm66018  *	vdc_init_descriptor_ring()
25700a55fbb7Slm66018  *
25710a55fbb7Slm66018  * Description:
25720a55fbb7Slm66018  *
25730a55fbb7Slm66018  * Arguments:
25740a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
25750a55fbb7Slm66018  *
25760a55fbb7Slm66018  * Return Code:
25770a55fbb7Slm66018  *	0	- Success
25780a55fbb7Slm66018  */
25791ae08745Sheppo static int
25801ae08745Sheppo vdc_init_descriptor_ring(vdc_t *vdc)
25811ae08745Sheppo {
25821ae08745Sheppo 	vd_dring_entry_t	*dep = NULL;	/* DRing Entry pointer */
25830a55fbb7Slm66018 	int	status = 0;
25841ae08745Sheppo 	int	i;
25851ae08745Sheppo 
25863af08d82Slm66018 	DMSG(vdc, 0, "[%d] initialized=%x\n", vdc->instance, vdc->initialized);
25871ae08745Sheppo 
25881ae08745Sheppo 	ASSERT(vdc != NULL);
25891ae08745Sheppo 	ASSERT(mutex_owned(&vdc->lock));
25901ae08745Sheppo 
2591e1ebb9ecSlm66018 	/* ensure we have enough room to store max sized block */
2592e1ebb9ecSlm66018 	ASSERT(maxphys <= VD_MAX_BLOCK_SIZE);
2593e1ebb9ecSlm66018 
25940a55fbb7Slm66018 	if ((vdc->initialized & VDC_DRING_INIT) == 0) {
25953af08d82Slm66018 		DMSG(vdc, 0, "[%d] ldc_mem_dring_create\n", vdc->instance);
2596e1ebb9ecSlm66018 		/*
2597e1ebb9ecSlm66018 		 * Calculate the maximum block size we can transmit using one
2598e1ebb9ecSlm66018 		 * Descriptor Ring entry from the attributes returned by the
2599e1ebb9ecSlm66018 		 * vDisk server. This is subject to a minimum of 'maxphys'
2600e1ebb9ecSlm66018 		 * as we do not have the capability to split requests over
2601e1ebb9ecSlm66018 		 * multiple DRing entries.
2602e1ebb9ecSlm66018 		 */
2603e1ebb9ecSlm66018 		if ((vdc->max_xfer_sz * vdc->block_size) < maxphys) {
26043af08d82Slm66018 			DMSG(vdc, 0, "[%d] using minimum DRing size\n",
2605e1ebb9ecSlm66018 			    vdc->instance);
2606e1ebb9ecSlm66018 			vdc->dring_max_cookies = maxphys / PAGESIZE;
2607e1ebb9ecSlm66018 		} else {
2608e1ebb9ecSlm66018 			vdc->dring_max_cookies =
2609e1ebb9ecSlm66018 			    (vdc->max_xfer_sz * vdc->block_size) / PAGESIZE;
2610e1ebb9ecSlm66018 		}
2611e1ebb9ecSlm66018 		vdc->dring_entry_size = (sizeof (vd_dring_entry_t) +
2612e1ebb9ecSlm66018 		    (sizeof (ldc_mem_cookie_t) *
2613e1ebb9ecSlm66018 		    (vdc->dring_max_cookies - 1)));
2614e1ebb9ecSlm66018 		vdc->dring_len = VD_DRING_LEN;
2615e1ebb9ecSlm66018 
2616e1ebb9ecSlm66018 		status = ldc_mem_dring_create(vdc->dring_len,
26178cd10891Snarayan 		    vdc->dring_entry_size, &vdc->dring_hdl);
26188cd10891Snarayan 		if ((vdc->dring_hdl == NULL) || (status != 0)) {
26193af08d82Slm66018 			DMSG(vdc, 0, "[%d] Descriptor ring creation failed",
2620e1ebb9ecSlm66018 			    vdc->instance);
26211ae08745Sheppo 			return (status);
26221ae08745Sheppo 		}
26230a55fbb7Slm66018 		vdc->initialized |= VDC_DRING_INIT;
26240a55fbb7Slm66018 	}
26251ae08745Sheppo 
26260a55fbb7Slm66018 	if ((vdc->initialized & VDC_DRING_BOUND) == 0) {
26273af08d82Slm66018 		DMSG(vdc, 0, "[%d] ldc_mem_dring_bind\n", vdc->instance);
26280a55fbb7Slm66018 		vdc->dring_cookie =
26290a55fbb7Slm66018 		    kmem_zalloc(sizeof (ldc_mem_cookie_t), KM_SLEEP);
26301ae08745Sheppo 
26318cd10891Snarayan 		status = ldc_mem_dring_bind(vdc->curr_server->ldc_handle,
26328cd10891Snarayan 		    vdc->dring_hdl,
26334bac2208Snarayan 		    LDC_SHADOW_MAP|LDC_DIRECT_MAP, LDC_MEM_RW,
26340a55fbb7Slm66018 		    &vdc->dring_cookie[0],
26351ae08745Sheppo 		    &vdc->dring_cookie_count);
26361ae08745Sheppo 		if (status != 0) {
26373af08d82Slm66018 			DMSG(vdc, 0, "[%d] Failed to bind descriptor ring "
26383af08d82Slm66018 			    "(%lx) to channel (%lx) status=%d\n",
26398cd10891Snarayan 			    vdc->instance, vdc->dring_hdl,
26408cd10891Snarayan 			    vdc->curr_server->ldc_handle, status);
26411ae08745Sheppo 			return (status);
26421ae08745Sheppo 		}
26431ae08745Sheppo 		ASSERT(vdc->dring_cookie_count == 1);
26441ae08745Sheppo 		vdc->initialized |= VDC_DRING_BOUND;
26450a55fbb7Slm66018 	}
26461ae08745Sheppo 
26478cd10891Snarayan 	status = ldc_mem_dring_info(vdc->dring_hdl, &vdc->dring_mem_info);
26481ae08745Sheppo 	if (status != 0) {
26493af08d82Slm66018 		DMSG(vdc, 0,
26503af08d82Slm66018 		    "[%d] Failed to get info for descriptor ring (%lx)\n",
26518cd10891Snarayan 		    vdc->instance, vdc->dring_hdl);
26521ae08745Sheppo 		return (status);
26531ae08745Sheppo 	}
26541ae08745Sheppo 
26550a55fbb7Slm66018 	if ((vdc->initialized & VDC_DRING_LOCAL) == 0) {
26563af08d82Slm66018 		DMSG(vdc, 0, "[%d] local dring\n", vdc->instance);
26570a55fbb7Slm66018 
26581ae08745Sheppo 		/* Allocate the local copy of this dring */
26590a55fbb7Slm66018 		vdc->local_dring =
2660e1ebb9ecSlm66018 		    kmem_zalloc(vdc->dring_len * sizeof (vdc_local_desc_t),
26611ae08745Sheppo 		    KM_SLEEP);
26621ae08745Sheppo 		vdc->initialized |= VDC_DRING_LOCAL;
26630a55fbb7Slm66018 	}
26641ae08745Sheppo 
26651ae08745Sheppo 	/*
26660a55fbb7Slm66018 	 * Mark all DRing entries as free and initialize the private
26670a55fbb7Slm66018 	 * descriptor's memory handles. If any entry is initialized,
26680a55fbb7Slm66018 	 * we need to free it later so we set the bit in 'initialized'
26690a55fbb7Slm66018 	 * at the start.
26701ae08745Sheppo 	 */
26711ae08745Sheppo 	vdc->initialized |= VDC_DRING_ENTRY;
2672e1ebb9ecSlm66018 	for (i = 0; i < vdc->dring_len; i++) {
26731ae08745Sheppo 		dep = VDC_GET_DRING_ENTRY_PTR(vdc, i);
26741ae08745Sheppo 		dep->hdr.dstate = VIO_DESC_FREE;
26751ae08745Sheppo 
26768cd10891Snarayan 		status = ldc_mem_alloc_handle(vdc->curr_server->ldc_handle,
26771ae08745Sheppo 		    &vdc->local_dring[i].desc_mhdl);
26781ae08745Sheppo 		if (status != 0) {
26793af08d82Slm66018 			DMSG(vdc, 0, "![%d] Failed to alloc mem handle for"
26801ae08745Sheppo 			    " descriptor %d", vdc->instance, i);
26811ae08745Sheppo 			return (status);
26821ae08745Sheppo 		}
26833af08d82Slm66018 		vdc->local_dring[i].is_free = B_TRUE;
26841ae08745Sheppo 		vdc->local_dring[i].dep = dep;
26851ae08745Sheppo 	}
26861ae08745Sheppo 
26873af08d82Slm66018 	/* Initialize the starting index */
26883af08d82Slm66018 	vdc->dring_curr_idx = 0;
26891ae08745Sheppo 
26901ae08745Sheppo 	return (status);
26911ae08745Sheppo }
26921ae08745Sheppo 
26930a55fbb7Slm66018 /*
26940a55fbb7Slm66018  * Function:
26950a55fbb7Slm66018  *	vdc_destroy_descriptor_ring()
26960a55fbb7Slm66018  *
26970a55fbb7Slm66018  * Description:
26980a55fbb7Slm66018  *
26990a55fbb7Slm66018  * Arguments:
27000a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
27010a55fbb7Slm66018  *
27020a55fbb7Slm66018  * Return Code:
27030a55fbb7Slm66018  *	None
27040a55fbb7Slm66018  */
27051ae08745Sheppo static void
27061ae08745Sheppo vdc_destroy_descriptor_ring(vdc_t *vdc)
27071ae08745Sheppo {
27080a55fbb7Slm66018 	vdc_local_desc_t	*ldep = NULL;	/* Local Dring Entry Pointer */
27091ae08745Sheppo 	ldc_mem_handle_t	mhdl = NULL;
27103af08d82Slm66018 	ldc_mem_info_t		minfo;
27111ae08745Sheppo 	int			status = -1;
27121ae08745Sheppo 	int			i;	/* loop */
27131ae08745Sheppo 
27141ae08745Sheppo 	ASSERT(vdc != NULL);
27151ae08745Sheppo 	ASSERT(mutex_owned(&vdc->lock));
27161ae08745Sheppo 
27173af08d82Slm66018 	DMSG(vdc, 0, "[%d] Entered\n", vdc->instance);
27181ae08745Sheppo 
27191ae08745Sheppo 	if (vdc->initialized & VDC_DRING_ENTRY) {
27203af08d82Slm66018 		DMSG(vdc, 0,
27213af08d82Slm66018 		    "[%d] Removing Local DRing entries\n", vdc->instance);
2722e1ebb9ecSlm66018 		for (i = 0; i < vdc->dring_len; i++) {
27230a55fbb7Slm66018 			ldep = &vdc->local_dring[i];
27240a55fbb7Slm66018 			mhdl = ldep->desc_mhdl;
27251ae08745Sheppo 
27260a55fbb7Slm66018 			if (mhdl == NULL)
27270a55fbb7Slm66018 				continue;
27280a55fbb7Slm66018 
27293af08d82Slm66018 			if ((status = ldc_mem_info(mhdl, &minfo)) != 0) {
27303af08d82Slm66018 				DMSG(vdc, 0,
27313af08d82Slm66018 				    "ldc_mem_info returned an error: %d\n",
27323af08d82Slm66018 				    status);
27333af08d82Slm66018 
27343af08d82Slm66018 				/*
27353af08d82Slm66018 				 * This must mean that the mem handle
27363af08d82Slm66018 				 * is not valid. Clear it out so that
27373af08d82Slm66018 				 * no one tries to use it.
27383af08d82Slm66018 				 */
27393af08d82Slm66018 				ldep->desc_mhdl = NULL;
27403af08d82Slm66018 				continue;
27413af08d82Slm66018 			}
27423af08d82Slm66018 
27433af08d82Slm66018 			if (minfo.status == LDC_BOUND) {
27443af08d82Slm66018 				(void) ldc_mem_unbind_handle(mhdl);
27453af08d82Slm66018 			}
27463af08d82Slm66018 
27471ae08745Sheppo 			(void) ldc_mem_free_handle(mhdl);
27483af08d82Slm66018 
27493af08d82Slm66018 			ldep->desc_mhdl = NULL;
27501ae08745Sheppo 		}
27511ae08745Sheppo 		vdc->initialized &= ~VDC_DRING_ENTRY;
27521ae08745Sheppo 	}
27531ae08745Sheppo 
27541ae08745Sheppo 	if (vdc->initialized & VDC_DRING_LOCAL) {
27553af08d82Slm66018 		DMSG(vdc, 0, "[%d] Freeing Local DRing\n", vdc->instance);
27561ae08745Sheppo 		kmem_free(vdc->local_dring,
2757e1ebb9ecSlm66018 		    vdc->dring_len * sizeof (vdc_local_desc_t));
27581ae08745Sheppo 		vdc->initialized &= ~VDC_DRING_LOCAL;
27591ae08745Sheppo 	}
27601ae08745Sheppo 
27611ae08745Sheppo 	if (vdc->initialized & VDC_DRING_BOUND) {
27623af08d82Slm66018 		DMSG(vdc, 0, "[%d] Unbinding DRing\n", vdc->instance);
27638cd10891Snarayan 		status = ldc_mem_dring_unbind(vdc->dring_hdl);
27641ae08745Sheppo 		if (status == 0) {
27651ae08745Sheppo 			vdc->initialized &= ~VDC_DRING_BOUND;
27661ae08745Sheppo 		} else {
27673af08d82Slm66018 			DMSG(vdc, 0, "[%d] Error %d unbinding DRing %lx",
27688cd10891Snarayan 			    vdc->instance, status, vdc->dring_hdl);
27691ae08745Sheppo 		}
27703af08d82Slm66018 		kmem_free(vdc->dring_cookie, sizeof (ldc_mem_cookie_t));
27711ae08745Sheppo 	}
27721ae08745Sheppo 
27731ae08745Sheppo 	if (vdc->initialized & VDC_DRING_INIT) {
27743af08d82Slm66018 		DMSG(vdc, 0, "[%d] Destroying DRing\n", vdc->instance);
27758cd10891Snarayan 		status = ldc_mem_dring_destroy(vdc->dring_hdl);
27761ae08745Sheppo 		if (status == 0) {
27778cd10891Snarayan 			vdc->dring_hdl = NULL;
27781ae08745Sheppo 			bzero(&vdc->dring_mem_info, sizeof (ldc_mem_info_t));
27791ae08745Sheppo 			vdc->initialized &= ~VDC_DRING_INIT;
27801ae08745Sheppo 		} else {
27813af08d82Slm66018 			DMSG(vdc, 0, "[%d] Error %d destroying DRing (%lx)",
27828cd10891Snarayan 			    vdc->instance, status, vdc->dring_hdl);
27831ae08745Sheppo 		}
27841ae08745Sheppo 	}
27851ae08745Sheppo }
27861ae08745Sheppo 
27871ae08745Sheppo /*
27883af08d82Slm66018  * Function:
278990e2f9dcSlm66018  *	vdc_map_to_shared_dring()
27901ae08745Sheppo  *
27911ae08745Sheppo  * Description:
27923af08d82Slm66018  *	Copy contents of the local descriptor to the shared
27933af08d82Slm66018  *	memory descriptor.
27941ae08745Sheppo  *
27953af08d82Slm66018  * Arguments:
27963af08d82Slm66018  *	vdcp	- soft state pointer for this instance of the device driver.
27973af08d82Slm66018  *	idx	- descriptor ring index
27983af08d82Slm66018  *
27993af08d82Slm66018  * Return Code:
28003af08d82Slm66018  *	None
28011ae08745Sheppo  */
28021ae08745Sheppo static int
28033af08d82Slm66018 vdc_map_to_shared_dring(vdc_t *vdcp, int idx)
28041ae08745Sheppo {
28053af08d82Slm66018 	vdc_local_desc_t	*ldep;
28063af08d82Slm66018 	vd_dring_entry_t	*dep;
28073af08d82Slm66018 	int			rv;
28081ae08745Sheppo 
28093af08d82Slm66018 	ldep = &(vdcp->local_dring[idx]);
28101ae08745Sheppo 
28113af08d82Slm66018 	/* for now leave in the old pop_mem_hdl stuff */
28123af08d82Slm66018 	if (ldep->nbytes > 0) {
28133af08d82Slm66018 		rv = vdc_populate_mem_hdl(vdcp, ldep);
28143af08d82Slm66018 		if (rv) {
28153af08d82Slm66018 			DMSG(vdcp, 0, "[%d] Cannot populate mem handle\n",
28163af08d82Slm66018 			    vdcp->instance);
28173af08d82Slm66018 			return (rv);
28183af08d82Slm66018 		}
28193af08d82Slm66018 	}
28201ae08745Sheppo 
28213af08d82Slm66018 	/*
28223af08d82Slm66018 	 * fill in the data details into the DRing
28233af08d82Slm66018 	 */
2824d10e4ef2Snarayan 	dep = ldep->dep;
28251ae08745Sheppo 	ASSERT(dep != NULL);
28261ae08745Sheppo 
28273af08d82Slm66018 	dep->payload.req_id = VDC_GET_NEXT_REQ_ID(vdcp);
28283af08d82Slm66018 	dep->payload.operation = ldep->operation;
28293af08d82Slm66018 	dep->payload.addr = ldep->offset;
28303af08d82Slm66018 	dep->payload.nbytes = ldep->nbytes;
2831055d7c80Scarlsonj 	dep->payload.status = (uint32_t)-1;	/* vds will set valid value */
28323af08d82Slm66018 	dep->payload.slice = ldep->slice;
28333af08d82Slm66018 	dep->hdr.dstate = VIO_DESC_READY;
28343af08d82Slm66018 	dep->hdr.ack = 1;		/* request an ACK for every message */
28351ae08745Sheppo 
28363af08d82Slm66018 	return (0);
28371ae08745Sheppo }
28381ae08745Sheppo 
28391ae08745Sheppo /*
28401ae08745Sheppo  * Function:
28413af08d82Slm66018  *	vdc_send_request
28423af08d82Slm66018  *
28433af08d82Slm66018  * Description:
28443af08d82Slm66018  *	This routine writes the data to be transmitted to vds into the
28453af08d82Slm66018  *	descriptor, notifies vds that the ring has been updated and
28463af08d82Slm66018  *	then waits for the request to be processed.
28473af08d82Slm66018  *
28483af08d82Slm66018  * Arguments:
28493af08d82Slm66018  *	vdcp	  - the soft state pointer
28503af08d82Slm66018  *	operation - operation we want vds to perform (VD_OP_XXX)
28513af08d82Slm66018  *	addr	  - address of data buf to be read/written.
28523af08d82Slm66018  *	nbytes	  - number of bytes to read/write
28533af08d82Slm66018  *	slice	  - the disk slice this request is for
28543af08d82Slm66018  *	offset	  - relative disk offset
28553af08d82Slm66018  *	cb_type   - type of call - STRATEGY or SYNC
28563af08d82Slm66018  *	cb_arg	  - parameter to be sent to server (depends on VD_OP_XXX type)
28573af08d82Slm66018  *			. mode for ioctl(9e)
28583af08d82Slm66018  *			. LP64 diskaddr_t (block I/O)
28593af08d82Slm66018  *	dir	  - direction of operation (READ/WRITE/BOTH)
28603af08d82Slm66018  *
28613af08d82Slm66018  * Return Codes:
28623af08d82Slm66018  *	0
28633af08d82Slm66018  *	ENXIO
28643af08d82Slm66018  */
28653af08d82Slm66018 static int
28663af08d82Slm66018 vdc_send_request(vdc_t *vdcp, int operation, caddr_t addr,
28673af08d82Slm66018     size_t nbytes, int slice, diskaddr_t offset, int cb_type,
28683af08d82Slm66018     void *cb_arg, vio_desc_direction_t dir)
28693af08d82Slm66018 {
2870366a92acSlm66018 	int	rv = 0;
2871366a92acSlm66018 
28723af08d82Slm66018 	ASSERT(vdcp != NULL);
287387a7269eSachartre 	ASSERT(slice == VD_SLICE_NONE || slice < V_NUMPAR);
28743af08d82Slm66018 
28753af08d82Slm66018 	mutex_enter(&vdcp->lock);
28763af08d82Slm66018 
2877366a92acSlm66018 	/*
2878366a92acSlm66018 	 * If this is a block read/write operation we update the I/O statistics
2879366a92acSlm66018 	 * to indicate that the request is being put on the waitq to be
2880366a92acSlm66018 	 * serviced.
2881366a92acSlm66018 	 *
2882366a92acSlm66018 	 * We do it here (a common routine for both synchronous and strategy
2883366a92acSlm66018 	 * calls) for performance reasons - we are already holding vdc->lock
2884366a92acSlm66018 	 * so there is no extra locking overhead. We would have to explicitly
2885366a92acSlm66018 	 * grab the 'lock' mutex to update the stats if we were to do this
2886366a92acSlm66018 	 * higher up the stack in vdc_strategy() et. al.
2887366a92acSlm66018 	 */
2888366a92acSlm66018 	if ((operation == VD_OP_BREAD) || (operation == VD_OP_BWRITE)) {
2889366a92acSlm66018 		DTRACE_IO1(start, buf_t *, cb_arg);
289090e2f9dcSlm66018 		VD_KSTAT_WAITQ_ENTER(vdcp);
2891366a92acSlm66018 	}
2892366a92acSlm66018 
28933af08d82Slm66018 	do {
28943c96341aSnarayan 		while (vdcp->state != VDC_STATE_RUNNING) {
28953af08d82Slm66018 
28963c96341aSnarayan 			/* return error if detaching */
28973c96341aSnarayan 			if (vdcp->state == VDC_STATE_DETACH) {
2898366a92acSlm66018 				rv = ENXIO;
2899366a92acSlm66018 				goto done;
29003c96341aSnarayan 			}
2901655fd6a9Sachartre 
2902655fd6a9Sachartre 			/* fail request if connection timeout is reached */
2903655fd6a9Sachartre 			if (vdcp->ctimeout_reached) {
2904366a92acSlm66018 				rv = EIO;
2905366a92acSlm66018 				goto done;
2906655fd6a9Sachartre 			}
2907655fd6a9Sachartre 
29082f5224aeSachartre 			/*
29092f5224aeSachartre 			 * If we are panicking and the disk is not ready then
29102f5224aeSachartre 			 * we can't send any request because we can't complete
29112f5224aeSachartre 			 * the handshake now.
29122f5224aeSachartre 			 */
29132f5224aeSachartre 			if (ddi_in_panic()) {
2914366a92acSlm66018 				rv = EIO;
2915366a92acSlm66018 				goto done;
29162f5224aeSachartre 			}
29172f5224aeSachartre 
2918655fd6a9Sachartre 			cv_wait(&vdcp->running_cv, &vdcp->lock);
29193c96341aSnarayan 		}
29203c96341aSnarayan 
29213af08d82Slm66018 	} while (vdc_populate_descriptor(vdcp, operation, addr,
29223af08d82Slm66018 	    nbytes, slice, offset, cb_type, cb_arg, dir));
29233af08d82Slm66018 
2924366a92acSlm66018 done:
2925366a92acSlm66018 	/*
2926366a92acSlm66018 	 * If this is a block read/write we update the I/O statistics kstat
2927366a92acSlm66018 	 * to indicate that this request has been placed on the queue for
2928366a92acSlm66018 	 * processing (i.e sent to the vDisk server) - iostat(1M) will
2929366a92acSlm66018 	 * report the time waiting for the vDisk server under the %b column
2930366a92acSlm66018 	 * In the case of an error we simply take it off the wait queue.
2931366a92acSlm66018 	 */
2932366a92acSlm66018 	if ((operation == VD_OP_BREAD) || (operation == VD_OP_BWRITE)) {
2933366a92acSlm66018 		if (rv == 0) {
293490e2f9dcSlm66018 			VD_KSTAT_WAITQ_TO_RUNQ(vdcp);
2935366a92acSlm66018 			DTRACE_PROBE1(send, buf_t *, cb_arg);
2936366a92acSlm66018 		} else {
2937366a92acSlm66018 			VD_UPDATE_ERR_STATS(vdcp, vd_transerrs);
293890e2f9dcSlm66018 			VD_KSTAT_WAITQ_EXIT(vdcp);
2939366a92acSlm66018 			DTRACE_IO1(done, buf_t *, cb_arg);
2940366a92acSlm66018 		}
2941366a92acSlm66018 	}
2942366a92acSlm66018 
29433af08d82Slm66018 	mutex_exit(&vdcp->lock);
2944366a92acSlm66018 
2945366a92acSlm66018 	return (rv);
29463af08d82Slm66018 }
29473af08d82Slm66018 
29483af08d82Slm66018 
29493af08d82Slm66018 /*
29503af08d82Slm66018  * Function:
29511ae08745Sheppo  *	vdc_populate_descriptor
29521ae08745Sheppo  *
29531ae08745Sheppo  * Description:
29541ae08745Sheppo  *	This routine writes the data to be transmitted to vds into the
29551ae08745Sheppo  *	descriptor, notifies vds that the ring has been updated and
29561ae08745Sheppo  *	then waits for the request to be processed.
29571ae08745Sheppo  *
29581ae08745Sheppo  * Arguments:
29593af08d82Slm66018  *	vdcp	  - the soft state pointer
29601ae08745Sheppo  *	operation - operation we want vds to perform (VD_OP_XXX)
29613af08d82Slm66018  *	addr	  - address of data buf to be read/written.
29623af08d82Slm66018  *	nbytes	  - number of bytes to read/write
29633af08d82Slm66018  *	slice	  - the disk slice this request is for
29643af08d82Slm66018  *	offset	  - relative disk offset
29653af08d82Slm66018  *	cb_type   - type of call - STRATEGY or SYNC
29663af08d82Slm66018  *	cb_arg	  - parameter to be sent to server (depends on VD_OP_XXX type)
29671ae08745Sheppo  *			. mode for ioctl(9e)
29681ae08745Sheppo  *			. LP64 diskaddr_t (block I/O)
29693af08d82Slm66018  *	dir	  - direction of operation (READ/WRITE/BOTH)
29701ae08745Sheppo  *
29711ae08745Sheppo  * Return Codes:
29721ae08745Sheppo  *	0
29731ae08745Sheppo  *	EAGAIN
297417cadca8Slm66018  *	ECONNRESET
29751ae08745Sheppo  *	ENXIO
29761ae08745Sheppo  */
29771ae08745Sheppo static int
29783af08d82Slm66018 vdc_populate_descriptor(vdc_t *vdcp, int operation, caddr_t addr,
29793af08d82Slm66018     size_t nbytes, int slice, diskaddr_t offset, int cb_type,
29803af08d82Slm66018     void *cb_arg, vio_desc_direction_t dir)
29811ae08745Sheppo {
29823af08d82Slm66018 	vdc_local_desc_t	*local_dep = NULL; /* Local Dring Pointer */
29833af08d82Slm66018 	int			idx;		/* Index of DRing entry used */
29843af08d82Slm66018 	int			next_idx;
29851ae08745Sheppo 	vio_dring_msg_t		dmsg;
29863af08d82Slm66018 	size_t			msglen;
29878e6a2a04Slm66018 	int			rv;
29881ae08745Sheppo 
29893af08d82Slm66018 	ASSERT(MUTEX_HELD(&vdcp->lock));
29903af08d82Slm66018 	vdcp->threads_pending++;
29913af08d82Slm66018 loop:
29923af08d82Slm66018 	DMSG(vdcp, 2, ": dring_curr_idx = %d\n", vdcp->dring_curr_idx);
29931ae08745Sheppo 
29943af08d82Slm66018 	/* Get next available D-Ring entry */
29953af08d82Slm66018 	idx = vdcp->dring_curr_idx;
29963af08d82Slm66018 	local_dep = &(vdcp->local_dring[idx]);
29971ae08745Sheppo 
29983af08d82Slm66018 	if (!local_dep->is_free) {
29993af08d82Slm66018 		DMSG(vdcp, 2, "[%d]: dring full - waiting for space\n",
30003af08d82Slm66018 		    vdcp->instance);
30013af08d82Slm66018 		cv_wait(&vdcp->dring_free_cv, &vdcp->lock);
30023af08d82Slm66018 		if (vdcp->state == VDC_STATE_RUNNING ||
30033af08d82Slm66018 		    vdcp->state == VDC_STATE_HANDLE_PENDING) {
30043af08d82Slm66018 			goto loop;
30053af08d82Slm66018 		}
30063af08d82Slm66018 		vdcp->threads_pending--;
30073af08d82Slm66018 		return (ECONNRESET);
30081ae08745Sheppo 	}
30091ae08745Sheppo 
30103af08d82Slm66018 	next_idx = idx + 1;
30113af08d82Slm66018 	if (next_idx >= vdcp->dring_len)
30123af08d82Slm66018 		next_idx = 0;
30133af08d82Slm66018 	vdcp->dring_curr_idx = next_idx;
30141ae08745Sheppo 
30153af08d82Slm66018 	ASSERT(local_dep->is_free);
30161ae08745Sheppo 
30173af08d82Slm66018 	local_dep->operation = operation;
3018d10e4ef2Snarayan 	local_dep->addr = addr;
30193af08d82Slm66018 	local_dep->nbytes = nbytes;
30203af08d82Slm66018 	local_dep->slice = slice;
30213af08d82Slm66018 	local_dep->offset = offset;
30223af08d82Slm66018 	local_dep->cb_type = cb_type;
30233af08d82Slm66018 	local_dep->cb_arg = cb_arg;
30243af08d82Slm66018 	local_dep->dir = dir;
30253af08d82Slm66018 
30263af08d82Slm66018 	local_dep->is_free = B_FALSE;
30273af08d82Slm66018 
30283af08d82Slm66018 	rv = vdc_map_to_shared_dring(vdcp, idx);
30293af08d82Slm66018 	if (rv) {
30303af08d82Slm66018 		DMSG(vdcp, 0, "[%d]: cannot bind memory - waiting ..\n",
30313af08d82Slm66018 		    vdcp->instance);
30323af08d82Slm66018 		/* free the descriptor */
30333af08d82Slm66018 		local_dep->is_free = B_TRUE;
30343af08d82Slm66018 		vdcp->dring_curr_idx = idx;
30353af08d82Slm66018 		cv_wait(&vdcp->membind_cv, &vdcp->lock);
30363af08d82Slm66018 		if (vdcp->state == VDC_STATE_RUNNING ||
30373af08d82Slm66018 		    vdcp->state == VDC_STATE_HANDLE_PENDING) {
30383af08d82Slm66018 			goto loop;
30391ae08745Sheppo 		}
30403af08d82Slm66018 		vdcp->threads_pending--;
30413af08d82Slm66018 		return (ECONNRESET);
30421ae08745Sheppo 	}
30431ae08745Sheppo 
30441ae08745Sheppo 	/*
30451ae08745Sheppo 	 * Send a msg with the DRing details to vds
30461ae08745Sheppo 	 */
30471ae08745Sheppo 	VIO_INIT_DRING_DATA_TAG(dmsg);
30483af08d82Slm66018 	VDC_INIT_DRING_DATA_MSG_IDS(dmsg, vdcp);
30493af08d82Slm66018 	dmsg.dring_ident = vdcp->dring_ident;
30501ae08745Sheppo 	dmsg.start_idx = idx;
30511ae08745Sheppo 	dmsg.end_idx = idx;
30523af08d82Slm66018 	vdcp->seq_num++;
30531ae08745Sheppo 
3054366a92acSlm66018 	DTRACE_PROBE2(populate, int, vdcp->instance,
3055366a92acSlm66018 	    vdc_local_desc_t *, local_dep);
30563af08d82Slm66018 	DMSG(vdcp, 2, "ident=0x%lx, st=%u, end=%u, seq=%ld\n",
30573af08d82Slm66018 	    vdcp->dring_ident, dmsg.start_idx, dmsg.end_idx, dmsg.seq_num);
30581ae08745Sheppo 
30593af08d82Slm66018 	/*
30603af08d82Slm66018 	 * note we're still holding the lock here to
30613af08d82Slm66018 	 * make sure the message goes out in order !!!...
30623af08d82Slm66018 	 */
30633af08d82Slm66018 	msglen = sizeof (dmsg);
30643af08d82Slm66018 	rv = vdc_send(vdcp, (caddr_t)&dmsg, &msglen);
30653af08d82Slm66018 	switch (rv) {
30663af08d82Slm66018 	case ECONNRESET:
30673af08d82Slm66018 		/*
30683af08d82Slm66018 		 * vdc_send initiates the reset on failure.
30693af08d82Slm66018 		 * Since the transaction has already been put
30703af08d82Slm66018 		 * on the local dring, it will automatically get
30713af08d82Slm66018 		 * retried when the channel is reset. Given that,
30723af08d82Slm66018 		 * it is ok to just return success even though the
30733af08d82Slm66018 		 * send failed.
30743af08d82Slm66018 		 */
30753af08d82Slm66018 		rv = 0;
30763af08d82Slm66018 		break;
3077d10e4ef2Snarayan 
30783af08d82Slm66018 	case 0: /* EOK */
30793af08d82Slm66018 		DMSG(vdcp, 1, "sent via LDC: rv=%d\n", rv);
30803af08d82Slm66018 		break;
3081d10e4ef2Snarayan 
30823af08d82Slm66018 	default:
30833af08d82Slm66018 		goto cleanup_and_exit;
30843af08d82Slm66018 	}
3085e1ebb9ecSlm66018 
30863af08d82Slm66018 	vdcp->threads_pending--;
30873af08d82Slm66018 	return (rv);
30883af08d82Slm66018 
30893af08d82Slm66018 cleanup_and_exit:
30903af08d82Slm66018 	DMSG(vdcp, 0, "unexpected error, rv=%d\n", rv);
30913af08d82Slm66018 	return (ENXIO);
30921ae08745Sheppo }
30931ae08745Sheppo 
30941ae08745Sheppo /*
30953af08d82Slm66018  * Function:
30963af08d82Slm66018  *	vdc_do_sync_op
30973af08d82Slm66018  *
30983af08d82Slm66018  * Description:
30993af08d82Slm66018  * 	Wrapper around vdc_populate_descriptor that blocks until the
31003af08d82Slm66018  * 	response to the message is available.
31013af08d82Slm66018  *
31023af08d82Slm66018  * Arguments:
31033af08d82Slm66018  *	vdcp	  - the soft state pointer
31043af08d82Slm66018  *	operation - operation we want vds to perform (VD_OP_XXX)
31053af08d82Slm66018  *	addr	  - address of data buf to be read/written.
31063af08d82Slm66018  *	nbytes	  - number of bytes to read/write
31073af08d82Slm66018  *	slice	  - the disk slice this request is for
31083af08d82Slm66018  *	offset	  - relative disk offset
31093af08d82Slm66018  *	cb_type   - type of call - STRATEGY or SYNC
31103af08d82Slm66018  *	cb_arg	  - parameter to be sent to server (depends on VD_OP_XXX type)
31113af08d82Slm66018  *			. mode for ioctl(9e)
31123af08d82Slm66018  *			. LP64 diskaddr_t (block I/O)
31133af08d82Slm66018  *	dir	  - direction of operation (READ/WRITE/BOTH)
31142f5224aeSachartre  *	rconflict - check for reservation conflict in case of failure
31152f5224aeSachartre  *
31162f5224aeSachartre  * rconflict should be set to B_TRUE by most callers. Callers invoking the
31172f5224aeSachartre  * VD_OP_SCSICMD operation can set rconflict to B_FALSE if they check the
31182f5224aeSachartre  * result of a successful operation with vd_scsi_status().
31193af08d82Slm66018  *
31203af08d82Slm66018  * Return Codes:
31213af08d82Slm66018  *	0
31223af08d82Slm66018  *	EAGAIN
31233af08d82Slm66018  *	EFAULT
31243af08d82Slm66018  *	ENXIO
31253af08d82Slm66018  *	EIO
31260a55fbb7Slm66018  */
31273af08d82Slm66018 static int
31283af08d82Slm66018 vdc_do_sync_op(vdc_t *vdcp, int operation, caddr_t addr, size_t nbytes,
31293af08d82Slm66018     int slice, diskaddr_t offset, int cb_type, void *cb_arg,
31302f5224aeSachartre     vio_desc_direction_t dir, boolean_t rconflict)
31313af08d82Slm66018 {
31323af08d82Slm66018 	int status;
31332f5224aeSachartre 	vdc_io_t *vio;
31342f5224aeSachartre 	boolean_t check_resv_conflict = B_FALSE;
31353af08d82Slm66018 
31363af08d82Slm66018 	ASSERT(cb_type == CB_SYNC);
31371ae08745Sheppo 
31381ae08745Sheppo 	/*
31393af08d82Slm66018 	 * Grab the lock, if blocked wait until the server
31403af08d82Slm66018 	 * response causes us to wake up again.
31413af08d82Slm66018 	 */
31423af08d82Slm66018 	mutex_enter(&vdcp->lock);
31433af08d82Slm66018 	vdcp->sync_op_cnt++;
31443af08d82Slm66018 	while (vdcp->sync_op_blocked && vdcp->state != VDC_STATE_DETACH)
31453af08d82Slm66018 		cv_wait(&vdcp->sync_blocked_cv, &vdcp->lock);
31463af08d82Slm66018 
31473af08d82Slm66018 	if (vdcp->state == VDC_STATE_DETACH) {
31483af08d82Slm66018 		cv_broadcast(&vdcp->sync_blocked_cv);
31493af08d82Slm66018 		vdcp->sync_op_cnt--;
31503af08d82Slm66018 		mutex_exit(&vdcp->lock);
31513af08d82Slm66018 		return (ENXIO);
31523af08d82Slm66018 	}
31533af08d82Slm66018 
31543af08d82Slm66018 	/* now block anyone other thread entering after us */
31553af08d82Slm66018 	vdcp->sync_op_blocked = B_TRUE;
31563af08d82Slm66018 	vdcp->sync_op_pending = B_TRUE;
31573af08d82Slm66018 	mutex_exit(&vdcp->lock);
31583af08d82Slm66018 
3159655fd6a9Sachartre 	status = vdc_send_request(vdcp, operation, addr,
31603af08d82Slm66018 	    nbytes, slice, offset, cb_type, cb_arg, dir);
31613af08d82Slm66018 
3162655fd6a9Sachartre 	mutex_enter(&vdcp->lock);
3163655fd6a9Sachartre 
3164655fd6a9Sachartre 	if (status != 0) {
3165655fd6a9Sachartre 		vdcp->sync_op_pending = B_FALSE;
3166655fd6a9Sachartre 	} else {
31673af08d82Slm66018 		/*
31683af08d82Slm66018 		 * block until our transaction completes.
31693af08d82Slm66018 		 * Also anyone else waiting also gets to go next.
31703af08d82Slm66018 		 */
31713af08d82Slm66018 		while (vdcp->sync_op_pending && vdcp->state != VDC_STATE_DETACH)
31723af08d82Slm66018 			cv_wait(&vdcp->sync_pending_cv, &vdcp->lock);
31733af08d82Slm66018 
3174655fd6a9Sachartre 		DMSG(vdcp, 2, ": operation returned %d\n",
3175655fd6a9Sachartre 		    vdcp->sync_op_status);
31763c96341aSnarayan 		if (vdcp->state == VDC_STATE_DETACH) {
31773c96341aSnarayan 			vdcp->sync_op_pending = B_FALSE;
31783af08d82Slm66018 			status = ENXIO;
31793c96341aSnarayan 		} else {
31803af08d82Slm66018 			status = vdcp->sync_op_status;
31812f5224aeSachartre 			if (status != 0 && vdcp->failfast_interval != 0) {
31822f5224aeSachartre 				/*
31832f5224aeSachartre 				 * Operation has failed and failfast is enabled.
31842f5224aeSachartre 				 * We need to check if the failure is due to a
31852f5224aeSachartre 				 * reservation conflict if this was requested.
31862f5224aeSachartre 				 */
31872f5224aeSachartre 				check_resv_conflict = rconflict;
31882f5224aeSachartre 			}
31892f5224aeSachartre 
31903c96341aSnarayan 		}
3191655fd6a9Sachartre 	}
31923c96341aSnarayan 
31933af08d82Slm66018 	vdcp->sync_op_status = 0;
31943af08d82Slm66018 	vdcp->sync_op_blocked = B_FALSE;
31953af08d82Slm66018 	vdcp->sync_op_cnt--;
31963af08d82Slm66018 
31973af08d82Slm66018 	/* signal the next waiting thread */
31983af08d82Slm66018 	cv_signal(&vdcp->sync_blocked_cv);
31992f5224aeSachartre 
32002f5224aeSachartre 	/*
32012f5224aeSachartre 	 * We have to check for reservation conflict after unblocking sync
32022f5224aeSachartre 	 * operations because some sync operations will be used to do this
32032f5224aeSachartre 	 * check.
32042f5224aeSachartre 	 */
32052f5224aeSachartre 	if (check_resv_conflict) {
32062f5224aeSachartre 		vio = vdc_failfast_io_queue(vdcp, NULL);
32072f5224aeSachartre 		while (vio->vio_qtime != 0)
32082f5224aeSachartre 			cv_wait(&vdcp->failfast_io_cv, &vdcp->lock);
32092f5224aeSachartre 		kmem_free(vio, sizeof (vdc_io_t));
32102f5224aeSachartre 	}
32112f5224aeSachartre 
32123af08d82Slm66018 	mutex_exit(&vdcp->lock);
32133af08d82Slm66018 
32143af08d82Slm66018 	return (status);
32153af08d82Slm66018 }
32163af08d82Slm66018 
32173af08d82Slm66018 
32183af08d82Slm66018 /*
32193af08d82Slm66018  * Function:
32203af08d82Slm66018  *	vdc_drain_response()
32213af08d82Slm66018  *
32223af08d82Slm66018  * Description:
32231ae08745Sheppo  * 	When a guest is panicking, the completion of requests needs to be
32241ae08745Sheppo  * 	handled differently because interrupts are disabled and vdc
32251ae08745Sheppo  * 	will not get messages. We have to poll for the messages instead.
32263af08d82Slm66018  *
32273c2ebf09Sachartre  *	Note: since we are panicking we don't implement	the io:::done
32283c2ebf09Sachartre  *	DTrace probe or update the I/O statistics kstats.
3229366a92acSlm66018  *
32303af08d82Slm66018  * Arguments:
32313af08d82Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
32323c2ebf09Sachartre  *	buf	- if buf is NULL then we drain all responses, otherwise we
32333c2ebf09Sachartre  *		  poll until we receive a ACK/NACK for the specific I/O
32343c2ebf09Sachartre  *		  described by buf.
32353af08d82Slm66018  *
32363af08d82Slm66018  * Return Code:
32373af08d82Slm66018  *	0	- Success
32381ae08745Sheppo  */
32393af08d82Slm66018 static int
32403c2ebf09Sachartre vdc_drain_response(vdc_t *vdc, struct buf *buf)
32413af08d82Slm66018 {
32423af08d82Slm66018 	int 			rv, idx, retries;
32433af08d82Slm66018 	size_t			msglen;
32443af08d82Slm66018 	vdc_local_desc_t 	*ldep = NULL;	/* Local Dring Entry Pointer */
32453af08d82Slm66018 	vio_dring_msg_t		dmsg;
32463c2ebf09Sachartre 	struct buf		*mbuf;
32473af08d82Slm66018 
32483af08d82Slm66018 	mutex_enter(&vdc->lock);
32493af08d82Slm66018 
32501ae08745Sheppo 	retries = 0;
32511ae08745Sheppo 	for (;;) {
32521ae08745Sheppo 		msglen = sizeof (dmsg);
32538cd10891Snarayan 		rv = ldc_read(vdc->curr_server->ldc_handle, (caddr_t)&dmsg,
32548cd10891Snarayan 		    &msglen);
32558e6a2a04Slm66018 		if (rv) {
32568e6a2a04Slm66018 			rv = EINVAL;
32571ae08745Sheppo 			break;
32581ae08745Sheppo 		}
32591ae08745Sheppo 
32601ae08745Sheppo 		/*
32611ae08745Sheppo 		 * if there are no packets wait and check again
32621ae08745Sheppo 		 */
32638e6a2a04Slm66018 		if ((rv == 0) && (msglen == 0)) {
32641ae08745Sheppo 			if (retries++ > vdc_dump_retries) {
32658e6a2a04Slm66018 				rv = EAGAIN;
32661ae08745Sheppo 				break;
32671ae08745Sheppo 			}
32681ae08745Sheppo 
3269d10e4ef2Snarayan 			drv_usecwait(vdc_usec_timeout_dump);
32701ae08745Sheppo 			continue;
32711ae08745Sheppo 		}
32721ae08745Sheppo 
32731ae08745Sheppo 		/*
32741ae08745Sheppo 		 * Ignore all messages that are not ACKs/NACKs to
32751ae08745Sheppo 		 * DRing requests.
32761ae08745Sheppo 		 */
32771ae08745Sheppo 		if ((dmsg.tag.vio_msgtype != VIO_TYPE_DATA) ||
32781ae08745Sheppo 		    (dmsg.tag.vio_subtype_env != VIO_DRING_DATA)) {
32793af08d82Slm66018 			DMSG(vdc, 0, "discard pkt: type=%d sub=%d env=%d\n",
32801ae08745Sheppo 			    dmsg.tag.vio_msgtype,
32811ae08745Sheppo 			    dmsg.tag.vio_subtype,
32821ae08745Sheppo 			    dmsg.tag.vio_subtype_env);
32831ae08745Sheppo 			continue;
32841ae08745Sheppo 		}
32851ae08745Sheppo 
32861ae08745Sheppo 		/*
32873af08d82Slm66018 		 * set the appropriate return value for the current request.
32881ae08745Sheppo 		 */
32891ae08745Sheppo 		switch (dmsg.tag.vio_subtype) {
32901ae08745Sheppo 		case VIO_SUBTYPE_ACK:
32918e6a2a04Slm66018 			rv = 0;
32921ae08745Sheppo 			break;
32931ae08745Sheppo 		case VIO_SUBTYPE_NACK:
32948e6a2a04Slm66018 			rv = EAGAIN;
32951ae08745Sheppo 			break;
32961ae08745Sheppo 		default:
32971ae08745Sheppo 			continue;
32981ae08745Sheppo 		}
32991ae08745Sheppo 
33003af08d82Slm66018 		idx = dmsg.start_idx;
33013af08d82Slm66018 		if (idx >= vdc->dring_len) {
33023af08d82Slm66018 			DMSG(vdc, 0, "[%d] Bogus ack data : start %d\n",
3303e1ebb9ecSlm66018 			    vdc->instance, idx);
33043af08d82Slm66018 			continue;
33051ae08745Sheppo 		}
33063af08d82Slm66018 		ldep = &vdc->local_dring[idx];
33073af08d82Slm66018 		if (ldep->dep->hdr.dstate != VIO_DESC_DONE) {
33083af08d82Slm66018 			DMSG(vdc, 0, "[%d] Entry @ %d - state !DONE %d\n",
33093af08d82Slm66018 			    vdc->instance, idx, ldep->dep->hdr.dstate);
33101ae08745Sheppo 			continue;
33111ae08745Sheppo 		}
33121ae08745Sheppo 
33133c2ebf09Sachartre 		if (buf != NULL && ldep->cb_type == CB_STRATEGY) {
33143c2ebf09Sachartre 			mbuf = ldep->cb_arg;
33153c2ebf09Sachartre 			mbuf->b_resid = mbuf->b_bcount -
33163c2ebf09Sachartre 			    ldep->dep->payload.nbytes;
33173c2ebf09Sachartre 			bioerror(mbuf, (rv == EAGAIN)? EIO:
33183c2ebf09Sachartre 			    ldep->dep->payload.status);
33193c2ebf09Sachartre 			biodone(mbuf);
33203c2ebf09Sachartre 		} else {
33213c2ebf09Sachartre 			mbuf = NULL;
33223c2ebf09Sachartre 		}
33233c2ebf09Sachartre 
33243af08d82Slm66018 		DMSG(vdc, 1, "[%d] Depopulating idx=%d state=%d\n",
33253af08d82Slm66018 		    vdc->instance, idx, ldep->dep->hdr.dstate);
3326366a92acSlm66018 
33273af08d82Slm66018 		rv = vdc_depopulate_descriptor(vdc, idx);
33283af08d82Slm66018 		if (rv) {
33293af08d82Slm66018 			DMSG(vdc, 0,
33303af08d82Slm66018 			    "[%d] Entry @ %d - depopulate failed ..\n",
33313af08d82Slm66018 			    vdc->instance, idx);
33321ae08745Sheppo 		}
33331ae08745Sheppo 
33343c2ebf09Sachartre 		/* we have received an ACK/NACK for the specified buffer */
33353c2ebf09Sachartre 		if (buf != NULL && buf == mbuf) {
33363c2ebf09Sachartre 			rv = 0;
33373af08d82Slm66018 			break;
33383af08d82Slm66018 		}
33393af08d82Slm66018 
33403c2ebf09Sachartre 		/* if this is the last descriptor - break out of loop */
33413c2ebf09Sachartre 		if ((idx + 1) % vdc->dring_len == vdc->dring_curr_idx) {
33423c2ebf09Sachartre 			if (buf != NULL) {
33433c2ebf09Sachartre 				/*
33443c2ebf09Sachartre 				 * We never got a response for the specified
33453c2ebf09Sachartre 				 * buffer so we fail the I/O.
33463c2ebf09Sachartre 				 */
33473c2ebf09Sachartre 				bioerror(buf, EIO);
33483c2ebf09Sachartre 				biodone(buf);
33493c2ebf09Sachartre 			}
33503c2ebf09Sachartre 			break;
33513c2ebf09Sachartre 		}
33523c2ebf09Sachartre 	}
33533c2ebf09Sachartre 
33543af08d82Slm66018 	mutex_exit(&vdc->lock);
33553af08d82Slm66018 	DMSG(vdc, 0, "End idx=%d\n", idx);
33563af08d82Slm66018 
33573af08d82Slm66018 	return (rv);
33581ae08745Sheppo }
33591ae08745Sheppo 
33601ae08745Sheppo 
33610a55fbb7Slm66018 /*
33620a55fbb7Slm66018  * Function:
33630a55fbb7Slm66018  *	vdc_depopulate_descriptor()
33640a55fbb7Slm66018  *
33650a55fbb7Slm66018  * Description:
33660a55fbb7Slm66018  *
33670a55fbb7Slm66018  * Arguments:
33680a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
33690a55fbb7Slm66018  *	idx	- Index of the Descriptor Ring entry being modified
33700a55fbb7Slm66018  *
33710a55fbb7Slm66018  * Return Code:
33720a55fbb7Slm66018  *	0	- Success
33730a55fbb7Slm66018  */
33741ae08745Sheppo static int
33751ae08745Sheppo vdc_depopulate_descriptor(vdc_t *vdc, uint_t idx)
33761ae08745Sheppo {
33771ae08745Sheppo 	vd_dring_entry_t *dep = NULL;		/* Dring Entry Pointer */
33781ae08745Sheppo 	vdc_local_desc_t *ldep = NULL;		/* Local Dring Entry Pointer */
33791ae08745Sheppo 	int		status = ENXIO;
33808e6a2a04Slm66018 	int		rv = 0;
33811ae08745Sheppo 
33821ae08745Sheppo 	ASSERT(vdc != NULL);
3383e1ebb9ecSlm66018 	ASSERT(idx < vdc->dring_len);
33841ae08745Sheppo 	ldep = &vdc->local_dring[idx];
33851ae08745Sheppo 	ASSERT(ldep != NULL);
33863af08d82Slm66018 	ASSERT(MUTEX_HELD(&vdc->lock));
33873af08d82Slm66018 
3388366a92acSlm66018 	DTRACE_PROBE2(depopulate, int, vdc->instance, vdc_local_desc_t *, ldep);
33893af08d82Slm66018 	DMSG(vdc, 2, ": idx = %d\n", idx);
3390366a92acSlm66018 
33911ae08745Sheppo 	dep = ldep->dep;
33921ae08745Sheppo 	ASSERT(dep != NULL);
3393e1ebb9ecSlm66018 	ASSERT((dep->hdr.dstate == VIO_DESC_DONE) ||
3394e1ebb9ecSlm66018 	    (dep->payload.status == ECANCELED));
33951ae08745Sheppo 
3396e1ebb9ecSlm66018 	VDC_MARK_DRING_ENTRY_FREE(vdc, idx);
33973af08d82Slm66018 
33983af08d82Slm66018 	ldep->is_free = B_TRUE;
33991ae08745Sheppo 	status = dep->payload.status;
3400205eeb1aSlm66018 	DMSG(vdc, 2, ": is_free = %d : status = %d\n", ldep->is_free, status);
34011ae08745Sheppo 
3402eff7243fSlm66018 	/*
3403eff7243fSlm66018 	 * If no buffers were used to transfer information to the server when
3404eff7243fSlm66018 	 * populating the descriptor then no memory handles need to be unbound
3405eff7243fSlm66018 	 * and we can return now.
3406eff7243fSlm66018 	 */
3407eff7243fSlm66018 	if (ldep->nbytes == 0) {
3408eff7243fSlm66018 		cv_signal(&vdc->dring_free_cv);
34098e6a2a04Slm66018 		return (status);
3410eff7243fSlm66018 	}
34118e6a2a04Slm66018 
34121ae08745Sheppo 	/*
34131ae08745Sheppo 	 * If the upper layer passed in a misaligned address we copied the
34141ae08745Sheppo 	 * data into an aligned buffer before sending it to LDC - we now
34151ae08745Sheppo 	 * copy it back to the original buffer.
34161ae08745Sheppo 	 */
34171ae08745Sheppo 	if (ldep->align_addr) {
34181ae08745Sheppo 		ASSERT(ldep->addr != NULL);
34191ae08745Sheppo 
34203c96341aSnarayan 		if (dep->payload.nbytes > 0)
34213c96341aSnarayan 			bcopy(ldep->align_addr, ldep->addr,
34223c96341aSnarayan 			    dep->payload.nbytes);
34231ae08745Sheppo 		kmem_free(ldep->align_addr,
34243c96341aSnarayan 		    sizeof (caddr_t) * P2ROUNDUP(ldep->nbytes, 8));
34251ae08745Sheppo 		ldep->align_addr = NULL;
34261ae08745Sheppo 	}
34271ae08745Sheppo 
34288e6a2a04Slm66018 	rv = ldc_mem_unbind_handle(ldep->desc_mhdl);
34298e6a2a04Slm66018 	if (rv != 0) {
34303af08d82Slm66018 		DMSG(vdc, 0, "?[%d] unbind mhdl 0x%lx @ idx %d failed (%d)",
34318e6a2a04Slm66018 		    vdc->instance, ldep->desc_mhdl, idx, rv);
34328e6a2a04Slm66018 		/*
34338e6a2a04Slm66018 		 * The error returned by the vDisk server is more informative
34348e6a2a04Slm66018 		 * and thus has a higher priority but if it isn't set we ensure
34358e6a2a04Slm66018 		 * that this function returns an error.
34368e6a2a04Slm66018 		 */
34378e6a2a04Slm66018 		if (status == 0)
34388e6a2a04Slm66018 			status = EINVAL;
34391ae08745Sheppo 	}
34401ae08745Sheppo 
34413af08d82Slm66018 	cv_signal(&vdc->membind_cv);
34423af08d82Slm66018 	cv_signal(&vdc->dring_free_cv);
34433af08d82Slm66018 
34441ae08745Sheppo 	return (status);
34451ae08745Sheppo }
34461ae08745Sheppo 
34470a55fbb7Slm66018 /*
34480a55fbb7Slm66018  * Function:
34490a55fbb7Slm66018  *	vdc_populate_mem_hdl()
34500a55fbb7Slm66018  *
34510a55fbb7Slm66018  * Description:
34520a55fbb7Slm66018  *
34530a55fbb7Slm66018  * Arguments:
34540a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
34550a55fbb7Slm66018  *	idx	- Index of the Descriptor Ring entry being modified
34560a55fbb7Slm66018  *	addr	- virtual address being mapped in
34570a55fbb7Slm66018  *	nybtes	- number of bytes in 'addr'
34580a55fbb7Slm66018  *	operation - the vDisk operation being performed (VD_OP_xxx)
34590a55fbb7Slm66018  *
34600a55fbb7Slm66018  * Return Code:
34610a55fbb7Slm66018  *	0	- Success
34620a55fbb7Slm66018  */
34631ae08745Sheppo static int
34643af08d82Slm66018 vdc_populate_mem_hdl(vdc_t *vdcp, vdc_local_desc_t *ldep)
34651ae08745Sheppo {
34661ae08745Sheppo 	vd_dring_entry_t	*dep = NULL;
34671ae08745Sheppo 	ldc_mem_handle_t	mhdl;
34681ae08745Sheppo 	caddr_t			vaddr;
34693af08d82Slm66018 	size_t			nbytes;
34704bac2208Snarayan 	uint8_t			perm = LDC_MEM_RW;
34714bac2208Snarayan 	uint8_t			maptype;
34721ae08745Sheppo 	int			rv = 0;
34731ae08745Sheppo 	int			i;
34741ae08745Sheppo 
34753af08d82Slm66018 	ASSERT(vdcp != NULL);
34761ae08745Sheppo 
34773af08d82Slm66018 	dep = ldep->dep;
34781ae08745Sheppo 	mhdl = ldep->desc_mhdl;
34791ae08745Sheppo 
34803af08d82Slm66018 	switch (ldep->dir) {
34813af08d82Slm66018 	case VIO_read_dir:
34821ae08745Sheppo 		perm = LDC_MEM_W;
34831ae08745Sheppo 		break;
34841ae08745Sheppo 
34853af08d82Slm66018 	case VIO_write_dir:
34861ae08745Sheppo 		perm = LDC_MEM_R;
34871ae08745Sheppo 		break;
34881ae08745Sheppo 
34893af08d82Slm66018 	case VIO_both_dir:
34901ae08745Sheppo 		perm = LDC_MEM_RW;
34911ae08745Sheppo 		break;
34921ae08745Sheppo 
34931ae08745Sheppo 	default:
34941ae08745Sheppo 		ASSERT(0);	/* catch bad programming in vdc */
34951ae08745Sheppo 	}
34961ae08745Sheppo 
34971ae08745Sheppo 	/*
34981ae08745Sheppo 	 * LDC expects any addresses passed in to be 8-byte aligned. We need
34991ae08745Sheppo 	 * to copy the contents of any misaligned buffers to a newly allocated
35001ae08745Sheppo 	 * buffer and bind it instead (and copy the the contents back to the
35011ae08745Sheppo 	 * original buffer passed in when depopulating the descriptor)
35021ae08745Sheppo 	 */
35033af08d82Slm66018 	vaddr = ldep->addr;
35043af08d82Slm66018 	nbytes = ldep->nbytes;
35053af08d82Slm66018 	if (((uint64_t)vaddr & 0x7) != 0) {
3506d10e4ef2Snarayan 		ASSERT(ldep->align_addr == NULL);
35071ae08745Sheppo 		ldep->align_addr =
35083af08d82Slm66018 		    kmem_alloc(sizeof (caddr_t) *
35093af08d82Slm66018 		    P2ROUNDUP(nbytes, 8), KM_SLEEP);
35103af08d82Slm66018 		DMSG(vdcp, 0, "[%d] Misaligned address %p reallocating "
35113af08d82Slm66018 		    "(buf=%p nb=%ld op=%d)\n",
35123af08d82Slm66018 		    vdcp->instance, (void *)vaddr, (void *)ldep->align_addr,
35133af08d82Slm66018 		    nbytes, ldep->operation);
35143af08d82Slm66018 		if (perm != LDC_MEM_W)
35153af08d82Slm66018 			bcopy(vaddr, ldep->align_addr, nbytes);
35161ae08745Sheppo 		vaddr = ldep->align_addr;
35171ae08745Sheppo 	}
35181ae08745Sheppo 
35194bac2208Snarayan 	maptype = LDC_IO_MAP|LDC_SHADOW_MAP|LDC_DIRECT_MAP;
35201ae08745Sheppo 	rv = ldc_mem_bind_handle(mhdl, vaddr, P2ROUNDUP(nbytes, 8),
352187a7269eSachartre 	    maptype, perm, &dep->payload.cookie[0], &dep->payload.ncookies);
35223af08d82Slm66018 	DMSG(vdcp, 2, "[%d] bound mem handle; ncookies=%d\n",
35233af08d82Slm66018 	    vdcp->instance, dep->payload.ncookies);
35241ae08745Sheppo 	if (rv != 0) {
35253af08d82Slm66018 		DMSG(vdcp, 0, "[%d] Failed to bind LDC memory handle "
35263af08d82Slm66018 		    "(mhdl=%p, buf=%p, err=%d)\n",
35273af08d82Slm66018 		    vdcp->instance, (void *)mhdl, (void *)vaddr, rv);
35281ae08745Sheppo 		if (ldep->align_addr) {
35291ae08745Sheppo 			kmem_free(ldep->align_addr,
3530d10e4ef2Snarayan 			    sizeof (caddr_t) * P2ROUNDUP(nbytes, 8));
35311ae08745Sheppo 			ldep->align_addr = NULL;
35321ae08745Sheppo 		}
35331ae08745Sheppo 		return (EAGAIN);
35341ae08745Sheppo 	}
35351ae08745Sheppo 
35361ae08745Sheppo 	/*
35371ae08745Sheppo 	 * Get the other cookies (if any).
35381ae08745Sheppo 	 */
35391ae08745Sheppo 	for (i = 1; i < dep->payload.ncookies; i++) {
35401ae08745Sheppo 		rv = ldc_mem_nextcookie(mhdl, &dep->payload.cookie[i]);
35411ae08745Sheppo 		if (rv != 0) {
35421ae08745Sheppo 			(void) ldc_mem_unbind_handle(mhdl);
35433af08d82Slm66018 			DMSG(vdcp, 0, "?[%d] Failed to get next cookie "
3544e1ebb9ecSlm66018 			    "(mhdl=%lx cnum=%d), err=%d",
35453af08d82Slm66018 			    vdcp->instance, mhdl, i, rv);
35461ae08745Sheppo 			if (ldep->align_addr) {
35471ae08745Sheppo 				kmem_free(ldep->align_addr,
35483c96341aSnarayan 				    sizeof (caddr_t) * ldep->nbytes);
35491ae08745Sheppo 				ldep->align_addr = NULL;
35501ae08745Sheppo 			}
35511ae08745Sheppo 			return (EAGAIN);
35521ae08745Sheppo 		}
35531ae08745Sheppo 	}
35541ae08745Sheppo 
35551ae08745Sheppo 	return (rv);
35561ae08745Sheppo }
35571ae08745Sheppo 
35581ae08745Sheppo /*
35591ae08745Sheppo  * Interrupt handlers for messages from LDC
35601ae08745Sheppo  */
35611ae08745Sheppo 
35620a55fbb7Slm66018 /*
35630a55fbb7Slm66018  * Function:
35640a55fbb7Slm66018  *	vdc_handle_cb()
35650a55fbb7Slm66018  *
35660a55fbb7Slm66018  * Description:
35670a55fbb7Slm66018  *
35680a55fbb7Slm66018  * Arguments:
35690a55fbb7Slm66018  *	event	- Type of event (LDC_EVT_xxx) that triggered the callback
35700a55fbb7Slm66018  *	arg	- soft state pointer for this instance of the device driver.
35710a55fbb7Slm66018  *
35720a55fbb7Slm66018  * Return Code:
35730a55fbb7Slm66018  *	0	- Success
35740a55fbb7Slm66018  */
35751ae08745Sheppo static uint_t
35761ae08745Sheppo vdc_handle_cb(uint64_t event, caddr_t arg)
35771ae08745Sheppo {
35781ae08745Sheppo 	ldc_status_t	ldc_state;
35791ae08745Sheppo 	int		rv = 0;
35808cd10891Snarayan 	vdc_server_t	*srvr = (vdc_server_t *)(void *)arg;
35818cd10891Snarayan 	vdc_t		*vdc = srvr->vdcp;
35821ae08745Sheppo 
35831ae08745Sheppo 	ASSERT(vdc != NULL);
35841ae08745Sheppo 
35853af08d82Slm66018 	DMSG(vdc, 1, "evt=%lx seqID=%ld\n", event, vdc->seq_num);
35861ae08745Sheppo 
35878cd10891Snarayan 	/* If callback is not for the current server, ignore it */
35888cd10891Snarayan 	mutex_enter(&vdc->lock);
35898cd10891Snarayan 
35908cd10891Snarayan 	if (vdc->curr_server != srvr) {
35918cd10891Snarayan 		DMSG(vdc, 0, "[%d] Ignoring event 0x%lx for port@%ld\n",
35928cd10891Snarayan 		    vdc->instance, event, srvr->id);
35938cd10891Snarayan 		mutex_exit(&vdc->lock);
35948cd10891Snarayan 		return (LDC_SUCCESS);
35958cd10891Snarayan 	}
35968cd10891Snarayan 
35971ae08745Sheppo 	/*
35981ae08745Sheppo 	 * Depending on the type of event that triggered this callback,
35993af08d82Slm66018 	 * we modify the handshake state or read the data.
36001ae08745Sheppo 	 *
36011ae08745Sheppo 	 * NOTE: not done as a switch() as event could be triggered by
36021ae08745Sheppo 	 * a state change and a read request. Also the ordering	of the
36031ae08745Sheppo 	 * check for the event types is deliberate.
36041ae08745Sheppo 	 */
36051ae08745Sheppo 	if (event & LDC_EVT_UP) {
36063af08d82Slm66018 		DMSG(vdc, 0, "[%d] Received LDC_EVT_UP\n", vdc->instance);
36073af08d82Slm66018 
36081ae08745Sheppo 		/* get LDC state */
36098cd10891Snarayan 		rv = ldc_status(srvr->ldc_handle, &ldc_state);
36101ae08745Sheppo 		if (rv != 0) {
36113af08d82Slm66018 			DMSG(vdc, 0, "[%d] Couldn't get LDC status %d",
36121ae08745Sheppo 			    vdc->instance, rv);
36138cd10891Snarayan 			mutex_exit(&vdc->lock);
36141ae08745Sheppo 			return (LDC_SUCCESS);
36151ae08745Sheppo 		}
36168cd10891Snarayan 		if (srvr->ldc_state != LDC_UP &&
36178cd10891Snarayan 		    ldc_state == LDC_UP) {
36181ae08745Sheppo 			/*
36193af08d82Slm66018 			 * Reset the transaction sequence numbers when
36203af08d82Slm66018 			 * LDC comes up. We then kick off the handshake
36213af08d82Slm66018 			 * negotiation with the vDisk server.
36221ae08745Sheppo 			 */
36230a55fbb7Slm66018 			vdc->seq_num = 1;
36241ae08745Sheppo 			vdc->seq_num_reply = 0;
36258cd10891Snarayan 			srvr->ldc_state = ldc_state;
36263af08d82Slm66018 			cv_signal(&vdc->initwait_cv);
36273af08d82Slm66018 		}
36281ae08745Sheppo 	}
36291ae08745Sheppo 
36301ae08745Sheppo 	if (event & LDC_EVT_READ) {
363117cadca8Slm66018 		DMSG(vdc, 1, "[%d] Received LDC_EVT_READ\n", vdc->instance);
36323af08d82Slm66018 		mutex_enter(&vdc->read_lock);
36333af08d82Slm66018 		cv_signal(&vdc->read_cv);
36343af08d82Slm66018 		vdc->read_state = VDC_READ_PENDING;
36353af08d82Slm66018 		mutex_exit(&vdc->read_lock);
36368cd10891Snarayan 		mutex_exit(&vdc->lock);
36371ae08745Sheppo 
36381ae08745Sheppo 		/* that's all we have to do - no need to handle DOWN/RESET */
36391ae08745Sheppo 		return (LDC_SUCCESS);
36401ae08745Sheppo 	}
36411ae08745Sheppo 
36423af08d82Slm66018 	if (event & (LDC_EVT_RESET|LDC_EVT_DOWN)) {
36430a55fbb7Slm66018 
36443af08d82Slm66018 		DMSG(vdc, 0, "[%d] Received LDC RESET event\n", vdc->instance);
36453af08d82Slm66018 
36463af08d82Slm66018 		/*
36473af08d82Slm66018 		 * Need to wake up any readers so they will
36483af08d82Slm66018 		 * detect that a reset has occurred.
36493af08d82Slm66018 		 */
36503af08d82Slm66018 		mutex_enter(&vdc->read_lock);
36513af08d82Slm66018 		if ((vdc->read_state == VDC_READ_WAITING) ||
36523af08d82Slm66018 		    (vdc->read_state == VDC_READ_RESET))
36533af08d82Slm66018 			cv_signal(&vdc->read_cv);
36543af08d82Slm66018 		vdc->read_state = VDC_READ_RESET;
36553af08d82Slm66018 		mutex_exit(&vdc->read_lock);
36560a55fbb7Slm66018 
36573af08d82Slm66018 		/* wake up any threads waiting for connection to come up */
36583af08d82Slm66018 		if (vdc->state == VDC_STATE_INIT_WAITING) {
36593af08d82Slm66018 			vdc->state = VDC_STATE_RESETTING;
36603af08d82Slm66018 			cv_signal(&vdc->initwait_cv);
36611ae08745Sheppo 		}
36621ae08745Sheppo 
36631ae08745Sheppo 	}
36641ae08745Sheppo 
36658cd10891Snarayan 	mutex_exit(&vdc->lock);
36668cd10891Snarayan 
36671ae08745Sheppo 	if (event & ~(LDC_EVT_UP | LDC_EVT_RESET | LDC_EVT_DOWN | LDC_EVT_READ))
36683af08d82Slm66018 		DMSG(vdc, 0, "![%d] Unexpected LDC event (%lx) received",
36691ae08745Sheppo 		    vdc->instance, event);
36701ae08745Sheppo 
36711ae08745Sheppo 	return (LDC_SUCCESS);
36721ae08745Sheppo }
36731ae08745Sheppo 
36743af08d82Slm66018 /*
36753af08d82Slm66018  * Function:
36763af08d82Slm66018  *	vdc_wait_for_response()
36773af08d82Slm66018  *
36783af08d82Slm66018  * Description:
36793af08d82Slm66018  *	Block waiting for a response from the server. If there is
36803af08d82Slm66018  *	no data the thread block on the read_cv that is signalled
36813af08d82Slm66018  *	by the callback when an EVT_READ occurs.
36823af08d82Slm66018  *
36833af08d82Slm66018  * Arguments:
36843af08d82Slm66018  *	vdcp	- soft state pointer for this instance of the device driver.
36853af08d82Slm66018  *
36863af08d82Slm66018  * Return Code:
36873af08d82Slm66018  *	0	- Success
36883af08d82Slm66018  */
36893af08d82Slm66018 static int
36903af08d82Slm66018 vdc_wait_for_response(vdc_t *vdcp, vio_msg_t *msgp)
36913af08d82Slm66018 {
36923af08d82Slm66018 	size_t		nbytes = sizeof (*msgp);
36933af08d82Slm66018 	int		status;
36943af08d82Slm66018 
36953af08d82Slm66018 	ASSERT(vdcp != NULL);
36963af08d82Slm66018 
36973af08d82Slm66018 	DMSG(vdcp, 1, "[%d] Entered\n", vdcp->instance);
36983af08d82Slm66018 
36993af08d82Slm66018 	status = vdc_recv(vdcp, msgp, &nbytes);
37003af08d82Slm66018 	DMSG(vdcp, 3, "vdc_read() done.. status=0x%x size=0x%x\n",
37013af08d82Slm66018 	    status, (int)nbytes);
37023af08d82Slm66018 	if (status) {
37033af08d82Slm66018 		DMSG(vdcp, 0, "?[%d] Error %d reading LDC msg\n",
37043af08d82Slm66018 		    vdcp->instance, status);
37053af08d82Slm66018 		return (status);
37063af08d82Slm66018 	}
37073af08d82Slm66018 
37083af08d82Slm66018 	if (nbytes < sizeof (vio_msg_tag_t)) {
37093af08d82Slm66018 		DMSG(vdcp, 0, "?[%d] Expect %lu bytes; recv'd %lu\n",
37103af08d82Slm66018 		    vdcp->instance, sizeof (vio_msg_tag_t), nbytes);
37113af08d82Slm66018 		return (ENOMSG);
37123af08d82Slm66018 	}
37133af08d82Slm66018 
37143af08d82Slm66018 	DMSG(vdcp, 2, "[%d] (%x/%x/%x)\n", vdcp->instance,
37153af08d82Slm66018 	    msgp->tag.vio_msgtype,
37163af08d82Slm66018 	    msgp->tag.vio_subtype,
37173af08d82Slm66018 	    msgp->tag.vio_subtype_env);
37183af08d82Slm66018 
37193af08d82Slm66018 	/*
37203af08d82Slm66018 	 * Verify the Session ID of the message
37213af08d82Slm66018 	 *
37223af08d82Slm66018 	 * Every message after the Version has been negotiated should
37233af08d82Slm66018 	 * have the correct session ID set.
37243af08d82Slm66018 	 */
37253af08d82Slm66018 	if ((msgp->tag.vio_sid != vdcp->session_id) &&
37263af08d82Slm66018 	    (msgp->tag.vio_subtype_env != VIO_VER_INFO)) {
37273af08d82Slm66018 		DMSG(vdcp, 0, "[%d] Invalid SID: received 0x%x, "
37283af08d82Slm66018 		    "expected 0x%lx [seq num %lx @ %d]",
37293af08d82Slm66018 		    vdcp->instance, msgp->tag.vio_sid,
37303af08d82Slm66018 		    vdcp->session_id,
37313af08d82Slm66018 		    ((vio_dring_msg_t *)msgp)->seq_num,
37323af08d82Slm66018 		    ((vio_dring_msg_t *)msgp)->start_idx);
37333af08d82Slm66018 		return (ENOMSG);
37343af08d82Slm66018 	}
37353af08d82Slm66018 	return (0);
37363af08d82Slm66018 }
37373af08d82Slm66018 
37383af08d82Slm66018 
37393af08d82Slm66018 /*
37403af08d82Slm66018  * Function:
37413af08d82Slm66018  *	vdc_resubmit_backup_dring()
37423af08d82Slm66018  *
37433af08d82Slm66018  * Description:
37443af08d82Slm66018  *	Resubmit each descriptor in the backed up dring to
37453af08d82Slm66018  * 	vDisk server. The Dring was backed up during connection
37463af08d82Slm66018  *	reset.
37473af08d82Slm66018  *
37483af08d82Slm66018  * Arguments:
37493af08d82Slm66018  *	vdcp	- soft state pointer for this instance of the device driver.
37503af08d82Slm66018  *
37513af08d82Slm66018  * Return Code:
37523af08d82Slm66018  *	0	- Success
37533af08d82Slm66018  */
37543af08d82Slm66018 static int
37553af08d82Slm66018 vdc_resubmit_backup_dring(vdc_t *vdcp)
37563af08d82Slm66018 {
375790e2f9dcSlm66018 	int		processed = 0;
37583af08d82Slm66018 	int		count;
37593af08d82Slm66018 	int		b_idx;
376090e2f9dcSlm66018 	int		rv = 0;
37613af08d82Slm66018 	int		dring_size;
376290e2f9dcSlm66018 	int		op;
37633af08d82Slm66018 	vio_msg_t	vio_msg;
37643af08d82Slm66018 	vdc_local_desc_t	*curr_ldep;
37653af08d82Slm66018 
37663af08d82Slm66018 	ASSERT(MUTEX_NOT_HELD(&vdcp->lock));
37673af08d82Slm66018 	ASSERT(vdcp->state == VDC_STATE_HANDLE_PENDING);
37683af08d82Slm66018 
3769655fd6a9Sachartre 	if (vdcp->local_dring_backup == NULL) {
3770655fd6a9Sachartre 		/* the pending requests have already been processed */
3771655fd6a9Sachartre 		return (0);
3772655fd6a9Sachartre 	}
3773655fd6a9Sachartre 
37743af08d82Slm66018 	DMSG(vdcp, 1, "restoring pending dring entries (len=%d, tail=%d)\n",
37753af08d82Slm66018 	    vdcp->local_dring_backup_len, vdcp->local_dring_backup_tail);
37763af08d82Slm66018 
37773af08d82Slm66018 	/*
37783af08d82Slm66018 	 * Walk the backup copy of the local descriptor ring and
37793af08d82Slm66018 	 * resubmit all the outstanding transactions.
37803af08d82Slm66018 	 */
37813af08d82Slm66018 	b_idx = vdcp->local_dring_backup_tail;
37823af08d82Slm66018 	for (count = 0; count < vdcp->local_dring_backup_len; count++) {
37833af08d82Slm66018 
37843af08d82Slm66018 		curr_ldep = &(vdcp->local_dring_backup[b_idx]);
37853af08d82Slm66018 
3786eff7243fSlm66018 		/* only resubmit outstanding transactions */
37873af08d82Slm66018 		if (!curr_ldep->is_free) {
378890e2f9dcSlm66018 			/*
378990e2f9dcSlm66018 			 * If we are retrying a block read/write operation we
379090e2f9dcSlm66018 			 * need to update the I/O statistics to indicate that
379190e2f9dcSlm66018 			 * the request is being put back on the waitq to be
379290e2f9dcSlm66018 			 * serviced (it will have been taken off after the
379390e2f9dcSlm66018 			 * error was reported).
379490e2f9dcSlm66018 			 */
379590e2f9dcSlm66018 			mutex_enter(&vdcp->lock);
379690e2f9dcSlm66018 			op = curr_ldep->operation;
379790e2f9dcSlm66018 			if ((op == VD_OP_BREAD) || (op == VD_OP_BWRITE)) {
379890e2f9dcSlm66018 				DTRACE_IO1(start, buf_t *, curr_ldep->cb_arg);
379990e2f9dcSlm66018 				VD_KSTAT_WAITQ_ENTER(vdcp);
380090e2f9dcSlm66018 			}
38013af08d82Slm66018 
38023af08d82Slm66018 			DMSG(vdcp, 1, "resubmitting entry idx=%x\n", b_idx);
380390e2f9dcSlm66018 			rv = vdc_populate_descriptor(vdcp, op,
38043af08d82Slm66018 			    curr_ldep->addr, curr_ldep->nbytes,
38053af08d82Slm66018 			    curr_ldep->slice, curr_ldep->offset,
38063af08d82Slm66018 			    curr_ldep->cb_type, curr_ldep->cb_arg,
38073af08d82Slm66018 			    curr_ldep->dir);
380890e2f9dcSlm66018 
38093af08d82Slm66018 			if (rv) {
381090e2f9dcSlm66018 				if (op == VD_OP_BREAD || op == VD_OP_BWRITE) {
381190e2f9dcSlm66018 					VD_UPDATE_ERR_STATS(vdcp, vd_transerrs);
381290e2f9dcSlm66018 					VD_KSTAT_WAITQ_EXIT(vdcp);
381390e2f9dcSlm66018 					DTRACE_IO1(done, buf_t *,
381490e2f9dcSlm66018 					    curr_ldep->cb_arg);
381590e2f9dcSlm66018 				}
38163af08d82Slm66018 				DMSG(vdcp, 1, "[%d] cannot resubmit entry %d\n",
38173af08d82Slm66018 				    vdcp->instance, b_idx);
381890e2f9dcSlm66018 				mutex_exit(&vdcp->lock);
381990e2f9dcSlm66018 				goto done;
38203af08d82Slm66018 			}
38213af08d82Slm66018 
382290e2f9dcSlm66018 			/*
382390e2f9dcSlm66018 			 * If this is a block read/write we update the I/O
382490e2f9dcSlm66018 			 * statistics kstat to indicate that the request
382590e2f9dcSlm66018 			 * has been sent back to the vDisk server and should
382690e2f9dcSlm66018 			 * now be put on the run queue.
382790e2f9dcSlm66018 			 */
382890e2f9dcSlm66018 			if ((op == VD_OP_BREAD) || (op == VD_OP_BWRITE)) {
382990e2f9dcSlm66018 				DTRACE_PROBE1(send, buf_t *, curr_ldep->cb_arg);
383090e2f9dcSlm66018 				VD_KSTAT_WAITQ_TO_RUNQ(vdcp);
383190e2f9dcSlm66018 			}
383290e2f9dcSlm66018 			mutex_exit(&vdcp->lock);
383390e2f9dcSlm66018 
38343af08d82Slm66018 			/* Wait for the response message. */
38353af08d82Slm66018 			DMSG(vdcp, 1, "waiting for response to idx=%x\n",
38363af08d82Slm66018 			    b_idx);
383790e2f9dcSlm66018 			rv = vdc_wait_for_response(vdcp, &vio_msg);
383890e2f9dcSlm66018 			if (rv) {
383990e2f9dcSlm66018 				/*
384090e2f9dcSlm66018 				 * If this is a block read/write we update
384190e2f9dcSlm66018 				 * the I/O statistics kstat to take it
384290e2f9dcSlm66018 				 * off the run queue.
384390e2f9dcSlm66018 				 */
384490e2f9dcSlm66018 				mutex_enter(&vdcp->lock);
384590e2f9dcSlm66018 				if (op == VD_OP_BREAD || op == VD_OP_BWRITE) {
384690e2f9dcSlm66018 					VD_UPDATE_ERR_STATS(vdcp, vd_transerrs);
384790e2f9dcSlm66018 					VD_KSTAT_RUNQ_EXIT(vdcp);
384890e2f9dcSlm66018 					DTRACE_IO1(done, buf_t *,
384990e2f9dcSlm66018 					    curr_ldep->cb_arg);
385090e2f9dcSlm66018 				}
38513af08d82Slm66018 				DMSG(vdcp, 1, "[%d] wait_for_response "
38523af08d82Slm66018 				    "returned err=%d\n", vdcp->instance,
385390e2f9dcSlm66018 				    rv);
385490e2f9dcSlm66018 				mutex_exit(&vdcp->lock);
385590e2f9dcSlm66018 				goto done;
38563af08d82Slm66018 			}
38573af08d82Slm66018 
38583af08d82Slm66018 			DMSG(vdcp, 1, "processing msg for idx=%x\n", b_idx);
385990e2f9dcSlm66018 			rv = vdc_process_data_msg(vdcp, &vio_msg);
386090e2f9dcSlm66018 			if (rv) {
38613af08d82Slm66018 				DMSG(vdcp, 1, "[%d] process_data_msg "
38623af08d82Slm66018 				    "returned err=%d\n", vdcp->instance,
386390e2f9dcSlm66018 				    rv);
386490e2f9dcSlm66018 				goto done;
38653af08d82Slm66018 			}
3866630f014dSrameshc 			/*
3867630f014dSrameshc 			 * Mark this entry as free so that we will not resubmit
3868630f014dSrameshc 			 * this "done" request again, if we were to use the same
3869630f014dSrameshc 			 * backup_dring again in future. This could happen when
3870630f014dSrameshc 			 * a reset happens while processing the backup_dring.
3871630f014dSrameshc 			 */
3872630f014dSrameshc 			curr_ldep->is_free = B_TRUE;
387390e2f9dcSlm66018 			processed++;
38743af08d82Slm66018 		}
38753af08d82Slm66018 
38763af08d82Slm66018 		/* get the next element to submit */
38773af08d82Slm66018 		if (++b_idx >= vdcp->local_dring_backup_len)
38783af08d82Slm66018 			b_idx = 0;
38793af08d82Slm66018 	}
38803af08d82Slm66018 
38813af08d82Slm66018 	/* all done - now clear up pending dring copy */
38823af08d82Slm66018 	dring_size = vdcp->local_dring_backup_len *
38833af08d82Slm66018 	    sizeof (vdcp->local_dring_backup[0]);
38843af08d82Slm66018 
38853af08d82Slm66018 	(void) kmem_free(vdcp->local_dring_backup, dring_size);
38863af08d82Slm66018 
38873af08d82Slm66018 	vdcp->local_dring_backup = NULL;
38883af08d82Slm66018 
388990e2f9dcSlm66018 done:
389090e2f9dcSlm66018 	DTRACE_PROBE2(processed, int, processed, vdc_t *, vdcp);
389190e2f9dcSlm66018 
389290e2f9dcSlm66018 	return (rv);
38933af08d82Slm66018 }
38943af08d82Slm66018 
38953af08d82Slm66018 /*
38963af08d82Slm66018  * Function:
3897655fd6a9Sachartre  *	vdc_cancel_backup_dring
3898655fd6a9Sachartre  *
3899655fd6a9Sachartre  * Description:
3900655fd6a9Sachartre  *	Cancel each descriptor in the backed up dring to vDisk server.
3901655fd6a9Sachartre  *	The Dring was backed up during connection reset.
3902655fd6a9Sachartre  *
3903655fd6a9Sachartre  * Arguments:
3904655fd6a9Sachartre  *	vdcp	- soft state pointer for this instance of the device driver.
3905655fd6a9Sachartre  *
3906655fd6a9Sachartre  * Return Code:
3907655fd6a9Sachartre  *	None
3908655fd6a9Sachartre  */
3909655fd6a9Sachartre void
391090e2f9dcSlm66018 vdc_cancel_backup_dring(vdc_t *vdcp)
3911655fd6a9Sachartre {
3912655fd6a9Sachartre 	vdc_local_desc_t *ldep;
3913655fd6a9Sachartre 	struct buf 	*bufp;
3914655fd6a9Sachartre 	int		count;
3915655fd6a9Sachartre 	int		b_idx;
3916655fd6a9Sachartre 	int		dring_size;
391790e2f9dcSlm66018 	int		cancelled = 0;
3918655fd6a9Sachartre 
3919655fd6a9Sachartre 	ASSERT(MUTEX_HELD(&vdcp->lock));
3920655fd6a9Sachartre 	ASSERT(vdcp->state == VDC_STATE_INIT ||
3921655fd6a9Sachartre 	    vdcp->state == VDC_STATE_INIT_WAITING ||
3922655fd6a9Sachartre 	    vdcp->state == VDC_STATE_NEGOTIATE ||
3923655fd6a9Sachartre 	    vdcp->state == VDC_STATE_RESETTING);
3924655fd6a9Sachartre 
3925655fd6a9Sachartre 	if (vdcp->local_dring_backup == NULL) {
3926655fd6a9Sachartre 		/* the pending requests have already been processed */
3927655fd6a9Sachartre 		return;
3928655fd6a9Sachartre 	}
3929655fd6a9Sachartre 
3930655fd6a9Sachartre 	DMSG(vdcp, 1, "cancelling pending dring entries (len=%d, tail=%d)\n",
3931655fd6a9Sachartre 	    vdcp->local_dring_backup_len, vdcp->local_dring_backup_tail);
3932655fd6a9Sachartre 
3933655fd6a9Sachartre 	/*
3934655fd6a9Sachartre 	 * Walk the backup copy of the local descriptor ring and
3935655fd6a9Sachartre 	 * cancel all the outstanding transactions.
3936655fd6a9Sachartre 	 */
3937655fd6a9Sachartre 	b_idx = vdcp->local_dring_backup_tail;
3938655fd6a9Sachartre 	for (count = 0; count < vdcp->local_dring_backup_len; count++) {
3939655fd6a9Sachartre 
3940655fd6a9Sachartre 		ldep = &(vdcp->local_dring_backup[b_idx]);
3941655fd6a9Sachartre 
3942655fd6a9Sachartre 		/* only cancel outstanding transactions */
3943655fd6a9Sachartre 		if (!ldep->is_free) {
3944655fd6a9Sachartre 
3945655fd6a9Sachartre 			DMSG(vdcp, 1, "cancelling entry idx=%x\n", b_idx);
394690e2f9dcSlm66018 			cancelled++;
3947655fd6a9Sachartre 
3948655fd6a9Sachartre 			/*
3949655fd6a9Sachartre 			 * All requests have already been cleared from the
3950655fd6a9Sachartre 			 * local descriptor ring and the LDC channel has been
3951655fd6a9Sachartre 			 * reset so we will never get any reply for these
3952655fd6a9Sachartre 			 * requests. Now we just have to notify threads waiting
3953655fd6a9Sachartre 			 * for replies that the request has failed.
3954655fd6a9Sachartre 			 */
3955655fd6a9Sachartre 			switch (ldep->cb_type) {
3956655fd6a9Sachartre 			case CB_SYNC:
3957655fd6a9Sachartre 				ASSERT(vdcp->sync_op_pending);
3958655fd6a9Sachartre 				vdcp->sync_op_status = EIO;
3959655fd6a9Sachartre 				vdcp->sync_op_pending = B_FALSE;
3960655fd6a9Sachartre 				cv_signal(&vdcp->sync_pending_cv);
3961655fd6a9Sachartre 				break;
3962655fd6a9Sachartre 
3963655fd6a9Sachartre 			case CB_STRATEGY:
3964655fd6a9Sachartre 				bufp = ldep->cb_arg;
3965655fd6a9Sachartre 				ASSERT(bufp != NULL);
3966655fd6a9Sachartre 				bufp->b_resid = bufp->b_bcount;
3967366a92acSlm66018 				VD_UPDATE_ERR_STATS(vdcp, vd_softerrs);
396890e2f9dcSlm66018 				VD_KSTAT_RUNQ_EXIT(vdcp);
3969366a92acSlm66018 				DTRACE_IO1(done, buf_t *, bufp);
3970655fd6a9Sachartre 				bioerror(bufp, EIO);
3971655fd6a9Sachartre 				biodone(bufp);
3972655fd6a9Sachartre 				break;
3973655fd6a9Sachartre 
3974655fd6a9Sachartre 			default:
3975655fd6a9Sachartre 				ASSERT(0);
3976655fd6a9Sachartre 			}
3977655fd6a9Sachartre 
3978655fd6a9Sachartre 		}
3979655fd6a9Sachartre 
3980655fd6a9Sachartre 		/* get the next element to cancel */
3981655fd6a9Sachartre 		if (++b_idx >= vdcp->local_dring_backup_len)
3982655fd6a9Sachartre 			b_idx = 0;
3983655fd6a9Sachartre 	}
3984655fd6a9Sachartre 
3985655fd6a9Sachartre 	/* all done - now clear up pending dring copy */
3986655fd6a9Sachartre 	dring_size = vdcp->local_dring_backup_len *
3987655fd6a9Sachartre 	    sizeof (vdcp->local_dring_backup[0]);
3988655fd6a9Sachartre 
3989655fd6a9Sachartre 	(void) kmem_free(vdcp->local_dring_backup, dring_size);
3990655fd6a9Sachartre 
3991655fd6a9Sachartre 	vdcp->local_dring_backup = NULL;
3992655fd6a9Sachartre 
399390e2f9dcSlm66018 	DTRACE_PROBE2(cancelled, int, cancelled, vdc_t *, vdcp);
3994655fd6a9Sachartre }
3995655fd6a9Sachartre 
3996655fd6a9Sachartre /*
3997655fd6a9Sachartre  * Function:
3998655fd6a9Sachartre  *	vdc_connection_timeout
3999655fd6a9Sachartre  *
4000655fd6a9Sachartre  * Description:
4001655fd6a9Sachartre  *	This function is invoked if the timeout set to establish the connection
4002655fd6a9Sachartre  *	with vds expires. This will happen if we spend too much time in the
4003655fd6a9Sachartre  *	VDC_STATE_INIT_WAITING or VDC_STATE_NEGOTIATE states. Then we will
4004655fd6a9Sachartre  *	cancel any pending request and mark them as failed.
4005655fd6a9Sachartre  *
4006655fd6a9Sachartre  *	If the timeout does not expire, it will be cancelled when we reach the
4007655fd6a9Sachartre  *	VDC_STATE_HANDLE_PENDING or VDC_STATE_RESETTING state. This function can
4008655fd6a9Sachartre  *	be invoked while we are in the VDC_STATE_HANDLE_PENDING or
4009655fd6a9Sachartre  *	VDC_STATE_RESETTING state in which case we do nothing because the
4010655fd6a9Sachartre  *	timeout is being cancelled.
4011655fd6a9Sachartre  *
4012655fd6a9Sachartre  * Arguments:
4013655fd6a9Sachartre  *	arg	- argument of the timeout function actually a soft state
4014655fd6a9Sachartre  *		  pointer for the instance of the device driver.
4015655fd6a9Sachartre  *
4016655fd6a9Sachartre  * Return Code:
4017655fd6a9Sachartre  *	None
4018655fd6a9Sachartre  */
4019655fd6a9Sachartre void
4020655fd6a9Sachartre vdc_connection_timeout(void *arg)
4021655fd6a9Sachartre {
4022655fd6a9Sachartre 	vdc_t 		*vdcp = (vdc_t *)arg;
4023655fd6a9Sachartre 
4024655fd6a9Sachartre 	mutex_enter(&vdcp->lock);
4025655fd6a9Sachartre 
4026655fd6a9Sachartre 	if (vdcp->state == VDC_STATE_HANDLE_PENDING ||
4027655fd6a9Sachartre 	    vdcp->state == VDC_STATE_DETACH) {
4028655fd6a9Sachartre 		/*
4029655fd6a9Sachartre 		 * The connection has just been re-established or
4030655fd6a9Sachartre 		 * we are detaching.
4031655fd6a9Sachartre 		 */
4032655fd6a9Sachartre 		vdcp->ctimeout_reached = B_FALSE;
4033655fd6a9Sachartre 		mutex_exit(&vdcp->lock);
4034655fd6a9Sachartre 		return;
4035655fd6a9Sachartre 	}
4036655fd6a9Sachartre 
4037655fd6a9Sachartre 	vdcp->ctimeout_reached = B_TRUE;
4038655fd6a9Sachartre 
4039655fd6a9Sachartre 	/* notify requests waiting for sending */
4040655fd6a9Sachartre 	cv_broadcast(&vdcp->running_cv);
4041655fd6a9Sachartre 
4042655fd6a9Sachartre 	/* cancel requests waiting for a result */
404390e2f9dcSlm66018 	vdc_cancel_backup_dring(vdcp);
4044655fd6a9Sachartre 
4045655fd6a9Sachartre 	mutex_exit(&vdcp->lock);
4046655fd6a9Sachartre 
4047655fd6a9Sachartre 	cmn_err(CE_NOTE, "[%d] connection to service domain timeout",
4048655fd6a9Sachartre 	    vdcp->instance);
4049655fd6a9Sachartre }
4050655fd6a9Sachartre 
4051655fd6a9Sachartre /*
4052655fd6a9Sachartre  * Function:
40533af08d82Slm66018  *	vdc_backup_local_dring()
40543af08d82Slm66018  *
40553af08d82Slm66018  * Description:
40563af08d82Slm66018  *	Backup the current dring in the event of a reset. The Dring
40573af08d82Slm66018  *	transactions will be resubmitted to the server when the
40583af08d82Slm66018  *	connection is restored.
40593af08d82Slm66018  *
40603af08d82Slm66018  * Arguments:
40613af08d82Slm66018  *	vdcp	- soft state pointer for this instance of the device driver.
40623af08d82Slm66018  *
40633af08d82Slm66018  * Return Code:
40643af08d82Slm66018  *	NONE
40653af08d82Slm66018  */
40663af08d82Slm66018 static void
40673af08d82Slm66018 vdc_backup_local_dring(vdc_t *vdcp)
40683af08d82Slm66018 {
40693af08d82Slm66018 	int dring_size;
40703af08d82Slm66018 
4071655fd6a9Sachartre 	ASSERT(MUTEX_HELD(&vdcp->lock));
40723af08d82Slm66018 	ASSERT(vdcp->state == VDC_STATE_RESETTING);
40733af08d82Slm66018 
40743af08d82Slm66018 	/*
40753af08d82Slm66018 	 * If the backup dring is stil around, it means
40763af08d82Slm66018 	 * that the last restore did not complete. However,
40773af08d82Slm66018 	 * since we never got back into the running state,
40783af08d82Slm66018 	 * the backup copy we have is still valid.
40793af08d82Slm66018 	 */
40803af08d82Slm66018 	if (vdcp->local_dring_backup != NULL) {
40813af08d82Slm66018 		DMSG(vdcp, 1, "reusing local descriptor ring backup "
40823af08d82Slm66018 		    "(len=%d, tail=%d)\n", vdcp->local_dring_backup_len,
40833af08d82Slm66018 		    vdcp->local_dring_backup_tail);
40843af08d82Slm66018 		return;
40853af08d82Slm66018 	}
40863af08d82Slm66018 
4087655fd6a9Sachartre 	/*
4088655fd6a9Sachartre 	 * The backup dring can be NULL and the local dring may not be
4089655fd6a9Sachartre 	 * initialized. This can happen if we had a reset while establishing
4090655fd6a9Sachartre 	 * a new connection but after the connection has timed out. In that
4091655fd6a9Sachartre 	 * case the backup dring is NULL because the requests have been
4092655fd6a9Sachartre 	 * cancelled and the request occured before the local dring is
4093655fd6a9Sachartre 	 * initialized.
4094655fd6a9Sachartre 	 */
4095655fd6a9Sachartre 	if (!(vdcp->initialized & VDC_DRING_LOCAL))
4096655fd6a9Sachartre 		return;
4097655fd6a9Sachartre 
40983af08d82Slm66018 	DMSG(vdcp, 1, "backing up the local descriptor ring (len=%d, "
40993af08d82Slm66018 	    "tail=%d)\n", vdcp->dring_len, vdcp->dring_curr_idx);
41003af08d82Slm66018 
41013af08d82Slm66018 	dring_size = vdcp->dring_len * sizeof (vdcp->local_dring[0]);
41023af08d82Slm66018 
41033af08d82Slm66018 	vdcp->local_dring_backup = kmem_alloc(dring_size, KM_SLEEP);
41043af08d82Slm66018 	bcopy(vdcp->local_dring, vdcp->local_dring_backup, dring_size);
41053af08d82Slm66018 
41063af08d82Slm66018 	vdcp->local_dring_backup_tail = vdcp->dring_curr_idx;
41073af08d82Slm66018 	vdcp->local_dring_backup_len = vdcp->dring_len;
41083af08d82Slm66018 }
41093af08d82Slm66018 
41108cd10891Snarayan static void
41118cd10891Snarayan vdc_switch_server(vdc_t *vdcp)
41128cd10891Snarayan {
41138cd10891Snarayan 	int		rv;
41148cd10891Snarayan 	vdc_server_t 	*curr_server, *new_server;
41158cd10891Snarayan 
41168cd10891Snarayan 	ASSERT(MUTEX_HELD(&vdcp->lock));
41178cd10891Snarayan 
41188cd10891Snarayan 	/* if there is only one server return back */
41198cd10891Snarayan 	if (vdcp->num_servers == 1) {
41208cd10891Snarayan 		return;
41218cd10891Snarayan 	}
41228cd10891Snarayan 
41238cd10891Snarayan 	/* Get current and next server */
41248cd10891Snarayan 	curr_server = vdcp->curr_server;
41258cd10891Snarayan 	new_server =
41268cd10891Snarayan 	    (curr_server->next) ? curr_server->next : vdcp->server_list;
41278cd10891Snarayan 	ASSERT(curr_server != new_server);
41288cd10891Snarayan 
41298cd10891Snarayan 	/* bring current server's channel down */
41308cd10891Snarayan 	rv = ldc_down(curr_server->ldc_handle);
41318cd10891Snarayan 	if (rv) {
41328cd10891Snarayan 		DMSG(vdcp, 0, "[%d] Cannot bring channel down, port %ld\n",
41338cd10891Snarayan 		    vdcp->instance, curr_server->id);
41348cd10891Snarayan 		return;
41358cd10891Snarayan 	}
41368cd10891Snarayan 
41378cd10891Snarayan 	/* switch the server */
41388cd10891Snarayan 	vdcp->curr_server = new_server;
41398cd10891Snarayan 
41408cd10891Snarayan 	DMSG(vdcp, 0, "[%d] Switched to next vdisk server, port@%ld, ldc@%ld\n",
41418cd10891Snarayan 	    vdcp->instance, vdcp->curr_server->id, vdcp->curr_server->ldc_id);
41428cd10891Snarayan }
41438cd10891Snarayan 
41441ae08745Sheppo /* -------------------------------------------------------------------------- */
41451ae08745Sheppo 
41461ae08745Sheppo /*
41471ae08745Sheppo  * The following functions process the incoming messages from vds
41481ae08745Sheppo  */
41491ae08745Sheppo 
41500a55fbb7Slm66018 /*
41510a55fbb7Slm66018  * Function:
41520a55fbb7Slm66018  *      vdc_process_msg_thread()
41530a55fbb7Slm66018  *
41540a55fbb7Slm66018  * Description:
41550a55fbb7Slm66018  *
41563af08d82Slm66018  *	Main VDC message processing thread. Each vDisk instance
41573af08d82Slm66018  * 	consists of a copy of this thread. This thread triggers
41583af08d82Slm66018  * 	all the handshakes and data exchange with the server. It
41593af08d82Slm66018  * 	also handles all channel resets
41603af08d82Slm66018  *
41610a55fbb7Slm66018  * Arguments:
41620a55fbb7Slm66018  *      vdc     - soft state pointer for this instance of the device driver.
41630a55fbb7Slm66018  *
41640a55fbb7Slm66018  * Return Code:
41650a55fbb7Slm66018  *      None
41660a55fbb7Slm66018  */
41671ae08745Sheppo static void
41683af08d82Slm66018 vdc_process_msg_thread(vdc_t *vdcp)
41691ae08745Sheppo {
41701ae08745Sheppo 	int		status;
4171655fd6a9Sachartre 	int		ctimeout;
4172655fd6a9Sachartre 	timeout_id_t	tmid = 0;
41738cd10891Snarayan 	clock_t		ldcup_timeout = 0;
41741ae08745Sheppo 
41753af08d82Slm66018 	mutex_enter(&vdcp->lock);
41761ae08745Sheppo 
41771ae08745Sheppo 	for (;;) {
41781ae08745Sheppo 
41793af08d82Slm66018 #define	Q(_s)	(vdcp->state == _s) ? #_s :
41803af08d82Slm66018 		DMSG(vdcp, 3, "state = %d (%s)\n", vdcp->state,
41813af08d82Slm66018 		    Q(VDC_STATE_INIT)
41823af08d82Slm66018 		    Q(VDC_STATE_INIT_WAITING)
41833af08d82Slm66018 		    Q(VDC_STATE_NEGOTIATE)
41843af08d82Slm66018 		    Q(VDC_STATE_HANDLE_PENDING)
41853af08d82Slm66018 		    Q(VDC_STATE_RUNNING)
41863af08d82Slm66018 		    Q(VDC_STATE_RESETTING)
41873af08d82Slm66018 		    Q(VDC_STATE_DETACH)
41883af08d82Slm66018 		    "UNKNOWN");
41891ae08745Sheppo 
41903af08d82Slm66018 		switch (vdcp->state) {
41913af08d82Slm66018 		case VDC_STATE_INIT:
41923af08d82Slm66018 
4193655fd6a9Sachartre 			/*
4194655fd6a9Sachartre 			 * If requested, start a timeout to check if the
4195655fd6a9Sachartre 			 * connection with vds is established in the
4196655fd6a9Sachartre 			 * specified delay. If the timeout expires, we
4197655fd6a9Sachartre 			 * will cancel any pending request.
4198655fd6a9Sachartre 			 *
4199655fd6a9Sachartre 			 * If some reset have occurred while establishing
4200655fd6a9Sachartre 			 * the connection, we already have a timeout armed
4201655fd6a9Sachartre 			 * and in that case we don't need to arm a new one.
42028cd10891Snarayan 			 *
42038cd10891Snarayan 			 * The same rule applies when there are multiple vds'.
42048cd10891Snarayan 			 * If either a connection cannot be established or
42058cd10891Snarayan 			 * the handshake times out, the connection thread will
42068cd10891Snarayan 			 * try another server. The 'ctimeout' will report
42078cd10891Snarayan 			 * back an error after it expires irrespective of
42088cd10891Snarayan 			 * whether the vdisk is trying to connect to just
42098cd10891Snarayan 			 * one or multiple servers.
4210655fd6a9Sachartre 			 */
4211655fd6a9Sachartre 			ctimeout = (vdc_timeout != 0)?
42128cd10891Snarayan 			    vdc_timeout : vdcp->curr_server->ctimeout;
4213655fd6a9Sachartre 
4214655fd6a9Sachartre 			if (ctimeout != 0 && tmid == 0) {
4215655fd6a9Sachartre 				tmid = timeout(vdc_connection_timeout, vdcp,
42168cd10891Snarayan 				    ctimeout * drv_usectohz(MICROSEC));
4217655fd6a9Sachartre 			}
4218655fd6a9Sachartre 
42198cd10891Snarayan 			/* Check if we are re-initializing repeatedly */
42208cd10891Snarayan 			if (vdcp->hshake_cnt > vdc_hshake_retries &&
4221655fd6a9Sachartre 			    vdcp->lifecycle != VDC_LC_ONLINE) {
42228cd10891Snarayan 
42238cd10891Snarayan 				DMSG(vdcp, 0, "[%d] too many handshakes,cnt=%d",
42248cd10891Snarayan 				    vdcp->instance, vdcp->hshake_cnt);
42253c96341aSnarayan 				cmn_err(CE_NOTE, "[%d] disk access failed.\n",
42263c96341aSnarayan 				    vdcp->instance);
42273af08d82Slm66018 				vdcp->state = VDC_STATE_DETACH;
42283af08d82Slm66018 				break;
42293af08d82Slm66018 			}
42303af08d82Slm66018 
42318cd10891Snarayan 			/* Switch to STATE_DETACH if drv is detaching */
42328cd10891Snarayan 			if (vdcp->lifecycle == VDC_LC_DETACHING) {
42338cd10891Snarayan 				vdcp->state = VDC_STATE_DETACH;
42348cd10891Snarayan 				break;
42358cd10891Snarayan 			}
42368cd10891Snarayan 
42378cd10891Snarayan 			/* Switch server */
42388cd10891Snarayan 			if (vdcp->hshake_cnt > 0)
42398cd10891Snarayan 				vdc_switch_server(vdcp);
42408cd10891Snarayan 			vdcp->hshake_cnt++;
42418cd10891Snarayan 
42423af08d82Slm66018 			/* Bring up connection with vds via LDC */
42433af08d82Slm66018 			status = vdc_start_ldc_connection(vdcp);
42448cd10891Snarayan 			if (status != EINVAL) {
42453af08d82Slm66018 				vdcp->state = VDC_STATE_INIT_WAITING;
42463af08d82Slm66018 			}
42473af08d82Slm66018 			break;
42483af08d82Slm66018 
42493af08d82Slm66018 		case VDC_STATE_INIT_WAITING:
42503af08d82Slm66018 
42518cd10891Snarayan 			/* if channel is UP, start negotiation */
42528cd10891Snarayan 			if (vdcp->curr_server->ldc_state == LDC_UP) {
42538cd10891Snarayan 				vdcp->state = VDC_STATE_NEGOTIATE;
42548cd10891Snarayan 				break;
42558cd10891Snarayan 			}
42568cd10891Snarayan 
42578cd10891Snarayan 			/* check if only one server exists */
42588cd10891Snarayan 			if (vdcp->num_servers == 1) {
42593af08d82Slm66018 				cv_wait(&vdcp->initwait_cv, &vdcp->lock);
42608cd10891Snarayan 			} else {
42618cd10891Snarayan 				/*
42628cd10891Snarayan 				 * wait for LDC_UP, if it times out, switch
42638cd10891Snarayan 				 * to another server.
42648cd10891Snarayan 				 */
42658cd10891Snarayan 				ldcup_timeout = ddi_get_lbolt() +
42668cd10891Snarayan 				    (vdc_ldcup_timeout *
42678cd10891Snarayan 				    drv_usectohz(MICROSEC));
42688cd10891Snarayan 				status = cv_timedwait(&vdcp->initwait_cv,
42698cd10891Snarayan 				    &vdcp->lock, ldcup_timeout);
42708cd10891Snarayan 				if (status == -1 &&
42718cd10891Snarayan 				    vdcp->state == VDC_STATE_INIT_WAITING &&
42728cd10891Snarayan 				    vdcp->curr_server->ldc_state != LDC_UP) {
42738cd10891Snarayan 					/* timed out & still waiting */
42748cd10891Snarayan 					vdcp->state = VDC_STATE_INIT;
42758cd10891Snarayan 					break;
42768cd10891Snarayan 				}
42778cd10891Snarayan 			}
42788cd10891Snarayan 
42793af08d82Slm66018 			if (vdcp->state != VDC_STATE_INIT_WAITING) {
42803af08d82Slm66018 				DMSG(vdcp, 0,
42813af08d82Slm66018 				    "state moved to %d out from under us...\n",
42823af08d82Slm66018 				    vdcp->state);
42833af08d82Slm66018 			}
42843af08d82Slm66018 			break;
42853af08d82Slm66018 
42863af08d82Slm66018 		case VDC_STATE_NEGOTIATE:
42873af08d82Slm66018 			switch (status = vdc_ver_negotiation(vdcp)) {
42883af08d82Slm66018 			case 0:
42893af08d82Slm66018 				break;
42903af08d82Slm66018 			default:
42913af08d82Slm66018 				DMSG(vdcp, 0, "ver negotiate failed (%d)..\n",
42923af08d82Slm66018 				    status);
42933af08d82Slm66018 				goto reset;
42943af08d82Slm66018 			}
42953af08d82Slm66018 
42963af08d82Slm66018 			switch (status = vdc_attr_negotiation(vdcp)) {
42973af08d82Slm66018 			case 0:
42983af08d82Slm66018 				break;
42993af08d82Slm66018 			default:
43003af08d82Slm66018 				DMSG(vdcp, 0, "attr negotiate failed (%d)..\n",
43013af08d82Slm66018 				    status);
43023af08d82Slm66018 				goto reset;
43033af08d82Slm66018 			}
43043af08d82Slm66018 
43053af08d82Slm66018 			switch (status = vdc_dring_negotiation(vdcp)) {
43063af08d82Slm66018 			case 0:
43073af08d82Slm66018 				break;
43083af08d82Slm66018 			default:
43093af08d82Slm66018 				DMSG(vdcp, 0, "dring negotiate failed (%d)..\n",
43103af08d82Slm66018 				    status);
43113af08d82Slm66018 				goto reset;
43123af08d82Slm66018 			}
43133af08d82Slm66018 
43143af08d82Slm66018 			switch (status = vdc_rdx_exchange(vdcp)) {
43153af08d82Slm66018 			case 0:
43163af08d82Slm66018 				vdcp->state = VDC_STATE_HANDLE_PENDING;
43173af08d82Slm66018 				goto done;
43183af08d82Slm66018 			default:
43193af08d82Slm66018 				DMSG(vdcp, 0, "RDX xchg failed ..(%d)\n",
43203af08d82Slm66018 				    status);
43213af08d82Slm66018 				goto reset;
43223af08d82Slm66018 			}
43233af08d82Slm66018 reset:
43243af08d82Slm66018 			DMSG(vdcp, 0, "negotiation failed: resetting (%d)\n",
43253af08d82Slm66018 			    status);
43263af08d82Slm66018 			vdcp->state = VDC_STATE_RESETTING;
4327655fd6a9Sachartre 			vdcp->self_reset = B_TRUE;
43283af08d82Slm66018 done:
43293af08d82Slm66018 			DMSG(vdcp, 0, "negotiation complete (state=0x%x)...\n",
43303af08d82Slm66018 			    vdcp->state);
43313af08d82Slm66018 			break;
43323af08d82Slm66018 
43333af08d82Slm66018 		case VDC_STATE_HANDLE_PENDING:
43343af08d82Slm66018 
4335655fd6a9Sachartre 			if (vdcp->ctimeout_reached) {
4336655fd6a9Sachartre 				/*
4337655fd6a9Sachartre 				 * The connection timeout had been reached so
4338655fd6a9Sachartre 				 * pending requests have been cancelled. Now
4339655fd6a9Sachartre 				 * that the connection is back we can reset
4340655fd6a9Sachartre 				 * the timeout.
4341655fd6a9Sachartre 				 */
4342655fd6a9Sachartre 				ASSERT(vdcp->local_dring_backup == NULL);
4343655fd6a9Sachartre 				ASSERT(tmid != 0);
4344655fd6a9Sachartre 				tmid = 0;
4345655fd6a9Sachartre 				vdcp->ctimeout_reached = B_FALSE;
4346655fd6a9Sachartre 				vdcp->state = VDC_STATE_RUNNING;
4347655fd6a9Sachartre 				DMSG(vdcp, 0, "[%d] connection to service "
4348655fd6a9Sachartre 				    "domain is up", vdcp->instance);
4349655fd6a9Sachartre 				break;
4350655fd6a9Sachartre 			}
4351655fd6a9Sachartre 
43523af08d82Slm66018 			mutex_exit(&vdcp->lock);
4353655fd6a9Sachartre 			if (tmid != 0) {
4354655fd6a9Sachartre 				(void) untimeout(tmid);
4355655fd6a9Sachartre 				tmid = 0;
4356655fd6a9Sachartre 			}
43573af08d82Slm66018 			status = vdc_resubmit_backup_dring(vdcp);
43583af08d82Slm66018 			mutex_enter(&vdcp->lock);
43593af08d82Slm66018 
43603af08d82Slm66018 			if (status)
43613af08d82Slm66018 				vdcp->state = VDC_STATE_RESETTING;
43623af08d82Slm66018 			else
43633af08d82Slm66018 				vdcp->state = VDC_STATE_RUNNING;
43643af08d82Slm66018 
43653af08d82Slm66018 			break;
43663af08d82Slm66018 
43673af08d82Slm66018 		/* enter running state */
43683af08d82Slm66018 		case VDC_STATE_RUNNING:
43693af08d82Slm66018 			/*
43703af08d82Slm66018 			 * Signal anyone waiting for the connection
43713af08d82Slm66018 			 * to come on line.
43723af08d82Slm66018 			 */
43733af08d82Slm66018 			vdcp->hshake_cnt = 0;
43743af08d82Slm66018 			cv_broadcast(&vdcp->running_cv);
43752f5224aeSachartre 
43762f5224aeSachartre 			/* failfast has to been checked after reset */
43772f5224aeSachartre 			cv_signal(&vdcp->failfast_cv);
43782f5224aeSachartre 
43792f5224aeSachartre 			/* ownership is lost during reset */
43802f5224aeSachartre 			if (vdcp->ownership & VDC_OWNERSHIP_WANTED)
43812f5224aeSachartre 				vdcp->ownership |= VDC_OWNERSHIP_RESET;
43822f5224aeSachartre 			cv_signal(&vdcp->ownership_cv);
43832f5224aeSachartre 
4384d7400d00Sachartre 			cmn_err(CE_CONT, "?vdisk@%d is online using "
4385d7400d00Sachartre 			    "ldc@%ld,%ld\n", vdcp->instance,
4386d7400d00Sachartre 			    vdcp->curr_server->ldc_id, vdcp->curr_server->id);
4387d7400d00Sachartre 
43883af08d82Slm66018 			mutex_exit(&vdcp->lock);
43893af08d82Slm66018 
43903af08d82Slm66018 			for (;;) {
43913af08d82Slm66018 				vio_msg_t msg;
43923af08d82Slm66018 				status = vdc_wait_for_response(vdcp, &msg);
43933af08d82Slm66018 				if (status) break;
43943af08d82Slm66018 
43953af08d82Slm66018 				DMSG(vdcp, 1, "[%d] new pkt(s) available\n",
43963af08d82Slm66018 				    vdcp->instance);
43973af08d82Slm66018 				status = vdc_process_data_msg(vdcp, &msg);
43981ae08745Sheppo 				if (status) {
43993af08d82Slm66018 					DMSG(vdcp, 1, "[%d] process_data_msg "
44003af08d82Slm66018 					    "returned err=%d\n", vdcp->instance,
44013af08d82Slm66018 					    status);
44021ae08745Sheppo 					break;
44031ae08745Sheppo 				}
44041ae08745Sheppo 
44053af08d82Slm66018 			}
4406e1ebb9ecSlm66018 
44073af08d82Slm66018 			mutex_enter(&vdcp->lock);
44083af08d82Slm66018 
4409d7400d00Sachartre 			cmn_err(CE_CONT, "?vdisk@%d is offline\n",
4410d7400d00Sachartre 			    vdcp->instance);
4411d7400d00Sachartre 
44123af08d82Slm66018 			vdcp->state = VDC_STATE_RESETTING;
4413690555a1Sachartre 			vdcp->self_reset = B_TRUE;
44143af08d82Slm66018 			break;
44153af08d82Slm66018 
44163af08d82Slm66018 		case VDC_STATE_RESETTING:
4417655fd6a9Sachartre 			/*
4418655fd6a9Sachartre 			 * When we reach this state, we either come from the
4419655fd6a9Sachartre 			 * VDC_STATE_RUNNING state and we can have pending
4420655fd6a9Sachartre 			 * request but no timeout is armed; or we come from
4421655fd6a9Sachartre 			 * the VDC_STATE_INIT_WAITING, VDC_NEGOTIATE or
4422655fd6a9Sachartre 			 * VDC_HANDLE_PENDING state and there is no pending
4423655fd6a9Sachartre 			 * request or pending requests have already been copied
4424655fd6a9Sachartre 			 * into the backup dring. So we can safely keep the
4425655fd6a9Sachartre 			 * connection timeout armed while we are in this state.
4426655fd6a9Sachartre 			 */
4427655fd6a9Sachartre 
44283af08d82Slm66018 			DMSG(vdcp, 0, "Initiating channel reset "
44293af08d82Slm66018 			    "(pending = %d)\n", (int)vdcp->threads_pending);
44303af08d82Slm66018 
44313af08d82Slm66018 			if (vdcp->self_reset) {
44323af08d82Slm66018 				DMSG(vdcp, 0,
44333af08d82Slm66018 				    "[%d] calling stop_ldc_connection.\n",
44343af08d82Slm66018 				    vdcp->instance);
44353af08d82Slm66018 				status = vdc_stop_ldc_connection(vdcp);
44363af08d82Slm66018 				vdcp->self_reset = B_FALSE;
44371ae08745Sheppo 			}
44381ae08745Sheppo 
44391ae08745Sheppo 			/*
44403af08d82Slm66018 			 * Wait for all threads currently waiting
44413af08d82Slm66018 			 * for a free dring entry to use.
44421ae08745Sheppo 			 */
44433af08d82Slm66018 			while (vdcp->threads_pending) {
44443af08d82Slm66018 				cv_broadcast(&vdcp->membind_cv);
44453af08d82Slm66018 				cv_broadcast(&vdcp->dring_free_cv);
44463af08d82Slm66018 				mutex_exit(&vdcp->lock);
4447205eeb1aSlm66018 				/* give the waiters enough time to wake up */
4448205eeb1aSlm66018 				delay(vdc_hz_min_ldc_delay);
44493af08d82Slm66018 				mutex_enter(&vdcp->lock);
44501ae08745Sheppo 			}
44511ae08745Sheppo 
44523af08d82Slm66018 			ASSERT(vdcp->threads_pending == 0);
44531ae08745Sheppo 
44543af08d82Slm66018 			/* Sanity check that no thread is receiving */
44553af08d82Slm66018 			ASSERT(vdcp->read_state != VDC_READ_WAITING);
44560a55fbb7Slm66018 
44573af08d82Slm66018 			vdcp->read_state = VDC_READ_IDLE;
44583af08d82Slm66018 
44593af08d82Slm66018 			vdc_backup_local_dring(vdcp);
44603af08d82Slm66018 
44613af08d82Slm66018 			/* cleanup the old d-ring */
44623af08d82Slm66018 			vdc_destroy_descriptor_ring(vdcp);
44633af08d82Slm66018 
44643af08d82Slm66018 			/* go and start again */
44653af08d82Slm66018 			vdcp->state = VDC_STATE_INIT;
44663af08d82Slm66018 
44670a55fbb7Slm66018 			break;
44680a55fbb7Slm66018 
44693af08d82Slm66018 		case VDC_STATE_DETACH:
44703af08d82Slm66018 			DMSG(vdcp, 0, "[%d] Reset thread exit cleanup ..\n",
44713af08d82Slm66018 			    vdcp->instance);
44723af08d82Slm66018 
4473655fd6a9Sachartre 			/* cancel any pending timeout */
4474655fd6a9Sachartre 			mutex_exit(&vdcp->lock);
4475655fd6a9Sachartre 			if (tmid != 0) {
4476655fd6a9Sachartre 				(void) untimeout(tmid);
4477655fd6a9Sachartre 				tmid = 0;
4478655fd6a9Sachartre 			}
4479655fd6a9Sachartre 			mutex_enter(&vdcp->lock);
4480655fd6a9Sachartre 
44813c96341aSnarayan 			/*
44823c96341aSnarayan 			 * Signal anyone waiting for connection
44833c96341aSnarayan 			 * to come online
44843c96341aSnarayan 			 */
44853c96341aSnarayan 			cv_broadcast(&vdcp->running_cv);
44863c96341aSnarayan 
44873af08d82Slm66018 			while (vdcp->sync_op_pending) {
44883af08d82Slm66018 				cv_signal(&vdcp->sync_pending_cv);
44893af08d82Slm66018 				cv_signal(&vdcp->sync_blocked_cv);
44903af08d82Slm66018 				mutex_exit(&vdcp->lock);
4491205eeb1aSlm66018 				/* give the waiters enough time to wake up */
4492205eeb1aSlm66018 				delay(vdc_hz_min_ldc_delay);
44933af08d82Slm66018 				mutex_enter(&vdcp->lock);
44940a55fbb7Slm66018 			}
44951ae08745Sheppo 
44963af08d82Slm66018 			mutex_exit(&vdcp->lock);
44973af08d82Slm66018 
44983af08d82Slm66018 			DMSG(vdcp, 0, "[%d] Msg processing thread exiting ..\n",
44993af08d82Slm66018 			    vdcp->instance);
45003af08d82Slm66018 			thread_exit();
45013af08d82Slm66018 			break;
45023af08d82Slm66018 		}
45033af08d82Slm66018 	}
45040a55fbb7Slm66018 }
45050a55fbb7Slm66018 
45060a55fbb7Slm66018 
45070a55fbb7Slm66018 /*
45080a55fbb7Slm66018  * Function:
45090a55fbb7Slm66018  *	vdc_process_data_msg()
45100a55fbb7Slm66018  *
45110a55fbb7Slm66018  * Description:
45120a55fbb7Slm66018  *	This function is called by the message processing thread each time
45130a55fbb7Slm66018  *	a message with a msgtype of VIO_TYPE_DATA is received. It will either
45140a55fbb7Slm66018  *	be an ACK or NACK from vds[1] which vdc handles as follows.
45150a55fbb7Slm66018  *		ACK	- wake up the waiting thread
45160a55fbb7Slm66018  *		NACK	- resend any messages necessary
45170a55fbb7Slm66018  *
45180a55fbb7Slm66018  *	[1] Although the message format allows it, vds should not send a
45190a55fbb7Slm66018  *	    VIO_SUBTYPE_INFO message to vdc asking it to read data; if for
45200a55fbb7Slm66018  *	    some bizarre reason it does, vdc will reset the connection.
45210a55fbb7Slm66018  *
45220a55fbb7Slm66018  * Arguments:
45230a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
45240a55fbb7Slm66018  *	msg	- the LDC message sent by vds
45250a55fbb7Slm66018  *
45260a55fbb7Slm66018  * Return Code:
45270a55fbb7Slm66018  *	0	- Success.
45280a55fbb7Slm66018  *	> 0	- error value returned by LDC
45290a55fbb7Slm66018  */
45300a55fbb7Slm66018 static int
45313af08d82Slm66018 vdc_process_data_msg(vdc_t *vdcp, vio_msg_t *msg)
45320a55fbb7Slm66018 {
45330a55fbb7Slm66018 	int			status = 0;
45343af08d82Slm66018 	vio_dring_msg_t		*dring_msg;
4535d10e4ef2Snarayan 	vdc_local_desc_t	*ldep = NULL;
45363af08d82Slm66018 	int			start, end;
45373af08d82Slm66018 	int			idx;
453890e2f9dcSlm66018 	int			op;
45390a55fbb7Slm66018 
45403af08d82Slm66018 	dring_msg = (vio_dring_msg_t *)msg;
45410a55fbb7Slm66018 
45423af08d82Slm66018 	ASSERT(msg->tag.vio_msgtype == VIO_TYPE_DATA);
45433af08d82Slm66018 	ASSERT(vdcp != NULL);
45443af08d82Slm66018 
45453af08d82Slm66018 	mutex_enter(&vdcp->lock);
45460a55fbb7Slm66018 
45470a55fbb7Slm66018 	/*
45480a55fbb7Slm66018 	 * Check to see if the message has bogus data
45490a55fbb7Slm66018 	 */
4550e1ebb9ecSlm66018 	idx = start = dring_msg->start_idx;
45510a55fbb7Slm66018 	end = dring_msg->end_idx;
45523af08d82Slm66018 	if ((start >= vdcp->dring_len) ||
45533af08d82Slm66018 	    (end >= vdcp->dring_len) || (end < -1)) {
455490e2f9dcSlm66018 		/*
455590e2f9dcSlm66018 		 * Update the I/O statistics to indicate that an error ocurred.
455690e2f9dcSlm66018 		 * No need to update the wait/run queues as no specific read or
455790e2f9dcSlm66018 		 * write request is being completed in response to this 'msg'.
455890e2f9dcSlm66018 		 */
455990e2f9dcSlm66018 		VD_UPDATE_ERR_STATS(vdcp, vd_softerrs);
45603af08d82Slm66018 		DMSG(vdcp, 0, "[%d] Bogus ACK data : start %d, end %d\n",
45613af08d82Slm66018 		    vdcp->instance, start, end);
45623af08d82Slm66018 		mutex_exit(&vdcp->lock);
4563e1ebb9ecSlm66018 		return (EINVAL);
45640a55fbb7Slm66018 	}
45650a55fbb7Slm66018 
45660a55fbb7Slm66018 	/*
45670a55fbb7Slm66018 	 * Verify that the sequence number is what vdc expects.
45680a55fbb7Slm66018 	 */
45693af08d82Slm66018 	switch (vdc_verify_seq_num(vdcp, dring_msg)) {
4570e1ebb9ecSlm66018 	case VDC_SEQ_NUM_TODO:
4571e1ebb9ecSlm66018 		break;	/* keep processing this message */
4572e1ebb9ecSlm66018 	case VDC_SEQ_NUM_SKIP:
45733af08d82Slm66018 		mutex_exit(&vdcp->lock);
4574e1ebb9ecSlm66018 		return (0);
4575e1ebb9ecSlm66018 	case VDC_SEQ_NUM_INVALID:
457690e2f9dcSlm66018 		/*
457790e2f9dcSlm66018 		 * Update the I/O statistics to indicate that an error ocurred.
457890e2f9dcSlm66018 		 * No need to update the wait/run queues as no specific read or
457990e2f9dcSlm66018 		 * write request is being completed in response to this 'msg'.
458090e2f9dcSlm66018 		 */
4581366a92acSlm66018 		VD_UPDATE_ERR_STATS(vdcp, vd_softerrs);
458290e2f9dcSlm66018 		DMSG(vdcp, 0, "[%d] invalid seqno\n", vdcp->instance);
4583366a92acSlm66018 		mutex_exit(&vdcp->lock);
45840a55fbb7Slm66018 		return (ENXIO);
45850a55fbb7Slm66018 	}
45860a55fbb7Slm66018 
45873af08d82Slm66018 	if (msg->tag.vio_subtype == VIO_SUBTYPE_NACK) {
458890e2f9dcSlm66018 		/*
458990e2f9dcSlm66018 		 * Update the I/O statistics to indicate that an error ocurred.
459090e2f9dcSlm66018 		 *
459190e2f9dcSlm66018 		 * We need to update the run queue if a read or write request
459290e2f9dcSlm66018 		 * is being NACKed - otherwise there will appear to be an
459390e2f9dcSlm66018 		 * indefinite outstanding request and statistics reported by
459490e2f9dcSlm66018 		 * iostat(1M) will be incorrect. The transaction will be
459590e2f9dcSlm66018 		 * resubmitted from the backup DRing following the reset
459690e2f9dcSlm66018 		 * and the wait/run queues will be entered again.
459790e2f9dcSlm66018 		 */
459890e2f9dcSlm66018 		ldep = &vdcp->local_dring[idx];
459990e2f9dcSlm66018 		op = ldep->operation;
460090e2f9dcSlm66018 		if ((op == VD_OP_BREAD) || (op == VD_OP_BWRITE)) {
460190e2f9dcSlm66018 			DTRACE_IO1(done, buf_t *, ldep->cb_arg);
460290e2f9dcSlm66018 			VD_KSTAT_RUNQ_EXIT(vdcp);
460390e2f9dcSlm66018 		}
4604366a92acSlm66018 		VD_UPDATE_ERR_STATS(vdcp, vd_softerrs);
460590e2f9dcSlm66018 		VDC_DUMP_DRING_MSG(dring_msg);
460690e2f9dcSlm66018 		DMSG(vdcp, 0, "[%d] DATA NACK\n", vdcp->instance);
46073af08d82Slm66018 		mutex_exit(&vdcp->lock);
4608e1ebb9ecSlm66018 		return (EIO);
46090a55fbb7Slm66018 
46103af08d82Slm66018 	} else if (msg->tag.vio_subtype == VIO_SUBTYPE_INFO) {
461190e2f9dcSlm66018 		/*
461290e2f9dcSlm66018 		 * Update the I/O statistics to indicate that an error occurred.
461390e2f9dcSlm66018 		 * No need to update the wait/run queues as no specific read or
461490e2f9dcSlm66018 		 * write request is being completed in response to this 'msg'.
461590e2f9dcSlm66018 		 */
4616366a92acSlm66018 		VD_UPDATE_ERR_STATS(vdcp, vd_protoerrs);
46173af08d82Slm66018 		mutex_exit(&vdcp->lock);
4618e1ebb9ecSlm66018 		return (EPROTO);
4619e1ebb9ecSlm66018 	}
4620e1ebb9ecSlm66018 
46213af08d82Slm66018 	DMSG(vdcp, 1, ": start %d end %d\n", start, end);
46223af08d82Slm66018 	ASSERT(start == end);
46233af08d82Slm66018 
46243af08d82Slm66018 	ldep = &vdcp->local_dring[idx];
46253af08d82Slm66018 
46263af08d82Slm66018 	DMSG(vdcp, 1, ": state 0x%x - cb_type 0x%x\n",
46273af08d82Slm66018 	    ldep->dep->hdr.dstate, ldep->cb_type);
46283af08d82Slm66018 
4629e1ebb9ecSlm66018 	if (ldep->dep->hdr.dstate == VIO_DESC_DONE) {
46303af08d82Slm66018 		struct buf *bufp;
4631e1ebb9ecSlm66018 
46323af08d82Slm66018 		switch (ldep->cb_type) {
46333af08d82Slm66018 		case CB_SYNC:
46343af08d82Slm66018 			ASSERT(vdcp->sync_op_pending);
4635d10e4ef2Snarayan 
46363af08d82Slm66018 			status = vdc_depopulate_descriptor(vdcp, idx);
46373af08d82Slm66018 			vdcp->sync_op_status = status;
46383af08d82Slm66018 			vdcp->sync_op_pending = B_FALSE;
46393af08d82Slm66018 			cv_signal(&vdcp->sync_pending_cv);
46403af08d82Slm66018 			break;
46414bac2208Snarayan 
46423af08d82Slm66018 		case CB_STRATEGY:
46433af08d82Slm66018 			bufp = ldep->cb_arg;
46443af08d82Slm66018 			ASSERT(bufp != NULL);
46453c96341aSnarayan 			bufp->b_resid =
46463c96341aSnarayan 			    bufp->b_bcount - ldep->dep->payload.nbytes;
46473af08d82Slm66018 			status = ldep->dep->payload.status; /* Future:ntoh */
46483af08d82Slm66018 			if (status != 0) {
46493af08d82Slm66018 				DMSG(vdcp, 1, "strategy status=%d\n", status);
4650366a92acSlm66018 				VD_UPDATE_ERR_STATS(vdcp, vd_softerrs);
46513af08d82Slm66018 				bioerror(bufp, status);
4652d10e4ef2Snarayan 			}
46532f5224aeSachartre 
46542f5224aeSachartre 			(void) vdc_depopulate_descriptor(vdcp, idx);
46553c96341aSnarayan 
46563c96341aSnarayan 			DMSG(vdcp, 1,
46573c96341aSnarayan 			    "strategy complete req=%ld bytes resp=%ld bytes\n",
46583c96341aSnarayan 			    bufp->b_bcount, ldep->dep->payload.nbytes);
46592f5224aeSachartre 
46602f5224aeSachartre 			if (status != 0 && vdcp->failfast_interval != 0) {
46612f5224aeSachartre 				/*
46622f5224aeSachartre 				 * The I/O has failed and failfast is enabled.
46632f5224aeSachartre 				 * We need the failfast thread to check if the
46642f5224aeSachartre 				 * failure is due to a reservation conflict.
46652f5224aeSachartre 				 */
46662f5224aeSachartre 				(void) vdc_failfast_io_queue(vdcp, bufp);
46672f5224aeSachartre 			} else {
4668366a92acSlm66018 				if (status == 0) {
466990e2f9dcSlm66018 					op = (bufp->b_flags & B_READ) ?
4670366a92acSlm66018 					    VD_OP_BREAD : VD_OP_BWRITE;
4671366a92acSlm66018 					VD_UPDATE_IO_STATS(vdcp, op,
4672366a92acSlm66018 					    ldep->dep->payload.nbytes);
4673366a92acSlm66018 				}
467490e2f9dcSlm66018 				VD_KSTAT_RUNQ_EXIT(vdcp);
4675366a92acSlm66018 				DTRACE_IO1(done, buf_t *, bufp);
46762f5224aeSachartre 				biodone(bufp);
46772f5224aeSachartre 			}
46783af08d82Slm66018 			break;
46793af08d82Slm66018 
46803af08d82Slm66018 		default:
46813af08d82Slm66018 			ASSERT(0);
46820a55fbb7Slm66018 		}
46833af08d82Slm66018 	}
46843af08d82Slm66018 
46853af08d82Slm66018 	/* let the arrival signal propogate */
46863af08d82Slm66018 	mutex_exit(&vdcp->lock);
46870a55fbb7Slm66018 
4688e1ebb9ecSlm66018 	/* probe gives the count of how many entries were processed */
4689366a92acSlm66018 	DTRACE_PROBE2(processed, int, 1, vdc_t *, vdcp);
46900a55fbb7Slm66018 
46913af08d82Slm66018 	return (0);
46920a55fbb7Slm66018 }
46930a55fbb7Slm66018 
46940a55fbb7Slm66018 
46950a55fbb7Slm66018 /*
46960a55fbb7Slm66018  * Function:
46970a55fbb7Slm66018  *	vdc_handle_ver_msg()
46980a55fbb7Slm66018  *
46990a55fbb7Slm66018  * Description:
47000a55fbb7Slm66018  *
47010a55fbb7Slm66018  * Arguments:
47020a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
47030a55fbb7Slm66018  *	ver_msg	- LDC message sent by vDisk server
47040a55fbb7Slm66018  *
47050a55fbb7Slm66018  * Return Code:
47060a55fbb7Slm66018  *	0	- Success
47070a55fbb7Slm66018  */
47080a55fbb7Slm66018 static int
47090a55fbb7Slm66018 vdc_handle_ver_msg(vdc_t *vdc, vio_ver_msg_t *ver_msg)
47100a55fbb7Slm66018 {
47110a55fbb7Slm66018 	int status = 0;
47120a55fbb7Slm66018 
47130a55fbb7Slm66018 	ASSERT(vdc != NULL);
47140a55fbb7Slm66018 	ASSERT(mutex_owned(&vdc->lock));
47150a55fbb7Slm66018 
47160a55fbb7Slm66018 	if (ver_msg->tag.vio_subtype_env != VIO_VER_INFO) {
47170a55fbb7Slm66018 		return (EPROTO);
47180a55fbb7Slm66018 	}
47190a55fbb7Slm66018 
47200a55fbb7Slm66018 	if (ver_msg->dev_class != VDEV_DISK_SERVER) {
47210a55fbb7Slm66018 		return (EINVAL);
47220a55fbb7Slm66018 	}
47230a55fbb7Slm66018 
47240a55fbb7Slm66018 	switch (ver_msg->tag.vio_subtype) {
47250a55fbb7Slm66018 	case VIO_SUBTYPE_ACK:
47260a55fbb7Slm66018 		/*
47270a55fbb7Slm66018 		 * We check to see if the version returned is indeed supported
47280a55fbb7Slm66018 		 * (The server may have also adjusted the minor number downwards
47290a55fbb7Slm66018 		 * and if so 'ver_msg' will contain the actual version agreed)
47300a55fbb7Slm66018 		 */
47310a55fbb7Slm66018 		if (vdc_is_supported_version(ver_msg)) {
47320a55fbb7Slm66018 			vdc->ver.major = ver_msg->ver_major;
47330a55fbb7Slm66018 			vdc->ver.minor = ver_msg->ver_minor;
47340a55fbb7Slm66018 			ASSERT(vdc->ver.major > 0);
47350a55fbb7Slm66018 		} else {
47360a55fbb7Slm66018 			status = EPROTO;
47370a55fbb7Slm66018 		}
47380a55fbb7Slm66018 		break;
47390a55fbb7Slm66018 
47400a55fbb7Slm66018 	case VIO_SUBTYPE_NACK:
47410a55fbb7Slm66018 		/*
47420a55fbb7Slm66018 		 * call vdc_is_supported_version() which will return the next
47430a55fbb7Slm66018 		 * supported version (if any) in 'ver_msg'
47440a55fbb7Slm66018 		 */
47450a55fbb7Slm66018 		(void) vdc_is_supported_version(ver_msg);
47460a55fbb7Slm66018 		if (ver_msg->ver_major > 0) {
47470a55fbb7Slm66018 			size_t len = sizeof (*ver_msg);
47480a55fbb7Slm66018 
47490a55fbb7Slm66018 			ASSERT(vdc->ver.major > 0);
47500a55fbb7Slm66018 
47510a55fbb7Slm66018 			/* reset the necessary fields and resend */
47520a55fbb7Slm66018 			ver_msg->tag.vio_subtype = VIO_SUBTYPE_INFO;
47530a55fbb7Slm66018 			ver_msg->dev_class = VDEV_DISK;
47540a55fbb7Slm66018 
47550a55fbb7Slm66018 			status = vdc_send(vdc, (caddr_t)ver_msg, &len);
47563af08d82Slm66018 			DMSG(vdc, 0, "[%d] Resend VER info (LDC status = %d)\n",
47570a55fbb7Slm66018 			    vdc->instance, status);
47580a55fbb7Slm66018 			if (len != sizeof (*ver_msg))
47590a55fbb7Slm66018 				status = EBADMSG;
47600a55fbb7Slm66018 		} else {
476187a7269eSachartre 			DMSG(vdc, 0, "[%d] No common version with vDisk server",
476287a7269eSachartre 			    vdc->instance);
47630a55fbb7Slm66018 			status = ENOTSUP;
47640a55fbb7Slm66018 		}
47650a55fbb7Slm66018 
47660a55fbb7Slm66018 		break;
47671ae08745Sheppo 	case VIO_SUBTYPE_INFO:
47681ae08745Sheppo 		/*
47691ae08745Sheppo 		 * Handle the case where vds starts handshake
4770eff7243fSlm66018 		 * (for now only vdc is the instigator)
47711ae08745Sheppo 		 */
47721ae08745Sheppo 		status = ENOTSUP;
47731ae08745Sheppo 		break;
47741ae08745Sheppo 
47751ae08745Sheppo 	default:
47760a55fbb7Slm66018 		status = EINVAL;
47771ae08745Sheppo 		break;
47781ae08745Sheppo 	}
47791ae08745Sheppo 
47800a55fbb7Slm66018 	return (status);
47810a55fbb7Slm66018 }
47820a55fbb7Slm66018 
47830a55fbb7Slm66018 /*
47840a55fbb7Slm66018  * Function:
47850a55fbb7Slm66018  *	vdc_handle_attr_msg()
47860a55fbb7Slm66018  *
47870a55fbb7Slm66018  * Description:
47880a55fbb7Slm66018  *
47890a55fbb7Slm66018  * Arguments:
47900a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
47910a55fbb7Slm66018  *	attr_msg	- LDC message sent by vDisk server
47920a55fbb7Slm66018  *
47930a55fbb7Slm66018  * Return Code:
47940a55fbb7Slm66018  *	0	- Success
47950a55fbb7Slm66018  */
47960a55fbb7Slm66018 static int
47970a55fbb7Slm66018 vdc_handle_attr_msg(vdc_t *vdc, vd_attr_msg_t *attr_msg)
47980a55fbb7Slm66018 {
47990a55fbb7Slm66018 	int status = 0;
48000a55fbb7Slm66018 
48010a55fbb7Slm66018 	ASSERT(vdc != NULL);
48020a55fbb7Slm66018 	ASSERT(mutex_owned(&vdc->lock));
48030a55fbb7Slm66018 
48040a55fbb7Slm66018 	if (attr_msg->tag.vio_subtype_env != VIO_ATTR_INFO) {
48050a55fbb7Slm66018 		return (EPROTO);
48060a55fbb7Slm66018 	}
48070a55fbb7Slm66018 
48080a55fbb7Slm66018 	switch (attr_msg->tag.vio_subtype) {
48091ae08745Sheppo 	case VIO_SUBTYPE_ACK:
48101ae08745Sheppo 		/*
48111ae08745Sheppo 		 * We now verify the attributes sent by vds.
48121ae08745Sheppo 		 */
481378fcd0a1Sachartre 		if (attr_msg->vdisk_size == 0) {
481478fcd0a1Sachartre 			DMSG(vdc, 0, "[%d] Invalid disk size from vds",
481578fcd0a1Sachartre 			    vdc->instance);
481678fcd0a1Sachartre 			status = EINVAL;
481778fcd0a1Sachartre 			break;
481878fcd0a1Sachartre 		}
481978fcd0a1Sachartre 
482078fcd0a1Sachartre 		if (attr_msg->max_xfer_sz == 0) {
482178fcd0a1Sachartre 			DMSG(vdc, 0, "[%d] Invalid transfer size from vds",
482278fcd0a1Sachartre 			    vdc->instance);
482378fcd0a1Sachartre 			status = EINVAL;
482478fcd0a1Sachartre 			break;
482578fcd0a1Sachartre 		}
482678fcd0a1Sachartre 
48272f5224aeSachartre 		if (attr_msg->vdisk_size == VD_SIZE_UNKNOWN) {
48282f5224aeSachartre 			DMSG(vdc, 0, "[%d] Unknown disk size from vds",
48292f5224aeSachartre 			    vdc->instance);
48302f5224aeSachartre 			attr_msg->vdisk_size = 0;
48312f5224aeSachartre 		}
4832de3a5331SRamesh Chitrothu 		/* update disk, block and transfer sizes */
4833de3a5331SRamesh Chitrothu 		vdc_update_size(vdc, attr_msg->vdisk_size,
4834de3a5331SRamesh Chitrothu 		    attr_msg->vdisk_block_size, attr_msg->max_xfer_sz);
48351ae08745Sheppo 		vdc->vdisk_type = attr_msg->vdisk_type;
483617cadca8Slm66018 		vdc->operations = attr_msg->operations;
483717cadca8Slm66018 		if (vio_ver_is_supported(vdc->ver, 1, 1))
483817cadca8Slm66018 			vdc->vdisk_media = attr_msg->vdisk_media;
483917cadca8Slm66018 		else
484017cadca8Slm66018 			vdc->vdisk_media = 0;
48411ae08745Sheppo 
48423af08d82Slm66018 		DMSG(vdc, 0, "[%d] max_xfer_sz: sent %lx acked %lx\n",
4843e1ebb9ecSlm66018 		    vdc->instance, vdc->max_xfer_sz, attr_msg->max_xfer_sz);
48443af08d82Slm66018 		DMSG(vdc, 0, "[%d] vdisk_block_size: sent %lx acked %x\n",
4845e1ebb9ecSlm66018 		    vdc->instance, vdc->block_size,
4846e1ebb9ecSlm66018 		    attr_msg->vdisk_block_size);
4847e1ebb9ecSlm66018 
4848f0ca1d9aSsb155480 		if ((attr_msg->xfer_mode != VIO_DRING_MODE_V1_0) ||
48491ae08745Sheppo 		    (attr_msg->vdisk_size > INT64_MAX) ||
485017cadca8Slm66018 		    (attr_msg->operations == 0) ||
48511ae08745Sheppo 		    (attr_msg->vdisk_type > VD_DISK_TYPE_DISK)) {
48523af08d82Slm66018 			DMSG(vdc, 0, "[%d] Invalid attributes from vds",
4853e1ebb9ecSlm66018 			    vdc->instance);
48541ae08745Sheppo 			status = EINVAL;
48551ae08745Sheppo 			break;
48561ae08745Sheppo 		}
48571ae08745Sheppo 
485878fcd0a1Sachartre 		/*
485978fcd0a1Sachartre 		 * Now that we have received all attributes we can create a
486078fcd0a1Sachartre 		 * fake geometry for the disk.
486178fcd0a1Sachartre 		 */
486278fcd0a1Sachartre 		vdc_create_fake_geometry(vdc);
48631ae08745Sheppo 		break;
48641ae08745Sheppo 
48651ae08745Sheppo 	case VIO_SUBTYPE_NACK:
48661ae08745Sheppo 		/*
48671ae08745Sheppo 		 * vds could not handle the attributes we sent so we
48681ae08745Sheppo 		 * stop negotiating.
48691ae08745Sheppo 		 */
48701ae08745Sheppo 		status = EPROTO;
48711ae08745Sheppo 		break;
48721ae08745Sheppo 
48731ae08745Sheppo 	case VIO_SUBTYPE_INFO:
48741ae08745Sheppo 		/*
48751ae08745Sheppo 		 * Handle the case where vds starts the handshake
48761ae08745Sheppo 		 * (for now; vdc is the only supported instigatior)
48771ae08745Sheppo 		 */
48781ae08745Sheppo 		status = ENOTSUP;
48791ae08745Sheppo 		break;
48801ae08745Sheppo 
48811ae08745Sheppo 	default:
48821ae08745Sheppo 		status = ENOTSUP;
48831ae08745Sheppo 		break;
48841ae08745Sheppo 	}
48851ae08745Sheppo 
48860a55fbb7Slm66018 	return (status);
48871ae08745Sheppo }
48881ae08745Sheppo 
48890a55fbb7Slm66018 /*
48900a55fbb7Slm66018  * Function:
48910a55fbb7Slm66018  *	vdc_handle_dring_reg_msg()
48920a55fbb7Slm66018  *
48930a55fbb7Slm66018  * Description:
48940a55fbb7Slm66018  *
48950a55fbb7Slm66018  * Arguments:
48960a55fbb7Slm66018  *	vdc		- soft state pointer for this instance of the driver.
48970a55fbb7Slm66018  *	dring_msg	- LDC message sent by vDisk server
48980a55fbb7Slm66018  *
48990a55fbb7Slm66018  * Return Code:
49000a55fbb7Slm66018  *	0	- Success
49010a55fbb7Slm66018  */
49020a55fbb7Slm66018 static int
49030a55fbb7Slm66018 vdc_handle_dring_reg_msg(vdc_t *vdc, vio_dring_reg_msg_t *dring_msg)
49040a55fbb7Slm66018 {
49050a55fbb7Slm66018 	int		status = 0;
49061ae08745Sheppo 
49070a55fbb7Slm66018 	ASSERT(vdc != NULL);
49080a55fbb7Slm66018 	ASSERT(mutex_owned(&vdc->lock));
49090a55fbb7Slm66018 
49100a55fbb7Slm66018 	if (dring_msg->tag.vio_subtype_env != VIO_DRING_REG) {
49110a55fbb7Slm66018 		return (EPROTO);
49120a55fbb7Slm66018 	}
49130a55fbb7Slm66018 
49140a55fbb7Slm66018 	switch (dring_msg->tag.vio_subtype) {
49150a55fbb7Slm66018 	case VIO_SUBTYPE_ACK:
49161ae08745Sheppo 		/* save the received dring_ident */
49171ae08745Sheppo 		vdc->dring_ident = dring_msg->dring_ident;
49183af08d82Slm66018 		DMSG(vdc, 0, "[%d] Received dring ident=0x%lx\n",
4919e1ebb9ecSlm66018 		    vdc->instance, vdc->dring_ident);
49201ae08745Sheppo 		break;
49211ae08745Sheppo 
49221ae08745Sheppo 	case VIO_SUBTYPE_NACK:
49231ae08745Sheppo 		/*
49241ae08745Sheppo 		 * vds could not handle the DRing info we sent so we
49251ae08745Sheppo 		 * stop negotiating.
49261ae08745Sheppo 		 */
49273af08d82Slm66018 		DMSG(vdc, 0, "[%d] server could not register DRing\n",
49283af08d82Slm66018 		    vdc->instance);
49291ae08745Sheppo 		status = EPROTO;
49301ae08745Sheppo 		break;
49311ae08745Sheppo 
49321ae08745Sheppo 	case VIO_SUBTYPE_INFO:
49331ae08745Sheppo 		/*
49341ae08745Sheppo 		 * Handle the case where vds starts handshake
49351ae08745Sheppo 		 * (for now only vdc is the instigatior)
49361ae08745Sheppo 		 */
49371ae08745Sheppo 		status = ENOTSUP;
49381ae08745Sheppo 		break;
49391ae08745Sheppo 	default:
49401ae08745Sheppo 		status = ENOTSUP;
49411ae08745Sheppo 	}
49421ae08745Sheppo 
49431ae08745Sheppo 	return (status);
49441ae08745Sheppo }
49451ae08745Sheppo 
49461ae08745Sheppo /*
49471ae08745Sheppo  * Function:
49481ae08745Sheppo  *	vdc_verify_seq_num()
49491ae08745Sheppo  *
49501ae08745Sheppo  * Description:
4951e1ebb9ecSlm66018  *	This functions verifies that the sequence number sent back by the vDisk
4952e1ebb9ecSlm66018  *	server with the latest message is what is expected (i.e. it is greater
4953e1ebb9ecSlm66018  *	than the last seq num sent by the vDisk server and less than or equal
4954e1ebb9ecSlm66018  *	to the last seq num generated by vdc).
4955e1ebb9ecSlm66018  *
4956e1ebb9ecSlm66018  *	It then checks the request ID to see if any requests need processing
4957e1ebb9ecSlm66018  *	in the DRing.
49581ae08745Sheppo  *
49591ae08745Sheppo  * Arguments:
49601ae08745Sheppo  *	vdc		- soft state pointer for this instance of the driver.
49611ae08745Sheppo  *	dring_msg	- pointer to the LDC message sent by vds
49621ae08745Sheppo  *
49631ae08745Sheppo  * Return Code:
4964e1ebb9ecSlm66018  *	VDC_SEQ_NUM_TODO	- Message needs to be processed
4965e1ebb9ecSlm66018  *	VDC_SEQ_NUM_SKIP	- Message has already been processed
4966e1ebb9ecSlm66018  *	VDC_SEQ_NUM_INVALID	- The seq numbers are so out of sync,
4967e1ebb9ecSlm66018  *				  vdc cannot deal with them
49681ae08745Sheppo  */
4969e1ebb9ecSlm66018 static int
4970e1ebb9ecSlm66018 vdc_verify_seq_num(vdc_t *vdc, vio_dring_msg_t *dring_msg)
49711ae08745Sheppo {
49721ae08745Sheppo 	ASSERT(vdc != NULL);
49731ae08745Sheppo 	ASSERT(dring_msg != NULL);
4974d10e4ef2Snarayan 	ASSERT(mutex_owned(&vdc->lock));
49751ae08745Sheppo 
49761ae08745Sheppo 	/*
49771ae08745Sheppo 	 * Check to see if the messages were responded to in the correct
4978e1ebb9ecSlm66018 	 * order by vds.
49791ae08745Sheppo 	 */
4980e1ebb9ecSlm66018 	if ((dring_msg->seq_num <= vdc->seq_num_reply) ||
4981e1ebb9ecSlm66018 	    (dring_msg->seq_num > vdc->seq_num)) {
49823af08d82Slm66018 		DMSG(vdc, 0, "?[%d] Bogus sequence_number %lu: "
4983e1ebb9ecSlm66018 		    "%lu > expected <= %lu (last proc req %lu sent %lu)\n",
4984e1ebb9ecSlm66018 		    vdc->instance, dring_msg->seq_num,
4985e1ebb9ecSlm66018 		    vdc->seq_num_reply, vdc->seq_num,
4986e1ebb9ecSlm66018 		    vdc->req_id_proc, vdc->req_id);
4987e1ebb9ecSlm66018 		return (VDC_SEQ_NUM_INVALID);
49881ae08745Sheppo 	}
4989e1ebb9ecSlm66018 	vdc->seq_num_reply = dring_msg->seq_num;
49901ae08745Sheppo 
4991e1ebb9ecSlm66018 	if (vdc->req_id_proc < vdc->req_id)
4992e1ebb9ecSlm66018 		return (VDC_SEQ_NUM_TODO);
4993e1ebb9ecSlm66018 	else
4994e1ebb9ecSlm66018 		return (VDC_SEQ_NUM_SKIP);
49951ae08745Sheppo }
49961ae08745Sheppo 
49970a55fbb7Slm66018 
49980a55fbb7Slm66018 /*
49990a55fbb7Slm66018  * Function:
50000a55fbb7Slm66018  *	vdc_is_supported_version()
50010a55fbb7Slm66018  *
50020a55fbb7Slm66018  * Description:
50030a55fbb7Slm66018  *	This routine checks if the major/minor version numbers specified in
50040a55fbb7Slm66018  *	'ver_msg' are supported. If not it finds the next version that is
50050a55fbb7Slm66018  *	in the supported version list 'vdc_version[]' and sets the fields in
50060a55fbb7Slm66018  *	'ver_msg' to those values
50070a55fbb7Slm66018  *
50080a55fbb7Slm66018  * Arguments:
50090a55fbb7Slm66018  *	ver_msg	- LDC message sent by vDisk server
50100a55fbb7Slm66018  *
50110a55fbb7Slm66018  * Return Code:
50120a55fbb7Slm66018  *	B_TRUE	- Success
50130a55fbb7Slm66018  *	B_FALSE	- Version not supported
50140a55fbb7Slm66018  */
50150a55fbb7Slm66018 static boolean_t
50160a55fbb7Slm66018 vdc_is_supported_version(vio_ver_msg_t *ver_msg)
50170a55fbb7Slm66018 {
50180a55fbb7Slm66018 	int vdc_num_versions = sizeof (vdc_version) / sizeof (vdc_version[0]);
50190a55fbb7Slm66018 
50200a55fbb7Slm66018 	for (int i = 0; i < vdc_num_versions; i++) {
50210a55fbb7Slm66018 		ASSERT(vdc_version[i].major > 0);
50220a55fbb7Slm66018 		ASSERT((i == 0) ||
50230a55fbb7Slm66018 		    (vdc_version[i].major < vdc_version[i-1].major));
50240a55fbb7Slm66018 
50250a55fbb7Slm66018 		/*
50260a55fbb7Slm66018 		 * If the major versions match, adjust the minor version, if
50270a55fbb7Slm66018 		 * necessary, down to the highest value supported by this
50280a55fbb7Slm66018 		 * client. The server should support all minor versions lower
50290a55fbb7Slm66018 		 * than the value it sent
50300a55fbb7Slm66018 		 */
50310a55fbb7Slm66018 		if (ver_msg->ver_major == vdc_version[i].major) {
50320a55fbb7Slm66018 			if (ver_msg->ver_minor > vdc_version[i].minor) {
50333af08d82Slm66018 				DMSGX(0,
50343af08d82Slm66018 				    "Adjusting minor version from %u to %u",
50350a55fbb7Slm66018 				    ver_msg->ver_minor, vdc_version[i].minor);
50360a55fbb7Slm66018 				ver_msg->ver_minor = vdc_version[i].minor;
50370a55fbb7Slm66018 			}
50380a55fbb7Slm66018 			return (B_TRUE);
50390a55fbb7Slm66018 		}
50400a55fbb7Slm66018 
50410a55fbb7Slm66018 		/*
50420a55fbb7Slm66018 		 * If the message contains a higher major version number, set
50430a55fbb7Slm66018 		 * the message's major/minor versions to the current values
50440a55fbb7Slm66018 		 * and return false, so this message will get resent with
50450a55fbb7Slm66018 		 * these values, and the server will potentially try again
50460a55fbb7Slm66018 		 * with the same or a lower version
50470a55fbb7Slm66018 		 */
50480a55fbb7Slm66018 		if (ver_msg->ver_major > vdc_version[i].major) {
50490a55fbb7Slm66018 			ver_msg->ver_major = vdc_version[i].major;
50500a55fbb7Slm66018 			ver_msg->ver_minor = vdc_version[i].minor;
50513af08d82Slm66018 			DMSGX(0, "Suggesting major/minor (0x%x/0x%x)\n",
50520a55fbb7Slm66018 			    ver_msg->ver_major, ver_msg->ver_minor);
50530a55fbb7Slm66018 
50540a55fbb7Slm66018 			return (B_FALSE);
50550a55fbb7Slm66018 		}
50560a55fbb7Slm66018 
50570a55fbb7Slm66018 		/*
50580a55fbb7Slm66018 		 * Otherwise, the message's major version is less than the
50590a55fbb7Slm66018 		 * current major version, so continue the loop to the next
50600a55fbb7Slm66018 		 * (lower) supported version
50610a55fbb7Slm66018 		 */
50620a55fbb7Slm66018 	}
50630a55fbb7Slm66018 
50640a55fbb7Slm66018 	/*
50650a55fbb7Slm66018 	 * No common version was found; "ground" the version pair in the
50660a55fbb7Slm66018 	 * message to terminate negotiation
50670a55fbb7Slm66018 	 */
50680a55fbb7Slm66018 	ver_msg->ver_major = 0;
50690a55fbb7Slm66018 	ver_msg->ver_minor = 0;
50700a55fbb7Slm66018 
50710a55fbb7Slm66018 	return (B_FALSE);
50720a55fbb7Slm66018 }
50731ae08745Sheppo /* -------------------------------------------------------------------------- */
50741ae08745Sheppo 
50751ae08745Sheppo /*
50761ae08745Sheppo  * DKIO(7) support
50771ae08745Sheppo  */
50781ae08745Sheppo 
50791ae08745Sheppo typedef struct vdc_dk_arg {
50801ae08745Sheppo 	struct dk_callback	dkc;
50811ae08745Sheppo 	int			mode;
50821ae08745Sheppo 	dev_t			dev;
50831ae08745Sheppo 	vdc_t			*vdc;
50841ae08745Sheppo } vdc_dk_arg_t;
50851ae08745Sheppo 
50861ae08745Sheppo /*
50871ae08745Sheppo  * Function:
50881ae08745Sheppo  * 	vdc_dkio_flush_cb()
50891ae08745Sheppo  *
50901ae08745Sheppo  * Description:
50911ae08745Sheppo  *	This routine is a callback for DKIOCFLUSHWRITECACHE which can be called
50921ae08745Sheppo  *	by kernel code.
50931ae08745Sheppo  *
50941ae08745Sheppo  * Arguments:
50951ae08745Sheppo  *	arg	- a pointer to a vdc_dk_arg_t structure.
50961ae08745Sheppo  */
50971ae08745Sheppo void
50981ae08745Sheppo vdc_dkio_flush_cb(void *arg)
50991ae08745Sheppo {
51001ae08745Sheppo 	struct vdc_dk_arg	*dk_arg = (struct vdc_dk_arg *)arg;
51011ae08745Sheppo 	struct dk_callback	*dkc = NULL;
51021ae08745Sheppo 	vdc_t			*vdc = NULL;
51031ae08745Sheppo 	int			rv;
51041ae08745Sheppo 
51051ae08745Sheppo 	if (dk_arg == NULL) {
51063af08d82Slm66018 		cmn_err(CE_NOTE, "?[Unk] DKIOCFLUSHWRITECACHE arg is NULL\n");
51071ae08745Sheppo 		return;
51081ae08745Sheppo 	}
51091ae08745Sheppo 	dkc = &dk_arg->dkc;
51101ae08745Sheppo 	vdc = dk_arg->vdc;
51111ae08745Sheppo 	ASSERT(vdc != NULL);
51121ae08745Sheppo 
51133af08d82Slm66018 	rv = vdc_do_sync_op(vdc, VD_OP_FLUSH, NULL, 0,
51142f5224aeSachartre 	    VDCPART(dk_arg->dev), 0, CB_SYNC, 0, VIO_both_dir, B_TRUE);
51151ae08745Sheppo 	if (rv != 0) {
51163af08d82Slm66018 		DMSG(vdc, 0, "[%d] DKIOCFLUSHWRITECACHE failed %d : model %x\n",
5117e1ebb9ecSlm66018 		    vdc->instance, rv,
51181ae08745Sheppo 		    ddi_model_convert_from(dk_arg->mode & FMODELS));
51191ae08745Sheppo 	}
51201ae08745Sheppo 
51211ae08745Sheppo 	/*
51221ae08745Sheppo 	 * Trigger the call back to notify the caller the the ioctl call has
51231ae08745Sheppo 	 * been completed.
51241ae08745Sheppo 	 */
51251ae08745Sheppo 	if ((dk_arg->mode & FKIOCTL) &&
51261ae08745Sheppo 	    (dkc != NULL) &&
51271ae08745Sheppo 	    (dkc->dkc_callback != NULL)) {
51281ae08745Sheppo 		ASSERT(dkc->dkc_cookie != NULL);
51298e6a2a04Slm66018 		(*dkc->dkc_callback)(dkc->dkc_cookie, rv);
51301ae08745Sheppo 	}
51311ae08745Sheppo 
51321ae08745Sheppo 	/* Indicate that one less DKIO write flush is outstanding */
51331ae08745Sheppo 	mutex_enter(&vdc->lock);
51341ae08745Sheppo 	vdc->dkio_flush_pending--;
51351ae08745Sheppo 	ASSERT(vdc->dkio_flush_pending >= 0);
51361ae08745Sheppo 	mutex_exit(&vdc->lock);
51378e6a2a04Slm66018 
51388e6a2a04Slm66018 	/* free the mem that was allocated when the callback was dispatched */
51398e6a2a04Slm66018 	kmem_free(arg, sizeof (vdc_dk_arg_t));
51401ae08745Sheppo }
51411ae08745Sheppo 
51421ae08745Sheppo /*
514387a7269eSachartre  * Function:
51449642afceSachartre  * 	vdc_dkio_gapart()
514587a7269eSachartre  *
514687a7269eSachartre  * Description:
514787a7269eSachartre  *	This function implements the DKIOCGAPART ioctl.
514887a7269eSachartre  *
514987a7269eSachartre  * Arguments:
515078fcd0a1Sachartre  *	vdc	- soft state pointer
515187a7269eSachartre  *	arg	- a pointer to a dk_map[NDKMAP] or dk_map32[NDKMAP] structure
515287a7269eSachartre  *	flag	- ioctl flags
515387a7269eSachartre  */
515487a7269eSachartre static int
51559642afceSachartre vdc_dkio_gapart(vdc_t *vdc, caddr_t arg, int flag)
515687a7269eSachartre {
515778fcd0a1Sachartre 	struct dk_geom *geom;
5158342440ecSPrasad Singamsetty 	struct extvtoc *vtoc;
515987a7269eSachartre 	union {
516087a7269eSachartre 		struct dk_map map[NDKMAP];
516187a7269eSachartre 		struct dk_map32 map32[NDKMAP];
516287a7269eSachartre 	} data;
516387a7269eSachartre 	int i, rv, size;
516487a7269eSachartre 
516578fcd0a1Sachartre 	mutex_enter(&vdc->lock);
516687a7269eSachartre 
516778fcd0a1Sachartre 	if ((rv = vdc_validate_geometry(vdc)) != 0) {
516878fcd0a1Sachartre 		mutex_exit(&vdc->lock);
516987a7269eSachartre 		return (rv);
517078fcd0a1Sachartre 	}
517187a7269eSachartre 
5172342440ecSPrasad Singamsetty 	if (vdc->vdisk_size > VD_OLDVTOC_LIMIT) {
5173342440ecSPrasad Singamsetty 		mutex_exit(&vdc->lock);
5174342440ecSPrasad Singamsetty 		return (EOVERFLOW);
5175342440ecSPrasad Singamsetty 	}
5176342440ecSPrasad Singamsetty 
517778fcd0a1Sachartre 	vtoc = vdc->vtoc;
517878fcd0a1Sachartre 	geom = vdc->geom;
517987a7269eSachartre 
518087a7269eSachartre 	if (ddi_model_convert_from(flag & FMODELS) == DDI_MODEL_ILP32) {
518187a7269eSachartre 
518278fcd0a1Sachartre 		for (i = 0; i < vtoc->v_nparts; i++) {
518378fcd0a1Sachartre 			data.map32[i].dkl_cylno = vtoc->v_part[i].p_start /
518478fcd0a1Sachartre 			    (geom->dkg_nhead * geom->dkg_nsect);
518578fcd0a1Sachartre 			data.map32[i].dkl_nblk = vtoc->v_part[i].p_size;
518687a7269eSachartre 		}
518787a7269eSachartre 		size = NDKMAP * sizeof (struct dk_map32);
518887a7269eSachartre 
518987a7269eSachartre 	} else {
519087a7269eSachartre 
519178fcd0a1Sachartre 		for (i = 0; i < vtoc->v_nparts; i++) {
519278fcd0a1Sachartre 			data.map[i].dkl_cylno = vtoc->v_part[i].p_start /
519378fcd0a1Sachartre 			    (geom->dkg_nhead * geom->dkg_nsect);
519478fcd0a1Sachartre 			data.map[i].dkl_nblk = vtoc->v_part[i].p_size;
519587a7269eSachartre 		}
519687a7269eSachartre 		size = NDKMAP * sizeof (struct dk_map);
519787a7269eSachartre 
519887a7269eSachartre 	}
519987a7269eSachartre 
520078fcd0a1Sachartre 	mutex_exit(&vdc->lock);
520178fcd0a1Sachartre 
520287a7269eSachartre 	if (ddi_copyout(&data, arg, size, flag) != 0)
520387a7269eSachartre 		return (EFAULT);
520487a7269eSachartre 
520587a7269eSachartre 	return (0);
520687a7269eSachartre }
520787a7269eSachartre 
520887a7269eSachartre /*
520987a7269eSachartre  * Function:
52109642afceSachartre  * 	vdc_dkio_partition()
52119642afceSachartre  *
52129642afceSachartre  * Description:
52139642afceSachartre  *	This function implements the DKIOCPARTITION ioctl.
52149642afceSachartre  *
52159642afceSachartre  * Arguments:
52169642afceSachartre  *	vdc	- soft state pointer
52179642afceSachartre  *	arg	- a pointer to a struct partition64 structure
52189642afceSachartre  *	flag	- ioctl flags
52199642afceSachartre  */
52209642afceSachartre static int
52219642afceSachartre vdc_dkio_partition(vdc_t *vdc, caddr_t arg, int flag)
52229642afceSachartre {
52239642afceSachartre 	struct partition64 p64;
52249642afceSachartre 	efi_gpt_t *gpt;
52259642afceSachartre 	efi_gpe_t *gpe;
52269642afceSachartre 	vd_efi_dev_t edev;
52279642afceSachartre 	uint_t partno;
52289642afceSachartre 	int rv;
52299642afceSachartre 
52309642afceSachartre 	if (ddi_copyin(arg, &p64, sizeof (struct partition64), flag)) {
52319642afceSachartre 		return (EFAULT);
52329642afceSachartre 	}
52339642afceSachartre 
52349642afceSachartre 	VD_EFI_DEV_SET(edev, vdc, vd_process_efi_ioctl);
52359642afceSachartre 
52369642afceSachartre 	if ((rv = vd_efi_alloc_and_read(&edev, &gpt, &gpe)) != 0) {
52379642afceSachartre 		return (rv);
52389642afceSachartre 	}
52399642afceSachartre 
52409642afceSachartre 	partno = p64.p_partno;
52419642afceSachartre 
52429642afceSachartre 	if (partno >= gpt->efi_gpt_NumberOfPartitionEntries) {
52439642afceSachartre 		vd_efi_free(&edev, gpt, gpe);
52449642afceSachartre 		return (ESRCH);
52459642afceSachartre 	}
52469642afceSachartre 
52479642afceSachartre 	bcopy(&gpe[partno].efi_gpe_PartitionTypeGUID, &p64.p_type,
52489642afceSachartre 	    sizeof (struct uuid));
52499642afceSachartre 	p64.p_start = gpe[partno].efi_gpe_StartingLBA;
52509642afceSachartre 	p64.p_size = gpe[partno].efi_gpe_EndingLBA - p64.p_start + 1;
52519642afceSachartre 
52529642afceSachartre 	if (ddi_copyout(&p64, arg, sizeof (struct partition64), flag)) {
52539642afceSachartre 		vd_efi_free(&edev, gpt, gpe);
52549642afceSachartre 		return (EFAULT);
52559642afceSachartre 	}
52569642afceSachartre 
52579642afceSachartre 	vd_efi_free(&edev, gpt, gpe);
52589642afceSachartre 	return (0);
52599642afceSachartre }
52609642afceSachartre 
52619642afceSachartre /*
52629642afceSachartre  * Function:
526387a7269eSachartre  * 	vdc_dioctl_rwcmd()
526487a7269eSachartre  *
526587a7269eSachartre  * Description:
526687a7269eSachartre  *	This function implements the DIOCTL_RWCMD ioctl. This ioctl is used
526787a7269eSachartre  *	for DKC_DIRECT disks to read or write at an absolute disk offset.
526887a7269eSachartre  *
526987a7269eSachartre  * Arguments:
527087a7269eSachartre  *	dev	- device
527187a7269eSachartre  *	arg	- a pointer to a dadkio_rwcmd or dadkio_rwcmd32 structure
527287a7269eSachartre  *	flag	- ioctl flags
527387a7269eSachartre  */
527487a7269eSachartre static int
527587a7269eSachartre vdc_dioctl_rwcmd(dev_t dev, caddr_t arg, int flag)
527687a7269eSachartre {
527787a7269eSachartre 	struct dadkio_rwcmd32 rwcmd32;
527887a7269eSachartre 	struct dadkio_rwcmd rwcmd;
527987a7269eSachartre 	struct iovec aiov;
528087a7269eSachartre 	struct uio auio;
528187a7269eSachartre 	int rw, status;
528287a7269eSachartre 	struct buf *buf;
528387a7269eSachartre 
528487a7269eSachartre 	if (ddi_model_convert_from(flag & FMODELS) == DDI_MODEL_ILP32) {
528587a7269eSachartre 		if (ddi_copyin((caddr_t)arg, (caddr_t)&rwcmd32,
528687a7269eSachartre 		    sizeof (struct dadkio_rwcmd32), flag)) {
528787a7269eSachartre 			return (EFAULT);
528887a7269eSachartre 		}
528987a7269eSachartre 		rwcmd.cmd = rwcmd32.cmd;
529087a7269eSachartre 		rwcmd.flags = rwcmd32.flags;
529187a7269eSachartre 		rwcmd.blkaddr = (daddr_t)rwcmd32.blkaddr;
529287a7269eSachartre 		rwcmd.buflen = rwcmd32.buflen;
529387a7269eSachartre 		rwcmd.bufaddr = (caddr_t)(uintptr_t)rwcmd32.bufaddr;
529487a7269eSachartre 	} else {
529587a7269eSachartre 		if (ddi_copyin((caddr_t)arg, (caddr_t)&rwcmd,
529687a7269eSachartre 		    sizeof (struct dadkio_rwcmd), flag)) {
529787a7269eSachartre 			return (EFAULT);
529887a7269eSachartre 		}
529987a7269eSachartre 	}
530087a7269eSachartre 
530187a7269eSachartre 	switch (rwcmd.cmd) {
530287a7269eSachartre 	case DADKIO_RWCMD_READ:
530387a7269eSachartre 		rw = B_READ;
530487a7269eSachartre 		break;
530587a7269eSachartre 	case DADKIO_RWCMD_WRITE:
530687a7269eSachartre 		rw = B_WRITE;
530787a7269eSachartre 		break;
530887a7269eSachartre 	default:
530987a7269eSachartre 		return (EINVAL);
531087a7269eSachartre 	}
531187a7269eSachartre 
531287a7269eSachartre 	bzero((caddr_t)&aiov, sizeof (struct iovec));
531387a7269eSachartre 	aiov.iov_base   = rwcmd.bufaddr;
531487a7269eSachartre 	aiov.iov_len    = rwcmd.buflen;
531587a7269eSachartre 
531687a7269eSachartre 	bzero((caddr_t)&auio, sizeof (struct uio));
531787a7269eSachartre 	auio.uio_iov    = &aiov;
531887a7269eSachartre 	auio.uio_iovcnt = 1;
531987a7269eSachartre 	auio.uio_loffset = rwcmd.blkaddr * DEV_BSIZE;
532087a7269eSachartre 	auio.uio_resid  = rwcmd.buflen;
532187a7269eSachartre 	auio.uio_segflg = flag & FKIOCTL ? UIO_SYSSPACE : UIO_USERSPACE;
532287a7269eSachartre 
532387a7269eSachartre 	buf = kmem_alloc(sizeof (buf_t), KM_SLEEP);
532487a7269eSachartre 	bioinit(buf);
532587a7269eSachartre 	/*
532687a7269eSachartre 	 * We use the private field of buf to specify that this is an
532787a7269eSachartre 	 * I/O using an absolute offset.
532887a7269eSachartre 	 */
532987a7269eSachartre 	buf->b_private = (void *)VD_SLICE_NONE;
533087a7269eSachartre 
533187a7269eSachartre 	status = physio(vdc_strategy, buf, dev, rw, vdc_min, &auio);
533287a7269eSachartre 
533387a7269eSachartre 	biofini(buf);
533487a7269eSachartre 	kmem_free(buf, sizeof (buf_t));
533587a7269eSachartre 
533687a7269eSachartre 	return (status);
533787a7269eSachartre }
533887a7269eSachartre 
533987a7269eSachartre /*
53402f5224aeSachartre  * Allocate a buffer for a VD_OP_SCSICMD operation. The size of the allocated
53412f5224aeSachartre  * buffer is returned in alloc_len.
53422f5224aeSachartre  */
53432f5224aeSachartre static vd_scsi_t *
53442f5224aeSachartre vdc_scsi_alloc(int cdb_len, int sense_len, int datain_len, int dataout_len,
53452f5224aeSachartre     int *alloc_len)
53462f5224aeSachartre {
53472f5224aeSachartre 	vd_scsi_t *vd_scsi;
53482f5224aeSachartre 	int vd_scsi_len = VD_SCSI_SIZE;
53492f5224aeSachartre 
53502f5224aeSachartre 	vd_scsi_len += P2ROUNDUP(cdb_len, sizeof (uint64_t));
53512f5224aeSachartre 	vd_scsi_len += P2ROUNDUP(sense_len, sizeof (uint64_t));
53522f5224aeSachartre 	vd_scsi_len += P2ROUNDUP(datain_len, sizeof (uint64_t));
53532f5224aeSachartre 	vd_scsi_len += P2ROUNDUP(dataout_len, sizeof (uint64_t));
53542f5224aeSachartre 
53552f5224aeSachartre 	ASSERT(vd_scsi_len % sizeof (uint64_t) == 0);
53562f5224aeSachartre 
53572f5224aeSachartre 	vd_scsi = kmem_zalloc(vd_scsi_len, KM_SLEEP);
53582f5224aeSachartre 
53592f5224aeSachartre 	vd_scsi->cdb_len = cdb_len;
53602f5224aeSachartre 	vd_scsi->sense_len = sense_len;
53612f5224aeSachartre 	vd_scsi->datain_len = datain_len;
53622f5224aeSachartre 	vd_scsi->dataout_len = dataout_len;
53632f5224aeSachartre 
53642f5224aeSachartre 	*alloc_len = vd_scsi_len;
53652f5224aeSachartre 
53662f5224aeSachartre 	return (vd_scsi);
53672f5224aeSachartre }
53682f5224aeSachartre 
53692f5224aeSachartre /*
53702f5224aeSachartre  * Convert the status of a SCSI command to a Solaris return code.
53712f5224aeSachartre  *
53722f5224aeSachartre  * Arguments:
53732f5224aeSachartre  *	vd_scsi		- The SCSI operation buffer.
53742f5224aeSachartre  *	log_error	- indicate if an error message should be logged.
53752f5224aeSachartre  *
53762f5224aeSachartre  * Note that our SCSI error messages are rather primitive for the moment
53772f5224aeSachartre  * and could be improved by decoding some data like the SCSI command and
53782f5224aeSachartre  * the sense key.
53792f5224aeSachartre  *
53802f5224aeSachartre  * Return value:
53812f5224aeSachartre  *	0		- Status is good.
53822f5224aeSachartre  *	EACCES		- Status reports a reservation conflict.
53832f5224aeSachartre  *	ENOTSUP		- Status reports a check condition and sense key
53842f5224aeSachartre  *			  reports an illegal request.
53852f5224aeSachartre  *	EIO		- Any other status.
53862f5224aeSachartre  */
53872f5224aeSachartre static int
53882f5224aeSachartre vdc_scsi_status(vdc_t *vdc, vd_scsi_t *vd_scsi, boolean_t log_error)
53892f5224aeSachartre {
53902f5224aeSachartre 	int rv;
53912f5224aeSachartre 	char path_str[MAXPATHLEN];
53922f5224aeSachartre 	char panic_str[VDC_RESV_CONFLICT_FMT_LEN + MAXPATHLEN];
53932f5224aeSachartre 	union scsi_cdb *cdb;
53942f5224aeSachartre 	struct scsi_extended_sense *sense;
53952f5224aeSachartre 
53962f5224aeSachartre 	if (vd_scsi->cmd_status == STATUS_GOOD)
53972f5224aeSachartre 		/* no error */
53982f5224aeSachartre 		return (0);
53992f5224aeSachartre 
54002f5224aeSachartre 	/* when the tunable vdc_scsi_log_error is true we log all errors */
54012f5224aeSachartre 	if (vdc_scsi_log_error)
54022f5224aeSachartre 		log_error = B_TRUE;
54032f5224aeSachartre 
54042f5224aeSachartre 	if (log_error) {
54052f5224aeSachartre 		cmn_err(CE_WARN, "%s (vdc%d):\tError for Command: 0x%x)\n",
54062f5224aeSachartre 		    ddi_pathname(vdc->dip, path_str), vdc->instance,
54072f5224aeSachartre 		    GETCMD(VD_SCSI_DATA_CDB(vd_scsi)));
54082f5224aeSachartre 	}
54092f5224aeSachartre 
54102f5224aeSachartre 	/* default returned value */
54112f5224aeSachartre 	rv = EIO;
54122f5224aeSachartre 
54132f5224aeSachartre 	switch (vd_scsi->cmd_status) {
54142f5224aeSachartre 
54152f5224aeSachartre 	case STATUS_CHECK:
54162f5224aeSachartre 	case STATUS_TERMINATED:
54172f5224aeSachartre 		if (log_error)
54182f5224aeSachartre 			cmn_err(CE_CONT, "\tCheck Condition Error\n");
54192f5224aeSachartre 
54202f5224aeSachartre 		/* check sense buffer */
54212f5224aeSachartre 		if (vd_scsi->sense_len == 0 ||
54222f5224aeSachartre 		    vd_scsi->sense_status != STATUS_GOOD) {
54232f5224aeSachartre 			if (log_error)
54242f5224aeSachartre 				cmn_err(CE_CONT, "\tNo Sense Data Available\n");
54252f5224aeSachartre 			break;
54262f5224aeSachartre 		}
54272f5224aeSachartre 
54282f5224aeSachartre 		sense = VD_SCSI_DATA_SENSE(vd_scsi);
54292f5224aeSachartre 
54302f5224aeSachartre 		if (log_error) {
54312f5224aeSachartre 			cmn_err(CE_CONT, "\tSense Key:  0x%x\n"
54322f5224aeSachartre 			    "\tASC: 0x%x, ASCQ: 0x%x\n",
54332f5224aeSachartre 			    scsi_sense_key((uint8_t *)sense),
54342f5224aeSachartre 			    scsi_sense_asc((uint8_t *)sense),
54352f5224aeSachartre 			    scsi_sense_ascq((uint8_t *)sense));
54362f5224aeSachartre 		}
54372f5224aeSachartre 
54382f5224aeSachartre 		if (scsi_sense_key((uint8_t *)sense) == KEY_ILLEGAL_REQUEST)
54392f5224aeSachartre 			rv = ENOTSUP;
54402f5224aeSachartre 		break;
54412f5224aeSachartre 
54422f5224aeSachartre 	case STATUS_BUSY:
54432f5224aeSachartre 		if (log_error)
54442f5224aeSachartre 			cmn_err(CE_NOTE, "\tDevice Busy\n");
54452f5224aeSachartre 		break;
54462f5224aeSachartre 
54472f5224aeSachartre 	case STATUS_RESERVATION_CONFLICT:
54482f5224aeSachartre 		/*
54492f5224aeSachartre 		 * If the command was PERSISTENT_RESERVATION_[IN|OUT] then
54502f5224aeSachartre 		 * reservation conflict could be due to various reasons like
54512f5224aeSachartre 		 * incorrect keys, not registered or not reserved etc. So,
54522f5224aeSachartre 		 * we should not panic in that case.
54532f5224aeSachartre 		 */
54542f5224aeSachartre 		cdb = VD_SCSI_DATA_CDB(vd_scsi);
54552f5224aeSachartre 		if (vdc->failfast_interval != 0 &&
54562f5224aeSachartre 		    cdb->scc_cmd != SCMD_PERSISTENT_RESERVE_IN &&
54572f5224aeSachartre 		    cdb->scc_cmd != SCMD_PERSISTENT_RESERVE_OUT) {
54582f5224aeSachartre 			/* failfast is enabled so we have to panic */
54592f5224aeSachartre 			(void) snprintf(panic_str, sizeof (panic_str),
54602f5224aeSachartre 			    VDC_RESV_CONFLICT_FMT_STR "%s",
54612f5224aeSachartre 			    ddi_pathname(vdc->dip, path_str));
54622f5224aeSachartre 			panic(panic_str);
54632f5224aeSachartre 		}
54642f5224aeSachartre 		if (log_error)
54652f5224aeSachartre 			cmn_err(CE_NOTE, "\tReservation Conflict\n");
54662f5224aeSachartre 		rv = EACCES;
54672f5224aeSachartre 		break;
54682f5224aeSachartre 
54692f5224aeSachartre 	case STATUS_QFULL:
54702f5224aeSachartre 		if (log_error)
54712f5224aeSachartre 			cmn_err(CE_NOTE, "\tQueue Full\n");
54722f5224aeSachartre 		break;
54732f5224aeSachartre 
54742f5224aeSachartre 	case STATUS_MET:
54752f5224aeSachartre 	case STATUS_INTERMEDIATE:
54762f5224aeSachartre 	case STATUS_SCSI2:
54772f5224aeSachartre 	case STATUS_INTERMEDIATE_MET:
54782f5224aeSachartre 	case STATUS_ACA_ACTIVE:
54792f5224aeSachartre 		if (log_error)
54802f5224aeSachartre 			cmn_err(CE_CONT,
54812f5224aeSachartre 			    "\tUnexpected SCSI status received: 0x%x\n",
54822f5224aeSachartre 			    vd_scsi->cmd_status);
54832f5224aeSachartre 		break;
54842f5224aeSachartre 
54852f5224aeSachartre 	default:
54862f5224aeSachartre 		if (log_error)
54872f5224aeSachartre 			cmn_err(CE_CONT,
54882f5224aeSachartre 			    "\tInvalid SCSI status received: 0x%x\n",
54892f5224aeSachartre 			    vd_scsi->cmd_status);
54902f5224aeSachartre 		break;
54912f5224aeSachartre 	}
54922f5224aeSachartre 
54932f5224aeSachartre 	return (rv);
54942f5224aeSachartre }
54952f5224aeSachartre 
54962f5224aeSachartre /*
54972f5224aeSachartre  * Implemented the USCSICMD uscsi(7I) ioctl. This ioctl is converted to
54982f5224aeSachartre  * a VD_OP_SCSICMD operation which is sent to the vdisk server. If a SCSI
54992f5224aeSachartre  * reset is requested (i.e. a flag USCSI_RESET* is set) then the ioctl is
55002f5224aeSachartre  * converted to a VD_OP_RESET operation.
55012f5224aeSachartre  */
55022f5224aeSachartre static int
55032f5224aeSachartre vdc_uscsi_cmd(vdc_t *vdc, caddr_t arg, int mode)
55042f5224aeSachartre {
55052f5224aeSachartre 	struct uscsi_cmd 	uscsi;
55062f5224aeSachartre 	struct uscsi_cmd32	uscsi32;
55072f5224aeSachartre 	vd_scsi_t 		*vd_scsi;
55082f5224aeSachartre 	int 			vd_scsi_len;
55092f5224aeSachartre 	union scsi_cdb		*cdb;
55102f5224aeSachartre 	struct scsi_extended_sense *sense;
55112f5224aeSachartre 	char 			*datain, *dataout;
55122f5224aeSachartre 	size_t			cdb_len, datain_len, dataout_len, sense_len;
55132f5224aeSachartre 	int 			rv;
55142f5224aeSachartre 
55152f5224aeSachartre 	if (ddi_model_convert_from(mode & FMODELS) == DDI_MODEL_ILP32) {
55162f5224aeSachartre 		if (ddi_copyin(arg, &uscsi32, sizeof (struct uscsi_cmd32),
55172f5224aeSachartre 		    mode) != 0)
55182f5224aeSachartre 			return (EFAULT);
55192f5224aeSachartre 		uscsi_cmd32touscsi_cmd((&uscsi32), (&uscsi));
55202f5224aeSachartre 	} else {
55212f5224aeSachartre 		if (ddi_copyin(arg, &uscsi, sizeof (struct uscsi_cmd),
55222f5224aeSachartre 		    mode) != 0)
55232f5224aeSachartre 			return (EFAULT);
55242f5224aeSachartre 	}
55252f5224aeSachartre 
55262f5224aeSachartre 	/* a uscsi reset is converted to a VD_OP_RESET operation */
55272f5224aeSachartre 	if (uscsi.uscsi_flags & (USCSI_RESET | USCSI_RESET_LUN |
55282f5224aeSachartre 	    USCSI_RESET_ALL)) {
55292f5224aeSachartre 		rv = vdc_do_sync_op(vdc, VD_OP_RESET, NULL, 0, 0, 0, CB_SYNC,
55302f5224aeSachartre 		    (void *)(uint64_t)mode, VIO_both_dir, B_TRUE);
55312f5224aeSachartre 		return (rv);
55322f5224aeSachartre 	}
55332f5224aeSachartre 
55342f5224aeSachartre 	/* cdb buffer length */
55352f5224aeSachartre 	cdb_len = uscsi.uscsi_cdblen;
55362f5224aeSachartre 
55372f5224aeSachartre 	/* data in and out buffers length */
55382f5224aeSachartre 	if (uscsi.uscsi_flags & USCSI_READ) {
55392f5224aeSachartre 		datain_len = uscsi.uscsi_buflen;
55402f5224aeSachartre 		dataout_len = 0;
55412f5224aeSachartre 	} else {
55422f5224aeSachartre 		datain_len = 0;
55432f5224aeSachartre 		dataout_len = uscsi.uscsi_buflen;
55442f5224aeSachartre 	}
55452f5224aeSachartre 
55462f5224aeSachartre 	/* sense buffer length */
55472f5224aeSachartre 	if (uscsi.uscsi_flags & USCSI_RQENABLE)
55482f5224aeSachartre 		sense_len = uscsi.uscsi_rqlen;
55492f5224aeSachartre 	else
55502f5224aeSachartre 		sense_len = 0;
55512f5224aeSachartre 
55522f5224aeSachartre 	/* allocate buffer for the VD_SCSICMD_OP operation */
55532f5224aeSachartre 	vd_scsi = vdc_scsi_alloc(cdb_len, sense_len, datain_len, dataout_len,
55542f5224aeSachartre 	    &vd_scsi_len);
55552f5224aeSachartre 
55562f5224aeSachartre 	/*
55572f5224aeSachartre 	 * The documentation of USCSI_ISOLATE and USCSI_DIAGNOSE is very vague,
55582f5224aeSachartre 	 * but basically they prevent a SCSI command from being retried in case
55592f5224aeSachartre 	 * of an error.
55602f5224aeSachartre 	 */
55612f5224aeSachartre 	if ((uscsi.uscsi_flags & USCSI_ISOLATE) ||
55622f5224aeSachartre 	    (uscsi.uscsi_flags & USCSI_DIAGNOSE))
55632f5224aeSachartre 		vd_scsi->options |= VD_SCSI_OPT_NORETRY;
55642f5224aeSachartre 
55652f5224aeSachartre 	/* set task attribute */
55662f5224aeSachartre 	if (uscsi.uscsi_flags & USCSI_NOTAG) {
55672f5224aeSachartre 		vd_scsi->task_attribute = 0;
55682f5224aeSachartre 	} else {
55692f5224aeSachartre 		if (uscsi.uscsi_flags & USCSI_HEAD)
55702f5224aeSachartre 			vd_scsi->task_attribute = VD_SCSI_TASK_ACA;
55712f5224aeSachartre 		else if (uscsi.uscsi_flags & USCSI_HTAG)
55722f5224aeSachartre 			vd_scsi->task_attribute = VD_SCSI_TASK_HQUEUE;
55732f5224aeSachartre 		else if (uscsi.uscsi_flags & USCSI_OTAG)
55742f5224aeSachartre 			vd_scsi->task_attribute = VD_SCSI_TASK_ORDERED;
55752f5224aeSachartre 		else
55762f5224aeSachartre 			vd_scsi->task_attribute = 0;
55772f5224aeSachartre 	}
55782f5224aeSachartre 
55792f5224aeSachartre 	/* set timeout */
55802f5224aeSachartre 	vd_scsi->timeout = uscsi.uscsi_timeout;
55812f5224aeSachartre 
55822f5224aeSachartre 	/* copy-in cdb data */
55832f5224aeSachartre 	cdb = VD_SCSI_DATA_CDB(vd_scsi);
55842f5224aeSachartre 	if (ddi_copyin(uscsi.uscsi_cdb, cdb, cdb_len, mode) != 0) {
55852f5224aeSachartre 		rv = EFAULT;
55862f5224aeSachartre 		goto done;
55872f5224aeSachartre 	}
55882f5224aeSachartre 
55892f5224aeSachartre 	/* keep a pointer to the sense buffer */
55902f5224aeSachartre 	sense = VD_SCSI_DATA_SENSE(vd_scsi);
55912f5224aeSachartre 
55922f5224aeSachartre 	/* keep a pointer to the data-in buffer */
55932f5224aeSachartre 	datain = (char *)VD_SCSI_DATA_IN(vd_scsi);
55942f5224aeSachartre 
55952f5224aeSachartre 	/* copy-in request data to the data-out buffer */
55962f5224aeSachartre 	dataout = (char *)VD_SCSI_DATA_OUT(vd_scsi);
55972f5224aeSachartre 	if (!(uscsi.uscsi_flags & USCSI_READ)) {
55982f5224aeSachartre 		if (ddi_copyin(uscsi.uscsi_bufaddr, dataout, dataout_len,
55992f5224aeSachartre 		    mode)) {
56002f5224aeSachartre 			rv = EFAULT;
56012f5224aeSachartre 			goto done;
56022f5224aeSachartre 		}
56032f5224aeSachartre 	}
56042f5224aeSachartre 
56052f5224aeSachartre 	/* submit the request */
56062f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SCSICMD, (caddr_t)vd_scsi, vd_scsi_len,
56072f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)mode, VIO_both_dir, B_FALSE);
56082f5224aeSachartre 
56092f5224aeSachartre 	if (rv != 0)
56102f5224aeSachartre 		goto done;
56112f5224aeSachartre 
56122f5224aeSachartre 	/* update scsi status */
56132f5224aeSachartre 	uscsi.uscsi_status = vd_scsi->cmd_status;
56142f5224aeSachartre 
56152f5224aeSachartre 	/* update sense data */
56162f5224aeSachartre 	if ((uscsi.uscsi_flags & USCSI_RQENABLE) &&
56172f5224aeSachartre 	    (uscsi.uscsi_status == STATUS_CHECK ||
56182f5224aeSachartre 	    uscsi.uscsi_status == STATUS_TERMINATED)) {
56192f5224aeSachartre 
56202f5224aeSachartre 		uscsi.uscsi_rqstatus = vd_scsi->sense_status;
56212f5224aeSachartre 
56222f5224aeSachartre 		if (uscsi.uscsi_rqstatus == STATUS_GOOD) {
56232f5224aeSachartre 			uscsi.uscsi_rqresid = uscsi.uscsi_rqlen -
56242f5224aeSachartre 			    vd_scsi->sense_len;
56252f5224aeSachartre 			if (ddi_copyout(sense, uscsi.uscsi_rqbuf,
56262f5224aeSachartre 			    vd_scsi->sense_len, mode) != 0) {
56272f5224aeSachartre 				rv = EFAULT;
56282f5224aeSachartre 				goto done;
56292f5224aeSachartre 			}
56302f5224aeSachartre 		}
56312f5224aeSachartre 	}
56322f5224aeSachartre 
56332f5224aeSachartre 	/* update request data */
56342f5224aeSachartre 	if (uscsi.uscsi_status == STATUS_GOOD) {
56352f5224aeSachartre 		if (uscsi.uscsi_flags & USCSI_READ) {
56362f5224aeSachartre 			uscsi.uscsi_resid = uscsi.uscsi_buflen -
56372f5224aeSachartre 			    vd_scsi->datain_len;
56382f5224aeSachartre 			if (ddi_copyout(datain, uscsi.uscsi_bufaddr,
56392f5224aeSachartre 			    vd_scsi->datain_len, mode) != 0) {
56402f5224aeSachartre 				rv = EFAULT;
56412f5224aeSachartre 				goto done;
56422f5224aeSachartre 			}
56432f5224aeSachartre 		} else {
56442f5224aeSachartre 			uscsi.uscsi_resid = uscsi.uscsi_buflen -
56452f5224aeSachartre 			    vd_scsi->dataout_len;
56462f5224aeSachartre 		}
56472f5224aeSachartre 	}
56482f5224aeSachartre 
56492f5224aeSachartre 	/* copy-out result */
56502f5224aeSachartre 	if (ddi_model_convert_from(mode & FMODELS) == DDI_MODEL_ILP32) {
56512f5224aeSachartre 		uscsi_cmdtouscsi_cmd32((&uscsi), (&uscsi32));
56522f5224aeSachartre 		if (ddi_copyout(&uscsi32, arg, sizeof (struct uscsi_cmd32),
56532f5224aeSachartre 		    mode) != 0) {
56542f5224aeSachartre 			rv = EFAULT;
56552f5224aeSachartre 			goto done;
56562f5224aeSachartre 		}
56572f5224aeSachartre 	} else {
56582f5224aeSachartre 		if (ddi_copyout(&uscsi, arg, sizeof (struct uscsi_cmd),
56592f5224aeSachartre 		    mode) != 0) {
56602f5224aeSachartre 			rv = EFAULT;
56612f5224aeSachartre 			goto done;
56622f5224aeSachartre 		}
56632f5224aeSachartre 	}
56642f5224aeSachartre 
56652f5224aeSachartre 	/* get the return code from the SCSI command status */
56662f5224aeSachartre 	rv = vdc_scsi_status(vdc, vd_scsi,
56672f5224aeSachartre 	    !(uscsi.uscsi_flags & USCSI_SILENT));
56682f5224aeSachartre 
56692f5224aeSachartre done:
56702f5224aeSachartre 	kmem_free(vd_scsi, vd_scsi_len);
56712f5224aeSachartre 	return (rv);
56722f5224aeSachartre }
56732f5224aeSachartre 
56742f5224aeSachartre /*
56752f5224aeSachartre  * Create a VD_OP_SCSICMD buffer for a SCSI PERSISTENT IN command.
56762f5224aeSachartre  *
56772f5224aeSachartre  * Arguments:
56782f5224aeSachartre  *	cmd		- SCSI PERSISTENT IN command
56792f5224aeSachartre  *	len		- length of the SCSI input buffer
56802f5224aeSachartre  *	vd_scsi_len	- return the length of the allocated buffer
56812f5224aeSachartre  *
56822f5224aeSachartre  * Returned Value:
56832f5224aeSachartre  *	a pointer to the allocated VD_OP_SCSICMD buffer.
56842f5224aeSachartre  */
56852f5224aeSachartre static vd_scsi_t *
56862f5224aeSachartre vdc_scsi_alloc_persistent_in(uchar_t cmd, int len, int *vd_scsi_len)
56872f5224aeSachartre {
56882f5224aeSachartre 	int cdb_len, sense_len, datain_len, dataout_len;
56892f5224aeSachartre 	vd_scsi_t *vd_scsi;
56902f5224aeSachartre 	union scsi_cdb *cdb;
56912f5224aeSachartre 
56922f5224aeSachartre 	cdb_len = CDB_GROUP1;
56932f5224aeSachartre 	sense_len = sizeof (struct scsi_extended_sense);
56942f5224aeSachartre 	datain_len = len;
56952f5224aeSachartre 	dataout_len = 0;
56962f5224aeSachartre 
56972f5224aeSachartre 	vd_scsi = vdc_scsi_alloc(cdb_len, sense_len, datain_len, dataout_len,
56982f5224aeSachartre 	    vd_scsi_len);
56992f5224aeSachartre 
57002f5224aeSachartre 	cdb = VD_SCSI_DATA_CDB(vd_scsi);
57012f5224aeSachartre 
57022f5224aeSachartre 	/* set cdb */
57032f5224aeSachartre 	cdb->scc_cmd = SCMD_PERSISTENT_RESERVE_IN;
57042f5224aeSachartre 	cdb->cdb_opaque[1] = cmd;
57052f5224aeSachartre 	FORMG1COUNT(cdb, datain_len);
57062f5224aeSachartre 
57072f5224aeSachartre 	vd_scsi->timeout = vdc_scsi_timeout;
57082f5224aeSachartre 
57092f5224aeSachartre 	return (vd_scsi);
57102f5224aeSachartre }
57112f5224aeSachartre 
57122f5224aeSachartre /*
57132f5224aeSachartre  * Create a VD_OP_SCSICMD buffer for a SCSI PERSISTENT OUT command.
57142f5224aeSachartre  *
57152f5224aeSachartre  * Arguments:
57162f5224aeSachartre  *	cmd		- SCSI PERSISTENT OUT command
57172f5224aeSachartre  *	len		- length of the SCSI output buffer
57182f5224aeSachartre  *	vd_scsi_len	- return the length of the allocated buffer
57192f5224aeSachartre  *
57202f5224aeSachartre  * Returned Code:
57212f5224aeSachartre  *	a pointer to the allocated VD_OP_SCSICMD buffer.
57222f5224aeSachartre  */
57232f5224aeSachartre static vd_scsi_t *
57242f5224aeSachartre vdc_scsi_alloc_persistent_out(uchar_t cmd, int len, int *vd_scsi_len)
57252f5224aeSachartre {
57262f5224aeSachartre 	int cdb_len, sense_len, datain_len, dataout_len;
57272f5224aeSachartre 	vd_scsi_t *vd_scsi;
57282f5224aeSachartre 	union scsi_cdb *cdb;
57292f5224aeSachartre 
57302f5224aeSachartre 	cdb_len = CDB_GROUP1;
57312f5224aeSachartre 	sense_len = sizeof (struct scsi_extended_sense);
57322f5224aeSachartre 	datain_len = 0;
57332f5224aeSachartre 	dataout_len = len;
57342f5224aeSachartre 
57352f5224aeSachartre 	vd_scsi = vdc_scsi_alloc(cdb_len, sense_len, datain_len, dataout_len,
57362f5224aeSachartre 	    vd_scsi_len);
57372f5224aeSachartre 
57382f5224aeSachartre 	cdb = VD_SCSI_DATA_CDB(vd_scsi);
57392f5224aeSachartre 
57402f5224aeSachartre 	/* set cdb */
57412f5224aeSachartre 	cdb->scc_cmd = SCMD_PERSISTENT_RESERVE_OUT;
57422f5224aeSachartre 	cdb->cdb_opaque[1] = cmd;
57432f5224aeSachartre 	FORMG1COUNT(cdb, dataout_len);
57442f5224aeSachartre 
57452f5224aeSachartre 	vd_scsi->timeout = vdc_scsi_timeout;
57462f5224aeSachartre 
57472f5224aeSachartre 	return (vd_scsi);
57482f5224aeSachartre }
57492f5224aeSachartre 
57502f5224aeSachartre /*
57512f5224aeSachartre  * Implement the MHIOCGRP_INKEYS mhd(7i) ioctl. The ioctl is converted
57522f5224aeSachartre  * to a SCSI PERSISTENT IN READ KEYS command which is sent to the vdisk
57532f5224aeSachartre  * server with a VD_OP_SCSICMD operation.
57542f5224aeSachartre  */
57552f5224aeSachartre static int
57562f5224aeSachartre vdc_mhd_inkeys(vdc_t *vdc, caddr_t arg, int mode)
57572f5224aeSachartre {
57582f5224aeSachartre 	vd_scsi_t *vd_scsi;
57592f5224aeSachartre 	mhioc_inkeys_t inkeys;
57602f5224aeSachartre 	mhioc_key_list_t klist;
57612f5224aeSachartre 	struct mhioc_inkeys32 inkeys32;
57622f5224aeSachartre 	struct mhioc_key_list32 klist32;
57632f5224aeSachartre 	sd_prin_readkeys_t *scsi_keys;
57642f5224aeSachartre 	void *user_keys;
57652f5224aeSachartre 	int vd_scsi_len;
57662f5224aeSachartre 	int listsize, listlen, rv;
57672f5224aeSachartre 
57682f5224aeSachartre 	/* copyin arguments */
57692f5224aeSachartre 	if (ddi_model_convert_from(mode & FMODELS) == DDI_MODEL_ILP32) {
57702f5224aeSachartre 		rv = ddi_copyin(arg, &inkeys32, sizeof (inkeys32), mode);
57712f5224aeSachartre 		if (rv != 0)
57722f5224aeSachartre 			return (EFAULT);
57732f5224aeSachartre 
57742f5224aeSachartre 		rv = ddi_copyin((caddr_t)(uintptr_t)inkeys32.li, &klist32,
57752f5224aeSachartre 		    sizeof (klist32), mode);
57762f5224aeSachartre 		if (rv != 0)
57772f5224aeSachartre 			return (EFAULT);
57782f5224aeSachartre 
57792f5224aeSachartre 		listsize = klist32.listsize;
57802f5224aeSachartre 	} else {
57812f5224aeSachartre 		rv = ddi_copyin(arg, &inkeys, sizeof (inkeys), mode);
57822f5224aeSachartre 		if (rv != 0)
57832f5224aeSachartre 			return (EFAULT);
57842f5224aeSachartre 
57852f5224aeSachartre 		rv = ddi_copyin(inkeys.li, &klist, sizeof (klist), mode);
57862f5224aeSachartre 		if (rv != 0)
57872f5224aeSachartre 			return (EFAULT);
57882f5224aeSachartre 
57892f5224aeSachartre 		listsize = klist.listsize;
57902f5224aeSachartre 	}
57912f5224aeSachartre 
57922f5224aeSachartre 	/* build SCSI VD_OP request */
57932f5224aeSachartre 	vd_scsi = vdc_scsi_alloc_persistent_in(SD_READ_KEYS,
57942f5224aeSachartre 	    sizeof (sd_prin_readkeys_t) - sizeof (caddr_t) +
57952f5224aeSachartre 	    (sizeof (mhioc_resv_key_t) * listsize), &vd_scsi_len);
57962f5224aeSachartre 
57972f5224aeSachartre 	scsi_keys = (sd_prin_readkeys_t *)VD_SCSI_DATA_IN(vd_scsi);
57982f5224aeSachartre 
57992f5224aeSachartre 	/* submit the request */
58002f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SCSICMD, (caddr_t)vd_scsi, vd_scsi_len,
58012f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)mode, VIO_both_dir, B_FALSE);
58022f5224aeSachartre 
58032f5224aeSachartre 	if (rv != 0)
58042f5224aeSachartre 		goto done;
58052f5224aeSachartre 
58062f5224aeSachartre 	listlen = scsi_keys->len / MHIOC_RESV_KEY_SIZE;
58072f5224aeSachartre 
58082f5224aeSachartre 	if (ddi_model_convert_from(mode & FMODELS) == DDI_MODEL_ILP32) {
58092f5224aeSachartre 		inkeys32.generation = scsi_keys->generation;
58102f5224aeSachartre 		rv = ddi_copyout(&inkeys32, arg, sizeof (inkeys32), mode);
58112f5224aeSachartre 		if (rv != 0) {
58122f5224aeSachartre 			rv = EFAULT;
58132f5224aeSachartre 			goto done;
58142f5224aeSachartre 		}
58152f5224aeSachartre 
58162f5224aeSachartre 		klist32.listlen = listlen;
58172f5224aeSachartre 		rv = ddi_copyout(&klist32, (caddr_t)(uintptr_t)inkeys32.li,
58182f5224aeSachartre 		    sizeof (klist32), mode);
58192f5224aeSachartre 		if (rv != 0) {
58202f5224aeSachartre 			rv = EFAULT;
58212f5224aeSachartre 			goto done;
58222f5224aeSachartre 		}
58232f5224aeSachartre 
58242f5224aeSachartre 		user_keys = (caddr_t)(uintptr_t)klist32.list;
58252f5224aeSachartre 	} else {
58262f5224aeSachartre 		inkeys.generation = scsi_keys->generation;
58272f5224aeSachartre 		rv = ddi_copyout(&inkeys, arg, sizeof (inkeys), mode);
58282f5224aeSachartre 		if (rv != 0) {
58292f5224aeSachartre 			rv = EFAULT;
58302f5224aeSachartre 			goto done;
58312f5224aeSachartre 		}
58322f5224aeSachartre 
58332f5224aeSachartre 		klist.listlen = listlen;
58342f5224aeSachartre 		rv = ddi_copyout(&klist, inkeys.li, sizeof (klist), mode);
58352f5224aeSachartre 		if (rv != 0) {
58362f5224aeSachartre 			rv = EFAULT;
58372f5224aeSachartre 			goto done;
58382f5224aeSachartre 		}
58392f5224aeSachartre 
58402f5224aeSachartre 		user_keys = klist.list;
58412f5224aeSachartre 	}
58422f5224aeSachartre 
58432f5224aeSachartre 	/* copy out keys */
58442f5224aeSachartre 	if (listlen > 0 && listsize > 0) {
58452f5224aeSachartre 		if (listsize < listlen)
58462f5224aeSachartre 			listlen = listsize;
58472f5224aeSachartre 		rv = ddi_copyout(&scsi_keys->keylist, user_keys,
58482f5224aeSachartre 		    listlen * MHIOC_RESV_KEY_SIZE, mode);
58492f5224aeSachartre 		if (rv != 0)
58502f5224aeSachartre 			rv = EFAULT;
58512f5224aeSachartre 	}
58522f5224aeSachartre 
58532f5224aeSachartre 	if (rv == 0)
58542f5224aeSachartre 		rv = vdc_scsi_status(vdc, vd_scsi, B_FALSE);
58552f5224aeSachartre 
58562f5224aeSachartre done:
58572f5224aeSachartre 	kmem_free(vd_scsi, vd_scsi_len);
58582f5224aeSachartre 
58592f5224aeSachartre 	return (rv);
58602f5224aeSachartre }
58612f5224aeSachartre 
58622f5224aeSachartre /*
58632f5224aeSachartre  * Implement the MHIOCGRP_INRESV mhd(7i) ioctl. The ioctl is converted
58642f5224aeSachartre  * to a SCSI PERSISTENT IN READ RESERVATION command which is sent to
58652f5224aeSachartre  * the vdisk server with a VD_OP_SCSICMD operation.
58662f5224aeSachartre  */
58672f5224aeSachartre static int
58682f5224aeSachartre vdc_mhd_inresv(vdc_t *vdc, caddr_t arg, int mode)
58692f5224aeSachartre {
58702f5224aeSachartre 	vd_scsi_t *vd_scsi;
58712f5224aeSachartre 	mhioc_inresvs_t inresv;
58722f5224aeSachartre 	mhioc_resv_desc_list_t rlist;
58732f5224aeSachartre 	struct mhioc_inresvs32 inresv32;
58742f5224aeSachartre 	struct mhioc_resv_desc_list32 rlist32;
58752f5224aeSachartre 	mhioc_resv_desc_t mhd_resv;
58762f5224aeSachartre 	sd_prin_readresv_t *scsi_resv;
58772f5224aeSachartre 	sd_readresv_desc_t *resv;
58782f5224aeSachartre 	mhioc_resv_desc_t *user_resv;
58792f5224aeSachartre 	int vd_scsi_len;
58802f5224aeSachartre 	int listsize, listlen, i, rv;
58812f5224aeSachartre 
58822f5224aeSachartre 	/* copyin arguments */
58832f5224aeSachartre 	if (ddi_model_convert_from(mode & FMODELS) == DDI_MODEL_ILP32) {
58842f5224aeSachartre 		rv = ddi_copyin(arg, &inresv32, sizeof (inresv32), mode);
58852f5224aeSachartre 		if (rv != 0)
58862f5224aeSachartre 			return (EFAULT);
58872f5224aeSachartre 
58882f5224aeSachartre 		rv = ddi_copyin((caddr_t)(uintptr_t)inresv32.li, &rlist32,
58892f5224aeSachartre 		    sizeof (rlist32), mode);
58902f5224aeSachartre 		if (rv != 0)
58912f5224aeSachartre 			return (EFAULT);
58922f5224aeSachartre 
58932f5224aeSachartre 		listsize = rlist32.listsize;
58942f5224aeSachartre 	} else {
58952f5224aeSachartre 		rv = ddi_copyin(arg, &inresv, sizeof (inresv), mode);
58962f5224aeSachartre 		if (rv != 0)
58972f5224aeSachartre 			return (EFAULT);
58982f5224aeSachartre 
58992f5224aeSachartre 		rv = ddi_copyin(inresv.li, &rlist, sizeof (rlist), mode);
59002f5224aeSachartre 		if (rv != 0)
59012f5224aeSachartre 			return (EFAULT);
59022f5224aeSachartre 
59032f5224aeSachartre 		listsize = rlist.listsize;
59042f5224aeSachartre 	}
59052f5224aeSachartre 
59062f5224aeSachartre 	/* build SCSI VD_OP request */
59072f5224aeSachartre 	vd_scsi = vdc_scsi_alloc_persistent_in(SD_READ_RESV,
59082f5224aeSachartre 	    sizeof (sd_prin_readresv_t) - sizeof (caddr_t) +
59092f5224aeSachartre 	    (SCSI3_RESV_DESC_LEN * listsize), &vd_scsi_len);
59102f5224aeSachartre 
59112f5224aeSachartre 	scsi_resv = (sd_prin_readresv_t *)VD_SCSI_DATA_IN(vd_scsi);
59122f5224aeSachartre 
59132f5224aeSachartre 	/* submit the request */
59142f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SCSICMD, (caddr_t)vd_scsi, vd_scsi_len,
59152f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)mode, VIO_both_dir, B_FALSE);
59162f5224aeSachartre 
59172f5224aeSachartre 	if (rv != 0)
59182f5224aeSachartre 		goto done;
59192f5224aeSachartre 
59202f5224aeSachartre 	listlen = scsi_resv->len / SCSI3_RESV_DESC_LEN;
59212f5224aeSachartre 
59222f5224aeSachartre 	if (ddi_model_convert_from(mode & FMODELS) == DDI_MODEL_ILP32) {
59232f5224aeSachartre 		inresv32.generation = scsi_resv->generation;
59242f5224aeSachartre 		rv = ddi_copyout(&inresv32, arg, sizeof (inresv32), mode);
59252f5224aeSachartre 		if (rv != 0) {
59262f5224aeSachartre 			rv = EFAULT;
59272f5224aeSachartre 			goto done;
59282f5224aeSachartre 		}
59292f5224aeSachartre 
59302f5224aeSachartre 		rlist32.listlen = listlen;
59312f5224aeSachartre 		rv = ddi_copyout(&rlist32, (caddr_t)(uintptr_t)inresv32.li,
59322f5224aeSachartre 		    sizeof (rlist32), mode);
59332f5224aeSachartre 		if (rv != 0) {
59342f5224aeSachartre 			rv = EFAULT;
59352f5224aeSachartre 			goto done;
59362f5224aeSachartre 		}
59372f5224aeSachartre 
59382f5224aeSachartre 		user_resv = (mhioc_resv_desc_t *)(uintptr_t)rlist32.list;
59392f5224aeSachartre 	} else {
59402f5224aeSachartre 		inresv.generation = scsi_resv->generation;
59412f5224aeSachartre 		rv = ddi_copyout(&inresv, arg, sizeof (inresv), mode);
59422f5224aeSachartre 		if (rv != 0) {
59432f5224aeSachartre 			rv = EFAULT;
59442f5224aeSachartre 			goto done;
59452f5224aeSachartre 		}
59462f5224aeSachartre 
59472f5224aeSachartre 		rlist.listlen = listlen;
59482f5224aeSachartre 		rv = ddi_copyout(&rlist, inresv.li, sizeof (rlist), mode);
59492f5224aeSachartre 		if (rv != 0) {
59502f5224aeSachartre 			rv = EFAULT;
59512f5224aeSachartre 			goto done;
59522f5224aeSachartre 		}
59532f5224aeSachartre 
59542f5224aeSachartre 		user_resv = rlist.list;
59552f5224aeSachartre 	}
59562f5224aeSachartre 
59572f5224aeSachartre 	/* copy out reservations */
59582f5224aeSachartre 	if (listsize > 0 && listlen > 0) {
59592f5224aeSachartre 		if (listsize < listlen)
59602f5224aeSachartre 			listlen = listsize;
59612f5224aeSachartre 		resv = (sd_readresv_desc_t *)&scsi_resv->readresv_desc;
59622f5224aeSachartre 
59632f5224aeSachartre 		for (i = 0; i < listlen; i++) {
59642f5224aeSachartre 			mhd_resv.type = resv->type;
59652f5224aeSachartre 			mhd_resv.scope = resv->scope;
59662f5224aeSachartre 			mhd_resv.scope_specific_addr =
59672f5224aeSachartre 			    BE_32(resv->scope_specific_addr);
59682f5224aeSachartre 			bcopy(&resv->resvkey, &mhd_resv.key,
59692f5224aeSachartre 			    MHIOC_RESV_KEY_SIZE);
59702f5224aeSachartre 
59712f5224aeSachartre 			rv = ddi_copyout(&mhd_resv, user_resv,
59722f5224aeSachartre 			    sizeof (mhd_resv), mode);
59732f5224aeSachartre 			if (rv != 0) {
59742f5224aeSachartre 				rv = EFAULT;
59752f5224aeSachartre 				goto done;
59762f5224aeSachartre 			}
59772f5224aeSachartre 			resv++;
59782f5224aeSachartre 			user_resv++;
59792f5224aeSachartre 		}
59802f5224aeSachartre 	}
59812f5224aeSachartre 
59822f5224aeSachartre 	if (rv == 0)
59832f5224aeSachartre 		rv = vdc_scsi_status(vdc, vd_scsi, B_FALSE);
59842f5224aeSachartre 
59852f5224aeSachartre done:
59862f5224aeSachartre 	kmem_free(vd_scsi, vd_scsi_len);
59872f5224aeSachartre 	return (rv);
59882f5224aeSachartre }
59892f5224aeSachartre 
59902f5224aeSachartre /*
59912f5224aeSachartre  * Implement the MHIOCGRP_REGISTER mhd(7i) ioctl. The ioctl is converted
59922f5224aeSachartre  * to a SCSI PERSISTENT OUT REGISTER command which is sent to the vdisk
59932f5224aeSachartre  * server with a VD_OP_SCSICMD operation.
59942f5224aeSachartre  */
59952f5224aeSachartre static int
59962f5224aeSachartre vdc_mhd_register(vdc_t *vdc, caddr_t arg, int mode)
59972f5224aeSachartre {
59982f5224aeSachartre 	vd_scsi_t *vd_scsi;
59992f5224aeSachartre 	sd_prout_t *scsi_prout;
60002f5224aeSachartre 	mhioc_register_t mhd_reg;
60012f5224aeSachartre 	int vd_scsi_len, rv;
60022f5224aeSachartre 
60032f5224aeSachartre 	/* copyin arguments */
60042f5224aeSachartre 	rv = ddi_copyin(arg, &mhd_reg, sizeof (mhd_reg), mode);
60052f5224aeSachartre 	if (rv != 0)
60062f5224aeSachartre 		return (EFAULT);
60072f5224aeSachartre 
60082f5224aeSachartre 	/* build SCSI VD_OP request */
60092f5224aeSachartre 	vd_scsi = vdc_scsi_alloc_persistent_out(SD_SCSI3_REGISTER,
60102f5224aeSachartre 	    sizeof (sd_prout_t), &vd_scsi_len);
60112f5224aeSachartre 
60122f5224aeSachartre 	/* set parameters */
60132f5224aeSachartre 	scsi_prout = (sd_prout_t *)VD_SCSI_DATA_OUT(vd_scsi);
60142f5224aeSachartre 	bcopy(mhd_reg.oldkey.key, scsi_prout->res_key, MHIOC_RESV_KEY_SIZE);
60152f5224aeSachartre 	bcopy(mhd_reg.newkey.key, scsi_prout->service_key, MHIOC_RESV_KEY_SIZE);
60162f5224aeSachartre 	scsi_prout->aptpl = (uchar_t)mhd_reg.aptpl;
60172f5224aeSachartre 
60182f5224aeSachartre 	/* submit the request */
60192f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SCSICMD, (caddr_t)vd_scsi, vd_scsi_len,
60202f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)mode, VIO_both_dir, B_FALSE);
60212f5224aeSachartre 
60222f5224aeSachartre 	if (rv == 0)
60232f5224aeSachartre 		rv = vdc_scsi_status(vdc, vd_scsi, B_FALSE);
60242f5224aeSachartre 
60252f5224aeSachartre 	kmem_free(vd_scsi, vd_scsi_len);
60262f5224aeSachartre 	return (rv);
60272f5224aeSachartre }
60282f5224aeSachartre 
60292f5224aeSachartre /*
60302f5224aeSachartre  * Implement the MHIOCGRP_RESERVE mhd(7i) ioctl. The ioctl is converted
60312f5224aeSachartre  * to a SCSI PERSISTENT OUT RESERVE command which is sent to the vdisk
60322f5224aeSachartre  * server with a VD_OP_SCSICMD operation.
60332f5224aeSachartre  */
60342f5224aeSachartre static int
60352f5224aeSachartre vdc_mhd_reserve(vdc_t *vdc, caddr_t arg, int mode)
60362f5224aeSachartre {
60372f5224aeSachartre 	union scsi_cdb *cdb;
60382f5224aeSachartre 	vd_scsi_t *vd_scsi;
60392f5224aeSachartre 	sd_prout_t *scsi_prout;
60402f5224aeSachartre 	mhioc_resv_desc_t mhd_resv;
60412f5224aeSachartre 	int vd_scsi_len, rv;
60422f5224aeSachartre 
60432f5224aeSachartre 	/* copyin arguments */
60442f5224aeSachartre 	rv = ddi_copyin(arg, &mhd_resv, sizeof (mhd_resv), mode);
60452f5224aeSachartre 	if (rv != 0)
60462f5224aeSachartre 		return (EFAULT);
60472f5224aeSachartre 
60482f5224aeSachartre 	/* build SCSI VD_OP request */
60492f5224aeSachartre 	vd_scsi = vdc_scsi_alloc_persistent_out(SD_SCSI3_RESERVE,
60502f5224aeSachartre 	    sizeof (sd_prout_t), &vd_scsi_len);
60512f5224aeSachartre 
60522f5224aeSachartre 	/* set parameters */
60532f5224aeSachartre 	cdb = VD_SCSI_DATA_CDB(vd_scsi);
60542f5224aeSachartre 	scsi_prout = (sd_prout_t *)VD_SCSI_DATA_OUT(vd_scsi);
60552f5224aeSachartre 	bcopy(mhd_resv.key.key, scsi_prout->res_key, MHIOC_RESV_KEY_SIZE);
60562f5224aeSachartre 	scsi_prout->scope_address = mhd_resv.scope_specific_addr;
60572f5224aeSachartre 	cdb->cdb_opaque[2] = mhd_resv.type;
60582f5224aeSachartre 
60592f5224aeSachartre 	/* submit the request */
60602f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SCSICMD, (caddr_t)vd_scsi, vd_scsi_len,
60612f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)mode, VIO_both_dir, B_FALSE);
60622f5224aeSachartre 
60632f5224aeSachartre 	if (rv == 0)
60642f5224aeSachartre 		rv = vdc_scsi_status(vdc, vd_scsi, B_FALSE);
60652f5224aeSachartre 
60662f5224aeSachartre 	kmem_free(vd_scsi, vd_scsi_len);
60672f5224aeSachartre 	return (rv);
60682f5224aeSachartre }
60692f5224aeSachartre 
60702f5224aeSachartre /*
60712f5224aeSachartre  * Implement the MHIOCGRP_PREEMPTANDABORT mhd(7i) ioctl. The ioctl is
60722f5224aeSachartre  * converted to a SCSI PERSISTENT OUT PREEMPT AND ABORT command which
60732f5224aeSachartre  * is sent to the vdisk server with a VD_OP_SCSICMD operation.
60742f5224aeSachartre  */
60752f5224aeSachartre static int
60762f5224aeSachartre vdc_mhd_preemptabort(vdc_t *vdc, caddr_t arg, int mode)
60772f5224aeSachartre {
60782f5224aeSachartre 	union scsi_cdb *cdb;
60792f5224aeSachartre 	vd_scsi_t *vd_scsi;
60802f5224aeSachartre 	sd_prout_t *scsi_prout;
60812f5224aeSachartre 	mhioc_preemptandabort_t mhd_preempt;
60822f5224aeSachartre 	int vd_scsi_len, rv;
60832f5224aeSachartre 
60842f5224aeSachartre 	/* copyin arguments */
60852f5224aeSachartre 	rv = ddi_copyin(arg, &mhd_preempt, sizeof (mhd_preempt), mode);
60862f5224aeSachartre 	if (rv != 0)
60872f5224aeSachartre 		return (EFAULT);
60882f5224aeSachartre 
60892f5224aeSachartre 	/* build SCSI VD_OP request */
60902f5224aeSachartre 	vd_scsi = vdc_scsi_alloc_persistent_out(SD_SCSI3_PREEMPTANDABORT,
60912f5224aeSachartre 	    sizeof (sd_prout_t), &vd_scsi_len);
60922f5224aeSachartre 
60932f5224aeSachartre 	/* set parameters */
60942f5224aeSachartre 	vd_scsi->task_attribute = VD_SCSI_TASK_ACA;
60952f5224aeSachartre 	cdb = VD_SCSI_DATA_CDB(vd_scsi);
60962f5224aeSachartre 	scsi_prout = (sd_prout_t *)VD_SCSI_DATA_OUT(vd_scsi);
60972f5224aeSachartre 	bcopy(mhd_preempt.resvdesc.key.key, scsi_prout->res_key,
60982f5224aeSachartre 	    MHIOC_RESV_KEY_SIZE);
60992f5224aeSachartre 	bcopy(mhd_preempt.victim_key.key, scsi_prout->service_key,
61002f5224aeSachartre 	    MHIOC_RESV_KEY_SIZE);
61012f5224aeSachartre 	scsi_prout->scope_address = mhd_preempt.resvdesc.scope_specific_addr;
61022f5224aeSachartre 	cdb->cdb_opaque[2] = mhd_preempt.resvdesc.type;
61032f5224aeSachartre 
61042f5224aeSachartre 	/* submit the request */
61052f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SCSICMD, (caddr_t)vd_scsi, vd_scsi_len,
61062f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)mode, VIO_both_dir, B_FALSE);
61072f5224aeSachartre 
61082f5224aeSachartre 	if (rv == 0)
61092f5224aeSachartre 		rv = vdc_scsi_status(vdc, vd_scsi, B_FALSE);
61102f5224aeSachartre 
61112f5224aeSachartre 	kmem_free(vd_scsi, vd_scsi_len);
61122f5224aeSachartre 	return (rv);
61132f5224aeSachartre }
61142f5224aeSachartre 
61152f5224aeSachartre /*
61162f5224aeSachartre  * Implement the MHIOCGRP_REGISTERANDIGNOREKEY mhd(7i) ioctl. The ioctl
61172f5224aeSachartre  * is converted to a SCSI PERSISTENT OUT REGISTER AND IGNORE EXISTING KEY
61182f5224aeSachartre  * command which is sent to the vdisk server with a VD_OP_SCSICMD operation.
61192f5224aeSachartre  */
61202f5224aeSachartre static int
61212f5224aeSachartre vdc_mhd_registerignore(vdc_t *vdc, caddr_t arg, int mode)
61222f5224aeSachartre {
61232f5224aeSachartre 	vd_scsi_t *vd_scsi;
61242f5224aeSachartre 	sd_prout_t *scsi_prout;
61252f5224aeSachartre 	mhioc_registerandignorekey_t mhd_regi;
61262f5224aeSachartre 	int vd_scsi_len, rv;
61272f5224aeSachartre 
61282f5224aeSachartre 	/* copyin arguments */
61292f5224aeSachartre 	rv = ddi_copyin(arg, &mhd_regi, sizeof (mhd_regi), mode);
61302f5224aeSachartre 	if (rv != 0)
61312f5224aeSachartre 		return (EFAULT);
61322f5224aeSachartre 
61332f5224aeSachartre 	/* build SCSI VD_OP request */
61342f5224aeSachartre 	vd_scsi = vdc_scsi_alloc_persistent_out(SD_SCSI3_REGISTERANDIGNOREKEY,
61352f5224aeSachartre 	    sizeof (sd_prout_t), &vd_scsi_len);
61362f5224aeSachartre 
61372f5224aeSachartre 	/* set parameters */
61382f5224aeSachartre 	scsi_prout = (sd_prout_t *)VD_SCSI_DATA_OUT(vd_scsi);
61392f5224aeSachartre 	bcopy(mhd_regi.newkey.key, scsi_prout->service_key,
61402f5224aeSachartre 	    MHIOC_RESV_KEY_SIZE);
61412f5224aeSachartre 	scsi_prout->aptpl = (uchar_t)mhd_regi.aptpl;
61422f5224aeSachartre 
61432f5224aeSachartre 	/* submit the request */
61442f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SCSICMD, (caddr_t)vd_scsi, vd_scsi_len,
61452f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)mode, VIO_both_dir, B_FALSE);
61462f5224aeSachartre 
61472f5224aeSachartre 	if (rv == 0)
61482f5224aeSachartre 		rv = vdc_scsi_status(vdc, vd_scsi, B_FALSE);
61492f5224aeSachartre 
61502f5224aeSachartre 	kmem_free(vd_scsi, vd_scsi_len);
61512f5224aeSachartre 	return (rv);
61522f5224aeSachartre }
61532f5224aeSachartre 
61542f5224aeSachartre /*
61552f5224aeSachartre  * This function is used by the failfast mechanism to send a SCSI command
61562f5224aeSachartre  * to check for reservation conflict.
61572f5224aeSachartre  */
61582f5224aeSachartre static int
61592f5224aeSachartre vdc_failfast_scsi_cmd(vdc_t *vdc, uchar_t scmd)
61602f5224aeSachartre {
61612f5224aeSachartre 	int cdb_len, sense_len, vd_scsi_len;
61622f5224aeSachartre 	vd_scsi_t *vd_scsi;
61632f5224aeSachartre 	union scsi_cdb *cdb;
61642f5224aeSachartre 	int rv;
61652f5224aeSachartre 
61662f5224aeSachartre 	ASSERT(scmd == SCMD_TEST_UNIT_READY || scmd == SCMD_WRITE_G1);
61672f5224aeSachartre 
61682f5224aeSachartre 	if (scmd == SCMD_WRITE_G1)
61692f5224aeSachartre 		cdb_len = CDB_GROUP1;
61702f5224aeSachartre 	else
61712f5224aeSachartre 		cdb_len = CDB_GROUP0;
61722f5224aeSachartre 
61732f5224aeSachartre 	sense_len = sizeof (struct scsi_extended_sense);
61742f5224aeSachartre 
61752f5224aeSachartre 	vd_scsi = vdc_scsi_alloc(cdb_len, sense_len, 0, 0, &vd_scsi_len);
61762f5224aeSachartre 
61772f5224aeSachartre 	/* set cdb */
61782f5224aeSachartre 	cdb = VD_SCSI_DATA_CDB(vd_scsi);
61792f5224aeSachartre 	cdb->scc_cmd = scmd;
61802f5224aeSachartre 
61812f5224aeSachartre 	vd_scsi->timeout = vdc_scsi_timeout;
61822f5224aeSachartre 
61832f5224aeSachartre 	/*
61842f5224aeSachartre 	 * Submit the request. The last argument has to be B_FALSE so that
61852f5224aeSachartre 	 * vdc_do_sync_op does not loop checking for reservation conflict if
61862f5224aeSachartre 	 * the operation returns an error.
61872f5224aeSachartre 	 */
61882f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SCSICMD, (caddr_t)vd_scsi, vd_scsi_len,
61892f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)FKIOCTL, VIO_both_dir, B_FALSE);
61902f5224aeSachartre 
61912f5224aeSachartre 	if (rv == 0)
61922f5224aeSachartre 		(void) vdc_scsi_status(vdc, vd_scsi, B_FALSE);
61932f5224aeSachartre 
61942f5224aeSachartre 	kmem_free(vd_scsi, vd_scsi_len);
61952f5224aeSachartre 	return (rv);
61962f5224aeSachartre }
61972f5224aeSachartre 
61982f5224aeSachartre /*
61992f5224aeSachartre  * This function is used by the failfast mechanism to check for reservation
62002f5224aeSachartre  * conflict. It sends some SCSI commands which will fail with a reservation
62012f5224aeSachartre  * conflict error if the system does not have access to the disk and this
62022f5224aeSachartre  * will panic the system.
62032f5224aeSachartre  *
62042f5224aeSachartre  * Returned Code:
62052f5224aeSachartre  *	0	- disk is accessible without reservation conflict error
62062f5224aeSachartre  *	!= 0	- unable to check if disk is accessible
62072f5224aeSachartre  */
62082f5224aeSachartre int
62092f5224aeSachartre vdc_failfast_check_resv(vdc_t *vdc)
62102f5224aeSachartre {
62112f5224aeSachartre 	int failure = 0;
62122f5224aeSachartre 
62132f5224aeSachartre 	/*
62142f5224aeSachartre 	 * Send a TEST UNIT READY command. The command will panic
62152f5224aeSachartre 	 * the system if it fails with a reservation conflict.
62162f5224aeSachartre 	 */
62172f5224aeSachartre 	if (vdc_failfast_scsi_cmd(vdc, SCMD_TEST_UNIT_READY) != 0)
62182f5224aeSachartre 		failure++;
62192f5224aeSachartre 
62202f5224aeSachartre 	/*
62212f5224aeSachartre 	 * With SPC-3 compliant devices TEST UNIT READY will succeed on
62222f5224aeSachartre 	 * a reserved device, so we also do a WRITE(10) of zero byte in
62232f5224aeSachartre 	 * order to provoke a Reservation Conflict status on those newer
62242f5224aeSachartre 	 * devices.
62252f5224aeSachartre 	 */
62262f5224aeSachartre 	if (vdc_failfast_scsi_cmd(vdc, SCMD_WRITE_G1) != 0)
62272f5224aeSachartre 		failure++;
62282f5224aeSachartre 
62292f5224aeSachartre 	return (failure);
62302f5224aeSachartre }
62312f5224aeSachartre 
62322f5224aeSachartre /*
62332f5224aeSachartre  * Add a pending I/O to the failfast I/O queue. An I/O is added to this
62342f5224aeSachartre  * queue when it has failed and failfast is enabled. Then we have to check
62352f5224aeSachartre  * if it has failed because of a reservation conflict in which case we have
62362f5224aeSachartre  * to panic the system.
62372f5224aeSachartre  *
62382f5224aeSachartre  * Async I/O should be queued with their block I/O data transfer structure
62392f5224aeSachartre  * (buf). Sync I/O should be queued with buf = NULL.
62402f5224aeSachartre  */
62412f5224aeSachartre static vdc_io_t *
62422f5224aeSachartre vdc_failfast_io_queue(vdc_t *vdc, struct buf *buf)
62432f5224aeSachartre {
62442f5224aeSachartre 	vdc_io_t *vio;
62452f5224aeSachartre 
62462f5224aeSachartre 	ASSERT(MUTEX_HELD(&vdc->lock));
62472f5224aeSachartre 
62482f5224aeSachartre 	vio = kmem_alloc(sizeof (vdc_io_t), KM_SLEEP);
62492f5224aeSachartre 	vio->vio_next = vdc->failfast_io_queue;
62502f5224aeSachartre 	vio->vio_buf = buf;
62512f5224aeSachartre 	vio->vio_qtime = ddi_get_lbolt();
62522f5224aeSachartre 
62532f5224aeSachartre 	vdc->failfast_io_queue = vio;
62542f5224aeSachartre 
62552f5224aeSachartre 	/* notify the failfast thread that a new I/O is queued */
62562f5224aeSachartre 	cv_signal(&vdc->failfast_cv);
62572f5224aeSachartre 
62582f5224aeSachartre 	return (vio);
62592f5224aeSachartre }
62602f5224aeSachartre 
62612f5224aeSachartre /*
62622f5224aeSachartre  * Remove and complete I/O in the failfast I/O queue which have been
62632f5224aeSachartre  * added after the indicated deadline. A deadline of 0 means that all
62642f5224aeSachartre  * I/O have to be unqueued and marked as completed.
62652f5224aeSachartre  */
62662f5224aeSachartre static void
62672f5224aeSachartre vdc_failfast_io_unqueue(vdc_t *vdc, clock_t deadline)
62682f5224aeSachartre {
62692f5224aeSachartre 	vdc_io_t *vio, *vio_tmp;
62702f5224aeSachartre 
62712f5224aeSachartre 	ASSERT(MUTEX_HELD(&vdc->lock));
62722f5224aeSachartre 
62732f5224aeSachartre 	vio_tmp = NULL;
62742f5224aeSachartre 	vio = vdc->failfast_io_queue;
62752f5224aeSachartre 
62762f5224aeSachartre 	if (deadline != 0) {
62772f5224aeSachartre 		/*
62782f5224aeSachartre 		 * Skip any io queued after the deadline. The failfast
62792f5224aeSachartre 		 * I/O queue is ordered starting with the last I/O added
62802f5224aeSachartre 		 * to the queue.
62812f5224aeSachartre 		 */
62822f5224aeSachartre 		while (vio != NULL && vio->vio_qtime > deadline) {
62832f5224aeSachartre 			vio_tmp = vio;
62842f5224aeSachartre 			vio = vio->vio_next;
62852f5224aeSachartre 		}
62862f5224aeSachartre 	}
62872f5224aeSachartre 
62882f5224aeSachartre 	if (vio == NULL)
62892f5224aeSachartre 		/* nothing to unqueue */
62902f5224aeSachartre 		return;
62912f5224aeSachartre 
62922f5224aeSachartre 	/* update the queue */
62932f5224aeSachartre 	if (vio_tmp == NULL)
62942f5224aeSachartre 		vdc->failfast_io_queue = NULL;
62952f5224aeSachartre 	else
62962f5224aeSachartre 		vio_tmp->vio_next = NULL;
62972f5224aeSachartre 
62982f5224aeSachartre 	/*
62992f5224aeSachartre 	 * Complete unqueued I/O. Async I/O have a block I/O data transfer
63002f5224aeSachartre 	 * structure (buf) and they are completed by calling biodone(). Sync
63012f5224aeSachartre 	 * I/O do not have a buf and they are completed by setting the
63022f5224aeSachartre 	 * vio_qtime to zero and signaling failfast_io_cv. In that case, the
63032f5224aeSachartre 	 * thread waiting for the I/O to complete is responsible for freeing
63042f5224aeSachartre 	 * the vio structure.
63052f5224aeSachartre 	 */
63062f5224aeSachartre 	while (vio != NULL) {
63072f5224aeSachartre 		vio_tmp = vio->vio_next;
63082f5224aeSachartre 		if (vio->vio_buf != NULL) {
630990e2f9dcSlm66018 			VD_KSTAT_RUNQ_EXIT(vdc);
6310366a92acSlm66018 			DTRACE_IO1(done, buf_t *, vio->vio_buf);
63112f5224aeSachartre 			biodone(vio->vio_buf);
63122f5224aeSachartre 			kmem_free(vio, sizeof (vdc_io_t));
63132f5224aeSachartre 		} else {
63142f5224aeSachartre 			vio->vio_qtime = 0;
63152f5224aeSachartre 		}
63162f5224aeSachartre 		vio = vio_tmp;
63172f5224aeSachartre 	}
63182f5224aeSachartre 
63192f5224aeSachartre 	cv_broadcast(&vdc->failfast_io_cv);
63202f5224aeSachartre }
63212f5224aeSachartre 
63222f5224aeSachartre /*
63232f5224aeSachartre  * Failfast Thread.
63242f5224aeSachartre  *
63252f5224aeSachartre  * While failfast is enabled, the failfast thread sends a TEST UNIT READY
63262f5224aeSachartre  * and a zero size WRITE(10) SCSI commands on a regular basis to check that
63272f5224aeSachartre  * we still have access to the disk. If a command fails with a RESERVATION
63282f5224aeSachartre  * CONFLICT error then the system will immediatly panic.
63292f5224aeSachartre  *
63302f5224aeSachartre  * The failfast thread is also woken up when an I/O has failed. It then check
63312f5224aeSachartre  * the access to the disk to ensure that the I/O failure was not due to a
63322f5224aeSachartre  * reservation conflict.
63332f5224aeSachartre  *
63342f5224aeSachartre  * There is one failfast thread for each virtual disk for which failfast is
63352f5224aeSachartre  * enabled. We could have only one thread sending requests for all disks but
63362f5224aeSachartre  * this would need vdc to send asynchronous requests and to have callbacks to
63372f5224aeSachartre  * process replies.
63382f5224aeSachartre  */
63392f5224aeSachartre static void
63402f5224aeSachartre vdc_failfast_thread(void *arg)
63412f5224aeSachartre {
63422f5224aeSachartre 	int status;
63432f5224aeSachartre 	vdc_t *vdc = (vdc_t *)arg;
63442f5224aeSachartre 	clock_t timeout, starttime;
63452f5224aeSachartre 
63462f5224aeSachartre 	mutex_enter(&vdc->lock);
63472f5224aeSachartre 
63482f5224aeSachartre 	while (vdc->failfast_interval != 0) {
63492f5224aeSachartre 
63502f5224aeSachartre 		starttime = ddi_get_lbolt();
63512f5224aeSachartre 
63522f5224aeSachartre 		mutex_exit(&vdc->lock);
63532f5224aeSachartre 
63542f5224aeSachartre 		/* check for reservation conflict */
63552f5224aeSachartre 		status = vdc_failfast_check_resv(vdc);
63562f5224aeSachartre 
63572f5224aeSachartre 		mutex_enter(&vdc->lock);
63582f5224aeSachartre 		/*
63592f5224aeSachartre 		 * We have dropped the lock to send the SCSI command so we have
63602f5224aeSachartre 		 * to check that failfast is still enabled.
63612f5224aeSachartre 		 */
63622f5224aeSachartre 		if (vdc->failfast_interval == 0)
63632f5224aeSachartre 			break;
63642f5224aeSachartre 
63652f5224aeSachartre 		/*
63662f5224aeSachartre 		 * If we have successfully check the disk access and there was
63672f5224aeSachartre 		 * no reservation conflict then we can complete any I/O queued
63682f5224aeSachartre 		 * before the last check.
63692f5224aeSachartre 		 */
63702f5224aeSachartre 		if (status == 0)
63712f5224aeSachartre 			vdc_failfast_io_unqueue(vdc, starttime);
63722f5224aeSachartre 
63732f5224aeSachartre 		/* proceed again if some I/O are still in the queue */
63742f5224aeSachartre 		if (vdc->failfast_io_queue != NULL)
63752f5224aeSachartre 			continue;
63762f5224aeSachartre 
63772f5224aeSachartre 		timeout = ddi_get_lbolt() +
63782f5224aeSachartre 		    drv_usectohz(vdc->failfast_interval);
63792f5224aeSachartre 		(void) cv_timedwait(&vdc->failfast_cv, &vdc->lock, timeout);
63802f5224aeSachartre 	}
63812f5224aeSachartre 
63822f5224aeSachartre 	/*
63832f5224aeSachartre 	 * Failfast is being stop so we can complete any queued I/O.
63842f5224aeSachartre 	 */
63852f5224aeSachartre 	vdc_failfast_io_unqueue(vdc, 0);
63862f5224aeSachartre 	vdc->failfast_thread = NULL;
63872f5224aeSachartre 	mutex_exit(&vdc->lock);
63882f5224aeSachartre 	thread_exit();
63892f5224aeSachartre }
63902f5224aeSachartre 
63912f5224aeSachartre /*
63922f5224aeSachartre  * Implement the MHIOCENFAILFAST mhd(7i) ioctl.
63932f5224aeSachartre  */
63942f5224aeSachartre static int
63952f5224aeSachartre vdc_failfast(vdc_t *vdc, caddr_t arg, int mode)
63962f5224aeSachartre {
63972f5224aeSachartre 	unsigned int mh_time;
63982f5224aeSachartre 
63992f5224aeSachartre 	if (ddi_copyin((void *)arg, &mh_time, sizeof (int), mode))
64002f5224aeSachartre 		return (EFAULT);
64012f5224aeSachartre 
64022f5224aeSachartre 	mutex_enter(&vdc->lock);
64032f5224aeSachartre 	if (mh_time != 0 && vdc->failfast_thread == NULL) {
64042f5224aeSachartre 		vdc->failfast_thread = thread_create(NULL, 0,
64052f5224aeSachartre 		    vdc_failfast_thread, vdc, 0, &p0, TS_RUN,
64062f5224aeSachartre 		    v.v_maxsyspri - 2);
64072f5224aeSachartre 	}
64082f5224aeSachartre 
64092f5224aeSachartre 	vdc->failfast_interval = mh_time * 1000;
64102f5224aeSachartre 	cv_signal(&vdc->failfast_cv);
64112f5224aeSachartre 	mutex_exit(&vdc->lock);
64122f5224aeSachartre 
64132f5224aeSachartre 	return (0);
64142f5224aeSachartre }
64152f5224aeSachartre 
64162f5224aeSachartre /*
64172f5224aeSachartre  * Implement the MHIOCTKOWN and MHIOCRELEASE mhd(7i) ioctls. These ioctls are
64182f5224aeSachartre  * converted to VD_OP_SET_ACCESS operations.
64192f5224aeSachartre  */
64202f5224aeSachartre static int
64212f5224aeSachartre vdc_access_set(vdc_t *vdc, uint64_t flags, int mode)
64222f5224aeSachartre {
64232f5224aeSachartre 	int rv;
64242f5224aeSachartre 
64252f5224aeSachartre 	/* submit owership command request */
64262f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_SET_ACCESS, (caddr_t)&flags,
64272f5224aeSachartre 	    sizeof (uint64_t), 0, 0, CB_SYNC, (void *)(uint64_t)mode,
64282f5224aeSachartre 	    VIO_both_dir, B_TRUE);
64292f5224aeSachartre 
64302f5224aeSachartre 	return (rv);
64312f5224aeSachartre }
64322f5224aeSachartre 
64332f5224aeSachartre /*
64342f5224aeSachartre  * Implement the MHIOCSTATUS mhd(7i) ioctl. This ioctl is converted to a
64352f5224aeSachartre  * VD_OP_GET_ACCESS operation.
64362f5224aeSachartre  */
64372f5224aeSachartre static int
64382f5224aeSachartre vdc_access_get(vdc_t *vdc, uint64_t *status, int mode)
64392f5224aeSachartre {
64402f5224aeSachartre 	int rv;
64412f5224aeSachartre 
64422f5224aeSachartre 	/* submit owership command request */
64432f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_GET_ACCESS, (caddr_t)status,
64442f5224aeSachartre 	    sizeof (uint64_t), 0, 0, CB_SYNC, (void *)(uint64_t)mode,
64452f5224aeSachartre 	    VIO_both_dir, B_TRUE);
64462f5224aeSachartre 
64472f5224aeSachartre 	return (rv);
64482f5224aeSachartre }
64492f5224aeSachartre 
64502f5224aeSachartre /*
64512f5224aeSachartre  * Disk Ownership Thread.
64522f5224aeSachartre  *
64532f5224aeSachartre  * When we have taken the ownership of a disk, this thread waits to be
64542f5224aeSachartre  * notified when the LDC channel is reset so that it can recover the
64552f5224aeSachartre  * ownership.
64562f5224aeSachartre  *
64572f5224aeSachartre  * Note that the thread handling the LDC reset (vdc_process_msg_thread())
64582f5224aeSachartre  * can not be used to do the ownership recovery because it has to be
64592f5224aeSachartre  * running to handle the reply message to the ownership operation.
64602f5224aeSachartre  */
64612f5224aeSachartre static void
64622f5224aeSachartre vdc_ownership_thread(void *arg)
64632f5224aeSachartre {
64642f5224aeSachartre 	vdc_t *vdc = (vdc_t *)arg;
64652f5224aeSachartre 	clock_t timeout;
64662f5224aeSachartre 	uint64_t status;
64672f5224aeSachartre 
64682f5224aeSachartre 	mutex_enter(&vdc->ownership_lock);
64692f5224aeSachartre 	mutex_enter(&vdc->lock);
64702f5224aeSachartre 
64712f5224aeSachartre 	while (vdc->ownership & VDC_OWNERSHIP_WANTED) {
64722f5224aeSachartre 
64732f5224aeSachartre 		if ((vdc->ownership & VDC_OWNERSHIP_RESET) ||
64742f5224aeSachartre 		    !(vdc->ownership & VDC_OWNERSHIP_GRANTED)) {
64752f5224aeSachartre 			/*
64762f5224aeSachartre 			 * There was a reset so the ownership has been lost,
64772f5224aeSachartre 			 * try to recover. We do this without using the preempt
64782f5224aeSachartre 			 * option so that we don't steal the ownership from
64792f5224aeSachartre 			 * someone who has preempted us.
64802f5224aeSachartre 			 */
64812f5224aeSachartre 			DMSG(vdc, 0, "[%d] Ownership lost, recovering",
64822f5224aeSachartre 			    vdc->instance);
64832f5224aeSachartre 
64842f5224aeSachartre 			vdc->ownership &= ~(VDC_OWNERSHIP_RESET |
64852f5224aeSachartre 			    VDC_OWNERSHIP_GRANTED);
64862f5224aeSachartre 
64872f5224aeSachartre 			mutex_exit(&vdc->lock);
64882f5224aeSachartre 
64892f5224aeSachartre 			status = vdc_access_set(vdc, VD_ACCESS_SET_EXCLUSIVE |
64902f5224aeSachartre 			    VD_ACCESS_SET_PRESERVE, FKIOCTL);
64912f5224aeSachartre 
64922f5224aeSachartre 			mutex_enter(&vdc->lock);
64932f5224aeSachartre 
64942f5224aeSachartre 			if (status == 0) {
64952f5224aeSachartre 				DMSG(vdc, 0, "[%d] Ownership recovered",
64962f5224aeSachartre 				    vdc->instance);
64972f5224aeSachartre 				vdc->ownership |= VDC_OWNERSHIP_GRANTED;
64982f5224aeSachartre 			} else {
64992f5224aeSachartre 				DMSG(vdc, 0, "[%d] Fail to recover ownership",
65002f5224aeSachartre 				    vdc->instance);
65012f5224aeSachartre 			}
65022f5224aeSachartre 
65032f5224aeSachartre 		}
65042f5224aeSachartre 
65052f5224aeSachartre 		/*
65062f5224aeSachartre 		 * If we have the ownership then we just wait for an event
65072f5224aeSachartre 		 * to happen (LDC reset), otherwise we will retry to recover
65082f5224aeSachartre 		 * after a delay.
65092f5224aeSachartre 		 */
65102f5224aeSachartre 		if (vdc->ownership & VDC_OWNERSHIP_GRANTED)
65112f5224aeSachartre 			timeout = 0;
65122f5224aeSachartre 		else
65132f5224aeSachartre 			timeout = ddi_get_lbolt() +
65142f5224aeSachartre 			    drv_usectohz(vdc_ownership_delay);
65152f5224aeSachartre 
65162f5224aeSachartre 		/* Release the ownership_lock and wait on the vdc lock */
65172f5224aeSachartre 		mutex_exit(&vdc->ownership_lock);
65182f5224aeSachartre 
65192f5224aeSachartre 		if (timeout == 0)
65202f5224aeSachartre 			(void) cv_wait(&vdc->ownership_cv, &vdc->lock);
65212f5224aeSachartre 		else
65222f5224aeSachartre 			(void) cv_timedwait(&vdc->ownership_cv,
65232f5224aeSachartre 			    &vdc->lock, timeout);
65242f5224aeSachartre 
65252f5224aeSachartre 		mutex_exit(&vdc->lock);
65262f5224aeSachartre 
65272f5224aeSachartre 		mutex_enter(&vdc->ownership_lock);
65282f5224aeSachartre 		mutex_enter(&vdc->lock);
65292f5224aeSachartre 	}
65302f5224aeSachartre 
65312f5224aeSachartre 	vdc->ownership_thread = NULL;
65322f5224aeSachartre 	mutex_exit(&vdc->lock);
65332f5224aeSachartre 	mutex_exit(&vdc->ownership_lock);
65342f5224aeSachartre 
65352f5224aeSachartre 	thread_exit();
65362f5224aeSachartre }
65372f5224aeSachartre 
65382f5224aeSachartre static void
65392f5224aeSachartre vdc_ownership_update(vdc_t *vdc, int ownership_flags)
65402f5224aeSachartre {
65412f5224aeSachartre 	ASSERT(MUTEX_HELD(&vdc->ownership_lock));
65422f5224aeSachartre 
65432f5224aeSachartre 	mutex_enter(&vdc->lock);
65442f5224aeSachartre 	vdc->ownership = ownership_flags;
65452f5224aeSachartre 	if ((vdc->ownership & VDC_OWNERSHIP_WANTED) &&
65462f5224aeSachartre 	    vdc->ownership_thread == NULL) {
65472f5224aeSachartre 		/* start ownership thread */
65482f5224aeSachartre 		vdc->ownership_thread = thread_create(NULL, 0,
65492f5224aeSachartre 		    vdc_ownership_thread, vdc, 0, &p0, TS_RUN,
65502f5224aeSachartre 		    v.v_maxsyspri - 2);
65512f5224aeSachartre 	} else {
65522f5224aeSachartre 		/* notify the ownership thread */
65532f5224aeSachartre 		cv_signal(&vdc->ownership_cv);
65542f5224aeSachartre 	}
65552f5224aeSachartre 	mutex_exit(&vdc->lock);
65562f5224aeSachartre }
65572f5224aeSachartre 
65582f5224aeSachartre /*
65592f5224aeSachartre  * Get the size and the block size of a virtual disk from the vdisk server.
65602f5224aeSachartre  */
65612f5224aeSachartre static int
6562de3a5331SRamesh Chitrothu vdc_get_capacity(vdc_t *vdc, size_t *dsk_size, size_t *blk_size)
65632f5224aeSachartre {
65642f5224aeSachartre 	int rv = 0;
65652f5224aeSachartre 	size_t alloc_len;
65662f5224aeSachartre 	vd_capacity_t *vd_cap;
65672f5224aeSachartre 
6568de3a5331SRamesh Chitrothu 	ASSERT(MUTEX_NOT_HELD(&vdc->lock));
65692f5224aeSachartre 
65702f5224aeSachartre 	alloc_len = P2ROUNDUP(sizeof (vd_capacity_t), sizeof (uint64_t));
65712f5224aeSachartre 
65722f5224aeSachartre 	vd_cap = kmem_zalloc(alloc_len, KM_SLEEP);
65732f5224aeSachartre 
65742f5224aeSachartre 	rv = vdc_do_sync_op(vdc, VD_OP_GET_CAPACITY, (caddr_t)vd_cap, alloc_len,
65752f5224aeSachartre 	    0, 0, CB_SYNC, (void *)(uint64_t)FKIOCTL, VIO_both_dir, B_TRUE);
65762f5224aeSachartre 
6577de3a5331SRamesh Chitrothu 	*dsk_size = vd_cap->vdisk_size;
6578de3a5331SRamesh Chitrothu 	*blk_size = vd_cap->vdisk_block_size;
65792f5224aeSachartre 
65802f5224aeSachartre 	kmem_free(vd_cap, alloc_len);
65812f5224aeSachartre 	return (rv);
65822f5224aeSachartre }
65832f5224aeSachartre 
65842f5224aeSachartre /*
6585de3a5331SRamesh Chitrothu  * Check the disk capacity. Disk size information is updated if size has
6586de3a5331SRamesh Chitrothu  * changed.
6587de3a5331SRamesh Chitrothu  *
6588de3a5331SRamesh Chitrothu  * Return 0 if the disk capacity is available, or non-zero if it is not.
6589de3a5331SRamesh Chitrothu  */
6590de3a5331SRamesh Chitrothu static int
6591de3a5331SRamesh Chitrothu vdc_check_capacity(vdc_t *vdc)
6592de3a5331SRamesh Chitrothu {
6593de3a5331SRamesh Chitrothu 	size_t dsk_size, blk_size;
6594de3a5331SRamesh Chitrothu 	int rv;
6595de3a5331SRamesh Chitrothu 
6596de3a5331SRamesh Chitrothu 	if ((rv = vdc_get_capacity(vdc, &dsk_size, &blk_size)) != 0)
6597de3a5331SRamesh Chitrothu 		return (rv);
6598de3a5331SRamesh Chitrothu 
6599de3a5331SRamesh Chitrothu 	if (dsk_size == VD_SIZE_UNKNOWN || dsk_size == 0)
6600de3a5331SRamesh Chitrothu 		return (EINVAL);
6601de3a5331SRamesh Chitrothu 
6602de3a5331SRamesh Chitrothu 	mutex_enter(&vdc->lock);
6603de3a5331SRamesh Chitrothu 	vdc_update_size(vdc, dsk_size, blk_size, vdc->max_xfer_sz);
6604de3a5331SRamesh Chitrothu 	mutex_exit(&vdc->lock);
6605de3a5331SRamesh Chitrothu 
6606de3a5331SRamesh Chitrothu 	return (0);
6607de3a5331SRamesh Chitrothu }
6608de3a5331SRamesh Chitrothu 
6609de3a5331SRamesh Chitrothu /*
66101ae08745Sheppo  * This structure is used in the DKIO(7I) array below.
66111ae08745Sheppo  */
66121ae08745Sheppo typedef struct vdc_dk_ioctl {
66131ae08745Sheppo 	uint8_t		op;		/* VD_OP_XXX value */
66141ae08745Sheppo 	int		cmd;		/* Solaris ioctl operation number */
66151ae08745Sheppo 	size_t		nbytes;		/* size of structure to be copied */
66160a55fbb7Slm66018 
66170a55fbb7Slm66018 	/* function to convert between vDisk and Solaris structure formats */
6618d10e4ef2Snarayan 	int	(*convert)(vdc_t *vdc, void *vd_buf, void *ioctl_arg,
6619d10e4ef2Snarayan 	    int mode, int dir);
66201ae08745Sheppo } vdc_dk_ioctl_t;
66211ae08745Sheppo 
66221ae08745Sheppo /*
66231ae08745Sheppo  * Subset of DKIO(7I) operations currently supported
66241ae08745Sheppo  */
66251ae08745Sheppo static vdc_dk_ioctl_t	dk_ioctl[] = {
6626eff7243fSlm66018 	{VD_OP_FLUSH,		DKIOCFLUSHWRITECACHE,	0,
66270a55fbb7Slm66018 		vdc_null_copy_func},
66280a55fbb7Slm66018 	{VD_OP_GET_WCE,		DKIOCGETWCE,		sizeof (int),
66294bac2208Snarayan 		vdc_get_wce_convert},
66300a55fbb7Slm66018 	{VD_OP_SET_WCE,		DKIOCSETWCE,		sizeof (int),
66314bac2208Snarayan 		vdc_set_wce_convert},
66320a55fbb7Slm66018 	{VD_OP_GET_VTOC,	DKIOCGVTOC,		sizeof (vd_vtoc_t),
66330a55fbb7Slm66018 		vdc_get_vtoc_convert},
66340a55fbb7Slm66018 	{VD_OP_SET_VTOC,	DKIOCSVTOC,		sizeof (vd_vtoc_t),
66350a55fbb7Slm66018 		vdc_set_vtoc_convert},
6636342440ecSPrasad Singamsetty 	{VD_OP_GET_VTOC,	DKIOCGEXTVTOC,		sizeof (vd_vtoc_t),
6637342440ecSPrasad Singamsetty 		vdc_get_extvtoc_convert},
6638342440ecSPrasad Singamsetty 	{VD_OP_SET_VTOC,	DKIOCSEXTVTOC,		sizeof (vd_vtoc_t),
6639342440ecSPrasad Singamsetty 		vdc_set_extvtoc_convert},
66400a55fbb7Slm66018 	{VD_OP_GET_DISKGEOM,	DKIOCGGEOM,		sizeof (vd_geom_t),
66410a55fbb7Slm66018 		vdc_get_geom_convert},
66420a55fbb7Slm66018 	{VD_OP_GET_DISKGEOM,	DKIOCG_PHYGEOM,		sizeof (vd_geom_t),
66430a55fbb7Slm66018 		vdc_get_geom_convert},
66440a55fbb7Slm66018 	{VD_OP_GET_DISKGEOM, 	DKIOCG_VIRTGEOM,	sizeof (vd_geom_t),
66450a55fbb7Slm66018 		vdc_get_geom_convert},
66460a55fbb7Slm66018 	{VD_OP_SET_DISKGEOM,	DKIOCSGEOM,		sizeof (vd_geom_t),
66470a55fbb7Slm66018 		vdc_set_geom_convert},
66484bac2208Snarayan 	{VD_OP_GET_EFI,		DKIOCGETEFI,		0,
66494bac2208Snarayan 		vdc_get_efi_convert},
66504bac2208Snarayan 	{VD_OP_SET_EFI,		DKIOCSETEFI,		0,
66514bac2208Snarayan 		vdc_set_efi_convert},
66520a55fbb7Slm66018 
665387a7269eSachartre 	/* DIOCTL_RWCMD is converted to a read or a write */
665487a7269eSachartre 	{0, DIOCTL_RWCMD,  sizeof (struct dadkio_rwcmd), NULL},
665587a7269eSachartre 
66562f5224aeSachartre 	/* mhd(7I) non-shared multihost disks ioctls */
66572f5224aeSachartre 	{0, MHIOCTKOWN,				0, vdc_null_copy_func},
66582f5224aeSachartre 	{0, MHIOCRELEASE,			0, vdc_null_copy_func},
66592f5224aeSachartre 	{0, MHIOCSTATUS,			0, vdc_null_copy_func},
66602f5224aeSachartre 	{0, MHIOCQRESERVE,			0, vdc_null_copy_func},
66612f5224aeSachartre 
66622f5224aeSachartre 	/* mhd(7I) shared multihost disks ioctls */
66632f5224aeSachartre 	{0, MHIOCGRP_INKEYS,			0, vdc_null_copy_func},
66642f5224aeSachartre 	{0, MHIOCGRP_INRESV,			0, vdc_null_copy_func},
66652f5224aeSachartre 	{0, MHIOCGRP_REGISTER,			0, vdc_null_copy_func},
66662f5224aeSachartre 	{0, MHIOCGRP_RESERVE, 			0, vdc_null_copy_func},
66672f5224aeSachartre 	{0, MHIOCGRP_PREEMPTANDABORT,		0, vdc_null_copy_func},
66682f5224aeSachartre 	{0, MHIOCGRP_REGISTERANDIGNOREKEY,	0, vdc_null_copy_func},
66692f5224aeSachartre 
66702f5224aeSachartre 	/* mhd(7I) failfast ioctl */
66712f5224aeSachartre 	{0, MHIOCENFAILFAST,			0, vdc_null_copy_func},
66722f5224aeSachartre 
66730a55fbb7Slm66018 	/*
66740a55fbb7Slm66018 	 * These particular ioctls are not sent to the server - vdc fakes up
66750a55fbb7Slm66018 	 * the necessary info.
66760a55fbb7Slm66018 	 */
66770a55fbb7Slm66018 	{0, DKIOCINFO, sizeof (struct dk_cinfo), vdc_null_copy_func},
66780a55fbb7Slm66018 	{0, DKIOCGMEDIAINFO, sizeof (struct dk_minfo), vdc_null_copy_func},
66790a55fbb7Slm66018 	{0, USCSICMD,	sizeof (struct uscsi_cmd), vdc_null_copy_func},
66809642afceSachartre 	{0, DKIOCPARTITION, 0, vdc_null_copy_func },
668187a7269eSachartre 	{0, DKIOCGAPART, 0, vdc_null_copy_func },
66820a55fbb7Slm66018 	{0, DKIOCREMOVABLE, 0, vdc_null_copy_func},
66830a55fbb7Slm66018 	{0, CDROMREADOFFSET, 0, vdc_null_copy_func}
66841ae08745Sheppo };
66851ae08745Sheppo 
66861ae08745Sheppo /*
6687edcc0754Sachartre  * This function handles ioctl requests from the vd_efi_alloc_and_read()
6688edcc0754Sachartre  * function and forward them to the vdisk.
66892f5224aeSachartre  */
66902f5224aeSachartre static int
6691edcc0754Sachartre vd_process_efi_ioctl(void *vdisk, int cmd, uintptr_t arg)
66922f5224aeSachartre {
6693edcc0754Sachartre 	vdc_t *vdc = (vdc_t *)vdisk;
6694edcc0754Sachartre 	dev_t dev;
66952f5224aeSachartre 	int rval;
6696edcc0754Sachartre 
6697edcc0754Sachartre 	dev = makedevice(ddi_driver_major(vdc->dip),
6698edcc0754Sachartre 	    VD_MAKE_DEV(vdc->instance, 0));
6699edcc0754Sachartre 
6700edcc0754Sachartre 	return (vd_process_ioctl(dev, cmd, (caddr_t)arg, FKIOCTL, &rval));
67012f5224aeSachartre }
67022f5224aeSachartre 
67032f5224aeSachartre /*
67041ae08745Sheppo  * Function:
67051ae08745Sheppo  *	vd_process_ioctl()
67061ae08745Sheppo  *
67071ae08745Sheppo  * Description:
67080a55fbb7Slm66018  *	This routine processes disk specific ioctl calls
67091ae08745Sheppo  *
67101ae08745Sheppo  * Arguments:
67111ae08745Sheppo  *	dev	- the device number
67121ae08745Sheppo  *	cmd	- the operation [dkio(7I)] to be processed
67131ae08745Sheppo  *	arg	- pointer to user provided structure
67141ae08745Sheppo  *		  (contains data to be set or reference parameter for get)
67151ae08745Sheppo  *	mode	- bit flag, indicating open settings, 32/64 bit type, etc
67162f5224aeSachartre  *	rvalp	- pointer to return value for calling process.
67171ae08745Sheppo  *
67181ae08745Sheppo  * Return Code:
67191ae08745Sheppo  *	0
67201ae08745Sheppo  *	EFAULT
67211ae08745Sheppo  *	ENXIO
67221ae08745Sheppo  *	EIO
67231ae08745Sheppo  *	ENOTSUP
67241ae08745Sheppo  */
67251ae08745Sheppo static int
67262f5224aeSachartre vd_process_ioctl(dev_t dev, int cmd, caddr_t arg, int mode, int *rvalp)
67271ae08745Sheppo {
67280d0c8d4bSnarayan 	int		instance = VDCUNIT(dev);
67291ae08745Sheppo 	vdc_t		*vdc = NULL;
67301ae08745Sheppo 	int		rv = -1;
67311ae08745Sheppo 	int		idx = 0;		/* index into dk_ioctl[] */
67321ae08745Sheppo 	size_t		len = 0;		/* #bytes to send to vds */
67331ae08745Sheppo 	size_t		alloc_len = 0;		/* #bytes to allocate mem for */
67341ae08745Sheppo 	caddr_t		mem_p = NULL;
67351ae08745Sheppo 	size_t		nioctls = (sizeof (dk_ioctl)) / (sizeof (dk_ioctl[0]));
67363af08d82Slm66018 	vdc_dk_ioctl_t	*iop;
67371ae08745Sheppo 
67381ae08745Sheppo 	vdc = ddi_get_soft_state(vdc_state, instance);
67391ae08745Sheppo 	if (vdc == NULL) {
67401ae08745Sheppo 		cmn_err(CE_NOTE, "![%d] Could not get soft state structure",
67411ae08745Sheppo 		    instance);
67421ae08745Sheppo 		return (ENXIO);
67431ae08745Sheppo 	}
67441ae08745Sheppo 
67453af08d82Slm66018 	DMSG(vdc, 0, "[%d] Processing ioctl(%x) for dev %lx : model %x\n",
67463af08d82Slm66018 	    instance, cmd, dev, ddi_model_convert_from(mode & FMODELS));
67471ae08745Sheppo 
67482f5224aeSachartre 	if (rvalp != NULL) {
67492f5224aeSachartre 		/* the return value of the ioctl is 0 by default */
67502f5224aeSachartre 		*rvalp = 0;
67512f5224aeSachartre 	}
67522f5224aeSachartre 
67531ae08745Sheppo 	/*
67541ae08745Sheppo 	 * Validate the ioctl operation to be performed.
67551ae08745Sheppo 	 *
67561ae08745Sheppo 	 * If we have looped through the array without finding a match then we
67571ae08745Sheppo 	 * don't support this ioctl.
67581ae08745Sheppo 	 */
67591ae08745Sheppo 	for (idx = 0; idx < nioctls; idx++) {
67601ae08745Sheppo 		if (cmd == dk_ioctl[idx].cmd)
67611ae08745Sheppo 			break;
67621ae08745Sheppo 	}
67631ae08745Sheppo 
67641ae08745Sheppo 	if (idx >= nioctls) {
67653af08d82Slm66018 		DMSG(vdc, 0, "[%d] Unsupported ioctl (0x%x)\n",
6766e1ebb9ecSlm66018 		    vdc->instance, cmd);
67671ae08745Sheppo 		return (ENOTSUP);
67681ae08745Sheppo 	}
67691ae08745Sheppo 
67703af08d82Slm66018 	iop = &(dk_ioctl[idx]);
67713af08d82Slm66018 
67724bac2208Snarayan 	if (cmd == DKIOCGETEFI || cmd == DKIOCSETEFI) {
67734bac2208Snarayan 		/* size is not fixed for EFI ioctls, it depends on ioctl arg */
67744bac2208Snarayan 		dk_efi_t	dk_efi;
67754bac2208Snarayan 
67764bac2208Snarayan 		rv = ddi_copyin(arg, &dk_efi, sizeof (dk_efi_t), mode);
67774bac2208Snarayan 		if (rv != 0)
67784bac2208Snarayan 			return (EFAULT);
67794bac2208Snarayan 
67804bac2208Snarayan 		len = sizeof (vd_efi_t) - 1 + dk_efi.dki_length;
67814bac2208Snarayan 	} else {
67823af08d82Slm66018 		len = iop->nbytes;
67834bac2208Snarayan 	}
67841ae08745Sheppo 
67852f5224aeSachartre 	/* check if the ioctl is applicable */
67861ae08745Sheppo 	switch (cmd) {
67871ae08745Sheppo 	case CDROMREADOFFSET:
67881ae08745Sheppo 	case DKIOCREMOVABLE:
67891ae08745Sheppo 		return (ENOTTY);
67901ae08745Sheppo 
67912f5224aeSachartre 	case USCSICMD:
67922f5224aeSachartre 	case MHIOCTKOWN:
67932f5224aeSachartre 	case MHIOCSTATUS:
67942f5224aeSachartre 	case MHIOCQRESERVE:
67952f5224aeSachartre 	case MHIOCRELEASE:
67962f5224aeSachartre 	case MHIOCGRP_INKEYS:
67972f5224aeSachartre 	case MHIOCGRP_INRESV:
67982f5224aeSachartre 	case MHIOCGRP_REGISTER:
67992f5224aeSachartre 	case MHIOCGRP_RESERVE:
68002f5224aeSachartre 	case MHIOCGRP_PREEMPTANDABORT:
68012f5224aeSachartre 	case MHIOCGRP_REGISTERANDIGNOREKEY:
68022f5224aeSachartre 	case MHIOCENFAILFAST:
68032f5224aeSachartre 		if (vdc->cinfo == NULL)
68042f5224aeSachartre 			return (ENXIO);
68052f5224aeSachartre 		if (vdc->cinfo->dki_ctype != DKC_SCSI_CCS)
68062f5224aeSachartre 			return (ENOTTY);
68072f5224aeSachartre 		break;
68082f5224aeSachartre 
68092f5224aeSachartre 	case DIOCTL_RWCMD:
68102f5224aeSachartre 		if (vdc->cinfo == NULL)
68112f5224aeSachartre 			return (ENXIO);
68122f5224aeSachartre 		if (vdc->cinfo->dki_ctype != DKC_DIRECT)
68132f5224aeSachartre 			return (ENOTTY);
68142f5224aeSachartre 		break;
68152f5224aeSachartre 
68162f5224aeSachartre 	case DKIOCINFO:
68172f5224aeSachartre 		if (vdc->cinfo == NULL)
68182f5224aeSachartre 			return (ENXIO);
68192f5224aeSachartre 		break;
68202f5224aeSachartre 
68212f5224aeSachartre 	case DKIOCGMEDIAINFO:
68222f5224aeSachartre 		if (vdc->minfo == NULL)
68232f5224aeSachartre 			return (ENXIO);
68242f5224aeSachartre 		if (vdc_check_capacity(vdc) != 0)
68252f5224aeSachartre 			/* disk capacity is not available */
68262f5224aeSachartre 			return (EIO);
68272f5224aeSachartre 		break;
68282f5224aeSachartre 	}
68292f5224aeSachartre 
68302f5224aeSachartre 	/*
68312f5224aeSachartre 	 * Deal with ioctls which require a processing different than
68322f5224aeSachartre 	 * converting ioctl arguments and sending a corresponding
68332f5224aeSachartre 	 * VD operation.
68342f5224aeSachartre 	 */
68352f5224aeSachartre 	switch (cmd) {
68362f5224aeSachartre 
68372f5224aeSachartre 	case USCSICMD:
68382f5224aeSachartre 	{
68392f5224aeSachartre 		return (vdc_uscsi_cmd(vdc, arg, mode));
68402f5224aeSachartre 	}
68412f5224aeSachartre 
68422f5224aeSachartre 	case MHIOCTKOWN:
68432f5224aeSachartre 	{
68442f5224aeSachartre 		mutex_enter(&vdc->ownership_lock);
68452f5224aeSachartre 		/*
68462f5224aeSachartre 		 * We have to set VDC_OWNERSHIP_WANTED now so that the ownership
68472f5224aeSachartre 		 * can be flagged with VDC_OWNERSHIP_RESET if the LDC is reset
68482f5224aeSachartre 		 * while we are processing the ioctl.
68492f5224aeSachartre 		 */
68502f5224aeSachartre 		vdc_ownership_update(vdc, VDC_OWNERSHIP_WANTED);
68512f5224aeSachartre 
68522f5224aeSachartre 		rv = vdc_access_set(vdc, VD_ACCESS_SET_EXCLUSIVE |
68532f5224aeSachartre 		    VD_ACCESS_SET_PREEMPT | VD_ACCESS_SET_PRESERVE, mode);
68542f5224aeSachartre 		if (rv == 0) {
68552f5224aeSachartre 			vdc_ownership_update(vdc, VDC_OWNERSHIP_WANTED |
68562f5224aeSachartre 			    VDC_OWNERSHIP_GRANTED);
68572f5224aeSachartre 		} else {
68582f5224aeSachartre 			vdc_ownership_update(vdc, VDC_OWNERSHIP_NONE);
68592f5224aeSachartre 		}
68602f5224aeSachartre 		mutex_exit(&vdc->ownership_lock);
68612f5224aeSachartre 		return (rv);
68622f5224aeSachartre 	}
68632f5224aeSachartre 
68642f5224aeSachartre 	case MHIOCRELEASE:
68652f5224aeSachartre 	{
68662f5224aeSachartre 		mutex_enter(&vdc->ownership_lock);
68672f5224aeSachartre 		rv = vdc_access_set(vdc, VD_ACCESS_SET_CLEAR, mode);
68682f5224aeSachartre 		if (rv == 0) {
68692f5224aeSachartre 			vdc_ownership_update(vdc, VDC_OWNERSHIP_NONE);
68702f5224aeSachartre 		}
68712f5224aeSachartre 		mutex_exit(&vdc->ownership_lock);
68722f5224aeSachartre 		return (rv);
68732f5224aeSachartre 	}
68742f5224aeSachartre 
68752f5224aeSachartre 	case MHIOCSTATUS:
68762f5224aeSachartre 	{
68772f5224aeSachartre 		uint64_t status;
68782f5224aeSachartre 
68792f5224aeSachartre 		rv = vdc_access_get(vdc, &status, mode);
68802f5224aeSachartre 		if (rv == 0 && rvalp != NULL)
68812f5224aeSachartre 			*rvalp = (status & VD_ACCESS_ALLOWED)? 0 : 1;
68822f5224aeSachartre 		return (rv);
68832f5224aeSachartre 	}
68842f5224aeSachartre 
68852f5224aeSachartre 	case MHIOCQRESERVE:
68862f5224aeSachartre 	{
68872f5224aeSachartre 		rv = vdc_access_set(vdc, VD_ACCESS_SET_EXCLUSIVE, mode);
68882f5224aeSachartre 		return (rv);
68892f5224aeSachartre 	}
68902f5224aeSachartre 
68912f5224aeSachartre 	case MHIOCGRP_INKEYS:
68922f5224aeSachartre 	{
68932f5224aeSachartre 		return (vdc_mhd_inkeys(vdc, arg, mode));
68942f5224aeSachartre 	}
68952f5224aeSachartre 
68962f5224aeSachartre 	case MHIOCGRP_INRESV:
68972f5224aeSachartre 	{
68982f5224aeSachartre 		return (vdc_mhd_inresv(vdc, arg, mode));
68992f5224aeSachartre 	}
69002f5224aeSachartre 
69012f5224aeSachartre 	case MHIOCGRP_REGISTER:
69022f5224aeSachartre 	{
69032f5224aeSachartre 		return (vdc_mhd_register(vdc, arg, mode));
69042f5224aeSachartre 	}
69052f5224aeSachartre 
69062f5224aeSachartre 	case MHIOCGRP_RESERVE:
69072f5224aeSachartre 	{
69082f5224aeSachartre 		return (vdc_mhd_reserve(vdc, arg, mode));
69092f5224aeSachartre 	}
69102f5224aeSachartre 
69112f5224aeSachartre 	case MHIOCGRP_PREEMPTANDABORT:
69122f5224aeSachartre 	{
69132f5224aeSachartre 		return (vdc_mhd_preemptabort(vdc, arg, mode));
69142f5224aeSachartre 	}
69152f5224aeSachartre 
69162f5224aeSachartre 	case MHIOCGRP_REGISTERANDIGNOREKEY:
69172f5224aeSachartre 	{
69182f5224aeSachartre 		return (vdc_mhd_registerignore(vdc, arg, mode));
69192f5224aeSachartre 	}
69202f5224aeSachartre 
69212f5224aeSachartre 	case MHIOCENFAILFAST:
69222f5224aeSachartre 	{
69232f5224aeSachartre 		rv = vdc_failfast(vdc, arg, mode);
69242f5224aeSachartre 		return (rv);
69252f5224aeSachartre 	}
69262f5224aeSachartre 
692787a7269eSachartre 	case DIOCTL_RWCMD:
692887a7269eSachartre 	{
692987a7269eSachartre 		return (vdc_dioctl_rwcmd(dev, arg, mode));
693087a7269eSachartre 	}
693187a7269eSachartre 
693287a7269eSachartre 	case DKIOCGAPART:
693387a7269eSachartre 	{
69349642afceSachartre 		return (vdc_dkio_gapart(vdc, arg, mode));
69359642afceSachartre 	}
69369642afceSachartre 
69379642afceSachartre 	case DKIOCPARTITION:
69389642afceSachartre 	{
69399642afceSachartre 		return (vdc_dkio_partition(vdc, arg, mode));
694087a7269eSachartre 	}
694187a7269eSachartre 
69421ae08745Sheppo 	case DKIOCINFO:
69431ae08745Sheppo 	{
69441ae08745Sheppo 		struct dk_cinfo	cinfo;
69451ae08745Sheppo 
69461ae08745Sheppo 		bcopy(vdc->cinfo, &cinfo, sizeof (struct dk_cinfo));
69470d0c8d4bSnarayan 		cinfo.dki_partition = VDCPART(dev);
69481ae08745Sheppo 
69491ae08745Sheppo 		rv = ddi_copyout(&cinfo, (void *)arg,
69501ae08745Sheppo 		    sizeof (struct dk_cinfo), mode);
69511ae08745Sheppo 		if (rv != 0)
69521ae08745Sheppo 			return (EFAULT);
69531ae08745Sheppo 
69541ae08745Sheppo 		return (0);
69551ae08745Sheppo 	}
69561ae08745Sheppo 
69571ae08745Sheppo 	case DKIOCGMEDIAINFO:
69588e6a2a04Slm66018 	{
69592f5224aeSachartre 		ASSERT(vdc->vdisk_size != 0);
6960de3a5331SRamesh Chitrothu 		ASSERT(vdc->minfo->dki_capacity != 0);
69611ae08745Sheppo 		rv = ddi_copyout(vdc->minfo, (void *)arg,
69621ae08745Sheppo 		    sizeof (struct dk_minfo), mode);
69631ae08745Sheppo 		if (rv != 0)
69641ae08745Sheppo 			return (EFAULT);
69651ae08745Sheppo 
69661ae08745Sheppo 		return (0);
69671ae08745Sheppo 	}
69681ae08745Sheppo 
69698e6a2a04Slm66018 	case DKIOCFLUSHWRITECACHE:
69708e6a2a04Slm66018 		{
697117cadca8Slm66018 			struct dk_callback *dkc =
697217cadca8Slm66018 			    (struct dk_callback *)(uintptr_t)arg;
69738e6a2a04Slm66018 			vdc_dk_arg_t	*dkarg = NULL;
69748e6a2a04Slm66018 
69753af08d82Slm66018 			DMSG(vdc, 1, "[%d] Flush W$: mode %x\n",
69763af08d82Slm66018 			    instance, mode);
69778e6a2a04Slm66018 
69788e6a2a04Slm66018 			/*
69798e6a2a04Slm66018 			 * If arg is NULL, then there is no callback function
69808e6a2a04Slm66018 			 * registered and the call operates synchronously; we
69818e6a2a04Slm66018 			 * break and continue with the rest of the function and
69828e6a2a04Slm66018 			 * wait for vds to return (i.e. after the request to
69838e6a2a04Slm66018 			 * vds returns successfully, all writes completed prior
69848e6a2a04Slm66018 			 * to the ioctl will have been flushed from the disk
69858e6a2a04Slm66018 			 * write cache to persistent media.
69868e6a2a04Slm66018 			 *
69878e6a2a04Slm66018 			 * If a callback function is registered, we dispatch
69888e6a2a04Slm66018 			 * the request on a task queue and return immediately.
69898e6a2a04Slm66018 			 * The callback will deal with informing the calling
69908e6a2a04Slm66018 			 * thread that the flush request is completed.
69918e6a2a04Slm66018 			 */
69928e6a2a04Slm66018 			if (dkc == NULL)
69938e6a2a04Slm66018 				break;
69948e6a2a04Slm66018 
6995eff7243fSlm66018 			/*
6996eff7243fSlm66018 			 * the asynchronous callback is only supported if
6997eff7243fSlm66018 			 * invoked from within the kernel
6998eff7243fSlm66018 			 */
6999eff7243fSlm66018 			if ((mode & FKIOCTL) == 0)
7000eff7243fSlm66018 				return (ENOTSUP);
7001eff7243fSlm66018 
70028e6a2a04Slm66018 			dkarg = kmem_zalloc(sizeof (vdc_dk_arg_t), KM_SLEEP);
70038e6a2a04Slm66018 
70048e6a2a04Slm66018 			dkarg->mode = mode;
70058e6a2a04Slm66018 			dkarg->dev = dev;
70068e6a2a04Slm66018 			bcopy(dkc, &dkarg->dkc, sizeof (*dkc));
70078e6a2a04Slm66018 
70088e6a2a04Slm66018 			mutex_enter(&vdc->lock);
70098e6a2a04Slm66018 			vdc->dkio_flush_pending++;
70108e6a2a04Slm66018 			dkarg->vdc = vdc;
70118e6a2a04Slm66018 			mutex_exit(&vdc->lock);
70128e6a2a04Slm66018 
70138e6a2a04Slm66018 			/* put the request on a task queue */
70148e6a2a04Slm66018 			rv = taskq_dispatch(system_taskq, vdc_dkio_flush_cb,
70158e6a2a04Slm66018 			    (void *)dkarg, DDI_SLEEP);
70163af08d82Slm66018 			if (rv == NULL) {
70173af08d82Slm66018 				/* clean up if dispatch fails */
70183af08d82Slm66018 				mutex_enter(&vdc->lock);
70193af08d82Slm66018 				vdc->dkio_flush_pending--;
702078fcd0a1Sachartre 				mutex_exit(&vdc->lock);
70213af08d82Slm66018 				kmem_free(dkarg, sizeof (vdc_dk_arg_t));
70223af08d82Slm66018 			}
70238e6a2a04Slm66018 
70248e6a2a04Slm66018 			return (rv == NULL ? ENOMEM : 0);
70258e6a2a04Slm66018 		}
70268e6a2a04Slm66018 	}
70278e6a2a04Slm66018 
70281ae08745Sheppo 	/* catch programming error in vdc - should be a VD_OP_XXX ioctl */
70293af08d82Slm66018 	ASSERT(iop->op != 0);
70301ae08745Sheppo 
703117cadca8Slm66018 	/* check if the vDisk server handles the operation for this vDisk */
703217cadca8Slm66018 	if (VD_OP_SUPPORTED(vdc->operations, iop->op) == B_FALSE) {
703317cadca8Slm66018 		DMSG(vdc, 0, "[%d] Unsupported VD_OP operation (0x%x)\n",
703417cadca8Slm66018 		    vdc->instance, iop->op);
703517cadca8Slm66018 		return (ENOTSUP);
703617cadca8Slm66018 	}
703717cadca8Slm66018 
70381ae08745Sheppo 	/* LDC requires that the memory being mapped is 8-byte aligned */
70391ae08745Sheppo 	alloc_len = P2ROUNDUP(len, sizeof (uint64_t));
70403af08d82Slm66018 	DMSG(vdc, 1, "[%d] struct size %ld alloc %ld\n",
70413af08d82Slm66018 	    instance, len, alloc_len);
70421ae08745Sheppo 
7043eff7243fSlm66018 	if (alloc_len > 0)
70441ae08745Sheppo 		mem_p = kmem_zalloc(alloc_len, KM_SLEEP);
70451ae08745Sheppo 
70460a55fbb7Slm66018 	/*
7047eff7243fSlm66018 	 * Call the conversion function for this ioctl which, if necessary,
70480a55fbb7Slm66018 	 * converts from the Solaris format to the format ARC'ed
70490a55fbb7Slm66018 	 * as part of the vDisk protocol (FWARC 2006/195)
70500a55fbb7Slm66018 	 */
70513af08d82Slm66018 	ASSERT(iop->convert != NULL);
70523af08d82Slm66018 	rv = (iop->convert)(vdc, arg, mem_p, mode, VD_COPYIN);
70531ae08745Sheppo 	if (rv != 0) {
70543af08d82Slm66018 		DMSG(vdc, 0, "[%d] convert func returned %d for ioctl 0x%x\n",
7055e1ebb9ecSlm66018 		    instance, rv, cmd);
70561ae08745Sheppo 		if (mem_p != NULL)
70571ae08745Sheppo 			kmem_free(mem_p, alloc_len);
70580a55fbb7Slm66018 		return (rv);
70591ae08745Sheppo 	}
70601ae08745Sheppo 
70611ae08745Sheppo 	/*
70621ae08745Sheppo 	 * send request to vds to service the ioctl.
70631ae08745Sheppo 	 */
70643af08d82Slm66018 	rv = vdc_do_sync_op(vdc, iop->op, mem_p, alloc_len,
70650d0c8d4bSnarayan 	    VDCPART(dev), 0, CB_SYNC, (void *)(uint64_t)mode,
70662f5224aeSachartre 	    VIO_both_dir, B_TRUE);
706778fcd0a1Sachartre 
70681ae08745Sheppo 	if (rv != 0) {
70691ae08745Sheppo 		/*
70701ae08745Sheppo 		 * This is not necessarily an error. The ioctl could
70711ae08745Sheppo 		 * be returning a value such as ENOTTY to indicate
70721ae08745Sheppo 		 * that the ioctl is not applicable.
70731ae08745Sheppo 		 */
70743af08d82Slm66018 		DMSG(vdc, 0, "[%d] vds returned %d for ioctl 0x%x\n",
7075e1ebb9ecSlm66018 		    instance, rv, cmd);
70761ae08745Sheppo 		if (mem_p != NULL)
70771ae08745Sheppo 			kmem_free(mem_p, alloc_len);
7078d10e4ef2Snarayan 
70791ae08745Sheppo 		return (rv);
70801ae08745Sheppo 	}
70811ae08745Sheppo 
70821ae08745Sheppo 	/*
70830a55fbb7Slm66018 	 * Call the conversion function (if it exists) for this ioctl
70840a55fbb7Slm66018 	 * which converts from the format ARC'ed as part of the vDisk
70850a55fbb7Slm66018 	 * protocol (FWARC 2006/195) back to a format understood by
70860a55fbb7Slm66018 	 * the rest of Solaris.
70871ae08745Sheppo 	 */
70883af08d82Slm66018 	rv = (iop->convert)(vdc, mem_p, arg, mode, VD_COPYOUT);
70890a55fbb7Slm66018 	if (rv != 0) {
70903af08d82Slm66018 		DMSG(vdc, 0, "[%d] convert func returned %d for ioctl 0x%x\n",
7091e1ebb9ecSlm66018 		    instance, rv, cmd);
70921ae08745Sheppo 		if (mem_p != NULL)
70931ae08745Sheppo 			kmem_free(mem_p, alloc_len);
70940a55fbb7Slm66018 		return (rv);
70951ae08745Sheppo 	}
70961ae08745Sheppo 
70971ae08745Sheppo 	if (mem_p != NULL)
70981ae08745Sheppo 		kmem_free(mem_p, alloc_len);
70991ae08745Sheppo 
71001ae08745Sheppo 	return (rv);
71011ae08745Sheppo }
71021ae08745Sheppo 
71031ae08745Sheppo /*
71041ae08745Sheppo  * Function:
71050a55fbb7Slm66018  *
71060a55fbb7Slm66018  * Description:
71070a55fbb7Slm66018  *	This is an empty conversion function used by ioctl calls which
71080a55fbb7Slm66018  *	do not need to convert the data being passed in/out to userland
71090a55fbb7Slm66018  */
71100a55fbb7Slm66018 static int
7111d10e4ef2Snarayan vdc_null_copy_func(vdc_t *vdc, void *from, void *to, int mode, int dir)
71120a55fbb7Slm66018 {
7113d10e4ef2Snarayan 	_NOTE(ARGUNUSED(vdc))
71140a55fbb7Slm66018 	_NOTE(ARGUNUSED(from))
71150a55fbb7Slm66018 	_NOTE(ARGUNUSED(to))
71160a55fbb7Slm66018 	_NOTE(ARGUNUSED(mode))
71170a55fbb7Slm66018 	_NOTE(ARGUNUSED(dir))
71180a55fbb7Slm66018 
71190a55fbb7Slm66018 	return (0);
71200a55fbb7Slm66018 }
71210a55fbb7Slm66018 
71224bac2208Snarayan static int
71234bac2208Snarayan vdc_get_wce_convert(vdc_t *vdc, void *from, void *to,
71244bac2208Snarayan     int mode, int dir)
71254bac2208Snarayan {
71264bac2208Snarayan 	_NOTE(ARGUNUSED(vdc))
71274bac2208Snarayan 
71284bac2208Snarayan 	if (dir == VD_COPYIN)
71294bac2208Snarayan 		return (0);		/* nothing to do */
71304bac2208Snarayan 
71314bac2208Snarayan 	if (ddi_copyout(from, to, sizeof (int), mode) != 0)
71324bac2208Snarayan 		return (EFAULT);
71334bac2208Snarayan 
71344bac2208Snarayan 	return (0);
71354bac2208Snarayan }
71364bac2208Snarayan 
71374bac2208Snarayan static int
71384bac2208Snarayan vdc_set_wce_convert(vdc_t *vdc, void *from, void *to,
71394bac2208Snarayan     int mode, int dir)
71404bac2208Snarayan {
71414bac2208Snarayan 	_NOTE(ARGUNUSED(vdc))
71424bac2208Snarayan 
71434bac2208Snarayan 	if (dir == VD_COPYOUT)
71444bac2208Snarayan 		return (0);		/* nothing to do */
71454bac2208Snarayan 
71464bac2208Snarayan 	if (ddi_copyin(from, to, sizeof (int), mode) != 0)
71474bac2208Snarayan 		return (EFAULT);
71484bac2208Snarayan 
71494bac2208Snarayan 	return (0);
71504bac2208Snarayan }
71514bac2208Snarayan 
71520a55fbb7Slm66018 /*
71530a55fbb7Slm66018  * Function:
71540a55fbb7Slm66018  *	vdc_get_vtoc_convert()
71550a55fbb7Slm66018  *
71560a55fbb7Slm66018  * Description:
7157d10e4ef2Snarayan  *	This routine performs the necessary convertions from the DKIOCGVTOC
7158d10e4ef2Snarayan  *	Solaris structure to the format defined in FWARC 2006/195.
7159d10e4ef2Snarayan  *
7160d10e4ef2Snarayan  *	In the struct vtoc definition, the timestamp field is marked as not
7161d10e4ef2Snarayan  *	supported so it is not part of vDisk protocol (FWARC 2006/195).
7162d10e4ef2Snarayan  *	However SVM uses that field to check it can write into the VTOC,
7163d10e4ef2Snarayan  *	so we fake up the info of that field.
71640a55fbb7Slm66018  *
71650a55fbb7Slm66018  * Arguments:
7166d10e4ef2Snarayan  *	vdc	- the vDisk client
71670a55fbb7Slm66018  *	from	- the buffer containing the data to be copied from
71680a55fbb7Slm66018  *	to	- the buffer to be copied to
71690a55fbb7Slm66018  *	mode	- flags passed to ioctl() call
71700a55fbb7Slm66018  *	dir	- the "direction" of the copy - VD_COPYIN or VD_COPYOUT
71710a55fbb7Slm66018  *
71720a55fbb7Slm66018  * Return Code:
71730a55fbb7Slm66018  *	0	- Success
71740a55fbb7Slm66018  *	ENXIO	- incorrect buffer passed in.
7175d10e4ef2Snarayan  *	EFAULT	- ddi_copyout routine encountered an error.
71760a55fbb7Slm66018  */
71770a55fbb7Slm66018 static int
7178d10e4ef2Snarayan vdc_get_vtoc_convert(vdc_t *vdc, void *from, void *to, int mode, int dir)
71790a55fbb7Slm66018 {
7180d10e4ef2Snarayan 	int		i;
7181342440ecSPrasad Singamsetty 	struct vtoc	vtoc;
7182342440ecSPrasad Singamsetty 	struct vtoc32	vtoc32;
7183342440ecSPrasad Singamsetty 	struct extvtoc	evtoc;
7184342440ecSPrasad Singamsetty 	int		rv;
71850a55fbb7Slm66018 
71860a55fbb7Slm66018 	if (dir != VD_COPYOUT)
71870a55fbb7Slm66018 		return (0);	/* nothing to do */
71880a55fbb7Slm66018 
71890a55fbb7Slm66018 	if ((from == NULL) || (to == NULL))
71900a55fbb7Slm66018 		return (ENXIO);
71910a55fbb7Slm66018 
7192342440ecSPrasad Singamsetty 	if (vdc->vdisk_size > VD_OLDVTOC_LIMIT)
7193342440ecSPrasad Singamsetty 		return (EOVERFLOW);
71940a55fbb7Slm66018 
7195342440ecSPrasad Singamsetty 	VD_VTOC2VTOC((vd_vtoc_t *)from, &evtoc);
7196d10e4ef2Snarayan 
7197d10e4ef2Snarayan 	/* fake the VTOC timestamp field */
7198d10e4ef2Snarayan 	for (i = 0; i < V_NUMPAR; i++) {
7199342440ecSPrasad Singamsetty 		evtoc.timestamp[i] = vdc->vtoc->timestamp[i];
7200d10e4ef2Snarayan 	}
7201d10e4ef2Snarayan 
72020a55fbb7Slm66018 	if (ddi_model_convert_from(mode & FMODELS) == DDI_MODEL_ILP32) {
720317cadca8Slm66018 		/* LINTED E_ASSIGN_NARROW_CONV */
7204342440ecSPrasad Singamsetty 		extvtoctovtoc32(evtoc, vtoc32);
7205342440ecSPrasad Singamsetty 		rv = ddi_copyout(&vtoc32, to, sizeof (vtoc32), mode);
72060a55fbb7Slm66018 		if (rv != 0)
72070a55fbb7Slm66018 			rv = EFAULT;
7208342440ecSPrasad Singamsetty 	} else {
7209342440ecSPrasad Singamsetty 		extvtoctovtoc(evtoc, vtoc);
7210342440ecSPrasad Singamsetty 		rv = ddi_copyout(&vtoc, to, sizeof (vtoc), mode);
7211342440ecSPrasad Singamsetty 		if (rv != 0)
7212342440ecSPrasad Singamsetty 			rv = EFAULT;
7213342440ecSPrasad Singamsetty 	}
72140a55fbb7Slm66018 
72150a55fbb7Slm66018 	return (rv);
72160a55fbb7Slm66018 }
72170a55fbb7Slm66018 
72180a55fbb7Slm66018 /*
72190a55fbb7Slm66018  * Function:
72200a55fbb7Slm66018  *	vdc_set_vtoc_convert()
72210a55fbb7Slm66018  *
72220a55fbb7Slm66018  * Description:
7223d10e4ef2Snarayan  *	This routine performs the necessary convertions from the DKIOCSVTOC
7224d10e4ef2Snarayan  *	Solaris structure to the format defined in FWARC 2006/195.
72250a55fbb7Slm66018  *
72260a55fbb7Slm66018  * Arguments:
7227d10e4ef2Snarayan  *	vdc	- the vDisk client
72280a55fbb7Slm66018  *	from	- Buffer with data
72290a55fbb7Slm66018  *	to	- Buffer where data is to be copied to
72300a55fbb7Slm66018  *	mode	- flags passed to ioctl
72310a55fbb7Slm66018  *	dir	- direction of copy (in or out)
72320a55fbb7Slm66018  *
72330a55fbb7Slm66018  * Return Code:
72340a55fbb7Slm66018  *	0	- Success
72350a55fbb7Slm66018  *	ENXIO	- Invalid buffer passed in
72360a55fbb7Slm66018  *	EFAULT	- ddi_copyin of data failed
72370a55fbb7Slm66018  */
72380a55fbb7Slm66018 static int
7239d10e4ef2Snarayan vdc_set_vtoc_convert(vdc_t *vdc, void *from, void *to, int mode, int dir)
72400a55fbb7Slm66018 {
7241342440ecSPrasad Singamsetty 	void		*uvtoc;
7242342440ecSPrasad Singamsetty 	struct vtoc	vtoc;
7243342440ecSPrasad Singamsetty 	struct vtoc32	vtoc32;
7244342440ecSPrasad Singamsetty 	struct extvtoc	evtoc;
7245342440ecSPrasad Singamsetty 	int		i, rv;
72460a55fbb7Slm66018 
72470a55fbb7Slm66018 	if ((from == NULL) || (to == NULL))
72480a55fbb7Slm66018 		return (ENXIO);
72490a55fbb7Slm66018 
7250342440ecSPrasad Singamsetty 	if (vdc->vdisk_size > VD_OLDVTOC_LIMIT)
7251342440ecSPrasad Singamsetty 		return (EOVERFLOW);
72522f5224aeSachartre 
7253342440ecSPrasad Singamsetty 	uvtoc = (dir == VD_COPYIN)? from : to;
72540a55fbb7Slm66018 
72550a55fbb7Slm66018 	if (ddi_model_convert_from(mode & FMODELS) == DDI_MODEL_ILP32) {
7256342440ecSPrasad Singamsetty 		rv = ddi_copyin(uvtoc, &vtoc32, sizeof (vtoc32), mode);
7257342440ecSPrasad Singamsetty 		if (rv != 0)
7258342440ecSPrasad Singamsetty 			return (EFAULT);
7259342440ecSPrasad Singamsetty 		vtoc32toextvtoc(vtoc32, evtoc);
72600a55fbb7Slm66018 	} else {
7261342440ecSPrasad Singamsetty 		rv = ddi_copyin(uvtoc, &vtoc, sizeof (vtoc), mode);
7262342440ecSPrasad Singamsetty 		if (rv != 0)
7263342440ecSPrasad Singamsetty 			return (EFAULT);
7264342440ecSPrasad Singamsetty 		vtoctoextvtoc(vtoc, evtoc);
72650a55fbb7Slm66018 	}
72660a55fbb7Slm66018 
72672f5224aeSachartre 	if (dir == VD_COPYOUT) {
72682f5224aeSachartre 		/*
72692f5224aeSachartre 		 * The disk label may have changed. Revalidate the disk
72705b98b509Sachartre 		 * geometry. This will also update the device nodes.
72712f5224aeSachartre 		 */
72722f5224aeSachartre 		vdc_validate(vdc);
72732f5224aeSachartre 
72742f5224aeSachartre 		/*
72752f5224aeSachartre 		 * We also need to keep track of the timestamp fields.
72762f5224aeSachartre 		 */
72772f5224aeSachartre 		for (i = 0; i < V_NUMPAR; i++) {
7278342440ecSPrasad Singamsetty 			vdc->vtoc->timestamp[i] = evtoc.timestamp[i];
7279342440ecSPrasad Singamsetty 		}
7280342440ecSPrasad Singamsetty 
7281342440ecSPrasad Singamsetty 	} else {
7282342440ecSPrasad Singamsetty 		VTOC2VD_VTOC(&evtoc, (vd_vtoc_t *)to);
72832f5224aeSachartre 	}
72842f5224aeSachartre 
72852f5224aeSachartre 	return (0);
72862f5224aeSachartre }
72872f5224aeSachartre 
7288342440ecSPrasad Singamsetty static int
7289342440ecSPrasad Singamsetty vdc_get_extvtoc_convert(vdc_t *vdc, void *from, void *to, int mode, int dir)
7290342440ecSPrasad Singamsetty {
7291342440ecSPrasad Singamsetty 	int		i, rv;
7292342440ecSPrasad Singamsetty 	struct extvtoc	evtoc;
7293342440ecSPrasad Singamsetty 
7294342440ecSPrasad Singamsetty 	if (dir != VD_COPYOUT)
7295342440ecSPrasad Singamsetty 		return (0);	/* nothing to do */
7296342440ecSPrasad Singamsetty 
7297342440ecSPrasad Singamsetty 	if ((from == NULL) || (to == NULL))
7298342440ecSPrasad Singamsetty 		return (ENXIO);
7299342440ecSPrasad Singamsetty 
7300342440ecSPrasad Singamsetty 	VD_VTOC2VTOC((vd_vtoc_t *)from, &evtoc);
7301342440ecSPrasad Singamsetty 
7302342440ecSPrasad Singamsetty 	/* fake the VTOC timestamp field */
7303342440ecSPrasad Singamsetty 	for (i = 0; i < V_NUMPAR; i++) {
7304342440ecSPrasad Singamsetty 		evtoc.timestamp[i] = vdc->vtoc->timestamp[i];
7305342440ecSPrasad Singamsetty 	}
7306342440ecSPrasad Singamsetty 
7307342440ecSPrasad Singamsetty 	rv = ddi_copyout(&evtoc, to, sizeof (struct extvtoc), mode);
7308342440ecSPrasad Singamsetty 	if (rv != 0)
7309342440ecSPrasad Singamsetty 		rv = EFAULT;
7310342440ecSPrasad Singamsetty 
7311342440ecSPrasad Singamsetty 	return (rv);
7312342440ecSPrasad Singamsetty }
7313342440ecSPrasad Singamsetty 
7314342440ecSPrasad Singamsetty static int
7315342440ecSPrasad Singamsetty vdc_set_extvtoc_convert(vdc_t *vdc, void *from, void *to, int mode, int dir)
7316342440ecSPrasad Singamsetty {
7317342440ecSPrasad Singamsetty 	void		*uvtoc;
7318342440ecSPrasad Singamsetty 	struct extvtoc	evtoc;
7319342440ecSPrasad Singamsetty 	int		i, rv;
7320342440ecSPrasad Singamsetty 
7321342440ecSPrasad Singamsetty 	if ((from == NULL) || (to == NULL))
7322342440ecSPrasad Singamsetty 		return (ENXIO);
7323342440ecSPrasad Singamsetty 
7324342440ecSPrasad Singamsetty 	uvtoc = (dir == VD_COPYIN)? from : to;
7325342440ecSPrasad Singamsetty 
7326342440ecSPrasad Singamsetty 	rv = ddi_copyin(uvtoc, &evtoc, sizeof (struct extvtoc), mode);
7327342440ecSPrasad Singamsetty 	if (rv != 0)
7328342440ecSPrasad Singamsetty 		return (EFAULT);
7329342440ecSPrasad Singamsetty 
7330342440ecSPrasad Singamsetty 	if (dir == VD_COPYOUT) {
7331342440ecSPrasad Singamsetty 		/*
7332342440ecSPrasad Singamsetty 		 * The disk label may have changed. Revalidate the disk
7333342440ecSPrasad Singamsetty 		 * geometry. This will also update the device nodes.
7334342440ecSPrasad Singamsetty 		 */
7335342440ecSPrasad Singamsetty 		vdc_validate(vdc);
7336342440ecSPrasad Singamsetty 
7337342440ecSPrasad Singamsetty 		/*
7338342440ecSPrasad Singamsetty 		 * We also need to keep track of the timestamp fields.
7339342440ecSPrasad Singamsetty 		 */
7340342440ecSPrasad Singamsetty 		for (i = 0; i < V_NUMPAR; i++) {
7341342440ecSPrasad Singamsetty 			vdc->vtoc->timestamp[i] = evtoc.timestamp[i];
7342342440ecSPrasad Singamsetty 		}
7343342440ecSPrasad Singamsetty 
7344342440ecSPrasad Singamsetty 	} else {
7345342440ecSPrasad Singamsetty 		VTOC2VD_VTOC(&evtoc, (vd_vtoc_t *)to);
7346342440ecSPrasad Singamsetty 	}
73470a55fbb7Slm66018 
73480a55fbb7Slm66018 	return (0);
73490a55fbb7Slm66018 }
73500a55fbb7Slm66018 
73510a55fbb7Slm66018 /*
73520a55fbb7Slm66018  * Function:
73530a55fbb7Slm66018  *	vdc_get_geom_convert()
73540a55fbb7Slm66018  *
73550a55fbb7Slm66018  * Description:
7356d10e4ef2Snarayan  *	This routine performs the necessary convertions from the DKIOCGGEOM,
7357d10e4ef2Snarayan  *	DKIOCG_PHYSGEOM and DKIOG_VIRTGEOM Solaris structures to the format
7358d10e4ef2Snarayan  *	defined in FWARC 2006/195
73590a55fbb7Slm66018  *
73600a55fbb7Slm66018  * Arguments:
7361d10e4ef2Snarayan  *	vdc	- the vDisk client
73620a55fbb7Slm66018  *	from	- Buffer with data
73630a55fbb7Slm66018  *	to	- Buffer where data is to be copied to
73640a55fbb7Slm66018  *	mode	- flags passed to ioctl
73650a55fbb7Slm66018  *	dir	- direction of copy (in or out)
73660a55fbb7Slm66018  *
73670a55fbb7Slm66018  * Return Code:
73680a55fbb7Slm66018  *	0	- Success
73690a55fbb7Slm66018  *	ENXIO	- Invalid buffer passed in
7370d10e4ef2Snarayan  *	EFAULT	- ddi_copyout of data failed
73710a55fbb7Slm66018  */
73720a55fbb7Slm66018 static int
7373d10e4ef2Snarayan vdc_get_geom_convert(vdc_t *vdc, void *from, void *to, int mode, int dir)
73740a55fbb7Slm66018 {
7375d10e4ef2Snarayan 	_NOTE(ARGUNUSED(vdc))
7376d10e4ef2Snarayan 
73770a55fbb7Slm66018 	struct dk_geom	geom;
73780a55fbb7Slm66018 	int	copy_len = sizeof (struct dk_geom);
73790a55fbb7Slm66018 	int	rv = 0;
73800a55fbb7Slm66018 
73810a55fbb7Slm66018 	if (dir != VD_COPYOUT)
73820a55fbb7Slm66018 		return (0);	/* nothing to do */
73830a55fbb7Slm66018 
73840a55fbb7Slm66018 	if ((from == NULL) || (to == NULL))
73850a55fbb7Slm66018 		return (ENXIO);
73860a55fbb7Slm66018 
73870a55fbb7Slm66018 	VD_GEOM2DK_GEOM((vd_geom_t *)from, &geom);
73880a55fbb7Slm66018 	rv = ddi_copyout(&geom, to, copy_len, mode);
73890a55fbb7Slm66018 	if (rv != 0)
73900a55fbb7Slm66018 		rv = EFAULT;
73910a55fbb7Slm66018 
73920a55fbb7Slm66018 	return (rv);
73930a55fbb7Slm66018 }
73940a55fbb7Slm66018 
73950a55fbb7Slm66018 /*
73960a55fbb7Slm66018  * Function:
73970a55fbb7Slm66018  *	vdc_set_geom_convert()
73980a55fbb7Slm66018  *
73990a55fbb7Slm66018  * Description:
7400d10e4ef2Snarayan  *	This routine performs the necessary convertions from the DKIOCSGEOM
7401d10e4ef2Snarayan  *	Solaris structure to the format defined in FWARC 2006/195.
74020a55fbb7Slm66018  *
74030a55fbb7Slm66018  * Arguments:
7404d10e4ef2Snarayan  *	vdc	- the vDisk client
74050a55fbb7Slm66018  *	from	- Buffer with data
74060a55fbb7Slm66018  *	to	- Buffer where data is to be copied to
74070a55fbb7Slm66018  *	mode	- flags passed to ioctl
74080a55fbb7Slm66018  *	dir	- direction of copy (in or out)
74090a55fbb7Slm66018  *
74100a55fbb7Slm66018  * Return Code:
74110a55fbb7Slm66018  *	0	- Success
74120a55fbb7Slm66018  *	ENXIO	- Invalid buffer passed in
74130a55fbb7Slm66018  *	EFAULT	- ddi_copyin of data failed
74140a55fbb7Slm66018  */
74150a55fbb7Slm66018 static int
7416d10e4ef2Snarayan vdc_set_geom_convert(vdc_t *vdc, void *from, void *to, int mode, int dir)
74170a55fbb7Slm66018 {
7418d10e4ef2Snarayan 	_NOTE(ARGUNUSED(vdc))
7419d10e4ef2Snarayan 
74200a55fbb7Slm66018 	vd_geom_t	vdgeom;
74210a55fbb7Slm66018 	void		*tmp_mem = NULL;
74220a55fbb7Slm66018 	int		copy_len = sizeof (struct dk_geom);
74230a55fbb7Slm66018 	int		rv = 0;
74240a55fbb7Slm66018 
74250a55fbb7Slm66018 	if (dir != VD_COPYIN)
74260a55fbb7Slm66018 		return (0);	/* nothing to do */
74270a55fbb7Slm66018 
74280a55fbb7Slm66018 	if ((from == NULL) || (to == NULL))
74290a55fbb7Slm66018 		return (ENXIO);
74300a55fbb7Slm66018 
74310a55fbb7Slm66018 	tmp_mem = kmem_alloc(copy_len, KM_SLEEP);
74320a55fbb7Slm66018 
74330a55fbb7Slm66018 	rv = ddi_copyin(from, tmp_mem, copy_len, mode);
74340a55fbb7Slm66018 	if (rv != 0) {
74350a55fbb7Slm66018 		kmem_free(tmp_mem, copy_len);
74360a55fbb7Slm66018 		return (EFAULT);
74370a55fbb7Slm66018 	}
74380a55fbb7Slm66018 	DK_GEOM2VD_GEOM((struct dk_geom *)tmp_mem, &vdgeom);
74390a55fbb7Slm66018 	bcopy(&vdgeom, to, sizeof (vdgeom));
74400a55fbb7Slm66018 	kmem_free(tmp_mem, copy_len);
74410a55fbb7Slm66018 
74420a55fbb7Slm66018 	return (0);
74430a55fbb7Slm66018 }
74440a55fbb7Slm66018 
74454bac2208Snarayan static int
74464bac2208Snarayan vdc_get_efi_convert(vdc_t *vdc, void *from, void *to, int mode, int dir)
74474bac2208Snarayan {
74484bac2208Snarayan 	_NOTE(ARGUNUSED(vdc))
74494bac2208Snarayan 
74504bac2208Snarayan 	vd_efi_t	*vd_efi;
74514bac2208Snarayan 	dk_efi_t	dk_efi;
74524bac2208Snarayan 	int		rv = 0;
74534bac2208Snarayan 	void		*uaddr;
74544bac2208Snarayan 
74554bac2208Snarayan 	if ((from == NULL) || (to == NULL))
74564bac2208Snarayan 		return (ENXIO);
74574bac2208Snarayan 
74584bac2208Snarayan 	if (dir == VD_COPYIN) {
74594bac2208Snarayan 
74604bac2208Snarayan 		vd_efi = (vd_efi_t *)to;
74614bac2208Snarayan 
74624bac2208Snarayan 		rv = ddi_copyin(from, &dk_efi, sizeof (dk_efi_t), mode);
74634bac2208Snarayan 		if (rv != 0)
74644bac2208Snarayan 			return (EFAULT);
74654bac2208Snarayan 
74664bac2208Snarayan 		vd_efi->lba = dk_efi.dki_lba;
74674bac2208Snarayan 		vd_efi->length = dk_efi.dki_length;
74684bac2208Snarayan 		bzero(vd_efi->data, vd_efi->length);
74694bac2208Snarayan 
74704bac2208Snarayan 	} else {
74714bac2208Snarayan 
74724bac2208Snarayan 		rv = ddi_copyin(to, &dk_efi, sizeof (dk_efi_t), mode);
74734bac2208Snarayan 		if (rv != 0)
74744bac2208Snarayan 			return (EFAULT);
74754bac2208Snarayan 
74764bac2208Snarayan 		uaddr = dk_efi.dki_data;
74774bac2208Snarayan 
74784bac2208Snarayan 		dk_efi.dki_data = kmem_alloc(dk_efi.dki_length, KM_SLEEP);
74794bac2208Snarayan 
74804bac2208Snarayan 		VD_EFI2DK_EFI((vd_efi_t *)from, &dk_efi);
74814bac2208Snarayan 
74824bac2208Snarayan 		rv = ddi_copyout(dk_efi.dki_data, uaddr, dk_efi.dki_length,
74834bac2208Snarayan 		    mode);
74844bac2208Snarayan 		if (rv != 0)
74854bac2208Snarayan 			return (EFAULT);
74864bac2208Snarayan 
74874bac2208Snarayan 		kmem_free(dk_efi.dki_data, dk_efi.dki_length);
74884bac2208Snarayan 	}
74894bac2208Snarayan 
74904bac2208Snarayan 	return (0);
74914bac2208Snarayan }
74924bac2208Snarayan 
74934bac2208Snarayan static int
74944bac2208Snarayan vdc_set_efi_convert(vdc_t *vdc, void *from, void *to, int mode, int dir)
74954bac2208Snarayan {
74964bac2208Snarayan 	_NOTE(ARGUNUSED(vdc))
74974bac2208Snarayan 
74984bac2208Snarayan 	dk_efi_t	dk_efi;
74994bac2208Snarayan 	void		*uaddr;
75004bac2208Snarayan 
75012f5224aeSachartre 	if (dir == VD_COPYOUT) {
75022f5224aeSachartre 		/*
75032f5224aeSachartre 		 * The disk label may have changed. Revalidate the disk
75045b98b509Sachartre 		 * geometry. This will also update the device nodes.
75052f5224aeSachartre 		 */
75062f5224aeSachartre 		vdc_validate(vdc);
75072f5224aeSachartre 		return (0);
75082f5224aeSachartre 	}
75094bac2208Snarayan 
75104bac2208Snarayan 	if ((from == NULL) || (to == NULL))
75114bac2208Snarayan 		return (ENXIO);
75124bac2208Snarayan 
75134bac2208Snarayan 	if (ddi_copyin(from, &dk_efi, sizeof (dk_efi_t), mode) != 0)
75144bac2208Snarayan 		return (EFAULT);
75154bac2208Snarayan 
75164bac2208Snarayan 	uaddr = dk_efi.dki_data;
75174bac2208Snarayan 
75184bac2208Snarayan 	dk_efi.dki_data = kmem_alloc(dk_efi.dki_length, KM_SLEEP);
75194bac2208Snarayan 
75204bac2208Snarayan 	if (ddi_copyin(uaddr, dk_efi.dki_data, dk_efi.dki_length, mode) != 0)
75214bac2208Snarayan 		return (EFAULT);
75224bac2208Snarayan 
75234bac2208Snarayan 	DK_EFI2VD_EFI(&dk_efi, (vd_efi_t *)to);
75244bac2208Snarayan 
75254bac2208Snarayan 	kmem_free(dk_efi.dki_data, dk_efi.dki_length);
75264bac2208Snarayan 
75274bac2208Snarayan 	return (0);
75284bac2208Snarayan }
75294bac2208Snarayan 
753017cadca8Slm66018 
753117cadca8Slm66018 /* -------------------------------------------------------------------------- */
753217cadca8Slm66018 
75330a55fbb7Slm66018 /*
75340a55fbb7Slm66018  * Function:
75351ae08745Sheppo  *	vdc_create_fake_geometry()
75361ae08745Sheppo  *
75371ae08745Sheppo  * Description:
753817cadca8Slm66018  *	This routine fakes up the disk info needed for some DKIO ioctls such
753917cadca8Slm66018  *	as DKIOCINFO and DKIOCGMEDIAINFO [just like lofi(7D) and ramdisk(7D) do]
75401ae08745Sheppo  *
754117cadca8Slm66018  *	Note: This function must not be called until the vDisk attributes have
754217cadca8Slm66018  *	been exchanged as part of the handshake with the vDisk server.
75431ae08745Sheppo  *
75441ae08745Sheppo  * Arguments:
75451ae08745Sheppo  *	vdc	- soft state pointer for this instance of the device driver.
75461ae08745Sheppo  *
75471ae08745Sheppo  * Return Code:
754878fcd0a1Sachartre  *	none.
75491ae08745Sheppo  */
755078fcd0a1Sachartre static void
75511ae08745Sheppo vdc_create_fake_geometry(vdc_t *vdc)
75521ae08745Sheppo {
75531ae08745Sheppo 	ASSERT(vdc != NULL);
755478fcd0a1Sachartre 	ASSERT(vdc->max_xfer_sz != 0);
75550d0c8d4bSnarayan 
75560d0c8d4bSnarayan 	/*
75571ae08745Sheppo 	 * DKIOCINFO support
75581ae08745Sheppo 	 */
755978fcd0a1Sachartre 	if (vdc->cinfo == NULL)
75601ae08745Sheppo 		vdc->cinfo = kmem_zalloc(sizeof (struct dk_cinfo), KM_SLEEP);
75611ae08745Sheppo 
75621ae08745Sheppo 	(void) strcpy(vdc->cinfo->dki_cname, VDC_DRIVER_NAME);
75631ae08745Sheppo 	(void) strcpy(vdc->cinfo->dki_dname, VDC_DRIVER_NAME);
75648e6a2a04Slm66018 	/* max_xfer_sz is #blocks so we don't need to divide by DEV_BSIZE */
75658e6a2a04Slm66018 	vdc->cinfo->dki_maxtransfer = vdc->max_xfer_sz;
75662f5224aeSachartre 
756787a7269eSachartre 	/*
75682f5224aeSachartre 	 * We set the controller type to DKC_SCSI_CCS only if the VD_OP_SCSICMD
75692f5224aeSachartre 	 * operation is supported, otherwise the controller type is DKC_DIRECT.
75702f5224aeSachartre 	 * Version 1.0 does not support the VD_OP_SCSICMD operation, so the
75712f5224aeSachartre 	 * controller type is always DKC_DIRECT in that case.
75722f5224aeSachartre 	 *
757317cadca8Slm66018 	 * If the virtual disk is backed by a physical CD/DVD device or
757417cadca8Slm66018 	 * an ISO image, modify the controller type to indicate this
757587a7269eSachartre 	 */
757617cadca8Slm66018 	switch (vdc->vdisk_media) {
757717cadca8Slm66018 	case VD_MEDIA_CD:
757817cadca8Slm66018 	case VD_MEDIA_DVD:
757917cadca8Slm66018 		vdc->cinfo->dki_ctype = DKC_CDROM;
758017cadca8Slm66018 		break;
758117cadca8Slm66018 	case VD_MEDIA_FIXED:
75822f5224aeSachartre 		if (VD_OP_SUPPORTED(vdc->operations, VD_OP_SCSICMD))
75832f5224aeSachartre 			vdc->cinfo->dki_ctype = DKC_SCSI_CCS;
75842f5224aeSachartre 		else
758587a7269eSachartre 			vdc->cinfo->dki_ctype = DKC_DIRECT;
758617cadca8Slm66018 		break;
758717cadca8Slm66018 	default:
758817cadca8Slm66018 		/* in the case of v1.0 we default to a fixed disk */
758917cadca8Slm66018 		vdc->cinfo->dki_ctype = DKC_DIRECT;
759017cadca8Slm66018 		break;
759117cadca8Slm66018 	}
75921ae08745Sheppo 	vdc->cinfo->dki_flags = DKI_FMTVOL;
75931ae08745Sheppo 	vdc->cinfo->dki_cnum = 0;
75941ae08745Sheppo 	vdc->cinfo->dki_addr = 0;
75951ae08745Sheppo 	vdc->cinfo->dki_space = 0;
75961ae08745Sheppo 	vdc->cinfo->dki_prio = 0;
75971ae08745Sheppo 	vdc->cinfo->dki_vec = 0;
75981ae08745Sheppo 	vdc->cinfo->dki_unit = vdc->instance;
75991ae08745Sheppo 	vdc->cinfo->dki_slave = 0;
76001ae08745Sheppo 	/*
76011ae08745Sheppo 	 * The partition number will be created on the fly depending on the
76021ae08745Sheppo 	 * actual slice (i.e. minor node) that is used to request the data.
76031ae08745Sheppo 	 */
76041ae08745Sheppo 	vdc->cinfo->dki_partition = 0;
76051ae08745Sheppo 
76061ae08745Sheppo 	/*
76071ae08745Sheppo 	 * DKIOCGMEDIAINFO support
76081ae08745Sheppo 	 */
76090a55fbb7Slm66018 	if (vdc->minfo == NULL)
76101ae08745Sheppo 		vdc->minfo = kmem_zalloc(sizeof (struct dk_minfo), KM_SLEEP);
761117cadca8Slm66018 
761217cadca8Slm66018 	if (vio_ver_is_supported(vdc->ver, 1, 1)) {
761317cadca8Slm66018 		vdc->minfo->dki_media_type =
761417cadca8Slm66018 		    VD_MEDIATYPE2DK_MEDIATYPE(vdc->vdisk_media);
761517cadca8Slm66018 	} else {
76161ae08745Sheppo 		vdc->minfo->dki_media_type = DK_FIXED_DISK;
761717cadca8Slm66018 	}
761817cadca8Slm66018 
76194bac2208Snarayan 	vdc->minfo->dki_capacity = vdc->vdisk_size;
762017cadca8Slm66018 	vdc->minfo->dki_lbsize = vdc->block_size;
762178fcd0a1Sachartre }
76221ae08745Sheppo 
762378fcd0a1Sachartre static ushort_t
762478fcd0a1Sachartre vdc_lbl2cksum(struct dk_label *label)
762578fcd0a1Sachartre {
762678fcd0a1Sachartre 	int	count;
762778fcd0a1Sachartre 	ushort_t sum, *sp;
762878fcd0a1Sachartre 
762978fcd0a1Sachartre 	count =	(sizeof (struct dk_label)) / (sizeof (short)) - 1;
763078fcd0a1Sachartre 	sp = (ushort_t *)label;
763178fcd0a1Sachartre 	sum = 0;
763278fcd0a1Sachartre 	while (count--) {
763378fcd0a1Sachartre 		sum ^= *sp++;
763478fcd0a1Sachartre 	}
763578fcd0a1Sachartre 
763678fcd0a1Sachartre 	return (sum);
76370a55fbb7Slm66018 }
76380a55fbb7Slm66018 
7639de3a5331SRamesh Chitrothu static void
7640de3a5331SRamesh Chitrothu vdc_update_size(vdc_t *vdc, size_t dsk_size, size_t blk_size, size_t xfr_size)
7641de3a5331SRamesh Chitrothu {
7642de3a5331SRamesh Chitrothu 	vd_err_stats_t  *stp;
7643de3a5331SRamesh Chitrothu 
7644de3a5331SRamesh Chitrothu 	ASSERT(MUTEX_HELD(&vdc->lock));
7645de3a5331SRamesh Chitrothu 	ASSERT(xfr_size != 0);
7646de3a5331SRamesh Chitrothu 
7647de3a5331SRamesh Chitrothu 	/*
7648de3a5331SRamesh Chitrothu 	 * If the disk size is unknown or sizes are unchanged then don't
7649de3a5331SRamesh Chitrothu 	 * update anything.
7650de3a5331SRamesh Chitrothu 	 */
7651de3a5331SRamesh Chitrothu 	if (dsk_size == VD_SIZE_UNKNOWN || dsk_size == 0 ||
7652de3a5331SRamesh Chitrothu 	    (blk_size == vdc->block_size && dsk_size == vdc->vdisk_size &&
7653de3a5331SRamesh Chitrothu 	    xfr_size == vdc->max_xfer_sz))
7654de3a5331SRamesh Chitrothu 		return;
7655de3a5331SRamesh Chitrothu 
7656de3a5331SRamesh Chitrothu 	/*
7657de3a5331SRamesh Chitrothu 	 * We don't know at compile time what the vDisk server will think
7658de3a5331SRamesh Chitrothu 	 * are good values but we apply a large (arbitrary) upper bound to
7659de3a5331SRamesh Chitrothu 	 * prevent memory exhaustion in vdc if it was allocating a DRing
7660de3a5331SRamesh Chitrothu 	 * based of huge values sent by the server. We probably will never
7661de3a5331SRamesh Chitrothu 	 * exceed this except if the message was garbage.
7662de3a5331SRamesh Chitrothu 	 */
7663de3a5331SRamesh Chitrothu 	if ((xfr_size * blk_size) > (PAGESIZE * DEV_BSIZE)) {
7664de3a5331SRamesh Chitrothu 		DMSG(vdc, 0, "[%d] vds block transfer size too big;"
7665de3a5331SRamesh Chitrothu 		    " using max supported by vdc", vdc->instance);
7666de3a5331SRamesh Chitrothu 		xfr_size = maxphys / DEV_BSIZE;
7667de3a5331SRamesh Chitrothu 		dsk_size = (dsk_size * blk_size) / DEV_BSIZE;
7668de3a5331SRamesh Chitrothu 		blk_size = DEV_BSIZE;
7669de3a5331SRamesh Chitrothu 	}
7670de3a5331SRamesh Chitrothu 
7671de3a5331SRamesh Chitrothu 	vdc->max_xfer_sz = xfr_size;
7672de3a5331SRamesh Chitrothu 	vdc->block_size = blk_size;
7673de3a5331SRamesh Chitrothu 	vdc->vdisk_size = dsk_size;
7674de3a5331SRamesh Chitrothu 
7675de3a5331SRamesh Chitrothu 	stp = (vd_err_stats_t *)vdc->err_stats->ks_data;
7676de3a5331SRamesh Chitrothu 	stp->vd_capacity.value.ui64 = dsk_size * blk_size;
7677de3a5331SRamesh Chitrothu 
7678de3a5331SRamesh Chitrothu 	vdc->minfo->dki_capacity = dsk_size;
7679de3a5331SRamesh Chitrothu 	vdc->minfo->dki_lbsize = (uint_t)blk_size;
7680de3a5331SRamesh Chitrothu }
7681de3a5331SRamesh Chitrothu 
76820a55fbb7Slm66018 /*
76830a55fbb7Slm66018  * Function:
768478fcd0a1Sachartre  *	vdc_validate_geometry
76850a55fbb7Slm66018  *
76860a55fbb7Slm66018  * Description:
768778fcd0a1Sachartre  *	This routine discovers the label and geometry of the disk. It stores
768878fcd0a1Sachartre  *	the disk label and related information in the vdc structure. If it
768978fcd0a1Sachartre  *	fails to validate the geometry or to discover the disk label then
769078fcd0a1Sachartre  *	the label is marked as unknown (VD_DISK_LABEL_UNK).
76910a55fbb7Slm66018  *
76920a55fbb7Slm66018  * Arguments:
76930a55fbb7Slm66018  *	vdc	- soft state pointer for this instance of the device driver.
76940a55fbb7Slm66018  *
76950a55fbb7Slm66018  * Return Code:
769678fcd0a1Sachartre  *	0	- success.
769778fcd0a1Sachartre  *	EINVAL	- unknown disk label.
769878fcd0a1Sachartre  *	ENOTSUP	- geometry not applicable (EFI label).
769978fcd0a1Sachartre  *	EIO	- error accessing the disk.
77000a55fbb7Slm66018  */
77010a55fbb7Slm66018 static int
770278fcd0a1Sachartre vdc_validate_geometry(vdc_t *vdc)
77030a55fbb7Slm66018 {
7704d10e4ef2Snarayan 	buf_t	*buf;	/* BREAD requests need to be in a buf_t structure */
77050a55fbb7Slm66018 	dev_t	dev;
77062f5224aeSachartre 	int	rv, rval;
770778fcd0a1Sachartre 	struct dk_label label;
770878fcd0a1Sachartre 	struct dk_geom geom;
7709342440ecSPrasad Singamsetty 	struct extvtoc vtoc;
7710edcc0754Sachartre 	efi_gpt_t *gpt;
7711edcc0754Sachartre 	efi_gpe_t *gpe;
7712edcc0754Sachartre 	vd_efi_dev_t edev;
77130a55fbb7Slm66018 
77140a55fbb7Slm66018 	ASSERT(vdc != NULL);
771578fcd0a1Sachartre 	ASSERT(vdc->vtoc != NULL && vdc->geom != NULL);
771678fcd0a1Sachartre 	ASSERT(MUTEX_HELD(&vdc->lock));
77170a55fbb7Slm66018 
771878fcd0a1Sachartre 	mutex_exit(&vdc->lock);
7719de3a5331SRamesh Chitrothu 	/*
7720de3a5331SRamesh Chitrothu 	 * Check the disk capacity in case it has changed. If that fails then
7721de3a5331SRamesh Chitrothu 	 * we proceed and we will be using the disk size we currently have.
7722de3a5331SRamesh Chitrothu 	 */
7723de3a5331SRamesh Chitrothu 	(void) vdc_check_capacity(vdc);
77240a55fbb7Slm66018 	dev = makedevice(ddi_driver_major(vdc->dip),
77250a55fbb7Slm66018 	    VD_MAKE_DEV(vdc->instance, 0));
77264bac2208Snarayan 
77272f5224aeSachartre 	rv = vd_process_ioctl(dev, DKIOCGGEOM, (caddr_t)&geom, FKIOCTL, &rval);
772878fcd0a1Sachartre 	if (rv == 0)
7729342440ecSPrasad Singamsetty 		rv = vd_process_ioctl(dev, DKIOCGEXTVTOC, (caddr_t)&vtoc,
77302f5224aeSachartre 		    FKIOCTL, &rval);
77310d0c8d4bSnarayan 
77324bac2208Snarayan 	if (rv == ENOTSUP) {
77334bac2208Snarayan 		/*
77344bac2208Snarayan 		 * If the device does not support VTOC then we try
77354bac2208Snarayan 		 * to read an EFI label.
7736edcc0754Sachartre 		 *
7737edcc0754Sachartre 		 * We need to know the block size and the disk size to
7738edcc0754Sachartre 		 * be able to read an EFI label.
77394bac2208Snarayan 		 */
7740edcc0754Sachartre 		if (vdc->vdisk_size == 0) {
7741edcc0754Sachartre 			mutex_enter(&vdc->lock);
7742edcc0754Sachartre 			vdc_store_label_unk(vdc);
7743de3a5331SRamesh Chitrothu 			return (EIO);
7744edcc0754Sachartre 		}
77454bac2208Snarayan 
7746edcc0754Sachartre 		VD_EFI_DEV_SET(edev, vdc, vd_process_efi_ioctl);
7747edcc0754Sachartre 
7748edcc0754Sachartre 		rv = vd_efi_alloc_and_read(&edev, &gpt, &gpe);
77494bac2208Snarayan 
77504bac2208Snarayan 		if (rv) {
77513af08d82Slm66018 			DMSG(vdc, 0, "[%d] Failed to get EFI (err=%d)",
77524bac2208Snarayan 			    vdc->instance, rv);
775378fcd0a1Sachartre 			mutex_enter(&vdc->lock);
775478fcd0a1Sachartre 			vdc_store_label_unk(vdc);
775578fcd0a1Sachartre 			return (EIO);
775678fcd0a1Sachartre 		}
775778fcd0a1Sachartre 
775878fcd0a1Sachartre 		mutex_enter(&vdc->lock);
7759edcc0754Sachartre 		vdc_store_label_efi(vdc, gpt, gpe);
7760edcc0754Sachartre 		vd_efi_free(&edev, gpt, gpe);
776178fcd0a1Sachartre 		return (ENOTSUP);
776278fcd0a1Sachartre 	}
776378fcd0a1Sachartre 
776478fcd0a1Sachartre 	if (rv != 0) {
776578fcd0a1Sachartre 		DMSG(vdc, 0, "[%d] Failed to get VTOC (err=%d)",
776678fcd0a1Sachartre 		    vdc->instance, rv);
776778fcd0a1Sachartre 		mutex_enter(&vdc->lock);
776878fcd0a1Sachartre 		vdc_store_label_unk(vdc);
776978fcd0a1Sachartre 		if (rv != EINVAL)
777078fcd0a1Sachartre 			rv = EIO;
77714bac2208Snarayan 		return (rv);
77724bac2208Snarayan 	}
77734bac2208Snarayan 
777478fcd0a1Sachartre 	/* check that geometry and vtoc are valid */
777578fcd0a1Sachartre 	if (geom.dkg_nhead == 0 || geom.dkg_nsect == 0 ||
777678fcd0a1Sachartre 	    vtoc.v_sanity != VTOC_SANE) {
777778fcd0a1Sachartre 		mutex_enter(&vdc->lock);
777878fcd0a1Sachartre 		vdc_store_label_unk(vdc);
777978fcd0a1Sachartre 		return (EINVAL);
778078fcd0a1Sachartre 	}
77814bac2208Snarayan 
778278fcd0a1Sachartre 	/*
778378fcd0a1Sachartre 	 * We have a disk and a valid VTOC. However this does not mean
778478fcd0a1Sachartre 	 * that the disk currently have a VTOC label. The returned VTOC may
778578fcd0a1Sachartre 	 * be a default VTOC to be used for configuring the disk (this is
778678fcd0a1Sachartre 	 * what is done for disk image). So we read the label from the
778778fcd0a1Sachartre 	 * beginning of the disk to ensure we really have a VTOC label.
778878fcd0a1Sachartre 	 *
778978fcd0a1Sachartre 	 * FUTURE: This could be the default way for reading the VTOC
779078fcd0a1Sachartre 	 * from the disk as opposed to sending the VD_OP_GET_VTOC
779178fcd0a1Sachartre 	 * to the server. This will be the default if vdc is implemented
779278fcd0a1Sachartre 	 * ontop of cmlb.
779378fcd0a1Sachartre 	 */
779478fcd0a1Sachartre 
779578fcd0a1Sachartre 	/*
779678fcd0a1Sachartre 	 * Single slice disk does not support read using an absolute disk
779778fcd0a1Sachartre 	 * offset so we just rely on the DKIOCGVTOC ioctl in that case.
779878fcd0a1Sachartre 	 */
779978fcd0a1Sachartre 	if (vdc->vdisk_type == VD_DISK_TYPE_SLICE) {
780078fcd0a1Sachartre 		mutex_enter(&vdc->lock);
780178fcd0a1Sachartre 		if (vtoc.v_nparts != 1) {
780278fcd0a1Sachartre 			vdc_store_label_unk(vdc);
780378fcd0a1Sachartre 			return (EINVAL);
780478fcd0a1Sachartre 		}
780578fcd0a1Sachartre 		vdc_store_label_vtoc(vdc, &geom, &vtoc);
78064bac2208Snarayan 		return (0);
78074bac2208Snarayan 	}
78084bac2208Snarayan 
780978fcd0a1Sachartre 	if (vtoc.v_nparts != V_NUMPAR) {
781078fcd0a1Sachartre 		mutex_enter(&vdc->lock);
781178fcd0a1Sachartre 		vdc_store_label_unk(vdc);
781278fcd0a1Sachartre 		return (EINVAL);
78130a55fbb7Slm66018 	}
7814d10e4ef2Snarayan 
7815d10e4ef2Snarayan 	/*
7816d10e4ef2Snarayan 	 * Read disk label from start of disk
7817d10e4ef2Snarayan 	 */
7818d10e4ef2Snarayan 	buf = kmem_alloc(sizeof (buf_t), KM_SLEEP);
7819d10e4ef2Snarayan 	bioinit(buf);
782078fcd0a1Sachartre 	buf->b_un.b_addr = (caddr_t)&label;
7821d10e4ef2Snarayan 	buf->b_bcount = DK_LABEL_SIZE;
7822d10e4ef2Snarayan 	buf->b_flags = B_BUSY | B_READ;
782317cadca8Slm66018 	buf->b_dev = cmpdev(dev);
782478fcd0a1Sachartre 	rv = vdc_send_request(vdc, VD_OP_BREAD, (caddr_t)&label,
782578fcd0a1Sachartre 	    DK_LABEL_SIZE, VD_SLICE_NONE, 0, CB_STRATEGY, buf, VIO_read_dir);
78263af08d82Slm66018 	if (rv) {
78273af08d82Slm66018 		DMSG(vdc, 1, "[%d] Failed to read disk block 0\n",
78283af08d82Slm66018 		    vdc->instance);
782978fcd0a1Sachartre 	} else {
7830d10e4ef2Snarayan 		rv = biowait(buf);
7831d10e4ef2Snarayan 		biofini(buf);
783278fcd0a1Sachartre 	}
7833d10e4ef2Snarayan 	kmem_free(buf, sizeof (buf_t));
78340a55fbb7Slm66018 
783578fcd0a1Sachartre 	if (rv != 0 || label.dkl_magic != DKL_MAGIC ||
783678fcd0a1Sachartre 	    label.dkl_cksum != vdc_lbl2cksum(&label)) {
783778fcd0a1Sachartre 		DMSG(vdc, 1, "[%d] Got VTOC with invalid label\n",
783878fcd0a1Sachartre 		    vdc->instance);
783978fcd0a1Sachartre 		mutex_enter(&vdc->lock);
784078fcd0a1Sachartre 		vdc_store_label_unk(vdc);
784178fcd0a1Sachartre 		return (EINVAL);
784278fcd0a1Sachartre 	}
784378fcd0a1Sachartre 
784478fcd0a1Sachartre 	mutex_enter(&vdc->lock);
784578fcd0a1Sachartre 	vdc_store_label_vtoc(vdc, &geom, &vtoc);
784678fcd0a1Sachartre 	return (0);
784778fcd0a1Sachartre }
784878fcd0a1Sachartre 
784978fcd0a1Sachartre /*
785078fcd0a1Sachartre  * Function:
785178fcd0a1Sachartre  *	vdc_validate
785278fcd0a1Sachartre  *
785378fcd0a1Sachartre  * Description:
785478fcd0a1Sachartre  *	This routine discovers the label of the disk and create the
785578fcd0a1Sachartre  *	appropriate device nodes if the label has changed.
785678fcd0a1Sachartre  *
785778fcd0a1Sachartre  * Arguments:
785878fcd0a1Sachartre  *	vdc	- soft state pointer for this instance of the device driver.
785978fcd0a1Sachartre  *
786078fcd0a1Sachartre  * Return Code:
786178fcd0a1Sachartre  *	none.
786278fcd0a1Sachartre  */
786378fcd0a1Sachartre static void
786478fcd0a1Sachartre vdc_validate(vdc_t *vdc)
786578fcd0a1Sachartre {
786678fcd0a1Sachartre 	vd_disk_label_t old_label;
7867edcc0754Sachartre 	vd_slice_t old_slice[V_NUMPAR];
786878fcd0a1Sachartre 	int rv;
786978fcd0a1Sachartre 
787078fcd0a1Sachartre 	ASSERT(!MUTEX_HELD(&vdc->lock));
787178fcd0a1Sachartre 
787278fcd0a1Sachartre 	mutex_enter(&vdc->lock);
787378fcd0a1Sachartre 
787478fcd0a1Sachartre 	/* save the current label and vtoc */
787578fcd0a1Sachartre 	old_label = vdc->vdisk_label;
7876edcc0754Sachartre 	bcopy(vdc->slice, &old_slice, sizeof (vd_slice_t) * V_NUMPAR);
787778fcd0a1Sachartre 
787878fcd0a1Sachartre 	/* check the geometry */
787978fcd0a1Sachartre 	(void) vdc_validate_geometry(vdc);
788078fcd0a1Sachartre 
788178fcd0a1Sachartre 	/* if the disk label has changed, update device nodes */
788278fcd0a1Sachartre 	if (vdc->vdisk_label != old_label) {
788378fcd0a1Sachartre 
788478fcd0a1Sachartre 		if (vdc->vdisk_label == VD_DISK_LABEL_EFI)
788578fcd0a1Sachartre 			rv = vdc_create_device_nodes_efi(vdc);
788678fcd0a1Sachartre 		else
788778fcd0a1Sachartre 			rv = vdc_create_device_nodes_vtoc(vdc);
788878fcd0a1Sachartre 
788978fcd0a1Sachartre 		if (rv != 0) {
789078fcd0a1Sachartre 			DMSG(vdc, 0, "![%d] Failed to update device nodes",
789178fcd0a1Sachartre 			    vdc->instance);
789278fcd0a1Sachartre 		}
789378fcd0a1Sachartre 	}
789478fcd0a1Sachartre 
789578fcd0a1Sachartre 	mutex_exit(&vdc->lock);
789678fcd0a1Sachartre }
789778fcd0a1Sachartre 
789878fcd0a1Sachartre static void
789978fcd0a1Sachartre vdc_validate_task(void *arg)
790078fcd0a1Sachartre {
790178fcd0a1Sachartre 	vdc_t *vdc = (vdc_t *)arg;
790278fcd0a1Sachartre 
790378fcd0a1Sachartre 	vdc_validate(vdc);
790478fcd0a1Sachartre 
790578fcd0a1Sachartre 	mutex_enter(&vdc->lock);
790678fcd0a1Sachartre 	ASSERT(vdc->validate_pending > 0);
790778fcd0a1Sachartre 	vdc->validate_pending--;
790878fcd0a1Sachartre 	mutex_exit(&vdc->lock);
79091ae08745Sheppo }
79104bac2208Snarayan 
79114bac2208Snarayan /*
79124bac2208Snarayan  * Function:
79134bac2208Snarayan  *	vdc_setup_devid()
79144bac2208Snarayan  *
79154bac2208Snarayan  * Description:
79164bac2208Snarayan  *	This routine discovers the devid of a vDisk. It requests the devid of
79174bac2208Snarayan  *	the underlying device from the vDisk server, builds an encapsulated
79184bac2208Snarayan  *	devid based on the retrieved devid and registers that new devid to
79194bac2208Snarayan  *	the vDisk.
79204bac2208Snarayan  *
79214bac2208Snarayan  * Arguments:
79224bac2208Snarayan  *	vdc	- soft state pointer for this instance of the device driver.
79234bac2208Snarayan  *
79244bac2208Snarayan  * Return Code:
79254bac2208Snarayan  *	0	- A devid was succesfully registered for the vDisk
79264bac2208Snarayan  */
79274bac2208Snarayan static int
79284bac2208Snarayan vdc_setup_devid(vdc_t *vdc)
79294bac2208Snarayan {
79304bac2208Snarayan 	int rv;
79314bac2208Snarayan 	vd_devid_t *vd_devid;
79324bac2208Snarayan 	size_t bufsize, bufid_len;
79334bac2208Snarayan 
79344bac2208Snarayan 	/*
79354bac2208Snarayan 	 * At first sight, we don't know the size of the devid that the
79364bac2208Snarayan 	 * server will return but this size will be encoded into the
79374bac2208Snarayan 	 * reply. So we do a first request using a default size then we
79384bac2208Snarayan 	 * check if this size was large enough. If not then we do a second
79394bac2208Snarayan 	 * request with the correct size returned by the server. Note that
79404bac2208Snarayan 	 * ldc requires size to be 8-byte aligned.
79414bac2208Snarayan 	 */
79424bac2208Snarayan 	bufsize = P2ROUNDUP(VD_DEVID_SIZE(VD_DEVID_DEFAULT_LEN),
79434bac2208Snarayan 	    sizeof (uint64_t));
79444bac2208Snarayan 	vd_devid = kmem_zalloc(bufsize, KM_SLEEP);
79454bac2208Snarayan 	bufid_len = bufsize - sizeof (vd_efi_t) - 1;
79464bac2208Snarayan 
79473af08d82Slm66018 	rv = vdc_do_sync_op(vdc, VD_OP_GET_DEVID, (caddr_t)vd_devid,
79482f5224aeSachartre 	    bufsize, 0, 0, CB_SYNC, 0, VIO_both_dir, B_TRUE);
79493af08d82Slm66018 
79503af08d82Slm66018 	DMSG(vdc, 2, "sync_op returned %d\n", rv);
79513af08d82Slm66018 
79524bac2208Snarayan 	if (rv) {
79534bac2208Snarayan 		kmem_free(vd_devid, bufsize);
79544bac2208Snarayan 		return (rv);
79554bac2208Snarayan 	}
79564bac2208Snarayan 
79574bac2208Snarayan 	if (vd_devid->length > bufid_len) {
79584bac2208Snarayan 		/*
79594bac2208Snarayan 		 * The returned devid is larger than the buffer used. Try again
79604bac2208Snarayan 		 * with a buffer with the right size.
79614bac2208Snarayan 		 */
79624bac2208Snarayan 		kmem_free(vd_devid, bufsize);
79634bac2208Snarayan 		bufsize = P2ROUNDUP(VD_DEVID_SIZE(vd_devid->length),
79644bac2208Snarayan 		    sizeof (uint64_t));
79654bac2208Snarayan 		vd_devid = kmem_zalloc(bufsize, KM_SLEEP);
79664bac2208Snarayan 		bufid_len = bufsize - sizeof (vd_efi_t) - 1;
79674bac2208Snarayan 
79683af08d82Slm66018 		rv = vdc_do_sync_op(vdc, VD_OP_GET_DEVID,
79693af08d82Slm66018 		    (caddr_t)vd_devid, bufsize, 0, 0, CB_SYNC, 0,
79702f5224aeSachartre 		    VIO_both_dir, B_TRUE);
79713af08d82Slm66018 
79724bac2208Snarayan 		if (rv) {
79734bac2208Snarayan 			kmem_free(vd_devid, bufsize);
79744bac2208Snarayan 			return (rv);
79754bac2208Snarayan 		}
79764bac2208Snarayan 	}
79774bac2208Snarayan 
79784bac2208Snarayan 	/*
79794bac2208Snarayan 	 * The virtual disk should have the same device id as the one associated
79804bac2208Snarayan 	 * with the physical disk it is mapped on, otherwise sharing a disk
79814bac2208Snarayan 	 * between a LDom and a non-LDom may not work (for example for a shared
79824bac2208Snarayan 	 * SVM disk set).
79834bac2208Snarayan 	 *
79844bac2208Snarayan 	 * The DDI framework does not allow creating a device id with any
79854bac2208Snarayan 	 * type so we first create a device id of type DEVID_ENCAP and then
79864bac2208Snarayan 	 * we restore the orignal type of the physical device.
79874bac2208Snarayan 	 */
79884bac2208Snarayan 
79893af08d82Slm66018 	DMSG(vdc, 2, ": devid length = %d\n", vd_devid->length);
79903af08d82Slm66018 
79914bac2208Snarayan 	/* build an encapsulated devid based on the returned devid */
79924bac2208Snarayan 	if (ddi_devid_init(vdc->dip, DEVID_ENCAP, vd_devid->length,
79934bac2208Snarayan 	    vd_devid->id, &vdc->devid) != DDI_SUCCESS) {
79943af08d82Slm66018 		DMSG(vdc, 1, "[%d] Fail to created devid\n", vdc->instance);
79954bac2208Snarayan 		kmem_free(vd_devid, bufsize);
79964bac2208Snarayan 		return (1);
79974bac2208Snarayan 	}
79984bac2208Snarayan 
79994bac2208Snarayan 	DEVID_FORMTYPE((impl_devid_t *)vdc->devid, vd_devid->type);
80004bac2208Snarayan 
80014bac2208Snarayan 	ASSERT(ddi_devid_valid(vdc->devid) == DDI_SUCCESS);
80024bac2208Snarayan 
80034bac2208Snarayan 	kmem_free(vd_devid, bufsize);
80044bac2208Snarayan 
80054bac2208Snarayan 	if (ddi_devid_register(vdc->dip, vdc->devid) != DDI_SUCCESS) {
80063af08d82Slm66018 		DMSG(vdc, 1, "[%d] Fail to register devid\n", vdc->instance);
80074bac2208Snarayan 		return (1);
80084bac2208Snarayan 	}
80094bac2208Snarayan 
80104bac2208Snarayan 	return (0);
80114bac2208Snarayan }
80124bac2208Snarayan 
80134bac2208Snarayan static void
8014edcc0754Sachartre vdc_store_label_efi(vdc_t *vdc, efi_gpt_t *gpt, efi_gpe_t *gpe)
80154bac2208Snarayan {
8016edcc0754Sachartre 	int i, nparts;
80174bac2208Snarayan 
801878fcd0a1Sachartre 	ASSERT(MUTEX_HELD(&vdc->lock));
801978fcd0a1Sachartre 
802078fcd0a1Sachartre 	vdc->vdisk_label = VD_DISK_LABEL_EFI;
8021342440ecSPrasad Singamsetty 	bzero(vdc->vtoc, sizeof (struct extvtoc));
802278fcd0a1Sachartre 	bzero(vdc->geom, sizeof (struct dk_geom));
8023edcc0754Sachartre 	bzero(vdc->slice, sizeof (vd_slice_t) * V_NUMPAR);
8024edcc0754Sachartre 
8025edcc0754Sachartre 	nparts = gpt->efi_gpt_NumberOfPartitionEntries;
8026edcc0754Sachartre 
8027edcc0754Sachartre 	for (i = 0; i < nparts && i < VD_EFI_WD_SLICE; i++) {
8028edcc0754Sachartre 
8029edcc0754Sachartre 		if (gpe[i].efi_gpe_StartingLBA == 0 ||
8030edcc0754Sachartre 		    gpe[i].efi_gpe_EndingLBA == 0) {
8031edcc0754Sachartre 			continue;
80324bac2208Snarayan 		}
8033edcc0754Sachartre 
8034edcc0754Sachartre 		vdc->slice[i].start = gpe[i].efi_gpe_StartingLBA;
8035edcc0754Sachartre 		vdc->slice[i].nblocks = gpe[i].efi_gpe_EndingLBA -
8036edcc0754Sachartre 		    gpe[i].efi_gpe_StartingLBA + 1;
8037edcc0754Sachartre 	}
8038edcc0754Sachartre 
8039edcc0754Sachartre 	ASSERT(vdc->vdisk_size != 0);
8040edcc0754Sachartre 	vdc->slice[VD_EFI_WD_SLICE].start = 0;
8041edcc0754Sachartre 	vdc->slice[VD_EFI_WD_SLICE].nblocks = vdc->vdisk_size;
8042edcc0754Sachartre 
80434bac2208Snarayan }
804478fcd0a1Sachartre 
804578fcd0a1Sachartre static void
8046342440ecSPrasad Singamsetty vdc_store_label_vtoc(vdc_t *vdc, struct dk_geom *geom, struct extvtoc *vtoc)
804778fcd0a1Sachartre {
8048edcc0754Sachartre 	int i;
8049edcc0754Sachartre 
805078fcd0a1Sachartre 	ASSERT(MUTEX_HELD(&vdc->lock));
8051edcc0754Sachartre 	ASSERT(vdc->block_size == vtoc->v_sectorsz);
805278fcd0a1Sachartre 
805378fcd0a1Sachartre 	vdc->vdisk_label = VD_DISK_LABEL_VTOC;
8054342440ecSPrasad Singamsetty 	bcopy(vtoc, vdc->vtoc, sizeof (struct extvtoc));
805578fcd0a1Sachartre 	bcopy(geom, vdc->geom, sizeof (struct dk_geom));
8056edcc0754Sachartre 	bzero(vdc->slice, sizeof (vd_slice_t) * V_NUMPAR);
8057edcc0754Sachartre 
8058edcc0754Sachartre 	for (i = 0; i < vtoc->v_nparts; i++) {
8059edcc0754Sachartre 		vdc->slice[i].start = vtoc->v_part[i].p_start;
8060edcc0754Sachartre 		vdc->slice[i].nblocks = vtoc->v_part[i].p_size;
8061edcc0754Sachartre 	}
806278fcd0a1Sachartre }
806378fcd0a1Sachartre 
806478fcd0a1Sachartre static void
806578fcd0a1Sachartre vdc_store_label_unk(vdc_t *vdc)
806678fcd0a1Sachartre {
806778fcd0a1Sachartre 	ASSERT(MUTEX_HELD(&vdc->lock));
806878fcd0a1Sachartre 
806978fcd0a1Sachartre 	vdc->vdisk_label = VD_DISK_LABEL_UNK;
8070342440ecSPrasad Singamsetty 	bzero(vdc->vtoc, sizeof (struct extvtoc));
807178fcd0a1Sachartre 	bzero(vdc->geom, sizeof (struct dk_geom));
8072edcc0754Sachartre 	bzero(vdc->slice, sizeof (vd_slice_t) * V_NUMPAR);
807378fcd0a1Sachartre }
8074