xref: /titanic_44/usr/src/uts/common/fs/zfs/vdev_label.c (revision 2142e035faed96b40bfa134be3be1ade90cf9ff1)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5441d80aaSlling  * Common Development and Distribution License (the "License").
6441d80aaSlling  * You may not use this file except in compliance with the License.
7fa9e4066Sahrens  *
8fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
10fa9e4066Sahrens  * See the License for the specific language governing permissions
11fa9e4066Sahrens  * and limitations under the License.
12fa9e4066Sahrens  *
13fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
14fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
16fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
17fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
18fa9e4066Sahrens  *
19fa9e4066Sahrens  * CDDL HEADER END
20fa9e4066Sahrens  */
21ad135b5dSChristopher Siden 
22fa9e4066Sahrens /*
233f9d6ad7SLin Ling  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24be6fd75aSMatthew Ahrens  * Copyright (c) 2013 by Delphix. All rights reserved.
25*2142e035SSaso Kiselkov  * Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
26fa9e4066Sahrens  */
27fa9e4066Sahrens 
28fa9e4066Sahrens /*
29fa9e4066Sahrens  * Virtual Device Labels
30fa9e4066Sahrens  * ---------------------
31fa9e4066Sahrens  *
32fa9e4066Sahrens  * The vdev label serves several distinct purposes:
33fa9e4066Sahrens  *
34fa9e4066Sahrens  *	1. Uniquely identify this device as part of a ZFS pool and confirm its
35fa9e4066Sahrens  *	   identity within the pool.
36fa9e4066Sahrens  *
37fa9e4066Sahrens  * 	2. Verify that all the devices given in a configuration are present
38fa9e4066Sahrens  *         within the pool.
39fa9e4066Sahrens  *
40fa9e4066Sahrens  * 	3. Determine the uberblock for the pool.
41fa9e4066Sahrens  *
42fa9e4066Sahrens  * 	4. In case of an import operation, determine the configuration of the
43fa9e4066Sahrens  *         toplevel vdev of which it is a part.
44fa9e4066Sahrens  *
45fa9e4066Sahrens  * 	5. If an import operation cannot find all the devices in the pool,
46fa9e4066Sahrens  *         provide enough information to the administrator to determine which
47fa9e4066Sahrens  *         devices are missing.
48fa9e4066Sahrens  *
49fa9e4066Sahrens  * It is important to note that while the kernel is responsible for writing the
50fa9e4066Sahrens  * label, it only consumes the information in the first three cases.  The
51fa9e4066Sahrens  * latter information is only consumed in userland when determining the
52fa9e4066Sahrens  * configuration to import a pool.
53fa9e4066Sahrens  *
54fa9e4066Sahrens  *
55fa9e4066Sahrens  * Label Organization
56fa9e4066Sahrens  * ------------------
57fa9e4066Sahrens  *
58fa9e4066Sahrens  * Before describing the contents of the label, it's important to understand how
59fa9e4066Sahrens  * the labels are written and updated with respect to the uberblock.
60fa9e4066Sahrens  *
61fa9e4066Sahrens  * When the pool configuration is altered, either because it was newly created
62fa9e4066Sahrens  * or a device was added, we want to update all the labels such that we can deal
63fa9e4066Sahrens  * with fatal failure at any point.  To this end, each disk has two labels which
64fa9e4066Sahrens  * are updated before and after the uberblock is synced.  Assuming we have
653d7072f8Seschrock  * labels and an uberblock with the following transaction groups:
66fa9e4066Sahrens  *
67fa9e4066Sahrens  *              L1          UB          L2
68fa9e4066Sahrens  *           +------+    +------+    +------+
69fa9e4066Sahrens  *           |      |    |      |    |      |
70fa9e4066Sahrens  *           | t10  |    | t10  |    | t10  |
71fa9e4066Sahrens  *           |      |    |      |    |      |
72fa9e4066Sahrens  *           +------+    +------+    +------+
73fa9e4066Sahrens  *
74fa9e4066Sahrens  * In this stable state, the labels and the uberblock were all updated within
75fa9e4066Sahrens  * the same transaction group (10).  Each label is mirrored and checksummed, so
76fa9e4066Sahrens  * that we can detect when we fail partway through writing the label.
77fa9e4066Sahrens  *
78fa9e4066Sahrens  * In order to identify which labels are valid, the labels are written in the
79fa9e4066Sahrens  * following manner:
80fa9e4066Sahrens  *
81fa9e4066Sahrens  * 	1. For each vdev, update 'L1' to the new label
82fa9e4066Sahrens  * 	2. Update the uberblock
83fa9e4066Sahrens  * 	3. For each vdev, update 'L2' to the new label
84fa9e4066Sahrens  *
85fa9e4066Sahrens  * Given arbitrary failure, we can determine the correct label to use based on
86fa9e4066Sahrens  * the transaction group.  If we fail after updating L1 but before updating the
87fa9e4066Sahrens  * UB, we will notice that L1's transaction group is greater than the uberblock,
88fa9e4066Sahrens  * so L2 must be valid.  If we fail after writing the uberblock but before
89fa9e4066Sahrens  * writing L2, we will notice that L2's transaction group is less than L1, and
90fa9e4066Sahrens  * therefore L1 is valid.
91fa9e4066Sahrens  *
92fa9e4066Sahrens  * Another added complexity is that not every label is updated when the config
93fa9e4066Sahrens  * is synced.  If we add a single device, we do not want to have to re-write
94fa9e4066Sahrens  * every label for every device in the pool.  This means that both L1 and L2 may
95fa9e4066Sahrens  * be older than the pool uberblock, because the necessary information is stored
96fa9e4066Sahrens  * on another vdev.
97fa9e4066Sahrens  *
98fa9e4066Sahrens  *
99fa9e4066Sahrens  * On-disk Format
100fa9e4066Sahrens  * --------------
101fa9e4066Sahrens  *
102fa9e4066Sahrens  * The vdev label consists of two distinct parts, and is wrapped within the
103fa9e4066Sahrens  * vdev_label_t structure.  The label includes 8k of padding to permit legacy
104fa9e4066Sahrens  * VTOC disk labels, but is otherwise ignored.
105fa9e4066Sahrens  *
106fa9e4066Sahrens  * The first half of the label is a packed nvlist which contains pool wide
107fa9e4066Sahrens  * properties, per-vdev properties, and configuration information.  It is
108fa9e4066Sahrens  * described in more detail below.
109fa9e4066Sahrens  *
110fa9e4066Sahrens  * The latter half of the label consists of a redundant array of uberblocks.
111fa9e4066Sahrens  * These uberblocks are updated whenever a transaction group is committed,
112fa9e4066Sahrens  * or when the configuration is updated.  When a pool is loaded, we scan each
113fa9e4066Sahrens  * vdev for the 'best' uberblock.
114fa9e4066Sahrens  *
115fa9e4066Sahrens  *
116fa9e4066Sahrens  * Configuration Information
117fa9e4066Sahrens  * -------------------------
118fa9e4066Sahrens  *
119fa9e4066Sahrens  * The nvlist describing the pool and vdev contains the following elements:
120fa9e4066Sahrens  *
121fa9e4066Sahrens  * 	version		ZFS on-disk version
122fa9e4066Sahrens  * 	name		Pool name
123fa9e4066Sahrens  * 	state		Pool state
124fa9e4066Sahrens  * 	txg		Transaction group in which this label was written
125fa9e4066Sahrens  * 	pool_guid	Unique identifier for this pool
126fa9e4066Sahrens  * 	vdev_tree	An nvlist describing vdev tree.
127ad135b5dSChristopher Siden  *	features_for_read
128ad135b5dSChristopher Siden  *			An nvlist of the features necessary for reading the MOS.
129fa9e4066Sahrens  *
130fa9e4066Sahrens  * Each leaf device label also contains the following:
131fa9e4066Sahrens  *
132fa9e4066Sahrens  * 	top_guid	Unique ID for top-level vdev in which this is contained
133fa9e4066Sahrens  * 	guid		Unique ID for the leaf vdev
134fa9e4066Sahrens  *
135fa9e4066Sahrens  * The 'vs' configuration follows the format described in 'spa_config.c'.
136fa9e4066Sahrens  */
137fa9e4066Sahrens 
138fa9e4066Sahrens #include <sys/zfs_context.h>
139fa9e4066Sahrens #include <sys/spa.h>
140fa9e4066Sahrens #include <sys/spa_impl.h>
141fa9e4066Sahrens #include <sys/dmu.h>
142fa9e4066Sahrens #include <sys/zap.h>
143fa9e4066Sahrens #include <sys/vdev.h>
144fa9e4066Sahrens #include <sys/vdev_impl.h>
145fa9e4066Sahrens #include <sys/uberblock_impl.h>
146fa9e4066Sahrens #include <sys/metaslab.h>
147fa9e4066Sahrens #include <sys/zio.h>
1483f9d6ad7SLin Ling #include <sys/dsl_scan.h>
149fa9e4066Sahrens #include <sys/fs/zfs.h>
150fa9e4066Sahrens 
151fa9e4066Sahrens /*
152fa9e4066Sahrens  * Basic routines to read and write from a vdev label.
153fa9e4066Sahrens  * Used throughout the rest of this file.
154fa9e4066Sahrens  */
155fa9e4066Sahrens uint64_t
vdev_label_offset(uint64_t psize,int l,uint64_t offset)156fa9e4066Sahrens vdev_label_offset(uint64_t psize, int l, uint64_t offset)
157fa9e4066Sahrens {
158ecc2d604Sbonwick 	ASSERT(offset < sizeof (vdev_label_t));
159e7437265Sahrens 	ASSERT(P2PHASE_TYPED(psize, sizeof (vdev_label_t), uint64_t) == 0);
160ecc2d604Sbonwick 
161fa9e4066Sahrens 	return (offset + l * sizeof (vdev_label_t) + (l < VDEV_LABELS / 2 ?
162fa9e4066Sahrens 	    0 : psize - VDEV_LABELS * sizeof (vdev_label_t)));
163fa9e4066Sahrens }
164fa9e4066Sahrens 
16521bf64a7Sgw25295 /*
16621bf64a7Sgw25295  * Returns back the vdev label associated with the passed in offset.
16721bf64a7Sgw25295  */
16821bf64a7Sgw25295 int
vdev_label_number(uint64_t psize,uint64_t offset)16921bf64a7Sgw25295 vdev_label_number(uint64_t psize, uint64_t offset)
17021bf64a7Sgw25295 {
17121bf64a7Sgw25295 	int l;
17221bf64a7Sgw25295 
17321bf64a7Sgw25295 	if (offset >= psize - VDEV_LABEL_END_SIZE) {
17421bf64a7Sgw25295 		offset -= psize - VDEV_LABEL_END_SIZE;
17521bf64a7Sgw25295 		offset += (VDEV_LABELS / 2) * sizeof (vdev_label_t);
17621bf64a7Sgw25295 	}
17721bf64a7Sgw25295 	l = offset / sizeof (vdev_label_t);
17821bf64a7Sgw25295 	return (l < VDEV_LABELS ? l : -1);
17921bf64a7Sgw25295 }
18021bf64a7Sgw25295 
181fa9e4066Sahrens static void
vdev_label_read(zio_t * zio,vdev_t * vd,int l,void * buf,uint64_t offset,uint64_t size,zio_done_func_t * done,void * private,int flags)182fa9e4066Sahrens vdev_label_read(zio_t *zio, vdev_t *vd, int l, void *buf, uint64_t offset,
183e14bb325SJeff Bonwick 	uint64_t size, zio_done_func_t *done, void *private, int flags)
184fa9e4066Sahrens {
185e14bb325SJeff Bonwick 	ASSERT(spa_config_held(zio->io_spa, SCL_STATE_ALL, RW_WRITER) ==
186e14bb325SJeff Bonwick 	    SCL_STATE_ALL);
187e14bb325SJeff Bonwick 	ASSERT(flags & ZIO_FLAG_CONFIG_WRITER);
188fa9e4066Sahrens 
189fa9e4066Sahrens 	zio_nowait(zio_read_phys(zio, vd,
190fa9e4066Sahrens 	    vdev_label_offset(vd->vdev_psize, l, offset),
191fa9e4066Sahrens 	    size, buf, ZIO_CHECKSUM_LABEL, done, private,
192e14bb325SJeff Bonwick 	    ZIO_PRIORITY_SYNC_READ, flags, B_TRUE));
193fa9e4066Sahrens }
194fa9e4066Sahrens 
195fa9e4066Sahrens static void
vdev_label_write(zio_t * zio,vdev_t * vd,int l,void * buf,uint64_t offset,uint64_t size,zio_done_func_t * done,void * private,int flags)196fa9e4066Sahrens vdev_label_write(zio_t *zio, vdev_t *vd, int l, void *buf, uint64_t offset,
19717f17c2dSbonwick 	uint64_t size, zio_done_func_t *done, void *private, int flags)
198fa9e4066Sahrens {
199e14bb325SJeff Bonwick 	ASSERT(spa_config_held(zio->io_spa, SCL_ALL, RW_WRITER) == SCL_ALL ||
200e14bb325SJeff Bonwick 	    (spa_config_held(zio->io_spa, SCL_CONFIG | SCL_STATE, RW_READER) ==
201e14bb325SJeff Bonwick 	    (SCL_CONFIG | SCL_STATE) &&
202e14bb325SJeff Bonwick 	    dsl_pool_sync_context(spa_get_dsl(zio->io_spa))));
203e14bb325SJeff Bonwick 	ASSERT(flags & ZIO_FLAG_CONFIG_WRITER);
204fa9e4066Sahrens 
205fa9e4066Sahrens 	zio_nowait(zio_write_phys(zio, vd,
206fa9e4066Sahrens 	    vdev_label_offset(vd->vdev_psize, l, offset),
207fa9e4066Sahrens 	    size, buf, ZIO_CHECKSUM_LABEL, done, private,
20817f17c2dSbonwick 	    ZIO_PRIORITY_SYNC_WRITE, flags, B_TRUE));
209fa9e4066Sahrens }
210fa9e4066Sahrens 
211fa9e4066Sahrens /*
212fa9e4066Sahrens  * Generate the nvlist representing this vdev's config.
213fa9e4066Sahrens  */
214fa9e4066Sahrens nvlist_t *
vdev_config_generate(spa_t * spa,vdev_t * vd,boolean_t getstats,vdev_config_flag_t flags)21599653d4eSeschrock vdev_config_generate(spa_t *spa, vdev_t *vd, boolean_t getstats,
2163f9d6ad7SLin Ling     vdev_config_flag_t flags)
217fa9e4066Sahrens {
218fa9e4066Sahrens 	nvlist_t *nv = NULL;
219fa9e4066Sahrens 
220b4952e17SGeorge Wilson 	nv = fnvlist_alloc();
221fa9e4066Sahrens 
222b4952e17SGeorge Wilson 	fnvlist_add_string(nv, ZPOOL_CONFIG_TYPE, vd->vdev_ops->vdev_op_type);
2233f9d6ad7SLin Ling 	if (!(flags & (VDEV_CONFIG_SPARE | VDEV_CONFIG_L2CACHE)))
224b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_ID, vd->vdev_id);
225b4952e17SGeorge Wilson 	fnvlist_add_uint64(nv, ZPOOL_CONFIG_GUID, vd->vdev_guid);
226fa9e4066Sahrens 
227fa9e4066Sahrens 	if (vd->vdev_path != NULL)
228b4952e17SGeorge Wilson 		fnvlist_add_string(nv, ZPOOL_CONFIG_PATH, vd->vdev_path);
229fa9e4066Sahrens 
230fa9e4066Sahrens 	if (vd->vdev_devid != NULL)
231b4952e17SGeorge Wilson 		fnvlist_add_string(nv, ZPOOL_CONFIG_DEVID, vd->vdev_devid);
232fa9e4066Sahrens 
2333d7072f8Seschrock 	if (vd->vdev_physpath != NULL)
234b4952e17SGeorge Wilson 		fnvlist_add_string(nv, ZPOOL_CONFIG_PHYS_PATH,
235b4952e17SGeorge Wilson 		    vd->vdev_physpath);
2363d7072f8Seschrock 
2376809eb4eSEric Schrock 	if (vd->vdev_fru != NULL)
238b4952e17SGeorge Wilson 		fnvlist_add_string(nv, ZPOOL_CONFIG_FRU, vd->vdev_fru);
2396809eb4eSEric Schrock 
24099653d4eSeschrock 	if (vd->vdev_nparity != 0) {
24199653d4eSeschrock 		ASSERT(strcmp(vd->vdev_ops->vdev_op_type,
24299653d4eSeschrock 		    VDEV_TYPE_RAIDZ) == 0);
24399653d4eSeschrock 
24499653d4eSeschrock 		/*
24599653d4eSeschrock 		 * Make sure someone hasn't managed to sneak a fancy new vdev
24699653d4eSeschrock 		 * into a crufty old storage pool.
24799653d4eSeschrock 		 */
24899653d4eSeschrock 		ASSERT(vd->vdev_nparity == 1 ||
249f94275ceSAdam Leventhal 		    (vd->vdev_nparity <= 2 &&
250f94275ceSAdam Leventhal 		    spa_version(spa) >= SPA_VERSION_RAIDZ2) ||
251f94275ceSAdam Leventhal 		    (vd->vdev_nparity <= 3 &&
252f94275ceSAdam Leventhal 		    spa_version(spa) >= SPA_VERSION_RAIDZ3));
25399653d4eSeschrock 
25499653d4eSeschrock 		/*
25599653d4eSeschrock 		 * Note that we'll add the nparity tag even on storage pools
25699653d4eSeschrock 		 * that only support a single parity device -- older software
25799653d4eSeschrock 		 * will just ignore it.
25899653d4eSeschrock 		 */
259b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_NPARITY, vd->vdev_nparity);
26099653d4eSeschrock 	}
26199653d4eSeschrock 
262afefbcddSeschrock 	if (vd->vdev_wholedisk != -1ULL)
263b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_WHOLE_DISK,
264b4952e17SGeorge Wilson 		    vd->vdev_wholedisk);
265afefbcddSeschrock 
266ea8dc4b6Seschrock 	if (vd->vdev_not_present)
267b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_NOT_PRESENT, 1);
268ea8dc4b6Seschrock 
26999653d4eSeschrock 	if (vd->vdev_isspare)
270b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_IS_SPARE, 1);
27199653d4eSeschrock 
2723f9d6ad7SLin Ling 	if (!(flags & (VDEV_CONFIG_SPARE | VDEV_CONFIG_L2CACHE)) &&
2733f9d6ad7SLin Ling 	    vd == vd->vdev_top) {
274b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_METASLAB_ARRAY,
275b4952e17SGeorge Wilson 		    vd->vdev_ms_array);
276b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_METASLAB_SHIFT,
277b4952e17SGeorge Wilson 		    vd->vdev_ms_shift);
278b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_ASHIFT, vd->vdev_ashift);
279b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_ASIZE,
280b4952e17SGeorge Wilson 		    vd->vdev_asize);
281b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_IS_LOG, vd->vdev_islog);
2823f9d6ad7SLin Ling 		if (vd->vdev_removing)
283b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_REMOVING,
284b4952e17SGeorge Wilson 			    vd->vdev_removing);
285fa9e4066Sahrens 	}
286fa9e4066Sahrens 
287*2142e035SSaso Kiselkov 	if (flags & VDEV_CONFIG_L2CACHE)
288*2142e035SSaso Kiselkov 		/* indicate that we support L2ARC persistency */
289*2142e035SSaso Kiselkov 		VERIFY(nvlist_add_boolean_value(nv,
290*2142e035SSaso Kiselkov 		    ZPOOL_CONFIG_L2CACHE_PERSISTENT, B_TRUE) == 0);
291*2142e035SSaso Kiselkov 
2920713e232SGeorge Wilson 	if (vd->vdev_dtl_sm != NULL) {
293b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_DTL,
2940713e232SGeorge Wilson 		    space_map_object(vd->vdev_dtl_sm));
2950713e232SGeorge Wilson 	}
296fa9e4066Sahrens 
29788ecc943SGeorge Wilson 	if (vd->vdev_crtxg)
298b4952e17SGeorge Wilson 		fnvlist_add_uint64(nv, ZPOOL_CONFIG_CREATE_TXG, vd->vdev_crtxg);
29988ecc943SGeorge Wilson 
300fa9e4066Sahrens 	if (getstats) {
301fa9e4066Sahrens 		vdev_stat_t vs;
3023f9d6ad7SLin Ling 		pool_scan_stat_t ps;
3033f9d6ad7SLin Ling 
304fa9e4066Sahrens 		vdev_get_stats(vd, &vs);
305b4952e17SGeorge Wilson 		fnvlist_add_uint64_array(nv, ZPOOL_CONFIG_VDEV_STATS,
306b4952e17SGeorge Wilson 		    (uint64_t *)&vs, sizeof (vs) / sizeof (uint64_t));
3073f9d6ad7SLin Ling 
3083f9d6ad7SLin Ling 		/* provide either current or previous scan information */
3093f9d6ad7SLin Ling 		if (spa_scan_get_stats(spa, &ps) == 0) {
310b4952e17SGeorge Wilson 			fnvlist_add_uint64_array(nv,
3113f9d6ad7SLin Ling 			    ZPOOL_CONFIG_SCAN_STATS, (uint64_t *)&ps,
312b4952e17SGeorge Wilson 			    sizeof (pool_scan_stat_t) / sizeof (uint64_t));
3133f9d6ad7SLin Ling 		}
314fa9e4066Sahrens 	}
315fa9e4066Sahrens 
316fa9e4066Sahrens 	if (!vd->vdev_ops->vdev_op_leaf) {
317fa9e4066Sahrens 		nvlist_t **child;
3183f9d6ad7SLin Ling 		int c, idx;
319fa9e4066Sahrens 
32088ecc943SGeorge Wilson 		ASSERT(!vd->vdev_ishole);
32188ecc943SGeorge Wilson 
322fa9e4066Sahrens 		child = kmem_alloc(vd->vdev_children * sizeof (nvlist_t *),
323fa9e4066Sahrens 		    KM_SLEEP);
324fa9e4066Sahrens 
3253f9d6ad7SLin Ling 		for (c = 0, idx = 0; c < vd->vdev_children; c++) {
3263f9d6ad7SLin Ling 			vdev_t *cvd = vd->vdev_child[c];
327fa9e4066Sahrens 
3283f9d6ad7SLin Ling 			/*
3293f9d6ad7SLin Ling 			 * If we're generating an nvlist of removing
3303f9d6ad7SLin Ling 			 * vdevs then skip over any device which is
3313f9d6ad7SLin Ling 			 * not being removed.
3323f9d6ad7SLin Ling 			 */
3333f9d6ad7SLin Ling 			if ((flags & VDEV_CONFIG_REMOVING) &&
3343f9d6ad7SLin Ling 			    !cvd->vdev_removing)
3353f9d6ad7SLin Ling 				continue;
336fa9e4066Sahrens 
3373f9d6ad7SLin Ling 			child[idx++] = vdev_config_generate(spa, cvd,
3383f9d6ad7SLin Ling 			    getstats, flags);
3393f9d6ad7SLin Ling 		}
3403f9d6ad7SLin Ling 
3413f9d6ad7SLin Ling 		if (idx) {
342b4952e17SGeorge Wilson 			fnvlist_add_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
343b4952e17SGeorge Wilson 			    child, idx);
3443f9d6ad7SLin Ling 		}
3453f9d6ad7SLin Ling 
3463f9d6ad7SLin Ling 		for (c = 0; c < idx; c++)
347fa9e4066Sahrens 			nvlist_free(child[c]);
348fa9e4066Sahrens 
349fa9e4066Sahrens 		kmem_free(child, vd->vdev_children * sizeof (nvlist_t *));
350441d80aaSlling 
351441d80aaSlling 	} else {
352069f55e2SEric Schrock 		const char *aux = NULL;
353069f55e2SEric Schrock 
354ecc2d604Sbonwick 		if (vd->vdev_offline && !vd->vdev_tmpoffline)
355b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_OFFLINE, B_TRUE);
356b4952e17SGeorge Wilson 		if (vd->vdev_resilver_txg != 0)
357b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_RESILVER_TXG,
358b4952e17SGeorge Wilson 			    vd->vdev_resilver_txg);
3593d7072f8Seschrock 		if (vd->vdev_faulted)
360b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_FAULTED, B_TRUE);
3613d7072f8Seschrock 		if (vd->vdev_degraded)
362b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_DEGRADED, B_TRUE);
3633d7072f8Seschrock 		if (vd->vdev_removed)
364b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_REMOVED, B_TRUE);
3653d7072f8Seschrock 		if (vd->vdev_unspare)
366b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_UNSPARE, B_TRUE);
36788ecc943SGeorge Wilson 		if (vd->vdev_ishole)
368b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_IS_HOLE, B_TRUE);
369069f55e2SEric Schrock 
370069f55e2SEric Schrock 		switch (vd->vdev_stat.vs_aux) {
371069f55e2SEric Schrock 		case VDEV_AUX_ERR_EXCEEDED:
372069f55e2SEric Schrock 			aux = "err_exceeded";
373069f55e2SEric Schrock 			break;
374069f55e2SEric Schrock 
375069f55e2SEric Schrock 		case VDEV_AUX_EXTERNAL:
376069f55e2SEric Schrock 			aux = "external";
377069f55e2SEric Schrock 			break;
378069f55e2SEric Schrock 		}
379069f55e2SEric Schrock 
380069f55e2SEric Schrock 		if (aux != NULL)
381b4952e17SGeorge Wilson 			fnvlist_add_string(nv, ZPOOL_CONFIG_AUX_STATE, aux);
3821195e687SMark J Musante 
3831195e687SMark J Musante 		if (vd->vdev_splitting && vd->vdev_orig_guid != 0LL) {
384b4952e17SGeorge Wilson 			fnvlist_add_uint64(nv, ZPOOL_CONFIG_ORIG_GUID,
385b4952e17SGeorge Wilson 			    vd->vdev_orig_guid);
3861195e687SMark J Musante 		}
387441d80aaSlling 	}
388fa9e4066Sahrens 
389fa9e4066Sahrens 	return (nv);
390fa9e4066Sahrens }
391fa9e4066Sahrens 
39288ecc943SGeorge Wilson /*
39388ecc943SGeorge Wilson  * Generate a view of the top-level vdevs.  If we currently have holes
39488ecc943SGeorge Wilson  * in the namespace, then generate an array which contains a list of holey
39588ecc943SGeorge Wilson  * vdevs.  Additionally, add the number of top-level children that currently
39688ecc943SGeorge Wilson  * exist.
39788ecc943SGeorge Wilson  */
39888ecc943SGeorge Wilson void
vdev_top_config_generate(spa_t * spa,nvlist_t * config)39988ecc943SGeorge Wilson vdev_top_config_generate(spa_t *spa, nvlist_t *config)
40088ecc943SGeorge Wilson {
40188ecc943SGeorge Wilson 	vdev_t *rvd = spa->spa_root_vdev;
40288ecc943SGeorge Wilson 	uint64_t *array;
4033f9d6ad7SLin Ling 	uint_t c, idx;
40488ecc943SGeorge Wilson 
40588ecc943SGeorge Wilson 	array = kmem_alloc(rvd->vdev_children * sizeof (uint64_t), KM_SLEEP);
40688ecc943SGeorge Wilson 
4073f9d6ad7SLin Ling 	for (c = 0, idx = 0; c < rvd->vdev_children; c++) {
40888ecc943SGeorge Wilson 		vdev_t *tvd = rvd->vdev_child[c];
40988ecc943SGeorge Wilson 
41088ecc943SGeorge Wilson 		if (tvd->vdev_ishole)
41188ecc943SGeorge Wilson 			array[idx++] = c;
41288ecc943SGeorge Wilson 	}
41388ecc943SGeorge Wilson 
414312c6e15SGeorge Wilson 	if (idx) {
41588ecc943SGeorge Wilson 		VERIFY(nvlist_add_uint64_array(config, ZPOOL_CONFIG_HOLE_ARRAY,
416312c6e15SGeorge Wilson 		    array, idx) == 0);
417312c6e15SGeorge Wilson 	}
418312c6e15SGeorge Wilson 
41988ecc943SGeorge Wilson 	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_VDEV_CHILDREN,
42088ecc943SGeorge Wilson 	    rvd->vdev_children) == 0);
42188ecc943SGeorge Wilson 
42288ecc943SGeorge Wilson 	kmem_free(array, rvd->vdev_children * sizeof (uint64_t));
42388ecc943SGeorge Wilson }
42488ecc943SGeorge Wilson 
425ad135b5dSChristopher Siden /*
426dfbb9432SGeorge Wilson  * Returns the configuration from the label of the given vdev. For vdevs
427dfbb9432SGeorge Wilson  * which don't have a txg value stored on their label (i.e. spares/cache)
428dfbb9432SGeorge Wilson  * or have not been completely initialized (txg = 0) just return
429dfbb9432SGeorge Wilson  * the configuration from the first valid label we find. Otherwise,
430dfbb9432SGeorge Wilson  * find the most up-to-date label that does not exceed the specified
431dfbb9432SGeorge Wilson  * 'txg' value.
432ad135b5dSChristopher Siden  */
433fa9e4066Sahrens nvlist_t *
vdev_label_read_config(vdev_t * vd,uint64_t txg)434dfbb9432SGeorge Wilson vdev_label_read_config(vdev_t *vd, uint64_t txg)
435fa9e4066Sahrens {
4360373e76bSbonwick 	spa_t *spa = vd->vdev_spa;
437fa9e4066Sahrens 	nvlist_t *config = NULL;
438fa9e4066Sahrens 	vdev_phys_t *vp;
439fa9e4066Sahrens 	zio_t *zio;
440dfbb9432SGeorge Wilson 	uint64_t best_txg = 0;
441dfbb9432SGeorge Wilson 	int error = 0;
4428956713aSEric Schrock 	int flags = ZIO_FLAG_CONFIG_WRITER | ZIO_FLAG_CANFAIL |
4438956713aSEric Schrock 	    ZIO_FLAG_SPECULATIVE;
444fa9e4066Sahrens 
445e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_STATE_ALL, RW_WRITER) == SCL_STATE_ALL);
4460373e76bSbonwick 
4470a4e9518Sgw25295 	if (!vdev_readable(vd))
448fa9e4066Sahrens 		return (NULL);
449fa9e4066Sahrens 
450fa9e4066Sahrens 	vp = zio_buf_alloc(sizeof (vdev_phys_t));
451fa9e4066Sahrens 
4528956713aSEric Schrock retry:
453e14bb325SJeff Bonwick 	for (int l = 0; l < VDEV_LABELS; l++) {
454dfbb9432SGeorge Wilson 		nvlist_t *label = NULL;
455fa9e4066Sahrens 
456e14bb325SJeff Bonwick 		zio = zio_root(spa, NULL, NULL, flags);
457fa9e4066Sahrens 
458fa9e4066Sahrens 		vdev_label_read(zio, vd, l, vp,
459fa9e4066Sahrens 		    offsetof(vdev_label_t, vl_vdev_phys),
460e14bb325SJeff Bonwick 		    sizeof (vdev_phys_t), NULL, NULL, flags);
461fa9e4066Sahrens 
462fa9e4066Sahrens 		if (zio_wait(zio) == 0 &&
463fa9e4066Sahrens 		    nvlist_unpack(vp->vp_nvlist, sizeof (vp->vp_nvlist),
464dfbb9432SGeorge Wilson 		    &label, 0) == 0) {
465dfbb9432SGeorge Wilson 			uint64_t label_txg = 0;
466fa9e4066Sahrens 
467dfbb9432SGeorge Wilson 			/*
468dfbb9432SGeorge Wilson 			 * Auxiliary vdevs won't have txg values in their
469dfbb9432SGeorge Wilson 			 * labels and newly added vdevs may not have been
470dfbb9432SGeorge Wilson 			 * completely initialized so just return the
471dfbb9432SGeorge Wilson 			 * configuration from the first valid label we
472dfbb9432SGeorge Wilson 			 * encounter.
473dfbb9432SGeorge Wilson 			 */
474dfbb9432SGeorge Wilson 			error = nvlist_lookup_uint64(label,
475dfbb9432SGeorge Wilson 			    ZPOOL_CONFIG_POOL_TXG, &label_txg);
476dfbb9432SGeorge Wilson 			if ((error || label_txg == 0) && !config) {
477dfbb9432SGeorge Wilson 				config = label;
478dfbb9432SGeorge Wilson 				break;
479dfbb9432SGeorge Wilson 			} else if (label_txg <= txg && label_txg > best_txg) {
480dfbb9432SGeorge Wilson 				best_txg = label_txg;
481fa9e4066Sahrens 				nvlist_free(config);
482dfbb9432SGeorge Wilson 				config = fnvlist_dup(label);
483dfbb9432SGeorge Wilson 			}
484dfbb9432SGeorge Wilson 		}
485dfbb9432SGeorge Wilson 
486dfbb9432SGeorge Wilson 		if (label != NULL) {
487dfbb9432SGeorge Wilson 			nvlist_free(label);
488dfbb9432SGeorge Wilson 			label = NULL;
489fa9e4066Sahrens 		}
490fa9e4066Sahrens 	}
491fa9e4066Sahrens 
4928956713aSEric Schrock 	if (config == NULL && !(flags & ZIO_FLAG_TRYHARD)) {
4938956713aSEric Schrock 		flags |= ZIO_FLAG_TRYHARD;
4948956713aSEric Schrock 		goto retry;
4958956713aSEric Schrock 	}
4968956713aSEric Schrock 
497fa9e4066Sahrens 	zio_buf_free(vp, sizeof (vdev_phys_t));
498fa9e4066Sahrens 
499fa9e4066Sahrens 	return (config);
500fa9e4066Sahrens }
501fa9e4066Sahrens 
50239c23413Seschrock /*
50339c23413Seschrock  * Determine if a device is in use.  The 'spare_guid' parameter will be filled
50439c23413Seschrock  * in with the device guid if this spare is active elsewhere on the system.
50539c23413Seschrock  */
50639c23413Seschrock static boolean_t
vdev_inuse(vdev_t * vd,uint64_t crtxg,vdev_labeltype_t reason,uint64_t * spare_guid,uint64_t * l2cache_guid)50739c23413Seschrock vdev_inuse(vdev_t *vd, uint64_t crtxg, vdev_labeltype_t reason,
508fa94a07fSbrendan     uint64_t *spare_guid, uint64_t *l2cache_guid)
50939c23413Seschrock {
51039c23413Seschrock 	spa_t *spa = vd->vdev_spa;
51139c23413Seschrock 	uint64_t state, pool_guid, device_guid, txg, spare_pool;
51239c23413Seschrock 	uint64_t vdtxg = 0;
51339c23413Seschrock 	nvlist_t *label;
51439c23413Seschrock 
51539c23413Seschrock 	if (spare_guid)
51639c23413Seschrock 		*spare_guid = 0ULL;
517fa94a07fSbrendan 	if (l2cache_guid)
518fa94a07fSbrendan 		*l2cache_guid = 0ULL;
51939c23413Seschrock 
52039c23413Seschrock 	/*
52139c23413Seschrock 	 * Read the label, if any, and perform some basic sanity checks.
52239c23413Seschrock 	 */
523dfbb9432SGeorge Wilson 	if ((label = vdev_label_read_config(vd, -1ULL)) == NULL)
52439c23413Seschrock 		return (B_FALSE);
52539c23413Seschrock 
52639c23413Seschrock 	(void) nvlist_lookup_uint64(label, ZPOOL_CONFIG_CREATE_TXG,
52739c23413Seschrock 	    &vdtxg);
52839c23413Seschrock 
52939c23413Seschrock 	if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_STATE,
53039c23413Seschrock 	    &state) != 0 ||
53139c23413Seschrock 	    nvlist_lookup_uint64(label, ZPOOL_CONFIG_GUID,
53239c23413Seschrock 	    &device_guid) != 0) {
53339c23413Seschrock 		nvlist_free(label);
53439c23413Seschrock 		return (B_FALSE);
53539c23413Seschrock 	}
53639c23413Seschrock 
537fa94a07fSbrendan 	if (state != POOL_STATE_SPARE && state != POOL_STATE_L2CACHE &&
53839c23413Seschrock 	    (nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_GUID,
53939c23413Seschrock 	    &pool_guid) != 0 ||
54039c23413Seschrock 	    nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_TXG,
54139c23413Seschrock 	    &txg) != 0)) {
54239c23413Seschrock 		nvlist_free(label);
54339c23413Seschrock 		return (B_FALSE);
54439c23413Seschrock 	}
54539c23413Seschrock 
54639c23413Seschrock 	nvlist_free(label);
54739c23413Seschrock 
54839c23413Seschrock 	/*
54939c23413Seschrock 	 * Check to see if this device indeed belongs to the pool it claims to
55039c23413Seschrock 	 * be a part of.  The only way this is allowed is if the device is a hot
55139c23413Seschrock 	 * spare (which we check for later on).
55239c23413Seschrock 	 */
553fa94a07fSbrendan 	if (state != POOL_STATE_SPARE && state != POOL_STATE_L2CACHE &&
55439c23413Seschrock 	    !spa_guid_exists(pool_guid, device_guid) &&
55589a89ebfSlling 	    !spa_spare_exists(device_guid, NULL, NULL) &&
556fa94a07fSbrendan 	    !spa_l2cache_exists(device_guid, NULL))
55739c23413Seschrock 		return (B_FALSE);
55839c23413Seschrock 
55939c23413Seschrock 	/*
56039c23413Seschrock 	 * If the transaction group is zero, then this an initialized (but
56139c23413Seschrock 	 * unused) label.  This is only an error if the create transaction
56239c23413Seschrock 	 * on-disk is the same as the one we're using now, in which case the
56339c23413Seschrock 	 * user has attempted to add the same vdev multiple times in the same
56439c23413Seschrock 	 * transaction.
56539c23413Seschrock 	 */
566fa94a07fSbrendan 	if (state != POOL_STATE_SPARE && state != POOL_STATE_L2CACHE &&
567fa94a07fSbrendan 	    txg == 0 && vdtxg == crtxg)
56839c23413Seschrock 		return (B_TRUE);
56939c23413Seschrock 
57039c23413Seschrock 	/*
57139c23413Seschrock 	 * Check to see if this is a spare device.  We do an explicit check for
57239c23413Seschrock 	 * spa_has_spare() here because it may be on our pending list of spares
573fa94a07fSbrendan 	 * to add.  We also check if it is an l2cache device.
57439c23413Seschrock 	 */
57589a89ebfSlling 	if (spa_spare_exists(device_guid, &spare_pool, NULL) ||
57639c23413Seschrock 	    spa_has_spare(spa, device_guid)) {
57739c23413Seschrock 		if (spare_guid)
57839c23413Seschrock 			*spare_guid = device_guid;
57939c23413Seschrock 
58039c23413Seschrock 		switch (reason) {
58139c23413Seschrock 		case VDEV_LABEL_CREATE:
582fa94a07fSbrendan 		case VDEV_LABEL_L2CACHE:
58339c23413Seschrock 			return (B_TRUE);
58439c23413Seschrock 
58539c23413Seschrock 		case VDEV_LABEL_REPLACE:
58639c23413Seschrock 			return (!spa_has_spare(spa, device_guid) ||
58739c23413Seschrock 			    spare_pool != 0ULL);
58839c23413Seschrock 
58939c23413Seschrock 		case VDEV_LABEL_SPARE:
59039c23413Seschrock 			return (spa_has_spare(spa, device_guid));
59139c23413Seschrock 		}
59239c23413Seschrock 	}
59339c23413Seschrock 
59439c23413Seschrock 	/*
595fa94a07fSbrendan 	 * Check to see if this is an l2cache device.
596fa94a07fSbrendan 	 */
597fa94a07fSbrendan 	if (spa_l2cache_exists(device_guid, NULL))
598fa94a07fSbrendan 		return (B_TRUE);
599fa94a07fSbrendan 
600fa94a07fSbrendan 	/*
601f9af39baSGeorge Wilson 	 * We can't rely on a pool's state if it's been imported
602f9af39baSGeorge Wilson 	 * read-only.  Instead we look to see if the pools is marked
603f9af39baSGeorge Wilson 	 * read-only in the namespace and set the state to active.
604f9af39baSGeorge Wilson 	 */
605f9af39baSGeorge Wilson 	if ((spa = spa_by_guid(pool_guid, device_guid)) != NULL &&
606f9af39baSGeorge Wilson 	    spa_mode(spa) == FREAD)
607f9af39baSGeorge Wilson 		state = POOL_STATE_ACTIVE;
608f9af39baSGeorge Wilson 
609f9af39baSGeorge Wilson 	/*
61039c23413Seschrock 	 * If the device is marked ACTIVE, then this device is in use by another
61139c23413Seschrock 	 * pool on the system.
61239c23413Seschrock 	 */
61339c23413Seschrock 	return (state == POOL_STATE_ACTIVE);
61439c23413Seschrock }
61539c23413Seschrock 
61639c23413Seschrock /*
61739c23413Seschrock  * Initialize a vdev label.  We check to make sure each leaf device is not in
61839c23413Seschrock  * use, and writable.  We put down an initial label which we will later
61939c23413Seschrock  * overwrite with a complete label.  Note that it's important to do this
62039c23413Seschrock  * sequentially, not in parallel, so that we catch cases of multiple use of the
62139c23413Seschrock  * same leaf vdev in the vdev we're creating -- e.g. mirroring a disk with
62239c23413Seschrock  * itself.
62339c23413Seschrock  */
62439c23413Seschrock int
vdev_label_init(vdev_t * vd,uint64_t crtxg,vdev_labeltype_t reason)62539c23413Seschrock vdev_label_init(vdev_t *vd, uint64_t crtxg, vdev_labeltype_t reason)
626fa9e4066Sahrens {
627fa9e4066Sahrens 	spa_t *spa = vd->vdev_spa;
628fa9e4066Sahrens 	nvlist_t *label;
629fa9e4066Sahrens 	vdev_phys_t *vp;
630f83ffe1aSLin Ling 	char *pad2;
631ecc2d604Sbonwick 	uberblock_t *ub;
632fa9e4066Sahrens 	zio_t *zio;
633fa9e4066Sahrens 	char *buf;
634fa9e4066Sahrens 	size_t buflen;
635fa9e4066Sahrens 	int error;
636fa94a07fSbrendan 	uint64_t spare_guid, l2cache_guid;
637e14bb325SJeff Bonwick 	int flags = ZIO_FLAG_CONFIG_WRITER | ZIO_FLAG_CANFAIL;
638fa9e4066Sahrens 
639e14bb325SJeff Bonwick 	ASSERT(spa_config_held(spa, SCL_ALL, RW_WRITER) == SCL_ALL);
6400373e76bSbonwick 
641e14bb325SJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
64239c23413Seschrock 		if ((error = vdev_label_init(vd->vdev_child[c],
64339c23413Seschrock 		    crtxg, reason)) != 0)
644fa9e4066Sahrens 			return (error);
645fa9e4066Sahrens 
64688ecc943SGeorge Wilson 	/* Track the creation time for this vdev */
64788ecc943SGeorge Wilson 	vd->vdev_crtxg = crtxg;
64888ecc943SGeorge Wilson 
649973c78e9SGeorge Wilson 	if (!vd->vdev_ops->vdev_op_leaf || !spa_writeable(spa))
650fa9e4066Sahrens 		return (0);
651fa9e4066Sahrens 
652fa9e4066Sahrens 	/*
65339c23413Seschrock 	 * Dead vdevs cannot be initialized.
654fa9e4066Sahrens 	 */
655fa9e4066Sahrens 	if (vdev_is_dead(vd))
656be6fd75aSMatthew Ahrens 		return (SET_ERROR(EIO));
657fa9e4066Sahrens 
658fa9e4066Sahrens 	/*
65939c23413Seschrock 	 * Determine if the vdev is in use.
660fa9e4066Sahrens 	 */
6611195e687SMark J Musante 	if (reason != VDEV_LABEL_REMOVE && reason != VDEV_LABEL_SPLIT &&
662fa94a07fSbrendan 	    vdev_inuse(vd, crtxg, reason, &spare_guid, &l2cache_guid))
663be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
664fa9e4066Sahrens 
66599653d4eSeschrock 	/*
666fa94a07fSbrendan 	 * If this is a request to add or replace a spare or l2cache device
667fa94a07fSbrendan 	 * that is in use elsewhere on the system, then we must update the
668fa94a07fSbrendan 	 * guid (which was initialized to a random value) to reflect the
669fa94a07fSbrendan 	 * actual GUID (which is shared between multiple pools).
67099653d4eSeschrock 	 */
671fa94a07fSbrendan 	if (reason != VDEV_LABEL_REMOVE && reason != VDEV_LABEL_L2CACHE &&
672fa94a07fSbrendan 	    spare_guid != 0ULL) {
67331157203SJeff Bonwick 		uint64_t guid_delta = spare_guid - vd->vdev_guid;
67499653d4eSeschrock 
67531157203SJeff Bonwick 		vd->vdev_guid += guid_delta;
67631157203SJeff Bonwick 
67731157203SJeff Bonwick 		for (vdev_t *pvd = vd; pvd != NULL; pvd = pvd->vdev_parent)
67831157203SJeff Bonwick 			pvd->vdev_guid_sum += guid_delta;
67939c23413Seschrock 
68039c23413Seschrock 		/*
68139c23413Seschrock 		 * If this is a replacement, then we want to fallthrough to the
68239c23413Seschrock 		 * rest of the code.  If we're adding a spare, then it's already
6833d7072f8Seschrock 		 * labeled appropriately and we can just return.
68439c23413Seschrock 		 */
68539c23413Seschrock 		if (reason == VDEV_LABEL_SPARE)
68699653d4eSeschrock 			return (0);
6871195e687SMark J Musante 		ASSERT(reason == VDEV_LABEL_REPLACE ||
6881195e687SMark J Musante 		    reason == VDEV_LABEL_SPLIT);
689fa9e4066Sahrens 	}
69099653d4eSeschrock 
691fa94a07fSbrendan 	if (reason != VDEV_LABEL_REMOVE && reason != VDEV_LABEL_SPARE &&
692fa94a07fSbrendan 	    l2cache_guid != 0ULL) {
69331157203SJeff Bonwick 		uint64_t guid_delta = l2cache_guid - vd->vdev_guid;
694fa94a07fSbrendan 
69531157203SJeff Bonwick 		vd->vdev_guid += guid_delta;
69631157203SJeff Bonwick 
69731157203SJeff Bonwick 		for (vdev_t *pvd = vd; pvd != NULL; pvd = pvd->vdev_parent)
69831157203SJeff Bonwick 			pvd->vdev_guid_sum += guid_delta;
699fa94a07fSbrendan 
700fa94a07fSbrendan 		/*
701fa94a07fSbrendan 		 * If this is a replacement, then we want to fallthrough to the
702fa94a07fSbrendan 		 * rest of the code.  If we're adding an l2cache, then it's
703fa94a07fSbrendan 		 * already labeled appropriately and we can just return.
704fa94a07fSbrendan 		 */
705fa94a07fSbrendan 		if (reason == VDEV_LABEL_L2CACHE)
706fa94a07fSbrendan 			return (0);
707fa94a07fSbrendan 		ASSERT(reason == VDEV_LABEL_REPLACE);
708fa94a07fSbrendan 	}
709fa94a07fSbrendan 
71099653d4eSeschrock 	/*
71139c23413Seschrock 	 * Initialize its label.
712fa9e4066Sahrens 	 */
713fa9e4066Sahrens 	vp = zio_buf_alloc(sizeof (vdev_phys_t));
714fa9e4066Sahrens 	bzero(vp, sizeof (vdev_phys_t));
715fa9e4066Sahrens 
716fa9e4066Sahrens 	/*
717fa9e4066Sahrens 	 * Generate a label describing the pool and our top-level vdev.
718fa9e4066Sahrens 	 * We mark it as being from txg 0 to indicate that it's not
719fa9e4066Sahrens 	 * really part of an active pool just yet.  The labels will
720fa9e4066Sahrens 	 * be written again with a meaningful txg by spa_sync().
721fa9e4066Sahrens 	 */
72239c23413Seschrock 	if (reason == VDEV_LABEL_SPARE ||
72339c23413Seschrock 	    (reason == VDEV_LABEL_REMOVE && vd->vdev_isspare)) {
72439c23413Seschrock 		/*
72539c23413Seschrock 		 * For inactive hot spares, we generate a special label that
72639c23413Seschrock 		 * identifies as a mutually shared hot spare.  We write the
72739c23413Seschrock 		 * label if we are adding a hot spare, or if we are removing an
72839c23413Seschrock 		 * active hot spare (in which case we want to revert the
72939c23413Seschrock 		 * labels).
73039c23413Seschrock 		 */
73199653d4eSeschrock 		VERIFY(nvlist_alloc(&label, NV_UNIQUE_NAME, KM_SLEEP) == 0);
73299653d4eSeschrock 
73399653d4eSeschrock 		VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_VERSION,
73499653d4eSeschrock 		    spa_version(spa)) == 0);
73599653d4eSeschrock 		VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_POOL_STATE,
73699653d4eSeschrock 		    POOL_STATE_SPARE) == 0);
73799653d4eSeschrock 		VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_GUID,
73899653d4eSeschrock 		    vd->vdev_guid) == 0);
739fa94a07fSbrendan 	} else if (reason == VDEV_LABEL_L2CACHE ||
740fa94a07fSbrendan 	    (reason == VDEV_LABEL_REMOVE && vd->vdev_isl2cache)) {
741fa94a07fSbrendan 		/*
742fa94a07fSbrendan 		 * For level 2 ARC devices, add a special label.
743fa94a07fSbrendan 		 */
744fa94a07fSbrendan 		VERIFY(nvlist_alloc(&label, NV_UNIQUE_NAME, KM_SLEEP) == 0);
745fa94a07fSbrendan 
746fa94a07fSbrendan 		VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_VERSION,
747fa94a07fSbrendan 		    spa_version(spa)) == 0);
748fa94a07fSbrendan 		VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_POOL_STATE,
749fa94a07fSbrendan 		    POOL_STATE_L2CACHE) == 0);
750fa94a07fSbrendan 		VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_GUID,
751fa94a07fSbrendan 		    vd->vdev_guid) == 0);
75299653d4eSeschrock 	} else {
7531195e687SMark J Musante 		uint64_t txg = 0ULL;
7541195e687SMark J Musante 
7551195e687SMark J Musante 		if (reason == VDEV_LABEL_SPLIT)
7561195e687SMark J Musante 			txg = spa->spa_uberblock.ub_txg;
7571195e687SMark J Musante 		label = spa_config_generate(spa, vd, txg, B_FALSE);
758fa9e4066Sahrens 
759fa9e4066Sahrens 		/*
76099653d4eSeschrock 		 * Add our creation time.  This allows us to detect multiple
76199653d4eSeschrock 		 * vdev uses as described above, and automatically expires if we
76299653d4eSeschrock 		 * fail.
763fa9e4066Sahrens 		 */
76499653d4eSeschrock 		VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_CREATE_TXG,
76599653d4eSeschrock 		    crtxg) == 0);
76699653d4eSeschrock 	}
767fa9e4066Sahrens 
768fa9e4066Sahrens 	buf = vp->vp_nvlist;
769fa9e4066Sahrens 	buflen = sizeof (vp->vp_nvlist);
770fa9e4066Sahrens 
771a75573b6Smmusante 	error = nvlist_pack(label, &buf, &buflen, NV_ENCODE_XDR, KM_SLEEP);
772a75573b6Smmusante 	if (error != 0) {
773fa9e4066Sahrens 		nvlist_free(label);
774fa9e4066Sahrens 		zio_buf_free(vp, sizeof (vdev_phys_t));
775a75573b6Smmusante 		/* EFAULT means nvlist_pack ran out of room */
776a75573b6Smmusante 		return (error == EFAULT ? ENAMETOOLONG : EINVAL);
777fa9e4066Sahrens 	}
778fa9e4066Sahrens 
779fa9e4066Sahrens 	/*
780fa9e4066Sahrens 	 * Initialize uberblock template.
781fa9e4066Sahrens 	 */
782f64c0e34SEric Taylor 	ub = zio_buf_alloc(VDEV_UBERBLOCK_RING);
783f64c0e34SEric Taylor 	bzero(ub, VDEV_UBERBLOCK_RING);
784ecc2d604Sbonwick 	*ub = spa->spa_uberblock;
785ecc2d604Sbonwick 	ub->ub_txg = 0;
786fa9e4066Sahrens 
787f83ffe1aSLin Ling 	/* Initialize the 2nd padding area. */
788f83ffe1aSLin Ling 	pad2 = zio_buf_alloc(VDEV_PAD_SIZE);
789f83ffe1aSLin Ling 	bzero(pad2, VDEV_PAD_SIZE);
790f83ffe1aSLin Ling 
791fa9e4066Sahrens 	/*
792fa9e4066Sahrens 	 * Write everything in parallel.
793fa9e4066Sahrens 	 */
7948956713aSEric Schrock retry:
79517f17c2dSbonwick 	zio = zio_root(spa, NULL, NULL, flags);
796fa9e4066Sahrens 
797e14bb325SJeff Bonwick 	for (int l = 0; l < VDEV_LABELS; l++) {
798fa9e4066Sahrens 
799fa9e4066Sahrens 		vdev_label_write(zio, vd, l, vp,
800fa9e4066Sahrens 		    offsetof(vdev_label_t, vl_vdev_phys),
80117f17c2dSbonwick 		    sizeof (vdev_phys_t), NULL, NULL, flags);
802fa9e4066Sahrens 
803f83ffe1aSLin Ling 		/*
804f83ffe1aSLin Ling 		 * Skip the 1st padding area.
805f83ffe1aSLin Ling 		 * Zero out the 2nd padding area where it might have
806f83ffe1aSLin Ling 		 * left over data from previous filesystem format.
807f83ffe1aSLin Ling 		 */
808f83ffe1aSLin Ling 		vdev_label_write(zio, vd, l, pad2,
809f83ffe1aSLin Ling 		    offsetof(vdev_label_t, vl_pad2),
810f83ffe1aSLin Ling 		    VDEV_PAD_SIZE, NULL, NULL, flags);
811f83ffe1aSLin Ling 
812ecc2d604Sbonwick 		vdev_label_write(zio, vd, l, ub,
813f64c0e34SEric Taylor 		    offsetof(vdev_label_t, vl_uberblock),
814f64c0e34SEric Taylor 		    VDEV_UBERBLOCK_RING, NULL, NULL, flags);
815fa9e4066Sahrens 	}
816fa9e4066Sahrens 
817fa9e4066Sahrens 	error = zio_wait(zio);
818fa9e4066Sahrens 
8198956713aSEric Schrock 	if (error != 0 && !(flags & ZIO_FLAG_TRYHARD)) {
8208956713aSEric Schrock 		flags |= ZIO_FLAG_TRYHARD;
8218956713aSEric Schrock 		goto retry;
8228956713aSEric Schrock 	}
8238956713aSEric Schrock 
824fa9e4066Sahrens 	nvlist_free(label);
825f83ffe1aSLin Ling 	zio_buf_free(pad2, VDEV_PAD_SIZE);
826f64c0e34SEric Taylor 	zio_buf_free(ub, VDEV_UBERBLOCK_RING);
827fa9e4066Sahrens 	zio_buf_free(vp, sizeof (vdev_phys_t));
828fa9e4066Sahrens 
82999653d4eSeschrock 	/*
83039c23413Seschrock 	 * If this vdev hasn't been previously identified as a spare, then we
8313d7072f8Seschrock 	 * mark it as such only if a) we are labeling it as a spare, or b) it
832fa94a07fSbrendan 	 * exists as a spare elsewhere in the system.  Do the same for
833fa94a07fSbrendan 	 * level 2 ARC devices.
83499653d4eSeschrock 	 */
83539c23413Seschrock 	if (error == 0 && !vd->vdev_isspare &&
83639c23413Seschrock 	    (reason == VDEV_LABEL_SPARE ||
83789a89ebfSlling 	    spa_spare_exists(vd->vdev_guid, NULL, NULL)))
83839c23413Seschrock 		spa_spare_add(vd);
83939c23413Seschrock 
840fa94a07fSbrendan 	if (error == 0 && !vd->vdev_isl2cache &&
841fa94a07fSbrendan 	    (reason == VDEV_LABEL_L2CACHE ||
842fa94a07fSbrendan 	    spa_l2cache_exists(vd->vdev_guid, NULL)))
843fa94a07fSbrendan 		spa_l2cache_add(vd);
844fa94a07fSbrendan 
84539c23413Seschrock 	return (error);
84699653d4eSeschrock }
84799653d4eSeschrock 
848fa9e4066Sahrens /*
849fa9e4066Sahrens  * ==========================================================================
850fa9e4066Sahrens  * uberblock load/sync
851fa9e4066Sahrens  * ==========================================================================
852fa9e4066Sahrens  */
853fa9e4066Sahrens 
854fa9e4066Sahrens /*
855fa9e4066Sahrens  * Consider the following situation: txg is safely synced to disk.  We've
856fa9e4066Sahrens  * written the first uberblock for txg + 1, and then we lose power.  When we
857fa9e4066Sahrens  * come back up, we fail to see the uberblock for txg + 1 because, say,
858fa9e4066Sahrens  * it was on a mirrored device and the replica to which we wrote txg + 1
859fa9e4066Sahrens  * is now offline.  If we then make some changes and sync txg + 1, and then
860ad135b5dSChristopher Siden  * the missing replica comes back, then for a few seconds we'll have two
861fa9e4066Sahrens  * conflicting uberblocks on disk with the same txg.  The solution is simple:
862fa9e4066Sahrens  * among uberblocks with equal txg, choose the one with the latest timestamp.
863fa9e4066Sahrens  */
864fa9e4066Sahrens static int
vdev_uberblock_compare(uberblock_t * ub1,uberblock_t * ub2)865fa9e4066Sahrens vdev_uberblock_compare(uberblock_t *ub1, uberblock_t *ub2)
866fa9e4066Sahrens {
867fa9e4066Sahrens 	if (ub1->ub_txg < ub2->ub_txg)
868fa9e4066Sahrens 		return (-1);
869fa9e4066Sahrens 	if (ub1->ub_txg > ub2->ub_txg)
870fa9e4066Sahrens 		return (1);
871fa9e4066Sahrens 
872fa9e4066Sahrens 	if (ub1->ub_timestamp < ub2->ub_timestamp)
873fa9e4066Sahrens 		return (-1);
874fa9e4066Sahrens 	if (ub1->ub_timestamp > ub2->ub_timestamp)
875fa9e4066Sahrens 		return (1);
876fa9e4066Sahrens 
877fa9e4066Sahrens 	return (0);
878fa9e4066Sahrens }
879fa9e4066Sahrens 
880ad135b5dSChristopher Siden struct ubl_cbdata {
881ad135b5dSChristopher Siden 	uberblock_t	*ubl_ubbest;	/* Best uberblock */
882ad135b5dSChristopher Siden 	vdev_t		*ubl_vd;	/* vdev associated with the above */
883ad135b5dSChristopher Siden };
884ad135b5dSChristopher Siden 
885fa9e4066Sahrens static void
vdev_uberblock_load_done(zio_t * zio)886fa9e4066Sahrens vdev_uberblock_load_done(zio_t *zio)
887fa9e4066Sahrens {
888ad135b5dSChristopher Siden 	vdev_t *vd = zio->io_vd;
889468c413aSTim Haley 	spa_t *spa = zio->io_spa;
890e14bb325SJeff Bonwick 	zio_t *rio = zio->io_private;
891ecc2d604Sbonwick 	uberblock_t *ub = zio->io_data;
892ad135b5dSChristopher Siden 	struct ubl_cbdata *cbp = rio->io_private;
893fa9e4066Sahrens 
894ad135b5dSChristopher Siden 	ASSERT3U(zio->io_size, ==, VDEV_UBERBLOCK_SIZE(vd));
895fa9e4066Sahrens 
896ea8dc4b6Seschrock 	if (zio->io_error == 0 && uberblock_verify(ub) == 0) {
897e14bb325SJeff Bonwick 		mutex_enter(&rio->io_lock);
898468c413aSTim Haley 		if (ub->ub_txg <= spa->spa_load_max_txg &&
899ad135b5dSChristopher Siden 		    vdev_uberblock_compare(ub, cbp->ubl_ubbest) > 0) {
900ad135b5dSChristopher Siden 			/*
901dfbb9432SGeorge Wilson 			 * Keep track of the vdev in which this uberblock
902dfbb9432SGeorge Wilson 			 * was found. We will use this information later
903dfbb9432SGeorge Wilson 			 * to obtain the config nvlist associated with
904ad135b5dSChristopher Siden 			 * this uberblock.
905ad135b5dSChristopher Siden 			 */
906ad135b5dSChristopher Siden 			*cbp->ubl_ubbest = *ub;
907ad135b5dSChristopher Siden 			cbp->ubl_vd = vd;
908ad135b5dSChristopher Siden 		}
909e14bb325SJeff Bonwick 		mutex_exit(&rio->io_lock);
910fa9e4066Sahrens 	}
911fa9e4066Sahrens 
912fa9e4066Sahrens 	zio_buf_free(zio->io_data, zio->io_size);
913fa9e4066Sahrens }
914fa9e4066Sahrens 
915ad135b5dSChristopher Siden static void
vdev_uberblock_load_impl(zio_t * zio,vdev_t * vd,int flags,struct ubl_cbdata * cbp)916ad135b5dSChristopher Siden vdev_uberblock_load_impl(zio_t *zio, vdev_t *vd, int flags,
917ad135b5dSChristopher Siden     struct ubl_cbdata *cbp)
918fa9e4066Sahrens {
919e14bb325SJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
920ad135b5dSChristopher Siden 		vdev_uberblock_load_impl(zio, vd->vdev_child[c], flags, cbp);
921fa9e4066Sahrens 
922e14bb325SJeff Bonwick 	if (vd->vdev_ops->vdev_op_leaf && vdev_readable(vd)) {
923e14bb325SJeff Bonwick 		for (int l = 0; l < VDEV_LABELS; l++) {
924e14bb325SJeff Bonwick 			for (int n = 0; n < VDEV_UBERBLOCK_COUNT(vd); n++) {
925fa9e4066Sahrens 				vdev_label_read(zio, vd, l,
926ecc2d604Sbonwick 				    zio_buf_alloc(VDEV_UBERBLOCK_SIZE(vd)),
927ecc2d604Sbonwick 				    VDEV_UBERBLOCK_OFFSET(vd, n),
928ecc2d604Sbonwick 				    VDEV_UBERBLOCK_SIZE(vd),
929e14bb325SJeff Bonwick 				    vdev_uberblock_load_done, zio, flags);
930fa9e4066Sahrens 			}
931fa9e4066Sahrens 		}
932fa9e4066Sahrens 	}
933e14bb325SJeff Bonwick }
934ad135b5dSChristopher Siden 
935ad135b5dSChristopher Siden /*
936ad135b5dSChristopher Siden  * Reads the 'best' uberblock from disk along with its associated
937ad135b5dSChristopher Siden  * configuration. First, we read the uberblock array of each label of each
938ad135b5dSChristopher Siden  * vdev, keeping track of the uberblock with the highest txg in each array.
939dfbb9432SGeorge Wilson  * Then, we read the configuration from the same vdev as the best uberblock.
940ad135b5dSChristopher Siden  */
941ad135b5dSChristopher Siden void
vdev_uberblock_load(vdev_t * rvd,uberblock_t * ub,nvlist_t ** config)942ad135b5dSChristopher Siden vdev_uberblock_load(vdev_t *rvd, uberblock_t *ub, nvlist_t **config)
943ad135b5dSChristopher Siden {
944ad135b5dSChristopher Siden 	zio_t *zio;
945ad135b5dSChristopher Siden 	spa_t *spa = rvd->vdev_spa;
946ad135b5dSChristopher Siden 	struct ubl_cbdata cb;
947ad135b5dSChristopher Siden 	int flags = ZIO_FLAG_CONFIG_WRITER | ZIO_FLAG_CANFAIL |
948ad135b5dSChristopher Siden 	    ZIO_FLAG_SPECULATIVE | ZIO_FLAG_TRYHARD;
949ad135b5dSChristopher Siden 
950ad135b5dSChristopher Siden 	ASSERT(ub);
951ad135b5dSChristopher Siden 	ASSERT(config);
952ad135b5dSChristopher Siden 
953ad135b5dSChristopher Siden 	bzero(ub, sizeof (uberblock_t));
954ad135b5dSChristopher Siden 	*config = NULL;
955ad135b5dSChristopher Siden 
956ad135b5dSChristopher Siden 	cb.ubl_ubbest = ub;
957ad135b5dSChristopher Siden 	cb.ubl_vd = NULL;
958ad135b5dSChristopher Siden 
959ad135b5dSChristopher Siden 	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
960ad135b5dSChristopher Siden 	zio = zio_root(spa, NULL, &cb, flags);
961ad135b5dSChristopher Siden 	vdev_uberblock_load_impl(zio, rvd, flags, &cb);
962ad135b5dSChristopher Siden 	(void) zio_wait(zio);
963dfbb9432SGeorge Wilson 
964dfbb9432SGeorge Wilson 	/*
965dfbb9432SGeorge Wilson 	 * It's possible that the best uberblock was discovered on a label
966dfbb9432SGeorge Wilson 	 * that has a configuration which was written in a future txg.
967dfbb9432SGeorge Wilson 	 * Search all labels on this vdev to find the configuration that
968dfbb9432SGeorge Wilson 	 * matches the txg for our uberblock.
969dfbb9432SGeorge Wilson 	 */
970dfbb9432SGeorge Wilson 	if (cb.ubl_vd != NULL)
971dfbb9432SGeorge Wilson 		*config = vdev_label_read_config(cb.ubl_vd, ub->ub_txg);
972ad135b5dSChristopher Siden 	spa_config_exit(spa, SCL_ALL, FTAG);
973e14bb325SJeff Bonwick }
974e14bb325SJeff Bonwick 
975fa9e4066Sahrens /*
97617f17c2dSbonwick  * On success, increment root zio's count of good writes.
9770373e76bSbonwick  * We only get credit for writes to known-visible vdevs; see spa_vdev_add().
978fa9e4066Sahrens  */
979fa9e4066Sahrens static void
vdev_uberblock_sync_done(zio_t * zio)980fa9e4066Sahrens vdev_uberblock_sync_done(zio_t *zio)
981fa9e4066Sahrens {
98217f17c2dSbonwick 	uint64_t *good_writes = zio->io_private;
983fa9e4066Sahrens 
9840373e76bSbonwick 	if (zio->io_error == 0 && zio->io_vd->vdev_top->vdev_ms_array != 0)
9851a5e258fSJosef 'Jeff' Sipek 		atomic_inc_64(good_writes);
986fa9e4066Sahrens }
987fa9e4066Sahrens 
98817f17c2dSbonwick /*
98917f17c2dSbonwick  * Write the uberblock to all labels of all leaves of the specified vdev.
99017f17c2dSbonwick  */
991fa9e4066Sahrens static void
vdev_uberblock_sync(zio_t * zio,uberblock_t * ub,vdev_t * vd,int flags)992e14bb325SJeff Bonwick vdev_uberblock_sync(zio_t *zio, uberblock_t *ub, vdev_t *vd, int flags)
993fa9e4066Sahrens {
99417f17c2dSbonwick 	uberblock_t *ubbuf;
995e14bb325SJeff Bonwick 	int n;
996fa9e4066Sahrens 
997e14bb325SJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
998e14bb325SJeff Bonwick 		vdev_uberblock_sync(zio, ub, vd->vdev_child[c], flags);
999fa9e4066Sahrens 
1000fa9e4066Sahrens 	if (!vd->vdev_ops->vdev_op_leaf)
1001fa9e4066Sahrens 		return;
1002fa9e4066Sahrens 
1003e14bb325SJeff Bonwick 	if (!vdev_writeable(vd))
1004fa9e4066Sahrens 		return;
1005fa9e4066Sahrens 
100617f17c2dSbonwick 	n = ub->ub_txg & (VDEV_UBERBLOCK_COUNT(vd) - 1);
1007fa9e4066Sahrens 
100817f17c2dSbonwick 	ubbuf = zio_buf_alloc(VDEV_UBERBLOCK_SIZE(vd));
100917f17c2dSbonwick 	bzero(ubbuf, VDEV_UBERBLOCK_SIZE(vd));
1010ecc2d604Sbonwick 	*ubbuf = *ub;
1011fa9e4066Sahrens 
1012e14bb325SJeff Bonwick 	for (int l = 0; l < VDEV_LABELS; l++)
101317f17c2dSbonwick 		vdev_label_write(zio, vd, l, ubbuf,
1014e14bb325SJeff Bonwick 		    VDEV_UBERBLOCK_OFFSET(vd, n), VDEV_UBERBLOCK_SIZE(vd),
101517f17c2dSbonwick 		    vdev_uberblock_sync_done, zio->io_private,
1016e14bb325SJeff Bonwick 		    flags | ZIO_FLAG_DONT_PROPAGATE);
1017fa9e4066Sahrens 
101817f17c2dSbonwick 	zio_buf_free(ubbuf, VDEV_UBERBLOCK_SIZE(vd));
1019fa9e4066Sahrens }
1020fa9e4066Sahrens 
10213e30c24aSWill Andrews /* Sync the uberblocks to all vdevs in svd[] */
102217f17c2dSbonwick int
vdev_uberblock_sync_list(vdev_t ** svd,int svdcount,uberblock_t * ub,int flags)102317f17c2dSbonwick vdev_uberblock_sync_list(vdev_t **svd, int svdcount, uberblock_t *ub, int flags)
102417f17c2dSbonwick {
102517f17c2dSbonwick 	spa_t *spa = svd[0]->vdev_spa;
1026e14bb325SJeff Bonwick 	zio_t *zio;
102717f17c2dSbonwick 	uint64_t good_writes = 0;
102817f17c2dSbonwick 
1029e14bb325SJeff Bonwick 	zio = zio_root(spa, NULL, &good_writes, flags);
103017f17c2dSbonwick 
1031e14bb325SJeff Bonwick 	for (int v = 0; v < svdcount; v++)
1032e14bb325SJeff Bonwick 		vdev_uberblock_sync(zio, ub, svd[v], flags);
1033e14bb325SJeff Bonwick 
103417f17c2dSbonwick 	(void) zio_wait(zio);
103517f17c2dSbonwick 
1036fa9e4066Sahrens 	/*
103717f17c2dSbonwick 	 * Flush the uberblocks to disk.  This ensures that the odd labels
103817f17c2dSbonwick 	 * are no longer needed (because the new uberblocks and the even
103917f17c2dSbonwick 	 * labels are safely on disk), so it is safe to overwrite them.
1040fa9e4066Sahrens 	 */
104117f17c2dSbonwick 	zio = zio_root(spa, NULL, NULL, flags);
1042fa9e4066Sahrens 
1043e14bb325SJeff Bonwick 	for (int v = 0; v < svdcount; v++)
104417f17c2dSbonwick 		zio_flush(zio, svd[v]);
1045fa9e4066Sahrens 
104617f17c2dSbonwick 	(void) zio_wait(zio);
104717f17c2dSbonwick 
104817f17c2dSbonwick 	return (good_writes >= 1 ? 0 : EIO);
1049fa9e4066Sahrens }
1050fa9e4066Sahrens 
1051fa9e4066Sahrens /*
105217f17c2dSbonwick  * On success, increment the count of good writes for our top-level vdev.
1053fa9e4066Sahrens  */
1054fa9e4066Sahrens static void
vdev_label_sync_done(zio_t * zio)105517f17c2dSbonwick vdev_label_sync_done(zio_t *zio)
1056fa9e4066Sahrens {
105717f17c2dSbonwick 	uint64_t *good_writes = zio->io_private;
1058fa9e4066Sahrens 
1059fa9e4066Sahrens 	if (zio->io_error == 0)
10601a5e258fSJosef 'Jeff' Sipek 		atomic_inc_64(good_writes);
1061fa9e4066Sahrens }
1062fa9e4066Sahrens 
106317f17c2dSbonwick /*
106417f17c2dSbonwick  * If there weren't enough good writes, indicate failure to the parent.
106517f17c2dSbonwick  */
1066fa9e4066Sahrens static void
vdev_label_sync_top_done(zio_t * zio)106717f17c2dSbonwick vdev_label_sync_top_done(zio_t *zio)
106817f17c2dSbonwick {
106917f17c2dSbonwick 	uint64_t *good_writes = zio->io_private;
107017f17c2dSbonwick 
107117f17c2dSbonwick 	if (*good_writes == 0)
1072be6fd75aSMatthew Ahrens 		zio->io_error = SET_ERROR(EIO);
107317f17c2dSbonwick 
107417f17c2dSbonwick 	kmem_free(good_writes, sizeof (uint64_t));
107517f17c2dSbonwick }
107617f17c2dSbonwick 
107717f17c2dSbonwick /*
10780430f8daSeschrock  * We ignore errors for log and cache devices, simply free the private data.
107951ece835Seschrock  */
108051ece835Seschrock static void
vdev_label_sync_ignore_done(zio_t * zio)10810430f8daSeschrock vdev_label_sync_ignore_done(zio_t *zio)
108251ece835Seschrock {
108351ece835Seschrock 	kmem_free(zio->io_private, sizeof (uint64_t));
108451ece835Seschrock }
108551ece835Seschrock 
108651ece835Seschrock /*
108717f17c2dSbonwick  * Write all even or odd labels to all leaves of the specified vdev.
108817f17c2dSbonwick  */
108917f17c2dSbonwick static void
vdev_label_sync(zio_t * zio,vdev_t * vd,int l,uint64_t txg,int flags)1090e14bb325SJeff Bonwick vdev_label_sync(zio_t *zio, vdev_t *vd, int l, uint64_t txg, int flags)
1091fa9e4066Sahrens {
1092fa9e4066Sahrens 	nvlist_t *label;
1093fa9e4066Sahrens 	vdev_phys_t *vp;
1094fa9e4066Sahrens 	char *buf;
1095fa9e4066Sahrens 	size_t buflen;
1096fa9e4066Sahrens 
1097e14bb325SJeff Bonwick 	for (int c = 0; c < vd->vdev_children; c++)
1098e14bb325SJeff Bonwick 		vdev_label_sync(zio, vd->vdev_child[c], l, txg, flags);
1099fa9e4066Sahrens 
1100fa9e4066Sahrens 	if (!vd->vdev_ops->vdev_op_leaf)
1101fa9e4066Sahrens 		return;
1102fa9e4066Sahrens 
1103e14bb325SJeff Bonwick 	if (!vdev_writeable(vd))
1104fa9e4066Sahrens 		return;
1105fa9e4066Sahrens 
1106fa9e4066Sahrens 	/*
1107fa9e4066Sahrens 	 * Generate a label describing the top-level config to which we belong.
1108fa9e4066Sahrens 	 */
11090373e76bSbonwick 	label = spa_config_generate(vd->vdev_spa, vd, txg, B_FALSE);
1110fa9e4066Sahrens 
1111fa9e4066Sahrens 	vp = zio_buf_alloc(sizeof (vdev_phys_t));
1112fa9e4066Sahrens 	bzero(vp, sizeof (vdev_phys_t));
1113fa9e4066Sahrens 
1114fa9e4066Sahrens 	buf = vp->vp_nvlist;
1115fa9e4066Sahrens 	buflen = sizeof (vp->vp_nvlist);
1116fa9e4066Sahrens 
111717f17c2dSbonwick 	if (nvlist_pack(label, &buf, &buflen, NV_ENCODE_XDR, KM_SLEEP) == 0) {
111817f17c2dSbonwick 		for (; l < VDEV_LABELS; l += 2) {
1119fa9e4066Sahrens 			vdev_label_write(zio, vd, l, vp,
112017f17c2dSbonwick 			    offsetof(vdev_label_t, vl_vdev_phys),
112117f17c2dSbonwick 			    sizeof (vdev_phys_t),
112217f17c2dSbonwick 			    vdev_label_sync_done, zio->io_private,
1123e14bb325SJeff Bonwick 			    flags | ZIO_FLAG_DONT_PROPAGATE);
112417f17c2dSbonwick 		}
112517f17c2dSbonwick 	}
1126fa9e4066Sahrens 
1127fa9e4066Sahrens 	zio_buf_free(vp, sizeof (vdev_phys_t));
1128fa9e4066Sahrens 	nvlist_free(label);
1129fa9e4066Sahrens }
1130fa9e4066Sahrens 
113117f17c2dSbonwick int
vdev_label_sync_list(spa_t * spa,int l,uint64_t txg,int flags)1132e14bb325SJeff Bonwick vdev_label_sync_list(spa_t *spa, int l, uint64_t txg, int flags)
1133fa9e4066Sahrens {
1134e14bb325SJeff Bonwick 	list_t *dl = &spa->spa_config_dirty_list;
113517f17c2dSbonwick 	vdev_t *vd;
1136e14bb325SJeff Bonwick 	zio_t *zio;
1137fa9e4066Sahrens 	int error;
1138fa9e4066Sahrens 
1139fa9e4066Sahrens 	/*
1140e14bb325SJeff Bonwick 	 * Write the new labels to disk.
1141fa9e4066Sahrens 	 */
1142e14bb325SJeff Bonwick 	zio = zio_root(spa, NULL, NULL, flags);
114317f17c2dSbonwick 
114417f17c2dSbonwick 	for (vd = list_head(dl); vd != NULL; vd = list_next(dl, vd)) {
114517f17c2dSbonwick 		uint64_t *good_writes = kmem_zalloc(sizeof (uint64_t),
114617f17c2dSbonwick 		    KM_SLEEP);
114788ecc943SGeorge Wilson 
114888ecc943SGeorge Wilson 		ASSERT(!vd->vdev_ishole);
114988ecc943SGeorge Wilson 
1150a3f829aeSBill Moore 		zio_t *vio = zio_null(zio, spa, NULL,
11510430f8daSeschrock 		    (vd->vdev_islog || vd->vdev_aux != NULL) ?
11520430f8daSeschrock 		    vdev_label_sync_ignore_done : vdev_label_sync_top_done,
115317f17c2dSbonwick 		    good_writes, flags);
1154e14bb325SJeff Bonwick 		vdev_label_sync(vio, vd, l, txg, flags);
115517f17c2dSbonwick 		zio_nowait(vio);
115617f17c2dSbonwick 	}
1157e14bb325SJeff Bonwick 
1158e14bb325SJeff Bonwick 	error = zio_wait(zio);
1159fa9e4066Sahrens 
11608654d025Sperrin 	/*
116117f17c2dSbonwick 	 * Flush the new labels to disk.
11628654d025Sperrin 	 */
116317f17c2dSbonwick 	zio = zio_root(spa, NULL, NULL, flags);
11648654d025Sperrin 
116517f17c2dSbonwick 	for (vd = list_head(dl); vd != NULL; vd = list_next(dl, vd))
116617f17c2dSbonwick 		zio_flush(zio, vd);
116717f17c2dSbonwick 
116817f17c2dSbonwick 	(void) zio_wait(zio);
1169fa9e4066Sahrens 
1170fa9e4066Sahrens 	return (error);
1171fa9e4066Sahrens }
1172fa9e4066Sahrens 
1173fa9e4066Sahrens /*
117417f17c2dSbonwick  * Sync the uberblock and any changes to the vdev configuration.
1175fa9e4066Sahrens  *
1176fa9e4066Sahrens  * The order of operations is carefully crafted to ensure that
1177fa9e4066Sahrens  * if the system panics or loses power at any time, the state on disk
1178fa9e4066Sahrens  * is still transactionally consistent.  The in-line comments below
1179fa9e4066Sahrens  * describe the failure semantics at each stage.
1180fa9e4066Sahrens  *
118117f17c2dSbonwick  * Moreover, vdev_config_sync() is designed to be idempotent: if it fails
1182fa9e4066Sahrens  * at any time, you can just call it again, and it will resume its work.
1183fa9e4066Sahrens  */
1184e14bb325SJeff Bonwick int
vdev_config_sync(vdev_t ** svd,int svdcount,uint64_t txg,boolean_t tryhard)11858956713aSEric Schrock vdev_config_sync(vdev_t **svd, int svdcount, uint64_t txg, boolean_t tryhard)
1186fa9e4066Sahrens {
118717f17c2dSbonwick 	spa_t *spa = svd[0]->vdev_spa;
1188fa9e4066Sahrens 	uberblock_t *ub = &spa->spa_uberblock;
11890373e76bSbonwick 	vdev_t *vd;
1190fa9e4066Sahrens 	zio_t *zio;
1191e14bb325SJeff Bonwick 	int error;
1192e14bb325SJeff Bonwick 	int flags = ZIO_FLAG_CONFIG_WRITER | ZIO_FLAG_CANFAIL;
1193fa9e4066Sahrens 
11948956713aSEric Schrock 	/*
11958956713aSEric Schrock 	 * Normally, we don't want to try too hard to write every label and
11968956713aSEric Schrock 	 * uberblock.  If there is a flaky disk, we don't want the rest of the
11978956713aSEric Schrock 	 * sync process to block while we retry.  But if we can't write a
11988956713aSEric Schrock 	 * single label out, we should retry with ZIO_FLAG_TRYHARD before
11998956713aSEric Schrock 	 * bailing out and declaring the pool faulted.
12008956713aSEric Schrock 	 */
12018956713aSEric Schrock 	if (tryhard)
12028956713aSEric Schrock 		flags |= ZIO_FLAG_TRYHARD;
12038956713aSEric Schrock 
1204fa9e4066Sahrens 	ASSERT(ub->ub_txg <= txg);
1205fa9e4066Sahrens 
1206fa9e4066Sahrens 	/*
120717f17c2dSbonwick 	 * If this isn't a resync due to I/O errors,
120817f17c2dSbonwick 	 * and nothing changed in this transaction group,
120917f17c2dSbonwick 	 * and the vdev configuration hasn't changed,
12100373e76bSbonwick 	 * then there's nothing to do.
1211fa9e4066Sahrens 	 */
121217f17c2dSbonwick 	if (ub->ub_txg < txg &&
121317f17c2dSbonwick 	    uberblock_update(ub, spa->spa_root_vdev, txg) == B_FALSE &&
1214e14bb325SJeff Bonwick 	    list_is_empty(&spa->spa_config_dirty_list))
1215e14bb325SJeff Bonwick 		return (0);
1216fa9e4066Sahrens 
1217fa9e4066Sahrens 	if (txg > spa_freeze_txg(spa))
1218e14bb325SJeff Bonwick 		return (0);
1219fa9e4066Sahrens 
12200373e76bSbonwick 	ASSERT(txg <= spa->spa_final_txg);
12210373e76bSbonwick 
1222fa9e4066Sahrens 	/*
1223fa9e4066Sahrens 	 * Flush the write cache of every disk that's been written to
1224fa9e4066Sahrens 	 * in this transaction group.  This ensures that all blocks
1225fa9e4066Sahrens 	 * written in this txg will be committed to stable storage
1226fa9e4066Sahrens 	 * before any uberblock that references them.
1227fa9e4066Sahrens 	 */
122817f17c2dSbonwick 	zio = zio_root(spa, NULL, NULL, flags);
122917f17c2dSbonwick 
1230fa9e4066Sahrens 	for (vd = txg_list_head(&spa->spa_vdev_txg_list, TXG_CLEAN(txg)); vd;
123117f17c2dSbonwick 	    vd = txg_list_next(&spa->spa_vdev_txg_list, vd, TXG_CLEAN(txg)))
123217f17c2dSbonwick 		zio_flush(zio, vd);
123317f17c2dSbonwick 
1234fa9e4066Sahrens 	(void) zio_wait(zio);
1235fa9e4066Sahrens 
1236fa9e4066Sahrens 	/*
1237fa9e4066Sahrens 	 * Sync out the even labels (L0, L2) for every dirty vdev.  If the
1238fa9e4066Sahrens 	 * system dies in the middle of this process, that's OK: all of the
1239fa9e4066Sahrens 	 * even labels that made it to disk will be newer than any uberblock,
1240fa9e4066Sahrens 	 * and will therefore be considered invalid.  The odd labels (L1, L3),
124117f17c2dSbonwick 	 * which have not yet been touched, will still be valid.  We flush
124217f17c2dSbonwick 	 * the new labels to disk to ensure that all even-label updates
124317f17c2dSbonwick 	 * are committed to stable storage before the uberblock update.
1244fa9e4066Sahrens 	 */
1245e14bb325SJeff Bonwick 	if ((error = vdev_label_sync_list(spa, 0, txg, flags)) != 0)
1246e14bb325SJeff Bonwick 		return (error);
1247fa9e4066Sahrens 
1248fa9e4066Sahrens 	/*
1249e14bb325SJeff Bonwick 	 * Sync the uberblocks to all vdevs in svd[].
12500373e76bSbonwick 	 * If the system dies in the middle of this step, there are two cases
12510373e76bSbonwick 	 * to consider, and the on-disk state is consistent either way:
1252fa9e4066Sahrens 	 *
1253fa9e4066Sahrens 	 * (1)	If none of the new uberblocks made it to disk, then the
1254fa9e4066Sahrens 	 *	previous uberblock will be the newest, and the odd labels
1255fa9e4066Sahrens 	 *	(which had not yet been touched) will be valid with respect
1256fa9e4066Sahrens 	 *	to that uberblock.
1257fa9e4066Sahrens 	 *
1258fa9e4066Sahrens 	 * (2)	If one or more new uberblocks made it to disk, then they
1259fa9e4066Sahrens 	 *	will be the newest, and the even labels (which had all
1260fa9e4066Sahrens 	 *	been successfully committed) will be valid with respect
1261fa9e4066Sahrens 	 *	to the new uberblocks.
1262fa9e4066Sahrens 	 */
1263e14bb325SJeff Bonwick 	if ((error = vdev_uberblock_sync_list(svd, svdcount, ub, flags)) != 0)
1264e14bb325SJeff Bonwick 		return (error);
1265fa9e4066Sahrens 
1266fa9e4066Sahrens 	/*
1267fa9e4066Sahrens 	 * Sync out odd labels for every dirty vdev.  If the system dies
1268fa9e4066Sahrens 	 * in the middle of this process, the even labels and the new
1269fa9e4066Sahrens 	 * uberblocks will suffice to open the pool.  The next time
1270fa9e4066Sahrens 	 * the pool is opened, the first thing we'll do -- before any
1271fa9e4066Sahrens 	 * user data is modified -- is mark every vdev dirty so that
127217f17c2dSbonwick 	 * all labels will be brought up to date.  We flush the new labels
127317f17c2dSbonwick 	 * to disk to ensure that all odd-label updates are committed to
127417f17c2dSbonwick 	 * stable storage before the next transaction group begins.
1275fa9e4066Sahrens 	 */
1276e14bb325SJeff Bonwick 	return (vdev_label_sync_list(spa, 1, txg, flags));
1277fa9e4066Sahrens }
1278