xref: /onnv-gate/usr/src/uts/common/fs/zfs/vdev_disk.c (revision 7762:067dd33ef32c)
1789Sahrens /*
2789Sahrens  * CDDL HEADER START
3789Sahrens  *
4789Sahrens  * The contents of this file are subject to the terms of the
51489Swebaker  * Common Development and Distribution License (the "License").
61489Swebaker  * You may not use this file except in compliance with the License.
7789Sahrens  *
8789Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9789Sahrens  * or http://www.opensolaris.org/os/licensing.
10789Sahrens  * See the License for the specific language governing permissions
11789Sahrens  * and limitations under the License.
12789Sahrens  *
13789Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14789Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15789Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16789Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17789Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18789Sahrens  *
19789Sahrens  * CDDL HEADER END
20789Sahrens  */
21789Sahrens /*
226423Sgw25295  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23789Sahrens  * Use is subject to license terms.
24789Sahrens  */
25789Sahrens 
26789Sahrens #include <sys/zfs_context.h>
27789Sahrens #include <sys/spa.h>
286423Sgw25295 #include <sys/refcount.h>
29789Sahrens #include <sys/vdev_disk.h>
30789Sahrens #include <sys/vdev_impl.h>
31789Sahrens #include <sys/fs/zfs.h>
32789Sahrens #include <sys/zio.h>
331171Seschrock #include <sys/sunldi.h>
346976Seschrock #include <sys/fm/fs/zfs.h>
35789Sahrens 
36789Sahrens /*
37789Sahrens  * Virtual device vector for disks.
38789Sahrens  */
39789Sahrens 
40789Sahrens extern ldi_ident_t zfs_li;
41789Sahrens 
42789Sahrens typedef struct vdev_disk_buf {
43789Sahrens 	buf_t	vdb_buf;
44789Sahrens 	zio_t	*vdb_io;
45789Sahrens } vdev_disk_buf_t;
46789Sahrens 
47789Sahrens static int
487754SJeff.Bonwick@Sun.COM vdev_disk_open(vdev_t *vd, uint64_t *psize, uint64_t *ashift)
49789Sahrens {
50789Sahrens 	vdev_disk_t *dvd;
517754SJeff.Bonwick@Sun.COM 	struct dk_minfo dkm;
527754SJeff.Bonwick@Sun.COM 	int error;
535329Sgw25295 	dev_t dev;
547754SJeff.Bonwick@Sun.COM 	int otyp;
55789Sahrens 
56789Sahrens 	/*
57789Sahrens 	 * We must have a pathname, and it must be absolute.
58789Sahrens 	 */
59789Sahrens 	if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') {
60789Sahrens 		vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
61789Sahrens 		return (EINVAL);
62789Sahrens 	}
63789Sahrens 
64789Sahrens 	dvd = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
65789Sahrens 
66789Sahrens 	/*
67789Sahrens 	 * When opening a disk device, we want to preserve the user's original
68789Sahrens 	 * intent.  We always want to open the device by the path the user gave
69789Sahrens 	 * us, even if it is one of multiple paths to the save device.  But we
70789Sahrens 	 * also want to be able to survive disks being removed/recabled.
71789Sahrens 	 * Therefore the sequence of opening devices is:
72789Sahrens 	 *
731171Seschrock 	 * 1. Try opening the device by path.  For legacy pools without the
741171Seschrock 	 *    'whole_disk' property, attempt to fix the path by appending 's0'.
75789Sahrens 	 *
76789Sahrens 	 * 2. If the devid of the device matches the stored value, return
77789Sahrens 	 *    success.
78789Sahrens 	 *
79789Sahrens 	 * 3. Otherwise, the device may have moved.  Try opening the device
80789Sahrens 	 *    by the devid instead.
81789Sahrens 	 *
826673Seschrock 	 * If the vdev is part of the root pool, we avoid opening it by path.
836673Seschrock 	 * We do this because there is no /dev path available early in boot,
846673Seschrock 	 * and if we try to open the device by path at a later point, we can
856673Seschrock 	 * deadlock when devfsadm attempts to open the underlying backing store
866673Seschrock 	 * file.
87789Sahrens 	 */
88789Sahrens 	if (vd->vdev_devid != NULL) {
89789Sahrens 		if (ddi_devid_str_decode(vd->vdev_devid, &dvd->vd_devid,
90789Sahrens 		    &dvd->vd_minor) != 0) {
91789Sahrens 			vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
92789Sahrens 			return (EINVAL);
93789Sahrens 		}
94789Sahrens 	}
95789Sahrens 
96789Sahrens 	error = EINVAL;		/* presume failure */
97789Sahrens 
986673Seschrock 	if (vd->vdev_path != NULL && !spa_is_root(vd->vdev_spa)) {
99789Sahrens 		ddi_devid_t devid;
100789Sahrens 
1011171Seschrock 		if (vd->vdev_wholedisk == -1ULL) {
1021171Seschrock 			size_t len = strlen(vd->vdev_path) + 3;
1031171Seschrock 			char *buf = kmem_alloc(len, KM_SLEEP);
1041171Seschrock 			ldi_handle_t lh;
1051171Seschrock 
1061171Seschrock 			(void) snprintf(buf, len, "%ss0", vd->vdev_path);
107789Sahrens 
1081171Seschrock 			if (ldi_open_by_name(buf, spa_mode, kcred,
1091171Seschrock 			    &lh, zfs_li) == 0) {
1101171Seschrock 				spa_strfree(vd->vdev_path);
1111171Seschrock 				vd->vdev_path = buf;
1121171Seschrock 				vd->vdev_wholedisk = 1ULL;
1131171Seschrock 				(void) ldi_close(lh, spa_mode, kcred);
1141171Seschrock 			} else {
1151171Seschrock 				kmem_free(buf, len);
1161171Seschrock 			}
1171171Seschrock 		}
118789Sahrens 
1191171Seschrock 		error = ldi_open_by_name(vd->vdev_path, spa_mode, kcred,
1201171Seschrock 		    &dvd->vd_lh, zfs_li);
121789Sahrens 
122789Sahrens 		/*
123789Sahrens 		 * Compare the devid to the stored value.
124789Sahrens 		 */
125789Sahrens 		if (error == 0 && vd->vdev_devid != NULL &&
126789Sahrens 		    ldi_get_devid(dvd->vd_lh, &devid) == 0) {
127789Sahrens 			if (ddi_devid_compare(devid, dvd->vd_devid) != 0) {
128789Sahrens 				error = EINVAL;
129789Sahrens 				(void) ldi_close(dvd->vd_lh, spa_mode, kcred);
130789Sahrens 				dvd->vd_lh = NULL;
131789Sahrens 			}
132789Sahrens 			ddi_devid_free(devid);
133789Sahrens 		}
1341171Seschrock 
1351171Seschrock 		/*
1361171Seschrock 		 * If we succeeded in opening the device, but 'vdev_wholedisk'
1371171Seschrock 		 * is not yet set, then this must be a slice.
1381171Seschrock 		 */
1391171Seschrock 		if (error == 0 && vd->vdev_wholedisk == -1ULL)
1401171Seschrock 			vd->vdev_wholedisk = 0;
141789Sahrens 	}
142789Sahrens 
143789Sahrens 	/*
144789Sahrens 	 * If we were unable to open by path, or the devid check fails, open by
145789Sahrens 	 * devid instead.
146789Sahrens 	 */
147789Sahrens 	if (error != 0 && vd->vdev_devid != NULL)
148789Sahrens 		error = ldi_open_by_devid(dvd->vd_devid, dvd->vd_minor,
149789Sahrens 		    spa_mode, kcred, &dvd->vd_lh, zfs_li);
150789Sahrens 
1514451Seschrock 	/*
1524451Seschrock 	 * If all else fails, then try opening by physical path (if available)
1534451Seschrock 	 * or the logical path (if we failed due to the devid check).  While not
1544451Seschrock 	 * as reliable as the devid, this will give us something, and the higher
1554451Seschrock 	 * level vdev validation will prevent us from opening the wrong device.
1564451Seschrock 	 */
1574451Seschrock 	if (error) {
1584451Seschrock 		if (vd->vdev_physpath != NULL &&
1594451Seschrock 		    (dev = ddi_pathname_to_dev_t(vd->vdev_physpath)) != ENODEV)
1604451Seschrock 			error = ldi_open_by_dev(&dev, OTYP_BLK, spa_mode,
1614451Seschrock 			    kcred, &dvd->vd_lh, zfs_li);
1624451Seschrock 
1634451Seschrock 		/*
1644451Seschrock 		 * Note that we don't support the legacy auto-wholedisk support
1654451Seschrock 		 * as above.  This hasn't been used in a very long time and we
1664451Seschrock 		 * don't need to propagate its oddities to this edge condition.
1674451Seschrock 		 */
1686673Seschrock 		if (error && vd->vdev_path != NULL &&
1696673Seschrock 		    !spa_is_root(vd->vdev_spa))
1704451Seschrock 			error = ldi_open_by_name(vd->vdev_path, spa_mode, kcred,
1714451Seschrock 			    &dvd->vd_lh, zfs_li);
1724451Seschrock 	}
1734451Seschrock 
1747754SJeff.Bonwick@Sun.COM 	if (error) {
175789Sahrens 		vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
1767754SJeff.Bonwick@Sun.COM 		return (error);
1777754SJeff.Bonwick@Sun.COM 	}
1785329Sgw25295 
179789Sahrens 	/*
1804451Seschrock 	 * Once a device is opened, verify that the physical device path (if
1814451Seschrock 	 * available) is up to date.
1824451Seschrock 	 */
1834451Seschrock 	if (ldi_get_dev(dvd->vd_lh, &dev) == 0 &&
1844451Seschrock 	    ldi_get_otyp(dvd->vd_lh, &otyp) == 0) {
1855329Sgw25295 		char *physpath, *minorname;
1865329Sgw25295 
1874451Seschrock 		physpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
1884451Seschrock 		minorname = NULL;
1894451Seschrock 		if (ddi_dev_pathname(dev, otyp, physpath) == 0 &&
1904451Seschrock 		    ldi_get_minor_name(dvd->vd_lh, &minorname) == 0 &&
1914451Seschrock 		    (vd->vdev_physpath == NULL ||
1924451Seschrock 		    strcmp(vd->vdev_physpath, physpath) != 0)) {
1934451Seschrock 			if (vd->vdev_physpath)
1944451Seschrock 				spa_strfree(vd->vdev_physpath);
1954451Seschrock 			(void) strlcat(physpath, ":", MAXPATHLEN);
1964451Seschrock 			(void) strlcat(physpath, minorname, MAXPATHLEN);
1974451Seschrock 			vd->vdev_physpath = spa_strdup(physpath);
1984451Seschrock 		}
1994451Seschrock 		if (minorname)
2004451Seschrock 			kmem_free(minorname, strlen(minorname) + 1);
2014451Seschrock 		kmem_free(physpath, MAXPATHLEN);
2024451Seschrock 	}
2034451Seschrock 
2044451Seschrock 	/*
205789Sahrens 	 * Determine the actual size of the device.
206789Sahrens 	 */
207789Sahrens 	if (ldi_get_size(dvd->vd_lh, psize) != 0) {
208789Sahrens 		vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
209789Sahrens 		return (EINVAL);
210789Sahrens 	}
211789Sahrens 
2121732Sbonwick 	/*
2131732Sbonwick 	 * If we own the whole disk, try to enable disk write caching.
2141732Sbonwick 	 * We ignore errors because it's OK if we can't do it.
2151732Sbonwick 	 */
2161489Swebaker 	if (vd->vdev_wholedisk == 1) {
2171732Sbonwick 		int wce = 1;
2181732Sbonwick 		(void) ldi_ioctl(dvd->vd_lh, DKIOCSETWCE, (intptr_t)&wce,
2191732Sbonwick 		    FKIOCTL, kcred, NULL);
2201732Sbonwick 	}
2211489Swebaker 
2221732Sbonwick 	/*
2231732Sbonwick 	 * Determine the device's minimum transfer size.
2241732Sbonwick 	 * If the ioctl isn't supported, assume DEV_BSIZE.
2251732Sbonwick 	 */
2261732Sbonwick 	if (ldi_ioctl(dvd->vd_lh, DKIOCGMEDIAINFO, (intptr_t)&dkm,
2271732Sbonwick 	    FKIOCTL, kcred, NULL) != 0)
2281732Sbonwick 		dkm.dki_lbsize = DEV_BSIZE;
2291489Swebaker 
2301732Sbonwick 	*ashift = highbit(MAX(dkm.dki_lbsize, SPA_MINBLOCKSIZE)) - 1;
2311489Swebaker 
2321773Seschrock 	/*
2331773Seschrock 	 * Clear the nowritecache bit, so that on a vdev_reopen() we will
2341773Seschrock 	 * try again.
2351773Seschrock 	 */
2361773Seschrock 	vd->vdev_nowritecache = B_FALSE;
2371773Seschrock 
238789Sahrens 	return (0);
239789Sahrens }
240789Sahrens 
241789Sahrens static void
242789Sahrens vdev_disk_close(vdev_t *vd)
243789Sahrens {
244789Sahrens 	vdev_disk_t *dvd = vd->vdev_tsd;
245789Sahrens 
246789Sahrens 	if (dvd == NULL)
247789Sahrens 		return;
248789Sahrens 
249789Sahrens 	if (dvd->vd_minor != NULL)
250789Sahrens 		ddi_devid_str_free(dvd->vd_minor);
251789Sahrens 
252789Sahrens 	if (dvd->vd_devid != NULL)
253789Sahrens 		ddi_devid_free(dvd->vd_devid);
254789Sahrens 
255789Sahrens 	if (dvd->vd_lh != NULL)
256789Sahrens 		(void) ldi_close(dvd->vd_lh, spa_mode, kcred);
257789Sahrens 
258789Sahrens 	kmem_free(dvd, sizeof (vdev_disk_t));
259789Sahrens 	vd->vdev_tsd = NULL;
260789Sahrens }
261789Sahrens 
2626423Sgw25295 int
2636423Sgw25295 vdev_disk_physio(ldi_handle_t vd_lh, caddr_t data, size_t size,
2646423Sgw25295     uint64_t offset, int flags)
2656423Sgw25295 {
2666423Sgw25295 	buf_t *bp;
2676423Sgw25295 	int error = 0;
2686423Sgw25295 
2696423Sgw25295 	if (vd_lh == NULL)
2706423Sgw25295 		return (EINVAL);
2716423Sgw25295 
2726423Sgw25295 	ASSERT(flags & B_READ || flags & B_WRITE);
2736423Sgw25295 
2746423Sgw25295 	bp = getrbuf(KM_SLEEP);
2756423Sgw25295 	bp->b_flags = flags | B_BUSY | B_NOCACHE | B_FAILFAST;
2766423Sgw25295 	bp->b_bcount = size;
2776423Sgw25295 	bp->b_un.b_addr = (void *)data;
2786423Sgw25295 	bp->b_lblkno = lbtodb(offset);
2796423Sgw25295 	bp->b_bufsize = size;
2806423Sgw25295 
2816423Sgw25295 	error = ldi_strategy(vd_lh, bp);
2826423Sgw25295 	ASSERT(error == 0);
2836423Sgw25295 	if ((error = biowait(bp)) == 0 && bp->b_resid != 0)
2846423Sgw25295 		error = EIO;
2856423Sgw25295 	freerbuf(bp);
2866423Sgw25295 
2876423Sgw25295 	return (error);
2886423Sgw25295 }
2896423Sgw25295 
290789Sahrens static void
291789Sahrens vdev_disk_io_intr(buf_t *bp)
292789Sahrens {
293789Sahrens 	vdev_disk_buf_t *vdb = (vdev_disk_buf_t *)bp;
294789Sahrens 	zio_t *zio = vdb->vdb_io;
295789Sahrens 
2966976Seschrock 	/*
2976976Seschrock 	 * The rest of the zio stack only deals with EIO, ECKSUM, and ENXIO.
2986976Seschrock 	 * Rather than teach the rest of the stack about other error
2996976Seschrock 	 * possibilities (EFAULT, etc), we normalize the error value here.
3006976Seschrock 	 */
3016976Seschrock 	zio->io_error = (geterror(bp) != 0 ? EIO : 0);
3026976Seschrock 
3036976Seschrock 	if (zio->io_error == 0 && bp->b_resid != 0)
304789Sahrens 		zio->io_error = EIO;
305789Sahrens 
306789Sahrens 	kmem_free(vdb, sizeof (vdev_disk_buf_t));
307789Sahrens 
3085530Sbonwick 	zio_interrupt(zio);
309789Sahrens }
310789Sahrens 
311789Sahrens static void
312*7762SJeff.Bonwick@Sun.COM vdev_disk_ioctl_free(zio_t *zio)
313*7762SJeff.Bonwick@Sun.COM {
314*7762SJeff.Bonwick@Sun.COM 	kmem_free(zio->io_vsd, sizeof (struct dk_callback));
315*7762SJeff.Bonwick@Sun.COM }
316*7762SJeff.Bonwick@Sun.COM 
317*7762SJeff.Bonwick@Sun.COM static void
318789Sahrens vdev_disk_ioctl_done(void *zio_arg, int error)
319789Sahrens {
320789Sahrens 	zio_t *zio = zio_arg;
321789Sahrens 
322789Sahrens 	zio->io_error = error;
323789Sahrens 
3245530Sbonwick 	zio_interrupt(zio);
325789Sahrens }
326789Sahrens 
3275530Sbonwick static int
328789Sahrens vdev_disk_io_start(zio_t *zio)
329789Sahrens {
330789Sahrens 	vdev_t *vd = zio->io_vd;
331789Sahrens 	vdev_disk_t *dvd = vd->vdev_tsd;
332789Sahrens 	vdev_disk_buf_t *vdb;
3337754SJeff.Bonwick@Sun.COM 	struct dk_callback *dkc;
334789Sahrens 	buf_t *bp;
3357754SJeff.Bonwick@Sun.COM 	int error;
336789Sahrens 
337789Sahrens 	if (zio->io_type == ZIO_TYPE_IOCTL) {
338789Sahrens 		/* XXPOLICY */
3395329Sgw25295 		if (!vdev_readable(vd)) {
340789Sahrens 			zio->io_error = ENXIO;
3415530Sbonwick 			return (ZIO_PIPELINE_CONTINUE);
342789Sahrens 		}
343789Sahrens 
344789Sahrens 		switch (zio->io_cmd) {
345789Sahrens 
346789Sahrens 		case DKIOCFLUSHWRITECACHE:
347789Sahrens 
3482885Sahrens 			if (zfs_nocacheflush)
3492885Sahrens 				break;
3502885Sahrens 
3511773Seschrock 			if (vd->vdev_nowritecache) {
3521773Seschrock 				zio->io_error = ENOTSUP;
3531773Seschrock 				break;
3541773Seschrock 			}
3551773Seschrock 
3567754SJeff.Bonwick@Sun.COM 			zio->io_vsd = dkc = kmem_alloc(sizeof (*dkc), KM_SLEEP);
357*7762SJeff.Bonwick@Sun.COM 			zio->io_vsd_free = vdev_disk_ioctl_free;
3587754SJeff.Bonwick@Sun.COM 
3597754SJeff.Bonwick@Sun.COM 			dkc->dkc_callback = vdev_disk_ioctl_done;
3607754SJeff.Bonwick@Sun.COM 			dkc->dkc_flag = FLUSH_VOLATILE;
3617754SJeff.Bonwick@Sun.COM 			dkc->dkc_cookie = zio;
362789Sahrens 
363789Sahrens 			error = ldi_ioctl(dvd->vd_lh, zio->io_cmd,
3647754SJeff.Bonwick@Sun.COM 			    (uintptr_t)dkc, FKIOCTL, kcred, NULL);
365789Sahrens 
366789Sahrens 			if (error == 0) {
367789Sahrens 				/*
368789Sahrens 				 * The ioctl will be done asychronously,
369789Sahrens 				 * and will call vdev_disk_ioctl_done()
370789Sahrens 				 * upon completion.
371789Sahrens 				 */
3725530Sbonwick 				return (ZIO_PIPELINE_STOP);
3735530Sbonwick 			}
3745530Sbonwick 
3755530Sbonwick 			if (error == ENOTSUP || error == ENOTTY) {
3761773Seschrock 				/*
3774455Smishra 				 * If we get ENOTSUP or ENOTTY, we know that
3784455Smishra 				 * no future attempts will ever succeed.
3794455Smishra 				 * In this case we set a persistent bit so
3804455Smishra 				 * that we don't bother with the ioctl in the
3814455Smishra 				 * future.
3821773Seschrock 				 */
3831773Seschrock 				vd->vdev_nowritecache = B_TRUE;
384789Sahrens 			}
385789Sahrens 			zio->io_error = error;
3861773Seschrock 
387789Sahrens 			break;
388789Sahrens 
389789Sahrens 		default:
390789Sahrens 			zio->io_error = ENOTSUP;
391789Sahrens 		}
392789Sahrens 
3935530Sbonwick 		return (ZIO_PIPELINE_CONTINUE);
394789Sahrens 	}
395789Sahrens 
396789Sahrens 	vdb = kmem_alloc(sizeof (vdev_disk_buf_t), KM_SLEEP);
397789Sahrens 
398789Sahrens 	vdb->vdb_io = zio;
399789Sahrens 	bp = &vdb->vdb_buf;
400789Sahrens 
401789Sahrens 	bioinit(bp);
4027754SJeff.Bonwick@Sun.COM 	bp->b_flags = B_BUSY | B_NOCACHE |
4037754SJeff.Bonwick@Sun.COM 	    (zio->io_type == ZIO_TYPE_READ ? B_READ : B_WRITE) |
4047754SJeff.Bonwick@Sun.COM 	    ((zio->io_flags & ZIO_FLAG_IO_RETRY) ? 0 : B_FAILFAST);
405789Sahrens 	bp->b_bcount = zio->io_size;
406789Sahrens 	bp->b_un.b_addr = zio->io_data;
407789Sahrens 	bp->b_lblkno = lbtodb(zio->io_offset);
408789Sahrens 	bp->b_bufsize = zio->io_size;
409789Sahrens 	bp->b_iodone = (int (*)())vdev_disk_io_intr;
410789Sahrens 
411789Sahrens 	/* ldi_strategy() will return non-zero only on programming errors */
4127754SJeff.Bonwick@Sun.COM 	VERIFY(ldi_strategy(dvd->vd_lh, bp) == 0);
4135530Sbonwick 
4145530Sbonwick 	return (ZIO_PIPELINE_STOP);
415789Sahrens }
416789Sahrens 
4177754SJeff.Bonwick@Sun.COM static void
418789Sahrens vdev_disk_io_done(zio_t *zio)
419789Sahrens {
4207754SJeff.Bonwick@Sun.COM 	vdev_t *vd = zio->io_vd;
4211544Seschrock 
4224451Seschrock 	/*
4234451Seschrock 	 * If the device returned EIO, then attempt a DKIOCSTATE ioctl to see if
4244451Seschrock 	 * the device has been removed.  If this is the case, then we trigger an
4255329Sgw25295 	 * asynchronous removal of the device. Otherwise, probe the device and
4265369Sgw25295 	 * make sure it's still accessible.
4274451Seschrock 	 */
4284451Seschrock 	if (zio->io_error == EIO) {
4295329Sgw25295 		vdev_disk_t *dvd = vd->vdev_tsd;
4307754SJeff.Bonwick@Sun.COM 		int state = DKIO_NONE;
4315329Sgw25295 
4327754SJeff.Bonwick@Sun.COM 		if (ldi_ioctl(dvd->vd_lh, DKIOCSTATE, (intptr_t)&state,
4337754SJeff.Bonwick@Sun.COM 		    FKIOCTL, kcred, NULL) == 0 && state != DKIO_INSERTED) {
4344451Seschrock 			vd->vdev_remove_wanted = B_TRUE;
4354451Seschrock 			spa_async_request(zio->io_spa, SPA_ASYNC_REMOVE);
4364451Seschrock 		}
4374451Seschrock 	}
438789Sahrens }
439789Sahrens 
440789Sahrens vdev_ops_t vdev_disk_ops = {
441789Sahrens 	vdev_disk_open,
442789Sahrens 	vdev_disk_close,
443789Sahrens 	vdev_default_asize,
444789Sahrens 	vdev_disk_io_start,
445789Sahrens 	vdev_disk_io_done,
446789Sahrens 	NULL,
447789Sahrens 	VDEV_TYPE_DISK,		/* name of this vdev type */
448789Sahrens 	B_TRUE			/* leaf vdev */
449789Sahrens };
4506423Sgw25295 
4516423Sgw25295 /*
4527147Staylor  * Given the root disk device devid or pathname, read the label from
4537147Staylor  * the device, and construct a configuration nvlist.
4546423Sgw25295  */
4557539SLin.Ling@Sun.COM int
4567539SLin.Ling@Sun.COM vdev_disk_read_rootlabel(char *devpath, char *devid, nvlist_t **config)
4576423Sgw25295 {
4586423Sgw25295 	ldi_handle_t vd_lh;
4596423Sgw25295 	vdev_label_t *label;
4606423Sgw25295 	uint64_t s, size;
4616423Sgw25295 	int l;
4627147Staylor 	ddi_devid_t tmpdevid;
4637687SLin.Ling@Sun.COM 	int error = -1;
4647147Staylor 	char *minor_name;
4656423Sgw25295 
4666423Sgw25295 	/*
4676423Sgw25295 	 * Read the device label and build the nvlist.
4686423Sgw25295 	 */
4697687SLin.Ling@Sun.COM 	if (devid != NULL && ddi_devid_str_decode(devid, &tmpdevid,
4707147Staylor 	    &minor_name) == 0) {
4717147Staylor 		error = ldi_open_by_devid(tmpdevid, minor_name,
4727147Staylor 		    spa_mode, kcred, &vd_lh, zfs_li);
4737147Staylor 		ddi_devid_free(tmpdevid);
4747147Staylor 		ddi_devid_str_free(minor_name);
4757147Staylor 	}
4767147Staylor 
4777687SLin.Ling@Sun.COM 	if (error && (error = ldi_open_by_name(devpath, FREAD, kcred, &vd_lh,
4787687SLin.Ling@Sun.COM 	    zfs_li)))
4797539SLin.Ling@Sun.COM 		return (error);
4806423Sgw25295 
4816673Seschrock 	if (ldi_get_size(vd_lh, &s)) {
4826673Seschrock 		(void) ldi_close(vd_lh, FREAD, kcred);
4837539SLin.Ling@Sun.COM 		return (EIO);
4846673Seschrock 	}
4856423Sgw25295 
4866423Sgw25295 	size = P2ALIGN_TYPED(s, sizeof (vdev_label_t), uint64_t);
4876423Sgw25295 	label = kmem_alloc(sizeof (vdev_label_t), KM_SLEEP);
4886423Sgw25295 
4896423Sgw25295 	for (l = 0; l < VDEV_LABELS; l++) {
4906423Sgw25295 		uint64_t offset, state, txg = 0;
4916423Sgw25295 
4926423Sgw25295 		/* read vdev label */
4936423Sgw25295 		offset = vdev_label_offset(size, l, 0);
4946423Sgw25295 		if (vdev_disk_physio(vd_lh, (caddr_t)label,
4956423Sgw25295 		    VDEV_SKIP_SIZE + VDEV_BOOT_HEADER_SIZE +
4966423Sgw25295 		    VDEV_PHYS_SIZE, offset, B_READ) != 0)
4976423Sgw25295 			continue;
4986423Sgw25295 
4996423Sgw25295 		if (nvlist_unpack(label->vl_vdev_phys.vp_nvlist,
5007539SLin.Ling@Sun.COM 		    sizeof (label->vl_vdev_phys.vp_nvlist), config, 0) != 0) {
5017539SLin.Ling@Sun.COM 			*config = NULL;
5026423Sgw25295 			continue;
5036423Sgw25295 		}
5046423Sgw25295 
5057539SLin.Ling@Sun.COM 		if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_STATE,
5066423Sgw25295 		    &state) != 0 || state >= POOL_STATE_DESTROYED) {
5077539SLin.Ling@Sun.COM 			nvlist_free(*config);
5087539SLin.Ling@Sun.COM 			*config = NULL;
5096423Sgw25295 			continue;
5106423Sgw25295 		}
5116423Sgw25295 
5127539SLin.Ling@Sun.COM 		if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_TXG,
5136423Sgw25295 		    &txg) != 0 || txg == 0) {
5147539SLin.Ling@Sun.COM 			nvlist_free(*config);
5157539SLin.Ling@Sun.COM 			*config = NULL;
5166423Sgw25295 			continue;
5176423Sgw25295 		}
5186423Sgw25295 
5196423Sgw25295 		break;
5206423Sgw25295 	}
5216423Sgw25295 
5226423Sgw25295 	kmem_free(label, sizeof (vdev_label_t));
5236673Seschrock 	(void) ldi_close(vd_lh, FREAD, kcred);
5246673Seschrock 
5257539SLin.Ling@Sun.COM 	return (error);
5266423Sgw25295 }
527