1789Sahrens /* 2789Sahrens * CDDL HEADER START 3789Sahrens * 4789Sahrens * The contents of this file are subject to the terms of the 51485Slling * Common Development and Distribution License (the "License"). 61485Slling * You may not use this file except in compliance with the License. 7789Sahrens * 8789Sahrens * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9789Sahrens * or http://www.opensolaris.org/os/licensing. 10789Sahrens * See the License for the specific language governing permissions 11789Sahrens * and limitations under the License. 12789Sahrens * 13789Sahrens * When distributing Covered Code, include this CDDL HEADER in each 14789Sahrens * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15789Sahrens * If applicable, add the following below this CDDL HEADER, with the 16789Sahrens * fields enclosed by brackets "[]" replaced with your own identifying 17789Sahrens * information: Portions Copyright [yyyy] [name of copyright owner] 18789Sahrens * 19789Sahrens * CDDL HEADER END 20789Sahrens */ 21789Sahrens /* 223377Seschrock * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23789Sahrens * Use is subject to license terms. 24789Sahrens */ 25789Sahrens 26789Sahrens #pragma ident "%Z%%M% %I% %E% SMI" 27789Sahrens 28789Sahrens /* 29789Sahrens * Virtual Device Labels 30789Sahrens * --------------------- 31789Sahrens * 32789Sahrens * The vdev label serves several distinct purposes: 33789Sahrens * 34789Sahrens * 1. Uniquely identify this device as part of a ZFS pool and confirm its 35789Sahrens * identity within the pool. 36789Sahrens * 37789Sahrens * 2. Verify that all the devices given in a configuration are present 38789Sahrens * within the pool. 39789Sahrens * 40789Sahrens * 3. Determine the uberblock for the pool. 41789Sahrens * 42789Sahrens * 4. In case of an import operation, determine the configuration of the 43789Sahrens * toplevel vdev of which it is a part. 44789Sahrens * 45789Sahrens * 5. If an import operation cannot find all the devices in the pool, 46789Sahrens * provide enough information to the administrator to determine which 47789Sahrens * devices are missing. 48789Sahrens * 49789Sahrens * It is important to note that while the kernel is responsible for writing the 50789Sahrens * label, it only consumes the information in the first three cases. The 51789Sahrens * latter information is only consumed in userland when determining the 52789Sahrens * configuration to import a pool. 53789Sahrens * 54789Sahrens * 55789Sahrens * Label Organization 56789Sahrens * ------------------ 57789Sahrens * 58789Sahrens * Before describing the contents of the label, it's important to understand how 59789Sahrens * the labels are written and updated with respect to the uberblock. 60789Sahrens * 61789Sahrens * When the pool configuration is altered, either because it was newly created 62789Sahrens * or a device was added, we want to update all the labels such that we can deal 63789Sahrens * with fatal failure at any point. To this end, each disk has two labels which 64789Sahrens * are updated before and after the uberblock is synced. Assuming we have 654451Seschrock * labels and an uberblock with the following transaction groups: 66789Sahrens * 67789Sahrens * L1 UB L2 68789Sahrens * +------+ +------+ +------+ 69789Sahrens * | | | | | | 70789Sahrens * | t10 | | t10 | | t10 | 71789Sahrens * | | | | | | 72789Sahrens * +------+ +------+ +------+ 73789Sahrens * 74789Sahrens * In this stable state, the labels and the uberblock were all updated within 75789Sahrens * the same transaction group (10). Each label is mirrored and checksummed, so 76789Sahrens * that we can detect when we fail partway through writing the label. 77789Sahrens * 78789Sahrens * In order to identify which labels are valid, the labels are written in the 79789Sahrens * following manner: 80789Sahrens * 81789Sahrens * 1. For each vdev, update 'L1' to the new label 82789Sahrens * 2. Update the uberblock 83789Sahrens * 3. For each vdev, update 'L2' to the new label 84789Sahrens * 85789Sahrens * Given arbitrary failure, we can determine the correct label to use based on 86789Sahrens * the transaction group. If we fail after updating L1 but before updating the 87789Sahrens * UB, we will notice that L1's transaction group is greater than the uberblock, 88789Sahrens * so L2 must be valid. If we fail after writing the uberblock but before 89789Sahrens * writing L2, we will notice that L2's transaction group is less than L1, and 90789Sahrens * therefore L1 is valid. 91789Sahrens * 92789Sahrens * Another added complexity is that not every label is updated when the config 93789Sahrens * is synced. If we add a single device, we do not want to have to re-write 94789Sahrens * every label for every device in the pool. This means that both L1 and L2 may 95789Sahrens * be older than the pool uberblock, because the necessary information is stored 96789Sahrens * on another vdev. 97789Sahrens * 98789Sahrens * 99789Sahrens * On-disk Format 100789Sahrens * -------------- 101789Sahrens * 102789Sahrens * The vdev label consists of two distinct parts, and is wrapped within the 103789Sahrens * vdev_label_t structure. The label includes 8k of padding to permit legacy 104789Sahrens * VTOC disk labels, but is otherwise ignored. 105789Sahrens * 106789Sahrens * The first half of the label is a packed nvlist which contains pool wide 107789Sahrens * properties, per-vdev properties, and configuration information. It is 108789Sahrens * described in more detail below. 109789Sahrens * 110789Sahrens * The latter half of the label consists of a redundant array of uberblocks. 111789Sahrens * These uberblocks are updated whenever a transaction group is committed, 112789Sahrens * or when the configuration is updated. When a pool is loaded, we scan each 113789Sahrens * vdev for the 'best' uberblock. 114789Sahrens * 115789Sahrens * 116789Sahrens * Configuration Information 117789Sahrens * ------------------------- 118789Sahrens * 119789Sahrens * The nvlist describing the pool and vdev contains the following elements: 120789Sahrens * 121789Sahrens * version ZFS on-disk version 122789Sahrens * name Pool name 123789Sahrens * state Pool state 124789Sahrens * txg Transaction group in which this label was written 125789Sahrens * pool_guid Unique identifier for this pool 126789Sahrens * vdev_tree An nvlist describing vdev tree. 127789Sahrens * 128789Sahrens * Each leaf device label also contains the following: 129789Sahrens * 130789Sahrens * top_guid Unique ID for top-level vdev in which this is contained 131789Sahrens * guid Unique ID for the leaf vdev 132789Sahrens * 133789Sahrens * The 'vs' configuration follows the format described in 'spa_config.c'. 134789Sahrens */ 135789Sahrens 136789Sahrens #include <sys/zfs_context.h> 137789Sahrens #include <sys/spa.h> 138789Sahrens #include <sys/spa_impl.h> 139789Sahrens #include <sys/dmu.h> 140789Sahrens #include <sys/zap.h> 141789Sahrens #include <sys/vdev.h> 142789Sahrens #include <sys/vdev_impl.h> 143789Sahrens #include <sys/uberblock_impl.h> 144789Sahrens #include <sys/metaslab.h> 145789Sahrens #include <sys/zio.h> 146789Sahrens #include <sys/fs/zfs.h> 147789Sahrens 148789Sahrens /* 149789Sahrens * Basic routines to read and write from a vdev label. 150789Sahrens * Used throughout the rest of this file. 151789Sahrens */ 152789Sahrens uint64_t 153789Sahrens vdev_label_offset(uint64_t psize, int l, uint64_t offset) 154789Sahrens { 1551732Sbonwick ASSERT(offset < sizeof (vdev_label_t)); 1564577Sahrens ASSERT(P2PHASE_TYPED(psize, sizeof (vdev_label_t), uint64_t) == 0); 1571732Sbonwick 158789Sahrens return (offset + l * sizeof (vdev_label_t) + (l < VDEV_LABELS / 2 ? 159789Sahrens 0 : psize - VDEV_LABELS * sizeof (vdev_label_t))); 160789Sahrens } 161789Sahrens 162789Sahrens static void 163789Sahrens vdev_label_read(zio_t *zio, vdev_t *vd, int l, void *buf, uint64_t offset, 164789Sahrens uint64_t size, zio_done_func_t *done, void *private) 165789Sahrens { 166789Sahrens ASSERT(vd->vdev_children == 0); 167789Sahrens 168789Sahrens zio_nowait(zio_read_phys(zio, vd, 169789Sahrens vdev_label_offset(vd->vdev_psize, l, offset), 170789Sahrens size, buf, ZIO_CHECKSUM_LABEL, done, private, 1711544Seschrock ZIO_PRIORITY_SYNC_READ, 1721544Seschrock ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE)); 173789Sahrens } 174789Sahrens 175789Sahrens static void 176789Sahrens vdev_label_write(zio_t *zio, vdev_t *vd, int l, void *buf, uint64_t offset, 177789Sahrens uint64_t size, zio_done_func_t *done, void *private) 178789Sahrens { 179789Sahrens ASSERT(vd->vdev_children == 0); 180789Sahrens 181789Sahrens zio_nowait(zio_write_phys(zio, vd, 182789Sahrens vdev_label_offset(vd->vdev_psize, l, offset), 183789Sahrens size, buf, ZIO_CHECKSUM_LABEL, done, private, 1841544Seschrock ZIO_PRIORITY_SYNC_WRITE, ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL)); 185789Sahrens } 186789Sahrens 187789Sahrens /* 188789Sahrens * Generate the nvlist representing this vdev's config. 189789Sahrens */ 190789Sahrens nvlist_t * 1912082Seschrock vdev_config_generate(spa_t *spa, vdev_t *vd, boolean_t getstats, 1922082Seschrock boolean_t isspare) 193789Sahrens { 194789Sahrens nvlist_t *nv = NULL; 195789Sahrens 1961544Seschrock VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0); 197789Sahrens 198789Sahrens VERIFY(nvlist_add_string(nv, ZPOOL_CONFIG_TYPE, 199789Sahrens vd->vdev_ops->vdev_op_type) == 0); 2002082Seschrock if (!isspare) 2012082Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_ID, vd->vdev_id) 2022082Seschrock == 0); 203789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_GUID, vd->vdev_guid) == 0); 204789Sahrens 205789Sahrens if (vd->vdev_path != NULL) 206789Sahrens VERIFY(nvlist_add_string(nv, ZPOOL_CONFIG_PATH, 207789Sahrens vd->vdev_path) == 0); 208789Sahrens 209789Sahrens if (vd->vdev_devid != NULL) 210789Sahrens VERIFY(nvlist_add_string(nv, ZPOOL_CONFIG_DEVID, 211789Sahrens vd->vdev_devid) == 0); 212789Sahrens 2134451Seschrock if (vd->vdev_physpath != NULL) 2144451Seschrock VERIFY(nvlist_add_string(nv, ZPOOL_CONFIG_PHYS_PATH, 2154451Seschrock vd->vdev_physpath) == 0); 2164451Seschrock 2172082Seschrock if (vd->vdev_nparity != 0) { 2182082Seschrock ASSERT(strcmp(vd->vdev_ops->vdev_op_type, 2192082Seschrock VDEV_TYPE_RAIDZ) == 0); 2202082Seschrock 2212082Seschrock /* 2222082Seschrock * Make sure someone hasn't managed to sneak a fancy new vdev 2232082Seschrock * into a crufty old storage pool. 2242082Seschrock */ 2252082Seschrock ASSERT(vd->vdev_nparity == 1 || 2262082Seschrock (vd->vdev_nparity == 2 && 2274577Sahrens spa_version(spa) >= SPA_VERSION_RAID6)); 2282082Seschrock 2292082Seschrock /* 2302082Seschrock * Note that we'll add the nparity tag even on storage pools 2312082Seschrock * that only support a single parity device -- older software 2322082Seschrock * will just ignore it. 2332082Seschrock */ 2342082Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_NPARITY, 2352082Seschrock vd->vdev_nparity) == 0); 2362082Seschrock } 2372082Seschrock 2381171Seschrock if (vd->vdev_wholedisk != -1ULL) 2391171Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_WHOLE_DISK, 2401171Seschrock vd->vdev_wholedisk) == 0); 2411171Seschrock 2421544Seschrock if (vd->vdev_not_present) 2431544Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_NOT_PRESENT, 1) == 0); 2441544Seschrock 2452082Seschrock if (vd->vdev_isspare) 2462082Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_IS_SPARE, 1) == 0); 2472082Seschrock 2482082Seschrock if (!isspare && vd == vd->vdev_top) { 249789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_METASLAB_ARRAY, 250789Sahrens vd->vdev_ms_array) == 0); 251789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_METASLAB_SHIFT, 252789Sahrens vd->vdev_ms_shift) == 0); 253789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_ASHIFT, 254789Sahrens vd->vdev_ashift) == 0); 255789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_ASIZE, 256789Sahrens vd->vdev_asize) == 0); 2574527Sperrin VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_IS_LOG, 2584527Sperrin vd->vdev_islog) == 0); 259789Sahrens } 260789Sahrens 261789Sahrens if (vd->vdev_dtl.smo_object != 0) 262789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_DTL, 263789Sahrens vd->vdev_dtl.smo_object) == 0); 264789Sahrens 265789Sahrens if (getstats) { 266789Sahrens vdev_stat_t vs; 267789Sahrens vdev_get_stats(vd, &vs); 268789Sahrens VERIFY(nvlist_add_uint64_array(nv, ZPOOL_CONFIG_STATS, 269789Sahrens (uint64_t *)&vs, sizeof (vs) / sizeof (uint64_t)) == 0); 270789Sahrens } 271789Sahrens 272789Sahrens if (!vd->vdev_ops->vdev_op_leaf) { 273789Sahrens nvlist_t **child; 274789Sahrens int c; 275789Sahrens 276789Sahrens child = kmem_alloc(vd->vdev_children * sizeof (nvlist_t *), 277789Sahrens KM_SLEEP); 278789Sahrens 279789Sahrens for (c = 0; c < vd->vdev_children; c++) 2802082Seschrock child[c] = vdev_config_generate(spa, vd->vdev_child[c], 2812082Seschrock getstats, isspare); 282789Sahrens 283789Sahrens VERIFY(nvlist_add_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN, 284789Sahrens child, vd->vdev_children) == 0); 285789Sahrens 286789Sahrens for (c = 0; c < vd->vdev_children; c++) 287789Sahrens nvlist_free(child[c]); 288789Sahrens 289789Sahrens kmem_free(child, vd->vdev_children * sizeof (nvlist_t *)); 2901485Slling 2911485Slling } else { 2921732Sbonwick if (vd->vdev_offline && !vd->vdev_tmpoffline) 2931485Slling VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_OFFLINE, 2941732Sbonwick B_TRUE) == 0); 2954451Seschrock if (vd->vdev_faulted) 2964451Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_FAULTED, 2974451Seschrock B_TRUE) == 0); 2984451Seschrock if (vd->vdev_degraded) 2994451Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_DEGRADED, 3004451Seschrock B_TRUE) == 0); 3014451Seschrock if (vd->vdev_removed) 3024451Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_REMOVED, 3034451Seschrock B_TRUE) == 0); 3044451Seschrock if (vd->vdev_unspare) 3054451Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_UNSPARE, 3064451Seschrock B_TRUE) == 0); 307789Sahrens } 308789Sahrens 309789Sahrens return (nv); 310789Sahrens } 311789Sahrens 312789Sahrens nvlist_t * 313789Sahrens vdev_label_read_config(vdev_t *vd) 314789Sahrens { 3151635Sbonwick spa_t *spa = vd->vdev_spa; 316789Sahrens nvlist_t *config = NULL; 317789Sahrens vdev_phys_t *vp; 318789Sahrens zio_t *zio; 319789Sahrens int l; 320789Sahrens 321*4787Sahrens ASSERT(spa_config_held(spa, RW_READER) || 322*4787Sahrens spa_config_held(spa, RW_WRITER)); 3231635Sbonwick 324789Sahrens if (vdev_is_dead(vd)) 325789Sahrens return (NULL); 326789Sahrens 327789Sahrens vp = zio_buf_alloc(sizeof (vdev_phys_t)); 328789Sahrens 329789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 330789Sahrens 3311635Sbonwick zio = zio_root(spa, NULL, NULL, ZIO_FLAG_CANFAIL | 3321544Seschrock ZIO_FLAG_SPECULATIVE | ZIO_FLAG_CONFIG_HELD); 333789Sahrens 334789Sahrens vdev_label_read(zio, vd, l, vp, 335789Sahrens offsetof(vdev_label_t, vl_vdev_phys), 336789Sahrens sizeof (vdev_phys_t), NULL, NULL); 337789Sahrens 338789Sahrens if (zio_wait(zio) == 0 && 339789Sahrens nvlist_unpack(vp->vp_nvlist, sizeof (vp->vp_nvlist), 3401544Seschrock &config, 0) == 0) 341789Sahrens break; 342789Sahrens 343789Sahrens if (config != NULL) { 344789Sahrens nvlist_free(config); 345789Sahrens config = NULL; 346789Sahrens } 347789Sahrens } 348789Sahrens 349789Sahrens zio_buf_free(vp, sizeof (vdev_phys_t)); 350789Sahrens 351789Sahrens return (config); 352789Sahrens } 353789Sahrens 3543377Seschrock /* 3553377Seschrock * Determine if a device is in use. The 'spare_guid' parameter will be filled 3563377Seschrock * in with the device guid if this spare is active elsewhere on the system. 3573377Seschrock */ 3583377Seschrock static boolean_t 3593377Seschrock vdev_inuse(vdev_t *vd, uint64_t crtxg, vdev_labeltype_t reason, 3603377Seschrock uint64_t *spare_guid) 3613377Seschrock { 3623377Seschrock spa_t *spa = vd->vdev_spa; 3633377Seschrock uint64_t state, pool_guid, device_guid, txg, spare_pool; 3643377Seschrock uint64_t vdtxg = 0; 3653377Seschrock nvlist_t *label; 3663377Seschrock 3673377Seschrock if (spare_guid) 3683377Seschrock *spare_guid = 0ULL; 3693377Seschrock 3703377Seschrock /* 3713377Seschrock * Read the label, if any, and perform some basic sanity checks. 3723377Seschrock */ 3733377Seschrock if ((label = vdev_label_read_config(vd)) == NULL) 3743377Seschrock return (B_FALSE); 3753377Seschrock 3763377Seschrock (void) nvlist_lookup_uint64(label, ZPOOL_CONFIG_CREATE_TXG, 3773377Seschrock &vdtxg); 3783377Seschrock 3793377Seschrock if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_STATE, 3803377Seschrock &state) != 0 || 3813377Seschrock nvlist_lookup_uint64(label, ZPOOL_CONFIG_GUID, 3823377Seschrock &device_guid) != 0) { 3833377Seschrock nvlist_free(label); 3843377Seschrock return (B_FALSE); 3853377Seschrock } 3863377Seschrock 3873377Seschrock if (state != POOL_STATE_SPARE && 3883377Seschrock (nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_GUID, 3893377Seschrock &pool_guid) != 0 || 3903377Seschrock nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_TXG, 3913377Seschrock &txg) != 0)) { 3923377Seschrock nvlist_free(label); 3933377Seschrock return (B_FALSE); 3943377Seschrock } 3953377Seschrock 3963377Seschrock nvlist_free(label); 3973377Seschrock 3983377Seschrock /* 3993377Seschrock * Check to see if this device indeed belongs to the pool it claims to 4003377Seschrock * be a part of. The only way this is allowed is if the device is a hot 4013377Seschrock * spare (which we check for later on). 4023377Seschrock */ 4033377Seschrock if (state != POOL_STATE_SPARE && 4043377Seschrock !spa_guid_exists(pool_guid, device_guid) && 4053377Seschrock !spa_spare_exists(device_guid, NULL)) 4063377Seschrock return (B_FALSE); 4073377Seschrock 4083377Seschrock /* 4093377Seschrock * If the transaction group is zero, then this an initialized (but 4103377Seschrock * unused) label. This is only an error if the create transaction 4113377Seschrock * on-disk is the same as the one we're using now, in which case the 4123377Seschrock * user has attempted to add the same vdev multiple times in the same 4133377Seschrock * transaction. 4143377Seschrock */ 4153377Seschrock if (state != POOL_STATE_SPARE && txg == 0 && vdtxg == crtxg) 4163377Seschrock return (B_TRUE); 4173377Seschrock 4183377Seschrock /* 4193377Seschrock * Check to see if this is a spare device. We do an explicit check for 4203377Seschrock * spa_has_spare() here because it may be on our pending list of spares 4213377Seschrock * to add. 4223377Seschrock */ 4233377Seschrock if (spa_spare_exists(device_guid, &spare_pool) || 4243377Seschrock spa_has_spare(spa, device_guid)) { 4253377Seschrock if (spare_guid) 4263377Seschrock *spare_guid = device_guid; 4273377Seschrock 4283377Seschrock switch (reason) { 4293377Seschrock case VDEV_LABEL_CREATE: 4303377Seschrock return (B_TRUE); 4313377Seschrock 4323377Seschrock case VDEV_LABEL_REPLACE: 4333377Seschrock return (!spa_has_spare(spa, device_guid) || 4343377Seschrock spare_pool != 0ULL); 4353377Seschrock 4363377Seschrock case VDEV_LABEL_SPARE: 4373377Seschrock return (spa_has_spare(spa, device_guid)); 4383377Seschrock } 4393377Seschrock } 4403377Seschrock 4413377Seschrock /* 4423377Seschrock * If the device is marked ACTIVE, then this device is in use by another 4433377Seschrock * pool on the system. 4443377Seschrock */ 4453377Seschrock return (state == POOL_STATE_ACTIVE); 4463377Seschrock } 4473377Seschrock 4483377Seschrock /* 4493377Seschrock * Initialize a vdev label. We check to make sure each leaf device is not in 4503377Seschrock * use, and writable. We put down an initial label which we will later 4513377Seschrock * overwrite with a complete label. Note that it's important to do this 4523377Seschrock * sequentially, not in parallel, so that we catch cases of multiple use of the 4533377Seschrock * same leaf vdev in the vdev we're creating -- e.g. mirroring a disk with 4543377Seschrock * itself. 4553377Seschrock */ 4563377Seschrock int 4573377Seschrock vdev_label_init(vdev_t *vd, uint64_t crtxg, vdev_labeltype_t reason) 458789Sahrens { 459789Sahrens spa_t *spa = vd->vdev_spa; 460789Sahrens nvlist_t *label; 461789Sahrens vdev_phys_t *vp; 462789Sahrens vdev_boot_header_t *vb; 4631732Sbonwick uberblock_t *ub; 464789Sahrens zio_t *zio; 465789Sahrens int l, c, n; 466789Sahrens char *buf; 467789Sahrens size_t buflen; 468789Sahrens int error; 4693377Seschrock uint64_t spare_guid; 470789Sahrens 4711635Sbonwick ASSERT(spa_config_held(spa, RW_WRITER)); 4721635Sbonwick 473789Sahrens for (c = 0; c < vd->vdev_children; c++) 4743377Seschrock if ((error = vdev_label_init(vd->vdev_child[c], 4753377Seschrock crtxg, reason)) != 0) 476789Sahrens return (error); 477789Sahrens 478789Sahrens if (!vd->vdev_ops->vdev_op_leaf) 479789Sahrens return (0); 480789Sahrens 481789Sahrens /* 4823377Seschrock * Dead vdevs cannot be initialized. 483789Sahrens */ 484789Sahrens if (vdev_is_dead(vd)) 485789Sahrens return (EIO); 486789Sahrens 487789Sahrens /* 4883377Seschrock * Determine if the vdev is in use. 489789Sahrens */ 4903377Seschrock if (reason != VDEV_LABEL_REMOVE && 4913377Seschrock vdev_inuse(vd, crtxg, reason, &spare_guid)) 4923377Seschrock return (EBUSY); 493789Sahrens 4943377Seschrock ASSERT(reason != VDEV_LABEL_REMOVE || 4953377Seschrock vdev_inuse(vd, crtxg, reason, NULL)); 496789Sahrens 4973377Seschrock /* 4983377Seschrock * If this is a request to add or replace a spare that is in use 4993377Seschrock * elsewhere on the system, then we must update the guid (which was 5003377Seschrock * initialized to a random value) to reflect the actual GUID (which is 5013377Seschrock * shared between multiple pools). 5023377Seschrock */ 5033377Seschrock if (reason != VDEV_LABEL_REMOVE && spare_guid != 0ULL) { 5043377Seschrock vdev_t *pvd = vd->vdev_parent; 5052082Seschrock 5063377Seschrock for (; pvd != NULL; pvd = pvd->vdev_parent) { 5073377Seschrock pvd->vdev_guid_sum -= vd->vdev_guid; 5083377Seschrock pvd->vdev_guid_sum += spare_guid; 509789Sahrens } 5102082Seschrock 5113377Seschrock vd->vdev_guid = vd->vdev_guid_sum = spare_guid; 5122082Seschrock 5133377Seschrock /* 5143377Seschrock * If this is a replacement, then we want to fallthrough to the 5153377Seschrock * rest of the code. If we're adding a spare, then it's already 5164451Seschrock * labeled appropriately and we can just return. 5173377Seschrock */ 5183377Seschrock if (reason == VDEV_LABEL_SPARE) 5193377Seschrock return (0); 5203377Seschrock ASSERT(reason == VDEV_LABEL_REPLACE); 521789Sahrens } 522789Sahrens 523789Sahrens /* 5243377Seschrock * Initialize its label. 525789Sahrens */ 526789Sahrens vp = zio_buf_alloc(sizeof (vdev_phys_t)); 527789Sahrens bzero(vp, sizeof (vdev_phys_t)); 528789Sahrens 529789Sahrens /* 530789Sahrens * Generate a label describing the pool and our top-level vdev. 531789Sahrens * We mark it as being from txg 0 to indicate that it's not 532789Sahrens * really part of an active pool just yet. The labels will 533789Sahrens * be written again with a meaningful txg by spa_sync(). 534789Sahrens */ 5353377Seschrock if (reason == VDEV_LABEL_SPARE || 5363377Seschrock (reason == VDEV_LABEL_REMOVE && vd->vdev_isspare)) { 5373377Seschrock /* 5383377Seschrock * For inactive hot spares, we generate a special label that 5393377Seschrock * identifies as a mutually shared hot spare. We write the 5403377Seschrock * label if we are adding a hot spare, or if we are removing an 5413377Seschrock * active hot spare (in which case we want to revert the 5423377Seschrock * labels). 5433377Seschrock */ 5442082Seschrock VERIFY(nvlist_alloc(&label, NV_UNIQUE_NAME, KM_SLEEP) == 0); 545789Sahrens 5462082Seschrock VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_VERSION, 5472082Seschrock spa_version(spa)) == 0); 5482082Seschrock VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_POOL_STATE, 5492082Seschrock POOL_STATE_SPARE) == 0); 5502082Seschrock VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_GUID, 5512082Seschrock vd->vdev_guid) == 0); 5522082Seschrock } else { 5532082Seschrock label = spa_config_generate(spa, vd, 0ULL, B_FALSE); 5542082Seschrock 5552082Seschrock /* 5562082Seschrock * Add our creation time. This allows us to detect multiple 5572082Seschrock * vdev uses as described above, and automatically expires if we 5582082Seschrock * fail. 5592082Seschrock */ 5602082Seschrock VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_CREATE_TXG, 5612082Seschrock crtxg) == 0); 5622082Seschrock } 563789Sahrens 564789Sahrens buf = vp->vp_nvlist; 565789Sahrens buflen = sizeof (vp->vp_nvlist); 566789Sahrens 5673460Smmusante error = nvlist_pack(label, &buf, &buflen, NV_ENCODE_XDR, KM_SLEEP); 5683460Smmusante if (error != 0) { 569789Sahrens nvlist_free(label); 570789Sahrens zio_buf_free(vp, sizeof (vdev_phys_t)); 5713460Smmusante /* EFAULT means nvlist_pack ran out of room */ 5723460Smmusante return (error == EFAULT ? ENAMETOOLONG : EINVAL); 573789Sahrens } 574789Sahrens 575789Sahrens /* 576789Sahrens * Initialize boot block header. 577789Sahrens */ 578789Sahrens vb = zio_buf_alloc(sizeof (vdev_boot_header_t)); 579789Sahrens bzero(vb, sizeof (vdev_boot_header_t)); 580789Sahrens vb->vb_magic = VDEV_BOOT_MAGIC; 581789Sahrens vb->vb_version = VDEV_BOOT_VERSION; 582789Sahrens vb->vb_offset = VDEV_BOOT_OFFSET; 583789Sahrens vb->vb_size = VDEV_BOOT_SIZE; 584789Sahrens 585789Sahrens /* 586789Sahrens * Initialize uberblock template. 587789Sahrens */ 5881732Sbonwick ub = zio_buf_alloc(VDEV_UBERBLOCK_SIZE(vd)); 5891732Sbonwick bzero(ub, VDEV_UBERBLOCK_SIZE(vd)); 5901732Sbonwick *ub = spa->spa_uberblock; 5911732Sbonwick ub->ub_txg = 0; 592789Sahrens 593789Sahrens /* 594789Sahrens * Write everything in parallel. 595789Sahrens */ 596789Sahrens zio = zio_root(spa, NULL, NULL, 597789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 598789Sahrens 599789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 600789Sahrens 601789Sahrens vdev_label_write(zio, vd, l, vp, 602789Sahrens offsetof(vdev_label_t, vl_vdev_phys), 603789Sahrens sizeof (vdev_phys_t), NULL, NULL); 604789Sahrens 605789Sahrens vdev_label_write(zio, vd, l, vb, 606789Sahrens offsetof(vdev_label_t, vl_boot_header), 607789Sahrens sizeof (vdev_boot_header_t), NULL, NULL); 608789Sahrens 6091732Sbonwick for (n = 0; n < VDEV_UBERBLOCK_COUNT(vd); n++) { 6101732Sbonwick vdev_label_write(zio, vd, l, ub, 6111732Sbonwick VDEV_UBERBLOCK_OFFSET(vd, n), 6121732Sbonwick VDEV_UBERBLOCK_SIZE(vd), NULL, NULL); 613789Sahrens } 614789Sahrens } 615789Sahrens 616789Sahrens error = zio_wait(zio); 617789Sahrens 618789Sahrens nvlist_free(label); 6191732Sbonwick zio_buf_free(ub, VDEV_UBERBLOCK_SIZE(vd)); 620789Sahrens zio_buf_free(vb, sizeof (vdev_boot_header_t)); 621789Sahrens zio_buf_free(vp, sizeof (vdev_phys_t)); 622789Sahrens 6233377Seschrock /* 6243377Seschrock * If this vdev hasn't been previously identified as a spare, then we 6254451Seschrock * mark it as such only if a) we are labeling it as a spare, or b) it 6263377Seschrock * exists as a spare elsewhere in the system. 6273377Seschrock */ 6283377Seschrock if (error == 0 && !vd->vdev_isspare && 6293377Seschrock (reason == VDEV_LABEL_SPARE || 6303377Seschrock spa_spare_exists(vd->vdev_guid, NULL))) 6313377Seschrock spa_spare_add(vd); 6322082Seschrock 6333377Seschrock return (error); 6342082Seschrock } 6352082Seschrock 636789Sahrens /* 637789Sahrens * ========================================================================== 638789Sahrens * uberblock load/sync 639789Sahrens * ========================================================================== 640789Sahrens */ 641789Sahrens 642789Sahrens /* 643789Sahrens * Consider the following situation: txg is safely synced to disk. We've 644789Sahrens * written the first uberblock for txg + 1, and then we lose power. When we 645789Sahrens * come back up, we fail to see the uberblock for txg + 1 because, say, 646789Sahrens * it was on a mirrored device and the replica to which we wrote txg + 1 647789Sahrens * is now offline. If we then make some changes and sync txg + 1, and then 648789Sahrens * the missing replica comes back, then for a new seconds we'll have two 649789Sahrens * conflicting uberblocks on disk with the same txg. The solution is simple: 650789Sahrens * among uberblocks with equal txg, choose the one with the latest timestamp. 651789Sahrens */ 652789Sahrens static int 653789Sahrens vdev_uberblock_compare(uberblock_t *ub1, uberblock_t *ub2) 654789Sahrens { 655789Sahrens if (ub1->ub_txg < ub2->ub_txg) 656789Sahrens return (-1); 657789Sahrens if (ub1->ub_txg > ub2->ub_txg) 658789Sahrens return (1); 659789Sahrens 660789Sahrens if (ub1->ub_timestamp < ub2->ub_timestamp) 661789Sahrens return (-1); 662789Sahrens if (ub1->ub_timestamp > ub2->ub_timestamp) 663789Sahrens return (1); 664789Sahrens 665789Sahrens return (0); 666789Sahrens } 667789Sahrens 668789Sahrens static void 669789Sahrens vdev_uberblock_load_done(zio_t *zio) 670789Sahrens { 6711732Sbonwick uberblock_t *ub = zio->io_data; 672789Sahrens uberblock_t *ubbest = zio->io_private; 673789Sahrens spa_t *spa = zio->io_spa; 674789Sahrens 6751732Sbonwick ASSERT3U(zio->io_size, ==, VDEV_UBERBLOCK_SIZE(zio->io_vd)); 676789Sahrens 6771544Seschrock if (zio->io_error == 0 && uberblock_verify(ub) == 0) { 678789Sahrens mutex_enter(&spa->spa_uberblock_lock); 679789Sahrens if (vdev_uberblock_compare(ub, ubbest) > 0) 680789Sahrens *ubbest = *ub; 681789Sahrens mutex_exit(&spa->spa_uberblock_lock); 682789Sahrens } 683789Sahrens 684789Sahrens zio_buf_free(zio->io_data, zio->io_size); 685789Sahrens } 686789Sahrens 687789Sahrens void 688789Sahrens vdev_uberblock_load(zio_t *zio, vdev_t *vd, uberblock_t *ubbest) 689789Sahrens { 690789Sahrens int l, c, n; 691789Sahrens 692789Sahrens for (c = 0; c < vd->vdev_children; c++) 693789Sahrens vdev_uberblock_load(zio, vd->vdev_child[c], ubbest); 694789Sahrens 695789Sahrens if (!vd->vdev_ops->vdev_op_leaf) 696789Sahrens return; 697789Sahrens 698789Sahrens if (vdev_is_dead(vd)) 699789Sahrens return; 700789Sahrens 701789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 7021732Sbonwick for (n = 0; n < VDEV_UBERBLOCK_COUNT(vd); n++) { 703789Sahrens vdev_label_read(zio, vd, l, 7041732Sbonwick zio_buf_alloc(VDEV_UBERBLOCK_SIZE(vd)), 7051732Sbonwick VDEV_UBERBLOCK_OFFSET(vd, n), 7061732Sbonwick VDEV_UBERBLOCK_SIZE(vd), 707789Sahrens vdev_uberblock_load_done, ubbest); 708789Sahrens } 709789Sahrens } 710789Sahrens } 711789Sahrens 712789Sahrens /* 713789Sahrens * Write the uberblock to both labels of all leaves of the specified vdev. 7141635Sbonwick * We only get credit for writes to known-visible vdevs; see spa_vdev_add(). 715789Sahrens */ 716789Sahrens static void 717789Sahrens vdev_uberblock_sync_done(zio_t *zio) 718789Sahrens { 719789Sahrens uint64_t *good_writes = zio->io_root->io_private; 720789Sahrens 7211635Sbonwick if (zio->io_error == 0 && zio->io_vd->vdev_top->vdev_ms_array != 0) 722789Sahrens atomic_add_64(good_writes, 1); 723789Sahrens } 724789Sahrens 725789Sahrens static void 7261732Sbonwick vdev_uberblock_sync(zio_t *zio, uberblock_t *ub, vdev_t *vd, uint64_t txg) 727789Sahrens { 728789Sahrens int l, c, n; 729789Sahrens 730789Sahrens for (c = 0; c < vd->vdev_children; c++) 7311732Sbonwick vdev_uberblock_sync(zio, ub, vd->vdev_child[c], txg); 732789Sahrens 733789Sahrens if (!vd->vdev_ops->vdev_op_leaf) 734789Sahrens return; 735789Sahrens 736789Sahrens if (vdev_is_dead(vd)) 737789Sahrens return; 738789Sahrens 7391732Sbonwick n = txg & (VDEV_UBERBLOCK_COUNT(vd) - 1); 740789Sahrens 7411732Sbonwick ASSERT(ub->ub_txg == txg); 742789Sahrens 743789Sahrens for (l = 0; l < VDEV_LABELS; l++) 7441732Sbonwick vdev_label_write(zio, vd, l, ub, 7451732Sbonwick VDEV_UBERBLOCK_OFFSET(vd, n), 7461732Sbonwick VDEV_UBERBLOCK_SIZE(vd), 7471732Sbonwick vdev_uberblock_sync_done, NULL); 748789Sahrens 749789Sahrens dprintf("vdev %s in txg %llu\n", vdev_description(vd), txg); 750789Sahrens } 751789Sahrens 752789Sahrens static int 7531732Sbonwick vdev_uberblock_sync_tree(spa_t *spa, uberblock_t *ub, vdev_t *vd, uint64_t txg) 754789Sahrens { 7551732Sbonwick uberblock_t *ubbuf; 7561732Sbonwick size_t size = vd->vdev_top ? VDEV_UBERBLOCK_SIZE(vd) : SPA_MAXBLOCKSIZE; 757789Sahrens uint64_t *good_writes; 758789Sahrens zio_t *zio; 759789Sahrens int error; 760789Sahrens 7611732Sbonwick ubbuf = zio_buf_alloc(size); 7621732Sbonwick bzero(ubbuf, size); 7631732Sbonwick *ubbuf = *ub; 764789Sahrens 765789Sahrens good_writes = kmem_zalloc(sizeof (uint64_t), KM_SLEEP); 766789Sahrens 767789Sahrens zio = zio_root(spa, NULL, good_writes, 768789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 769789Sahrens 7701732Sbonwick vdev_uberblock_sync(zio, ubbuf, vd, txg); 771789Sahrens 772789Sahrens error = zio_wait(zio); 773789Sahrens 774789Sahrens if (error && *good_writes != 0) { 775789Sahrens dprintf("partial success: good_writes = %llu\n", *good_writes); 776789Sahrens error = 0; 777789Sahrens } 778789Sahrens 779789Sahrens /* 780789Sahrens * It's possible to have no good writes and no error if every vdev is in 781789Sahrens * the CANT_OPEN state. 782789Sahrens */ 783789Sahrens if (*good_writes == 0 && error == 0) 784789Sahrens error = EIO; 785789Sahrens 786789Sahrens kmem_free(good_writes, sizeof (uint64_t)); 7871732Sbonwick zio_buf_free(ubbuf, size); 788789Sahrens 789789Sahrens return (error); 790789Sahrens } 791789Sahrens 792789Sahrens /* 793789Sahrens * Sync out an individual vdev. 794789Sahrens */ 795789Sahrens static void 796789Sahrens vdev_sync_label_done(zio_t *zio) 797789Sahrens { 798789Sahrens uint64_t *good_writes = zio->io_root->io_private; 799789Sahrens 800789Sahrens if (zio->io_error == 0) 801789Sahrens atomic_add_64(good_writes, 1); 802789Sahrens } 803789Sahrens 804789Sahrens static void 805789Sahrens vdev_sync_label(zio_t *zio, vdev_t *vd, int l, uint64_t txg) 806789Sahrens { 807789Sahrens nvlist_t *label; 808789Sahrens vdev_phys_t *vp; 809789Sahrens char *buf; 810789Sahrens size_t buflen; 811789Sahrens int c; 812789Sahrens 813789Sahrens for (c = 0; c < vd->vdev_children; c++) 814789Sahrens vdev_sync_label(zio, vd->vdev_child[c], l, txg); 815789Sahrens 816789Sahrens if (!vd->vdev_ops->vdev_op_leaf) 817789Sahrens return; 818789Sahrens 819789Sahrens if (vdev_is_dead(vd)) 820789Sahrens return; 821789Sahrens 822789Sahrens /* 823789Sahrens * Generate a label describing the top-level config to which we belong. 824789Sahrens */ 8251635Sbonwick label = spa_config_generate(vd->vdev_spa, vd, txg, B_FALSE); 826789Sahrens 827789Sahrens vp = zio_buf_alloc(sizeof (vdev_phys_t)); 828789Sahrens bzero(vp, sizeof (vdev_phys_t)); 829789Sahrens 830789Sahrens buf = vp->vp_nvlist; 831789Sahrens buflen = sizeof (vp->vp_nvlist); 832789Sahrens 8331544Seschrock if (nvlist_pack(label, &buf, &buflen, NV_ENCODE_XDR, KM_SLEEP) == 0) 834789Sahrens vdev_label_write(zio, vd, l, vp, 835789Sahrens offsetof(vdev_label_t, vl_vdev_phys), sizeof (vdev_phys_t), 836789Sahrens vdev_sync_label_done, NULL); 837789Sahrens 838789Sahrens zio_buf_free(vp, sizeof (vdev_phys_t)); 839789Sahrens nvlist_free(label); 840789Sahrens 841789Sahrens dprintf("%s label %d txg %llu\n", vdev_description(vd), l, txg); 842789Sahrens } 843789Sahrens 844789Sahrens static int 845789Sahrens vdev_sync_labels(vdev_t *vd, int l, uint64_t txg) 846789Sahrens { 847789Sahrens uint64_t *good_writes; 848789Sahrens zio_t *zio; 849789Sahrens int error; 850789Sahrens 851789Sahrens ASSERT(vd == vd->vdev_top); 852789Sahrens 853789Sahrens good_writes = kmem_zalloc(sizeof (uint64_t), KM_SLEEP); 854789Sahrens 855789Sahrens zio = zio_root(vd->vdev_spa, NULL, good_writes, 856789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 857789Sahrens 858789Sahrens /* 859789Sahrens * Recursively kick off writes to all labels. 860789Sahrens */ 861789Sahrens vdev_sync_label(zio, vd, l, txg); 862789Sahrens 863789Sahrens error = zio_wait(zio); 864789Sahrens 865789Sahrens if (error && *good_writes != 0) { 866789Sahrens dprintf("partial success: good_writes = %llu\n", *good_writes); 867789Sahrens error = 0; 868789Sahrens } 869789Sahrens 870789Sahrens if (*good_writes == 0 && error == 0) 871789Sahrens error = ENODEV; 872789Sahrens 8734527Sperrin /* 8744527Sperrin * Failure to write a label can be fatal for a 8754527Sperrin * top level vdev. We don't want this for slogs 8764527Sperrin * as we use the main pool if they go away. 8774527Sperrin */ 8784527Sperrin if (vd->vdev_islog) 8794527Sperrin error = 0; 8804527Sperrin 881789Sahrens kmem_free(good_writes, sizeof (uint64_t)); 882789Sahrens 883789Sahrens return (error); 884789Sahrens } 885789Sahrens 886789Sahrens /* 887789Sahrens * Sync the entire vdev configuration. 888789Sahrens * 889789Sahrens * The order of operations is carefully crafted to ensure that 890789Sahrens * if the system panics or loses power at any time, the state on disk 891789Sahrens * is still transactionally consistent. The in-line comments below 892789Sahrens * describe the failure semantics at each stage. 893789Sahrens * 894789Sahrens * Moreover, it is designed to be idempotent: if spa_sync_labels() fails 895789Sahrens * at any time, you can just call it again, and it will resume its work. 896789Sahrens */ 897789Sahrens int 8981635Sbonwick vdev_config_sync(vdev_t *uvd, uint64_t txg) 899789Sahrens { 9001635Sbonwick spa_t *spa = uvd->vdev_spa; 901789Sahrens uberblock_t *ub = &spa->spa_uberblock; 902789Sahrens vdev_t *rvd = spa->spa_root_vdev; 9031635Sbonwick vdev_t *vd; 904789Sahrens zio_t *zio; 9051637Sbonwick int l, error; 906789Sahrens 907789Sahrens ASSERT(ub->ub_txg <= txg); 908789Sahrens 909789Sahrens /* 910789Sahrens * If this isn't a resync due to I/O errors, and nothing changed 911789Sahrens * in this transaction group, and the vdev configuration hasn't changed, 9121635Sbonwick * then there's nothing to do. 913789Sahrens */ 914789Sahrens if (ub->ub_txg < txg && uberblock_update(ub, rvd, txg) == B_FALSE && 915789Sahrens list_is_empty(&spa->spa_dirty_list)) { 916789Sahrens dprintf("nothing to sync in %s in txg %llu\n", 917789Sahrens spa_name(spa), txg); 918789Sahrens return (0); 919789Sahrens } 920789Sahrens 921789Sahrens if (txg > spa_freeze_txg(spa)) 922789Sahrens return (0); 923789Sahrens 9241635Sbonwick ASSERT(txg <= spa->spa_final_txg); 9251635Sbonwick 926789Sahrens dprintf("syncing %s txg %llu\n", spa_name(spa), txg); 927789Sahrens 928789Sahrens /* 929789Sahrens * Flush the write cache of every disk that's been written to 930789Sahrens * in this transaction group. This ensures that all blocks 931789Sahrens * written in this txg will be committed to stable storage 932789Sahrens * before any uberblock that references them. 933789Sahrens */ 934789Sahrens zio = zio_root(spa, NULL, NULL, 935789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 936789Sahrens for (vd = txg_list_head(&spa->spa_vdev_txg_list, TXG_CLEAN(txg)); vd; 937789Sahrens vd = txg_list_next(&spa->spa_vdev_txg_list, vd, TXG_CLEAN(txg))) { 938789Sahrens zio_nowait(zio_ioctl(zio, spa, vd, DKIOCFLUSHWRITECACHE, 939789Sahrens NULL, NULL, ZIO_PRIORITY_NOW, 940789Sahrens ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY)); 941789Sahrens } 942789Sahrens (void) zio_wait(zio); 943789Sahrens 944789Sahrens /* 945789Sahrens * Sync out the even labels (L0, L2) for every dirty vdev. If the 946789Sahrens * system dies in the middle of this process, that's OK: all of the 947789Sahrens * even labels that made it to disk will be newer than any uberblock, 948789Sahrens * and will therefore be considered invalid. The odd labels (L1, L3), 949789Sahrens * which have not yet been touched, will still be valid. 950789Sahrens */ 951789Sahrens for (vd = list_head(&spa->spa_dirty_list); vd != NULL; 952789Sahrens vd = list_next(&spa->spa_dirty_list, vd)) { 953789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 954789Sahrens if (l & 1) 955789Sahrens continue; 956789Sahrens if ((error = vdev_sync_labels(vd, l, txg)) != 0) 957789Sahrens return (error); 958789Sahrens } 959789Sahrens } 960789Sahrens 961789Sahrens /* 962789Sahrens * Flush the new labels to disk. This ensures that all even-label 963789Sahrens * updates are committed to stable storage before the uberblock update. 964789Sahrens */ 965789Sahrens zio = zio_root(spa, NULL, NULL, 966789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 967789Sahrens for (vd = list_head(&spa->spa_dirty_list); vd != NULL; 968789Sahrens vd = list_next(&spa->spa_dirty_list, vd)) { 969789Sahrens zio_nowait(zio_ioctl(zio, spa, vd, DKIOCFLUSHWRITECACHE, 970789Sahrens NULL, NULL, ZIO_PRIORITY_NOW, 971789Sahrens ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY)); 972789Sahrens } 973789Sahrens (void) zio_wait(zio); 974789Sahrens 975789Sahrens /* 9761635Sbonwick * Sync the uberblocks to all vdevs in the tree specified by uvd. 9771635Sbonwick * If the system dies in the middle of this step, there are two cases 9781635Sbonwick * to consider, and the on-disk state is consistent either way: 979789Sahrens * 980789Sahrens * (1) If none of the new uberblocks made it to disk, then the 981789Sahrens * previous uberblock will be the newest, and the odd labels 982789Sahrens * (which had not yet been touched) will be valid with respect 983789Sahrens * to that uberblock. 984789Sahrens * 985789Sahrens * (2) If one or more new uberblocks made it to disk, then they 986789Sahrens * will be the newest, and the even labels (which had all 987789Sahrens * been successfully committed) will be valid with respect 988789Sahrens * to the new uberblocks. 989789Sahrens */ 990789Sahrens if ((error = vdev_uberblock_sync_tree(spa, ub, uvd, txg)) != 0) 991789Sahrens return (error); 992789Sahrens 993789Sahrens /* 994789Sahrens * Flush the uberblocks to disk. This ensures that the odd labels 995789Sahrens * are no longer needed (because the new uberblocks and the even 996789Sahrens * labels are safely on disk), so it is safe to overwrite them. 997789Sahrens */ 998789Sahrens (void) zio_wait(zio_ioctl(NULL, spa, uvd, DKIOCFLUSHWRITECACHE, 999789Sahrens NULL, NULL, ZIO_PRIORITY_NOW, 1000789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY)); 1001789Sahrens 1002789Sahrens /* 1003789Sahrens * Sync out odd labels for every dirty vdev. If the system dies 1004789Sahrens * in the middle of this process, the even labels and the new 1005789Sahrens * uberblocks will suffice to open the pool. The next time 1006789Sahrens * the pool is opened, the first thing we'll do -- before any 1007789Sahrens * user data is modified -- is mark every vdev dirty so that 1008789Sahrens * all labels will be brought up to date. 1009789Sahrens */ 1010789Sahrens for (vd = list_head(&spa->spa_dirty_list); vd != NULL; 1011789Sahrens vd = list_next(&spa->spa_dirty_list, vd)) { 1012789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 1013789Sahrens if ((l & 1) == 0) 1014789Sahrens continue; 1015789Sahrens if ((error = vdev_sync_labels(vd, l, txg)) != 0) 1016789Sahrens return (error); 1017789Sahrens } 1018789Sahrens } 1019789Sahrens 1020789Sahrens /* 1021789Sahrens * Flush the new labels to disk. This ensures that all odd-label 1022789Sahrens * updates are committed to stable storage before the next 1023789Sahrens * transaction group begins. 1024789Sahrens */ 1025789Sahrens zio = zio_root(spa, NULL, NULL, 1026789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 1027789Sahrens for (vd = list_head(&spa->spa_dirty_list); vd != NULL; 1028789Sahrens vd = list_next(&spa->spa_dirty_list, vd)) { 1029789Sahrens zio_nowait(zio_ioctl(zio, spa, vd, DKIOCFLUSHWRITECACHE, 1030789Sahrens NULL, NULL, ZIO_PRIORITY_NOW, 1031789Sahrens ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY)); 1032789Sahrens } 1033789Sahrens (void) zio_wait(zio); 1034789Sahrens 1035789Sahrens return (0); 1036789Sahrens } 1037