usr/src/uts/common/fs/zfs/vdev_disk.c
author ek110237
Wed, 30 Apr 2008 12:37:56 -0700
changeset 6523 c1d2a7f04573
parent 6423 437422a29d3a
child 6615 333cfc13ec55
permissions -rw-r--r--
6616739 panic message ZFS: I/O failure (write on <unknown> is not very helpful 6623234 better FMA integration for 'failmode' property 6680971 blkbuf is leaked in zio_assess() on DEBUG bits for truly failed I/Os 6685865 vdev_disk_probe_io()/vdev_file_probe_io() dvd's setting is wrong
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
     5
 * Common Development and Distribution License (the "License").
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    21
/*
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
    22
 * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    23
 * Use is subject to license terms.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
#pragma ident	"%Z%%M%	%I%	%E% SMI"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
#include <sys/zfs_context.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#include <sys/spa.h>
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
    30
#include <sys/refcount.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <sys/vdev_disk.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <sys/vdev_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
#include <sys/fs/zfs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
#include <sys/zio.h>
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    35
#include <sys/sunldi.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
 * Virtual device vector for disks.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
extern ldi_ident_t zfs_li;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
typedef struct vdev_disk_buf {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
	buf_t	vdb_buf;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
	zio_t	*vdb_io;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
} vdev_disk_buf_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    47
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    48
static int
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
    49
vdev_disk_open_common(vdev_t *vd)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    50
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    51
	vdev_disk_t *dvd;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
    52
	dev_t dev;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    53
	int error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    54
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    55
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    56
	 * We must have a pathname, and it must be absolute.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    57
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    58
	if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
		vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
		return (EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    63
	dvd = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    64
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    65
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
	 * When opening a disk device, we want to preserve the user's original
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
	 * intent.  We always want to open the device by the path the user gave
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
	 * us, even if it is one of multiple paths to the save device.  But we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
	 * also want to be able to survive disks being removed/recabled.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
	 * Therefore the sequence of opening devices is:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
	 *
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    72
	 * 1. Try opening the device by path.  For legacy pools without the
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    73
	 *    'whole_disk' property, attempt to fix the path by appending 's0'.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
	 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    75
	 * 2. If the devid of the device matches the stored value, return
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    76
	 *    success.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
	 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    78
	 * 3. Otherwise, the device may have moved.  Try opening the device
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
	 *    by the devid instead.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
	 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    81
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    82
	if (vd->vdev_devid != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
		if (ddi_devid_str_decode(vd->vdev_devid, &dvd->vd_devid,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    84
		    &dvd->vd_minor) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
			vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
			return (EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    87
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    90
	error = EINVAL;		/* presume failure */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    91
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    92
	if (vd->vdev_path != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    93
		ddi_devid_t devid;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    94
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    95
		if (vd->vdev_wholedisk == -1ULL) {
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    96
			size_t len = strlen(vd->vdev_path) + 3;
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    97
			char *buf = kmem_alloc(len, KM_SLEEP);
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    98
			ldi_handle_t lh;
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    99
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   100
			(void) snprintf(buf, len, "%ss0", vd->vdev_path);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   101
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   102
			if (ldi_open_by_name(buf, spa_mode, kcred,
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   103
			    &lh, zfs_li) == 0) {
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   104
				spa_strfree(vd->vdev_path);
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   105
				vd->vdev_path = buf;
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   106
				vd->vdev_wholedisk = 1ULL;
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   107
				(void) ldi_close(lh, spa_mode, kcred);
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   108
			} else {
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   109
				kmem_free(buf, len);
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   110
			}
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   111
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   112
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   113
		error = ldi_open_by_name(vd->vdev_path, spa_mode, kcred,
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   114
		    &dvd->vd_lh, zfs_li);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   115
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   116
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   117
		 * Compare the devid to the stored value.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   118
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   119
		if (error == 0 && vd->vdev_devid != NULL &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   120
		    ldi_get_devid(dvd->vd_lh, &devid) == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   121
			if (ddi_devid_compare(devid, dvd->vd_devid) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
				error = EINVAL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   123
				(void) ldi_close(dvd->vd_lh, spa_mode, kcred);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   124
				dvd->vd_lh = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   125
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   126
			ddi_devid_free(devid);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   127
		}
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   128
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   129
		/*
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   130
		 * If we succeeded in opening the device, but 'vdev_wholedisk'
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   131
		 * is not yet set, then this must be a slice.
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   132
		 */
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   133
		if (error == 0 && vd->vdev_wholedisk == -1ULL)
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   134
			vd->vdev_wholedisk = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   135
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   136
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   137
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   138
	 * If we were unable to open by path, or the devid check fails, open by
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   139
	 * devid instead.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   140
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   141
	if (error != 0 && vd->vdev_devid != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   142
		error = ldi_open_by_devid(dvd->vd_devid, dvd->vd_minor,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   143
		    spa_mode, kcred, &dvd->vd_lh, zfs_li);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   144
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   145
	/*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   146
	 * If all else fails, then try opening by physical path (if available)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   147
	 * or the logical path (if we failed due to the devid check).  While not
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   148
	 * as reliable as the devid, this will give us something, and the higher
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   149
	 * level vdev validation will prevent us from opening the wrong device.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   150
	 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   151
	if (error) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   152
		if (vd->vdev_physpath != NULL &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   153
		    (dev = ddi_pathname_to_dev_t(vd->vdev_physpath)) != ENODEV)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   154
			error = ldi_open_by_dev(&dev, OTYP_BLK, spa_mode,
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   155
			    kcred, &dvd->vd_lh, zfs_li);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   156
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   157
		/*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   158
		 * Note that we don't support the legacy auto-wholedisk support
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   159
		 * as above.  This hasn't been used in a very long time and we
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   160
		 * don't need to propagate its oddities to this edge condition.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   161
		 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   162
		if (error && vd->vdev_path != NULL)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   163
			error = ldi_open_by_name(vd->vdev_path, spa_mode, kcred,
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   164
			    &dvd->vd_lh, zfs_li);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   165
	}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   166
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   167
	if (error)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   168
		vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   169
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   170
	return (error);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   171
}
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   172
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   173
static int
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   174
vdev_disk_open(vdev_t *vd, uint64_t *psize, uint64_t *ashift)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   175
{
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   176
	vdev_disk_t *dvd;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   177
	struct dk_minfo dkm;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   178
	int error;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   179
	dev_t dev;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   180
	int otyp;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   181
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   182
	error = vdev_disk_open_common(vd);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   183
	if (error)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   184
		return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   185
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   186
	dvd = vd->vdev_tsd;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   187
	/*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   188
	 * Once a device is opened, verify that the physical device path (if
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   189
	 * available) is up to date.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   190
	 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   191
	if (ldi_get_dev(dvd->vd_lh, &dev) == 0 &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   192
	    ldi_get_otyp(dvd->vd_lh, &otyp) == 0) {
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   193
		char *physpath, *minorname;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   194
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   195
		physpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   196
		minorname = NULL;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   197
		if (ddi_dev_pathname(dev, otyp, physpath) == 0 &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   198
		    ldi_get_minor_name(dvd->vd_lh, &minorname) == 0 &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   199
		    (vd->vdev_physpath == NULL ||
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   200
		    strcmp(vd->vdev_physpath, physpath) != 0)) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   201
			if (vd->vdev_physpath)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   202
				spa_strfree(vd->vdev_physpath);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   203
			(void) strlcat(physpath, ":", MAXPATHLEN);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   204
			(void) strlcat(physpath, minorname, MAXPATHLEN);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   205
			vd->vdev_physpath = spa_strdup(physpath);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   206
		}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   207
		if (minorname)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   208
			kmem_free(minorname, strlen(minorname) + 1);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   209
		kmem_free(physpath, MAXPATHLEN);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   210
	}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   211
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   212
	/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   213
	 * Determine the actual size of the device.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   214
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   215
	if (ldi_get_size(dvd->vd_lh, psize) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   216
		vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   217
		return (EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   218
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   219
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   220
	/*
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   221
	 * If we own the whole disk, try to enable disk write caching.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   222
	 * We ignore errors because it's OK if we can't do it.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   223
	 */
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
   224
	if (vd->vdev_wholedisk == 1) {
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   225
		int wce = 1;
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   226
		(void) ldi_ioctl(dvd->vd_lh, DKIOCSETWCE, (intptr_t)&wce,
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   227
		    FKIOCTL, kcred, NULL);
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   228
	}
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
   229
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   230
	/*
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   231
	 * Determine the device's minimum transfer size.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   232
	 * If the ioctl isn't supported, assume DEV_BSIZE.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   233
	 */
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   234
	if (ldi_ioctl(dvd->vd_lh, DKIOCGMEDIAINFO, (intptr_t)&dkm,
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   235
	    FKIOCTL, kcred, NULL) != 0)
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   236
		dkm.dki_lbsize = DEV_BSIZE;
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
   237
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   238
	*ashift = highbit(MAX(dkm.dki_lbsize, SPA_MINBLOCKSIZE)) - 1;
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
   239
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   240
	/*
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   241
	 * Clear the nowritecache bit, so that on a vdev_reopen() we will
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   242
	 * try again.
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   243
	 */
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   244
	vd->vdev_nowritecache = B_FALSE;
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   245
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   246
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   247
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   248
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   249
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   250
vdev_disk_close(vdev_t *vd)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   251
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   252
	vdev_disk_t *dvd = vd->vdev_tsd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   253
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   254
	if (dvd == NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   255
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   256
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   257
	if (dvd->vd_minor != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   258
		ddi_devid_str_free(dvd->vd_minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   259
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   260
	if (dvd->vd_devid != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   261
		ddi_devid_free(dvd->vd_devid);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   262
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   263
	if (dvd->vd_lh != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   264
		(void) ldi_close(dvd->vd_lh, spa_mode, kcred);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   265
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   266
	kmem_free(dvd, sizeof (vdev_disk_t));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   267
	vd->vdev_tsd = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   268
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   269
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   270
int
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   271
vdev_disk_physio(ldi_handle_t vd_lh, caddr_t data, size_t size,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   272
    uint64_t offset, int flags)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   273
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   274
	buf_t *bp;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   275
	int error = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   276
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   277
	if (vd_lh == NULL)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   278
		return (EINVAL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   279
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   280
	ASSERT(flags & B_READ || flags & B_WRITE);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   281
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   282
	bp = getrbuf(KM_SLEEP);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   283
	bp->b_flags = flags | B_BUSY | B_NOCACHE | B_FAILFAST;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   284
	bp->b_bcount = size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   285
	bp->b_un.b_addr = (void *)data;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   286
	bp->b_lblkno = lbtodb(offset);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   287
	bp->b_bufsize = size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   288
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   289
	error = ldi_strategy(vd_lh, bp);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   290
	ASSERT(error == 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   291
	if ((error = biowait(bp)) == 0 && bp->b_resid != 0)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   292
		error = EIO;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   293
	freerbuf(bp);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   294
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   295
	return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   296
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   297
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   298
static int
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   299
vdev_disk_probe_io(vdev_t *vd, caddr_t data, size_t size, uint64_t offset,
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   300
    int flags)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   301
{
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   302
	int error = 0;
6523
c1d2a7f04573 6616739 panic message ZFS: I/O failure (write on <unknown> is not very helpful
ek110237
parents: 6423
diff changeset
   303
	vdev_disk_t *dvd = vd ? vd->vdev_tsd : NULL;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   304
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   305
	if (vd == NULL || dvd == NULL || dvd->vd_lh == NULL)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   306
		return (EINVAL);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   307
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   308
	error = vdev_disk_physio(dvd->vd_lh, data, size, offset, flags);
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   309
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   310
	if (zio_injection_enabled && error == 0)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   311
		error = zio_handle_device_injection(vd, EIO);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   312
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   313
	return (error);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   314
}
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   315
5369
27c1235ef9a4 6621355 panic in vdev_disk_io_start when trying to write to a faulted device
gw25295
parents: 5329
diff changeset
   316
/*
27c1235ef9a4 6621355 panic in vdev_disk_io_start when trying to write to a faulted device
gw25295
parents: 5329
diff changeset
   317
 * Determine if the underlying device is accessible by reading and writing
27c1235ef9a4 6621355 panic in vdev_disk_io_start when trying to write to a faulted device
gw25295
parents: 5329
diff changeset
   318
 * to a known location. We must be able to do this during syncing context
27c1235ef9a4 6621355 panic in vdev_disk_io_start when trying to write to a faulted device
gw25295
parents: 5329
diff changeset
   319
 * and thus we cannot set the vdev state directly.
27c1235ef9a4 6621355 panic in vdev_disk_io_start when trying to write to a faulted device
gw25295
parents: 5329
diff changeset
   320
 */
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   321
static int
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   322
vdev_disk_probe(vdev_t *vd)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   323
{
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   324
	uint64_t offset;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   325
	vdev_t *nvd;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   326
	int l, error = 0, retries = 0;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   327
	char *vl_pad;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   328
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   329
	if (vd == NULL)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   330
		return (EINVAL);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   331
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   332
	/* Hijack the current vdev */
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   333
	nvd = vd;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   334
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   335
	/*
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   336
	 * Pick a random label to rewrite.
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   337
	 */
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   338
	l = spa_get_random(VDEV_LABELS);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   339
	ASSERT(l < VDEV_LABELS);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   340
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   341
	offset = vdev_label_offset(vd->vdev_psize, l,
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   342
	    offsetof(vdev_label_t, vl_pad));
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   343
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   344
	vl_pad = kmem_alloc(VDEV_SKIP_SIZE, KM_SLEEP);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   345
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   346
	/*
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   347
	 * Try to read and write to a special location on the
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   348
	 * label. We use the existing vdev initially and only
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   349
	 * try to create and reopen it if we encounter a failure.
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   350
	 */
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   351
	while ((error = vdev_disk_probe_io(nvd, vl_pad, VDEV_SKIP_SIZE,
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   352
	    offset, B_READ)) != 0 && retries == 0) {
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   353
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   354
		nvd = kmem_zalloc(sizeof (vdev_t), KM_SLEEP);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   355
		if (vd->vdev_path)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   356
			nvd->vdev_path = spa_strdup(vd->vdev_path);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   357
		if (vd->vdev_physpath)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   358
			nvd->vdev_physpath = spa_strdup(vd->vdev_physpath);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   359
		if (vd->vdev_devid)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   360
			nvd->vdev_devid = spa_strdup(vd->vdev_devid);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   361
		nvd->vdev_wholedisk = vd->vdev_wholedisk;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   362
		nvd->vdev_guid = vd->vdev_guid;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   363
		retries++;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   364
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   365
		error = vdev_disk_open_common(nvd);
5369
27c1235ef9a4 6621355 panic in vdev_disk_io_start when trying to write to a faulted device
gw25295
parents: 5329
diff changeset
   366
		if (error)
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   367
			break;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   368
	}
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   369
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   370
	if (!error) {
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   371
		error = vdev_disk_probe_io(nvd, vl_pad, VDEV_SKIP_SIZE,
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   372
		    offset, B_WRITE);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   373
	}
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   374
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   375
	/* Clean up if we allocated a new vdev */
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   376
	if (retries) {
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   377
		vdev_disk_close(nvd);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   378
		if (nvd->vdev_path)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   379
			spa_strfree(nvd->vdev_path);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   380
		if (nvd->vdev_physpath)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   381
			spa_strfree(nvd->vdev_physpath);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   382
		if (nvd->vdev_devid)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   383
			spa_strfree(nvd->vdev_devid);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   384
		kmem_free(nvd, sizeof (vdev_t));
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   385
	}
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   386
	kmem_free(vl_pad, VDEV_SKIP_SIZE);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   387
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   388
	/* Reset the failing flag */
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   389
	if (!error)
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   390
		vd->vdev_is_failing = B_FALSE;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   391
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   392
	return (error);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   393
}
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   394
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   395
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   396
vdev_disk_io_intr(buf_t *bp)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   397
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   398
	vdev_disk_buf_t *vdb = (vdev_disk_buf_t *)bp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   399
	zio_t *zio = vdb->vdb_io;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   400
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   401
	if ((zio->io_error = geterror(bp)) == 0 && bp->b_resid != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   402
		zio->io_error = EIO;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   403
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   404
	kmem_free(vdb, sizeof (vdev_disk_buf_t));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   405
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   406
	zio_interrupt(zio);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   407
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   408
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   409
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   410
vdev_disk_ioctl_done(void *zio_arg, int error)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   411
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   412
	zio_t *zio = zio_arg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   413
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   414
	zio->io_error = error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   415
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   416
	zio_interrupt(zio);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   417
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   418
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   419
static int
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   420
vdev_disk_io_start(zio_t *zio)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   421
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   422
	vdev_t *vd = zio->io_vd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   423
	vdev_disk_t *dvd = vd->vdev_tsd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   424
	vdev_disk_buf_t *vdb;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   425
	buf_t *bp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   426
	int flags, error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   427
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   428
	if (zio->io_type == ZIO_TYPE_IOCTL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   429
		zio_vdev_io_bypass(zio);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   430
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   431
		/* XXPOLICY */
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   432
		if (!vdev_readable(vd)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   433
			zio->io_error = ENXIO;
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   434
			return (ZIO_PIPELINE_CONTINUE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   435
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   436
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   437
		switch (zio->io_cmd) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   438
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   439
		case DKIOCFLUSHWRITECACHE:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   440
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 1773
diff changeset
   441
			if (zfs_nocacheflush)
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 1773
diff changeset
   442
				break;
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 1773
diff changeset
   443
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   444
			if (vd->vdev_nowritecache) {
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   445
				zio->io_error = ENOTSUP;
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   446
				break;
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   447
			}
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   448
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   449
			zio->io_dk_callback.dkc_callback = vdev_disk_ioctl_done;
5065
fcf530c3356e PSARC 2007/053 Per-Disk-Device support of non-volatile cache
gz161490
parents: 4455
diff changeset
   450
			zio->io_dk_callback.dkc_flag = FLUSH_VOLATILE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   451
			zio->io_dk_callback.dkc_cookie = zio;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   452
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   453
			error = ldi_ioctl(dvd->vd_lh, zio->io_cmd,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   454
			    (uintptr_t)&zio->io_dk_callback,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   455
			    FKIOCTL, kcred, NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   456
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   457
			if (error == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   458
				/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   459
				 * The ioctl will be done asychronously,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   460
				 * and will call vdev_disk_ioctl_done()
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   461
				 * upon completion.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   462
				 */
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   463
				return (ZIO_PIPELINE_STOP);
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   464
			}
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   465
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   466
			if (error == ENOTSUP || error == ENOTTY) {
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   467
				/*
4455
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   468
				 * If we get ENOTSUP or ENOTTY, we know that
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   469
				 * no future attempts will ever succeed.
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   470
				 * In this case we set a persistent bit so
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   471
				 * that we don't bother with the ioctl in the
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   472
				 * future.
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   473
				 */
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   474
				vd->vdev_nowritecache = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   475
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   476
			zio->io_error = error;
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   477
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   478
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   479
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   480
		default:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   481
			zio->io_error = ENOTSUP;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   482
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   483
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   484
		return (ZIO_PIPELINE_CONTINUE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   485
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   486
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   487
	if (zio->io_type == ZIO_TYPE_READ && vdev_cache_read(zio) == 0)
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   488
		return (ZIO_PIPELINE_STOP);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   489
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   490
	if ((zio = vdev_queue_io(zio)) == NULL)
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   491
		return (ZIO_PIPELINE_STOP);
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   492
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   493
	if (zio->io_type == ZIO_TYPE_WRITE)
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   494
		error = vdev_writeable(vd) ? vdev_error_inject(vd, zio) : ENXIO;
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   495
	else
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   496
		error = vdev_readable(vd) ? vdev_error_inject(vd, zio) : ENXIO;
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   497
	error = (vd->vdev_remove_wanted || vd->vdev_is_failing) ? ENXIO : error;
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   498
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   499
	if (error) {
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   500
		zio->io_error = error;
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   501
		zio_interrupt(zio);
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   502
		return (ZIO_PIPELINE_STOP);
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   503
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   504
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   505
	flags = (zio->io_type == ZIO_TYPE_READ ? B_READ : B_WRITE);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   506
	flags |= B_BUSY | B_NOCACHE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   507
	if (zio->io_flags & ZIO_FLAG_FAILFAST)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   508
		flags |= B_FAILFAST;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   509
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   510
	vdb = kmem_alloc(sizeof (vdev_disk_buf_t), KM_SLEEP);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   511
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   512
	vdb->vdb_io = zio;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   513
	bp = &vdb->vdb_buf;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   514
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   515
	bioinit(bp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   516
	bp->b_flags = flags;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   517
	bp->b_bcount = zio->io_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   518
	bp->b_un.b_addr = zio->io_data;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   519
	bp->b_lblkno = lbtodb(zio->io_offset);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   520
	bp->b_bufsize = zio->io_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   521
	bp->b_iodone = (int (*)())vdev_disk_io_intr;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   522
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   523
	error = ldi_strategy(dvd->vd_lh, bp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   524
	/* ldi_strategy() will return non-zero only on programming errors */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   525
	ASSERT(error == 0);
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   526
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   527
	return (ZIO_PIPELINE_STOP);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   528
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   529
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   530
static int
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   531
vdev_disk_io_done(zio_t *zio)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   532
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   533
	vdev_queue_io_done(zio);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   534
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   535
	if (zio->io_type == ZIO_TYPE_WRITE)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   536
		vdev_cache_write(zio);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   537
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1489
diff changeset
   538
	if (zio_injection_enabled && zio->io_error == 0)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1489
diff changeset
   539
		zio->io_error = zio_handle_device_injection(zio->io_vd, EIO);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1489
diff changeset
   540
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   541
	/*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   542
	 * If the device returned EIO, then attempt a DKIOCSTATE ioctl to see if
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   543
	 * the device has been removed.  If this is the case, then we trigger an
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   544
	 * asynchronous removal of the device. Otherwise, probe the device and
5369
27c1235ef9a4 6621355 panic in vdev_disk_io_start when trying to write to a faulted device
gw25295
parents: 5329
diff changeset
   545
	 * make sure it's still accessible.
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   546
	 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   547
	if (zio->io_error == EIO) {
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   548
		vdev_t *vd = zio->io_vd;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   549
		vdev_disk_t *dvd = vd->vdev_tsd;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   550
		int state;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   551
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   552
		state = DKIO_NONE;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   553
		if (dvd && ldi_ioctl(dvd->vd_lh, DKIOCSTATE, (intptr_t)&state,
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   554
		    FKIOCTL, kcred, NULL) == 0 &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   555
		    state != DKIO_INSERTED) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   556
			vd->vdev_remove_wanted = B_TRUE;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   557
			spa_async_request(zio->io_spa, SPA_ASYNC_REMOVE);
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   558
		} else if (vdev_probe(vd) != 0) {
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   559
			ASSERT(vd->vdev_ops->vdev_op_leaf);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   560
			vd->vdev_is_failing = B_TRUE;
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   561
		}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   562
	}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   563
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   564
	return (ZIO_PIPELINE_CONTINUE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   565
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   566
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   567
vdev_ops_t vdev_disk_ops = {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   568
	vdev_disk_open,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   569
	vdev_disk_close,
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   570
	vdev_disk_probe,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   571
	vdev_default_asize,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   572
	vdev_disk_io_start,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   573
	vdev_disk_io_done,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   574
	NULL,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   575
	VDEV_TYPE_DISK,		/* name of this vdev type */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   576
	B_TRUE			/* leaf vdev */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   577
};
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   578
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   579
/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   580
 * Given the root disk device pathname, read the label from the device,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   581
 * and construct a configuration nvlist.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   582
 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   583
nvlist_t *
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   584
vdev_disk_read_rootlabel(char *devpath)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   585
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   586
	nvlist_t *config = NULL;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   587
	ldi_handle_t vd_lh;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   588
	vdev_label_t *label;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   589
	uint64_t s, size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   590
	int l;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   591
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   592
	/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   593
	 * Read the device label and build the nvlist.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   594
	 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   595
	if (ldi_open_by_name(devpath, FREAD, kcred, &vd_lh, zfs_li))
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   596
		return (NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   597
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   598
	if (ldi_get_size(vd_lh, &s))
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   599
		return (NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   600
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   601
	size = P2ALIGN_TYPED(s, sizeof (vdev_label_t), uint64_t);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   602
	label = kmem_alloc(sizeof (vdev_label_t), KM_SLEEP);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   603
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   604
	for (l = 0; l < VDEV_LABELS; l++) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   605
		uint64_t offset, state, txg = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   606
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   607
		/* read vdev label */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   608
		offset = vdev_label_offset(size, l, 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   609
		if (vdev_disk_physio(vd_lh, (caddr_t)label,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   610
		    VDEV_SKIP_SIZE + VDEV_BOOT_HEADER_SIZE +
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   611
		    VDEV_PHYS_SIZE, offset, B_READ) != 0)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   612
			continue;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   613
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   614
		if (nvlist_unpack(label->vl_vdev_phys.vp_nvlist,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   615
		    sizeof (label->vl_vdev_phys.vp_nvlist), &config, 0) != 0) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   616
			config = NULL;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   617
			continue;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   618
		}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   619
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   620
		if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_STATE,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   621
		    &state) != 0 || state >= POOL_STATE_DESTROYED) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   622
			nvlist_free(config);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   623
			config = NULL;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   624
			continue;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   625
		}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   626
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   627
		if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_TXG,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   628
		    &txg) != 0 || txg == 0) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   629
			nvlist_free(config);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   630
			config = NULL;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   631
			continue;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   632
		}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   633
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   634
		break;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   635
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   636
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   637
	kmem_free(label, sizeof (vdev_label_t));
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   638
	return (config);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   639
}