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 /* 22*3377Seschrock * 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 65789Sahrens * labels and an uberblock with the following transacation 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)); 1561732Sbonwick 157789Sahrens return (offset + l * sizeof (vdev_label_t) + (l < VDEV_LABELS / 2 ? 158789Sahrens 0 : psize - VDEV_LABELS * sizeof (vdev_label_t))); 159789Sahrens } 160789Sahrens 161789Sahrens static void 162789Sahrens vdev_label_read(zio_t *zio, vdev_t *vd, int l, void *buf, uint64_t offset, 163789Sahrens uint64_t size, zio_done_func_t *done, void *private) 164789Sahrens { 165789Sahrens ASSERT(vd->vdev_children == 0); 166789Sahrens 167789Sahrens zio_nowait(zio_read_phys(zio, vd, 168789Sahrens vdev_label_offset(vd->vdev_psize, l, offset), 169789Sahrens size, buf, ZIO_CHECKSUM_LABEL, done, private, 1701544Seschrock ZIO_PRIORITY_SYNC_READ, 1711544Seschrock ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE)); 172789Sahrens } 173789Sahrens 174789Sahrens static void 175789Sahrens vdev_label_write(zio_t *zio, vdev_t *vd, int l, void *buf, uint64_t offset, 176789Sahrens uint64_t size, zio_done_func_t *done, void *private) 177789Sahrens { 178789Sahrens ASSERT(vd->vdev_children == 0); 179789Sahrens 180789Sahrens zio_nowait(zio_write_phys(zio, vd, 181789Sahrens vdev_label_offset(vd->vdev_psize, l, offset), 182789Sahrens size, buf, ZIO_CHECKSUM_LABEL, done, private, 1831544Seschrock ZIO_PRIORITY_SYNC_WRITE, ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL)); 184789Sahrens } 185789Sahrens 186789Sahrens /* 187789Sahrens * Generate the nvlist representing this vdev's config. 188789Sahrens */ 189789Sahrens nvlist_t * 1902082Seschrock vdev_config_generate(spa_t *spa, vdev_t *vd, boolean_t getstats, 1912082Seschrock boolean_t isspare) 192789Sahrens { 193789Sahrens nvlist_t *nv = NULL; 194789Sahrens 1951544Seschrock VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0); 196789Sahrens 197789Sahrens VERIFY(nvlist_add_string(nv, ZPOOL_CONFIG_TYPE, 198789Sahrens vd->vdev_ops->vdev_op_type) == 0); 1992082Seschrock if (!isspare) 2002082Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_ID, vd->vdev_id) 2012082Seschrock == 0); 202789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_GUID, vd->vdev_guid) == 0); 203789Sahrens 204789Sahrens if (vd->vdev_path != NULL) 205789Sahrens VERIFY(nvlist_add_string(nv, ZPOOL_CONFIG_PATH, 206789Sahrens vd->vdev_path) == 0); 207789Sahrens 208789Sahrens if (vd->vdev_devid != NULL) 209789Sahrens VERIFY(nvlist_add_string(nv, ZPOOL_CONFIG_DEVID, 210789Sahrens vd->vdev_devid) == 0); 211789Sahrens 2122082Seschrock if (vd->vdev_nparity != 0) { 2132082Seschrock ASSERT(strcmp(vd->vdev_ops->vdev_op_type, 2142082Seschrock VDEV_TYPE_RAIDZ) == 0); 2152082Seschrock 2162082Seschrock /* 2172082Seschrock * Make sure someone hasn't managed to sneak a fancy new vdev 2182082Seschrock * into a crufty old storage pool. 2192082Seschrock */ 2202082Seschrock ASSERT(vd->vdev_nparity == 1 || 2212082Seschrock (vd->vdev_nparity == 2 && 2222082Seschrock spa_version(spa) >= ZFS_VERSION_RAID6)); 2232082Seschrock 2242082Seschrock /* 2252082Seschrock * Note that we'll add the nparity tag even on storage pools 2262082Seschrock * that only support a single parity device -- older software 2272082Seschrock * will just ignore it. 2282082Seschrock */ 2292082Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_NPARITY, 2302082Seschrock vd->vdev_nparity) == 0); 2312082Seschrock } 2322082Seschrock 2331171Seschrock if (vd->vdev_wholedisk != -1ULL) 2341171Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_WHOLE_DISK, 2351171Seschrock vd->vdev_wholedisk) == 0); 2361171Seschrock 2371544Seschrock if (vd->vdev_not_present) 2381544Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_NOT_PRESENT, 1) == 0); 2391544Seschrock 2402082Seschrock if (vd->vdev_isspare) 2412082Seschrock VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_IS_SPARE, 1) == 0); 2422082Seschrock 2432082Seschrock if (!isspare && vd == vd->vdev_top) { 244789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_METASLAB_ARRAY, 245789Sahrens vd->vdev_ms_array) == 0); 246789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_METASLAB_SHIFT, 247789Sahrens vd->vdev_ms_shift) == 0); 248789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_ASHIFT, 249789Sahrens vd->vdev_ashift) == 0); 250789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_ASIZE, 251789Sahrens vd->vdev_asize) == 0); 252789Sahrens } 253789Sahrens 254789Sahrens if (vd->vdev_dtl.smo_object != 0) 255789Sahrens VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_DTL, 256789Sahrens vd->vdev_dtl.smo_object) == 0); 257789Sahrens 258789Sahrens if (getstats) { 259789Sahrens vdev_stat_t vs; 260789Sahrens vdev_get_stats(vd, &vs); 261789Sahrens VERIFY(nvlist_add_uint64_array(nv, ZPOOL_CONFIG_STATS, 262789Sahrens (uint64_t *)&vs, sizeof (vs) / sizeof (uint64_t)) == 0); 263789Sahrens } 264789Sahrens 265789Sahrens if (!vd->vdev_ops->vdev_op_leaf) { 266789Sahrens nvlist_t **child; 267789Sahrens int c; 268789Sahrens 269789Sahrens child = kmem_alloc(vd->vdev_children * sizeof (nvlist_t *), 270789Sahrens KM_SLEEP); 271789Sahrens 272789Sahrens for (c = 0; c < vd->vdev_children; c++) 2732082Seschrock child[c] = vdev_config_generate(spa, vd->vdev_child[c], 2742082Seschrock getstats, isspare); 275789Sahrens 276789Sahrens VERIFY(nvlist_add_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN, 277789Sahrens child, vd->vdev_children) == 0); 278789Sahrens 279789Sahrens for (c = 0; c < vd->vdev_children; c++) 280789Sahrens nvlist_free(child[c]); 281789Sahrens 282789Sahrens kmem_free(child, vd->vdev_children * sizeof (nvlist_t *)); 2831485Slling 2841485Slling } else { 2851732Sbonwick if (vd->vdev_offline && !vd->vdev_tmpoffline) 2861485Slling VERIFY(nvlist_add_uint64(nv, ZPOOL_CONFIG_OFFLINE, 2871732Sbonwick B_TRUE) == 0); 2881732Sbonwick else 2891485Slling (void) nvlist_remove(nv, ZPOOL_CONFIG_OFFLINE, 2901732Sbonwick DATA_TYPE_UINT64); 291789Sahrens } 292789Sahrens 293789Sahrens return (nv); 294789Sahrens } 295789Sahrens 296789Sahrens nvlist_t * 297789Sahrens vdev_label_read_config(vdev_t *vd) 298789Sahrens { 2991635Sbonwick spa_t *spa = vd->vdev_spa; 300789Sahrens nvlist_t *config = NULL; 301789Sahrens vdev_phys_t *vp; 302789Sahrens zio_t *zio; 303789Sahrens int l; 304789Sahrens 3051635Sbonwick ASSERT(spa_config_held(spa, RW_READER)); 3061635Sbonwick 307789Sahrens if (vdev_is_dead(vd)) 308789Sahrens return (NULL); 309789Sahrens 310789Sahrens vp = zio_buf_alloc(sizeof (vdev_phys_t)); 311789Sahrens 312789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 313789Sahrens 3141635Sbonwick zio = zio_root(spa, NULL, NULL, ZIO_FLAG_CANFAIL | 3151544Seschrock ZIO_FLAG_SPECULATIVE | ZIO_FLAG_CONFIG_HELD); 316789Sahrens 317789Sahrens vdev_label_read(zio, vd, l, vp, 318789Sahrens offsetof(vdev_label_t, vl_vdev_phys), 319789Sahrens sizeof (vdev_phys_t), NULL, NULL); 320789Sahrens 321789Sahrens if (zio_wait(zio) == 0 && 322789Sahrens nvlist_unpack(vp->vp_nvlist, sizeof (vp->vp_nvlist), 3231544Seschrock &config, 0) == 0) 324789Sahrens break; 325789Sahrens 326789Sahrens if (config != NULL) { 327789Sahrens nvlist_free(config); 328789Sahrens config = NULL; 329789Sahrens } 330789Sahrens } 331789Sahrens 332789Sahrens zio_buf_free(vp, sizeof (vdev_phys_t)); 333789Sahrens 334789Sahrens return (config); 335789Sahrens } 336789Sahrens 337*3377Seschrock /* 338*3377Seschrock * Determine if a device is in use. The 'spare_guid' parameter will be filled 339*3377Seschrock * in with the device guid if this spare is active elsewhere on the system. 340*3377Seschrock */ 341*3377Seschrock static boolean_t 342*3377Seschrock vdev_inuse(vdev_t *vd, uint64_t crtxg, vdev_labeltype_t reason, 343*3377Seschrock uint64_t *spare_guid) 344*3377Seschrock { 345*3377Seschrock spa_t *spa = vd->vdev_spa; 346*3377Seschrock uint64_t state, pool_guid, device_guid, txg, spare_pool; 347*3377Seschrock uint64_t vdtxg = 0; 348*3377Seschrock nvlist_t *label; 349*3377Seschrock 350*3377Seschrock if (spare_guid) 351*3377Seschrock *spare_guid = 0ULL; 352*3377Seschrock 353*3377Seschrock /* 354*3377Seschrock * Read the label, if any, and perform some basic sanity checks. 355*3377Seschrock */ 356*3377Seschrock if ((label = vdev_label_read_config(vd)) == NULL) 357*3377Seschrock return (B_FALSE); 358*3377Seschrock 359*3377Seschrock (void) nvlist_lookup_uint64(label, ZPOOL_CONFIG_CREATE_TXG, 360*3377Seschrock &vdtxg); 361*3377Seschrock 362*3377Seschrock if (nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_STATE, 363*3377Seschrock &state) != 0 || 364*3377Seschrock nvlist_lookup_uint64(label, ZPOOL_CONFIG_GUID, 365*3377Seschrock &device_guid) != 0) { 366*3377Seschrock nvlist_free(label); 367*3377Seschrock return (B_FALSE); 368*3377Seschrock } 369*3377Seschrock 370*3377Seschrock if (state != POOL_STATE_SPARE && 371*3377Seschrock (nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_GUID, 372*3377Seschrock &pool_guid) != 0 || 373*3377Seschrock nvlist_lookup_uint64(label, ZPOOL_CONFIG_POOL_TXG, 374*3377Seschrock &txg) != 0)) { 375*3377Seschrock nvlist_free(label); 376*3377Seschrock return (B_FALSE); 377*3377Seschrock } 378*3377Seschrock 379*3377Seschrock nvlist_free(label); 380*3377Seschrock 381*3377Seschrock /* 382*3377Seschrock * Check to see if this device indeed belongs to the pool it claims to 383*3377Seschrock * be a part of. The only way this is allowed is if the device is a hot 384*3377Seschrock * spare (which we check for later on). 385*3377Seschrock */ 386*3377Seschrock if (state != POOL_STATE_SPARE && 387*3377Seschrock !spa_guid_exists(pool_guid, device_guid) && 388*3377Seschrock !spa_spare_exists(device_guid, NULL)) 389*3377Seschrock return (B_FALSE); 390*3377Seschrock 391*3377Seschrock /* 392*3377Seschrock * If the transaction group is zero, then this an initialized (but 393*3377Seschrock * unused) label. This is only an error if the create transaction 394*3377Seschrock * on-disk is the same as the one we're using now, in which case the 395*3377Seschrock * user has attempted to add the same vdev multiple times in the same 396*3377Seschrock * transaction. 397*3377Seschrock */ 398*3377Seschrock if (state != POOL_STATE_SPARE && txg == 0 && vdtxg == crtxg) 399*3377Seschrock return (B_TRUE); 400*3377Seschrock 401*3377Seschrock /* 402*3377Seschrock * Check to see if this is a spare device. We do an explicit check for 403*3377Seschrock * spa_has_spare() here because it may be on our pending list of spares 404*3377Seschrock * to add. 405*3377Seschrock */ 406*3377Seschrock if (spa_spare_exists(device_guid, &spare_pool) || 407*3377Seschrock spa_has_spare(spa, device_guid)) { 408*3377Seschrock if (spare_guid) 409*3377Seschrock *spare_guid = device_guid; 410*3377Seschrock 411*3377Seschrock switch (reason) { 412*3377Seschrock case VDEV_LABEL_CREATE: 413*3377Seschrock return (B_TRUE); 414*3377Seschrock 415*3377Seschrock case VDEV_LABEL_REPLACE: 416*3377Seschrock return (!spa_has_spare(spa, device_guid) || 417*3377Seschrock spare_pool != 0ULL); 418*3377Seschrock 419*3377Seschrock case VDEV_LABEL_SPARE: 420*3377Seschrock return (spa_has_spare(spa, device_guid)); 421*3377Seschrock } 422*3377Seschrock } 423*3377Seschrock 424*3377Seschrock /* 425*3377Seschrock * If the device is marked ACTIVE, then this device is in use by another 426*3377Seschrock * pool on the system. 427*3377Seschrock */ 428*3377Seschrock return (state == POOL_STATE_ACTIVE); 429*3377Seschrock } 430*3377Seschrock 431*3377Seschrock /* 432*3377Seschrock * Initialize a vdev label. We check to make sure each leaf device is not in 433*3377Seschrock * use, and writable. We put down an initial label which we will later 434*3377Seschrock * overwrite with a complete label. Note that it's important to do this 435*3377Seschrock * sequentially, not in parallel, so that we catch cases of multiple use of the 436*3377Seschrock * same leaf vdev in the vdev we're creating -- e.g. mirroring a disk with 437*3377Seschrock * itself. 438*3377Seschrock */ 439*3377Seschrock int 440*3377Seschrock vdev_label_init(vdev_t *vd, uint64_t crtxg, vdev_labeltype_t reason) 441789Sahrens { 442789Sahrens spa_t *spa = vd->vdev_spa; 443789Sahrens nvlist_t *label; 444789Sahrens vdev_phys_t *vp; 445789Sahrens vdev_boot_header_t *vb; 4461732Sbonwick uberblock_t *ub; 447789Sahrens zio_t *zio; 448789Sahrens int l, c, n; 449789Sahrens char *buf; 450789Sahrens size_t buflen; 451789Sahrens int error; 452*3377Seschrock uint64_t spare_guid; 453789Sahrens 4541635Sbonwick ASSERT(spa_config_held(spa, RW_WRITER)); 4551635Sbonwick 456789Sahrens for (c = 0; c < vd->vdev_children; c++) 457*3377Seschrock if ((error = vdev_label_init(vd->vdev_child[c], 458*3377Seschrock crtxg, reason)) != 0) 459789Sahrens return (error); 460789Sahrens 461789Sahrens if (!vd->vdev_ops->vdev_op_leaf) 462789Sahrens return (0); 463789Sahrens 464789Sahrens /* 465*3377Seschrock * Dead vdevs cannot be initialized. 466789Sahrens */ 467789Sahrens if (vdev_is_dead(vd)) 468789Sahrens return (EIO); 469789Sahrens 470789Sahrens /* 471*3377Seschrock * Determine if the vdev is in use. 472789Sahrens */ 473*3377Seschrock if (reason != VDEV_LABEL_REMOVE && 474*3377Seschrock vdev_inuse(vd, crtxg, reason, &spare_guid)) 475*3377Seschrock return (EBUSY); 476789Sahrens 477*3377Seschrock ASSERT(reason != VDEV_LABEL_REMOVE || 478*3377Seschrock vdev_inuse(vd, crtxg, reason, NULL)); 479789Sahrens 480*3377Seschrock /* 481*3377Seschrock * If this is a request to add or replace a spare that is in use 482*3377Seschrock * elsewhere on the system, then we must update the guid (which was 483*3377Seschrock * initialized to a random value) to reflect the actual GUID (which is 484*3377Seschrock * shared between multiple pools). 485*3377Seschrock */ 486*3377Seschrock if (reason != VDEV_LABEL_REMOVE && spare_guid != 0ULL) { 487*3377Seschrock vdev_t *pvd = vd->vdev_parent; 4882082Seschrock 489*3377Seschrock for (; pvd != NULL; pvd = pvd->vdev_parent) { 490*3377Seschrock pvd->vdev_guid_sum -= vd->vdev_guid; 491*3377Seschrock pvd->vdev_guid_sum += spare_guid; 492789Sahrens } 4932082Seschrock 494*3377Seschrock vd->vdev_guid = vd->vdev_guid_sum = spare_guid; 4952082Seschrock 496*3377Seschrock /* 497*3377Seschrock * If this is a replacement, then we want to fallthrough to the 498*3377Seschrock * rest of the code. If we're adding a spare, then it's already 499*3377Seschrock * labelled appropriately and we can just return. 500*3377Seschrock */ 501*3377Seschrock if (reason == VDEV_LABEL_SPARE) 502*3377Seschrock return (0); 503*3377Seschrock ASSERT(reason == VDEV_LABEL_REPLACE); 504789Sahrens } 505789Sahrens 506789Sahrens /* 507*3377Seschrock * Initialize its label. 508789Sahrens */ 509789Sahrens vp = zio_buf_alloc(sizeof (vdev_phys_t)); 510789Sahrens bzero(vp, sizeof (vdev_phys_t)); 511789Sahrens 512789Sahrens /* 513789Sahrens * Generate a label describing the pool and our top-level vdev. 514789Sahrens * We mark it as being from txg 0 to indicate that it's not 515789Sahrens * really part of an active pool just yet. The labels will 516789Sahrens * be written again with a meaningful txg by spa_sync(). 517789Sahrens */ 518*3377Seschrock if (reason == VDEV_LABEL_SPARE || 519*3377Seschrock (reason == VDEV_LABEL_REMOVE && vd->vdev_isspare)) { 520*3377Seschrock /* 521*3377Seschrock * For inactive hot spares, we generate a special label that 522*3377Seschrock * identifies as a mutually shared hot spare. We write the 523*3377Seschrock * label if we are adding a hot spare, or if we are removing an 524*3377Seschrock * active hot spare (in which case we want to revert the 525*3377Seschrock * labels). 526*3377Seschrock */ 5272082Seschrock VERIFY(nvlist_alloc(&label, NV_UNIQUE_NAME, KM_SLEEP) == 0); 528789Sahrens 5292082Seschrock VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_VERSION, 5302082Seschrock spa_version(spa)) == 0); 5312082Seschrock VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_POOL_STATE, 5322082Seschrock POOL_STATE_SPARE) == 0); 5332082Seschrock VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_GUID, 5342082Seschrock vd->vdev_guid) == 0); 5352082Seschrock } else { 5362082Seschrock label = spa_config_generate(spa, vd, 0ULL, B_FALSE); 5372082Seschrock 5382082Seschrock /* 5392082Seschrock * Add our creation time. This allows us to detect multiple 5402082Seschrock * vdev uses as described above, and automatically expires if we 5412082Seschrock * fail. 5422082Seschrock */ 5432082Seschrock VERIFY(nvlist_add_uint64(label, ZPOOL_CONFIG_CREATE_TXG, 5442082Seschrock crtxg) == 0); 5452082Seschrock } 546789Sahrens 547789Sahrens buf = vp->vp_nvlist; 548789Sahrens buflen = sizeof (vp->vp_nvlist); 549789Sahrens 5501544Seschrock if (nvlist_pack(label, &buf, &buflen, NV_ENCODE_XDR, KM_SLEEP) != 0) { 551789Sahrens nvlist_free(label); 552789Sahrens zio_buf_free(vp, sizeof (vdev_phys_t)); 553789Sahrens return (EINVAL); 554789Sahrens } 555789Sahrens 556789Sahrens /* 557789Sahrens * Initialize boot block header. 558789Sahrens */ 559789Sahrens vb = zio_buf_alloc(sizeof (vdev_boot_header_t)); 560789Sahrens bzero(vb, sizeof (vdev_boot_header_t)); 561789Sahrens vb->vb_magic = VDEV_BOOT_MAGIC; 562789Sahrens vb->vb_version = VDEV_BOOT_VERSION; 563789Sahrens vb->vb_offset = VDEV_BOOT_OFFSET; 564789Sahrens vb->vb_size = VDEV_BOOT_SIZE; 565789Sahrens 566789Sahrens /* 567789Sahrens * Initialize uberblock template. 568789Sahrens */ 5691732Sbonwick ub = zio_buf_alloc(VDEV_UBERBLOCK_SIZE(vd)); 5701732Sbonwick bzero(ub, VDEV_UBERBLOCK_SIZE(vd)); 5711732Sbonwick *ub = spa->spa_uberblock; 5721732Sbonwick ub->ub_txg = 0; 573789Sahrens 574789Sahrens /* 575789Sahrens * Write everything in parallel. 576789Sahrens */ 577789Sahrens zio = zio_root(spa, NULL, NULL, 578789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 579789Sahrens 580789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 581789Sahrens 582789Sahrens vdev_label_write(zio, vd, l, vp, 583789Sahrens offsetof(vdev_label_t, vl_vdev_phys), 584789Sahrens sizeof (vdev_phys_t), NULL, NULL); 585789Sahrens 586789Sahrens vdev_label_write(zio, vd, l, vb, 587789Sahrens offsetof(vdev_label_t, vl_boot_header), 588789Sahrens sizeof (vdev_boot_header_t), NULL, NULL); 589789Sahrens 5901732Sbonwick for (n = 0; n < VDEV_UBERBLOCK_COUNT(vd); n++) { 5911732Sbonwick vdev_label_write(zio, vd, l, ub, 5921732Sbonwick VDEV_UBERBLOCK_OFFSET(vd, n), 5931732Sbonwick VDEV_UBERBLOCK_SIZE(vd), NULL, NULL); 594789Sahrens } 595789Sahrens } 596789Sahrens 597789Sahrens error = zio_wait(zio); 598789Sahrens 599789Sahrens nvlist_free(label); 6001732Sbonwick zio_buf_free(ub, VDEV_UBERBLOCK_SIZE(vd)); 601789Sahrens zio_buf_free(vb, sizeof (vdev_boot_header_t)); 602789Sahrens zio_buf_free(vp, sizeof (vdev_phys_t)); 603789Sahrens 604*3377Seschrock /* 605*3377Seschrock * If this vdev hasn't been previously identified as a spare, then we 606*3377Seschrock * mark it as such only if a) we are labelling it as a spare, or b) it 607*3377Seschrock * exists as a spare elsewhere in the system. 608*3377Seschrock */ 609*3377Seschrock if (error == 0 && !vd->vdev_isspare && 610*3377Seschrock (reason == VDEV_LABEL_SPARE || 611*3377Seschrock spa_spare_exists(vd->vdev_guid, NULL))) 612*3377Seschrock spa_spare_add(vd); 6132082Seschrock 614*3377Seschrock return (error); 6152082Seschrock } 6162082Seschrock 617789Sahrens /* 618789Sahrens * ========================================================================== 619789Sahrens * uberblock load/sync 620789Sahrens * ========================================================================== 621789Sahrens */ 622789Sahrens 623789Sahrens /* 624789Sahrens * Consider the following situation: txg is safely synced to disk. We've 625789Sahrens * written the first uberblock for txg + 1, and then we lose power. When we 626789Sahrens * come back up, we fail to see the uberblock for txg + 1 because, say, 627789Sahrens * it was on a mirrored device and the replica to which we wrote txg + 1 628789Sahrens * is now offline. If we then make some changes and sync txg + 1, and then 629789Sahrens * the missing replica comes back, then for a new seconds we'll have two 630789Sahrens * conflicting uberblocks on disk with the same txg. The solution is simple: 631789Sahrens * among uberblocks with equal txg, choose the one with the latest timestamp. 632789Sahrens */ 633789Sahrens static int 634789Sahrens vdev_uberblock_compare(uberblock_t *ub1, uberblock_t *ub2) 635789Sahrens { 636789Sahrens if (ub1->ub_txg < ub2->ub_txg) 637789Sahrens return (-1); 638789Sahrens if (ub1->ub_txg > ub2->ub_txg) 639789Sahrens return (1); 640789Sahrens 641789Sahrens if (ub1->ub_timestamp < ub2->ub_timestamp) 642789Sahrens return (-1); 643789Sahrens if (ub1->ub_timestamp > ub2->ub_timestamp) 644789Sahrens return (1); 645789Sahrens 646789Sahrens return (0); 647789Sahrens } 648789Sahrens 649789Sahrens static void 650789Sahrens vdev_uberblock_load_done(zio_t *zio) 651789Sahrens { 6521732Sbonwick uberblock_t *ub = zio->io_data; 653789Sahrens uberblock_t *ubbest = zio->io_private; 654789Sahrens spa_t *spa = zio->io_spa; 655789Sahrens 6561732Sbonwick ASSERT3U(zio->io_size, ==, VDEV_UBERBLOCK_SIZE(zio->io_vd)); 657789Sahrens 6581544Seschrock if (zio->io_error == 0 && uberblock_verify(ub) == 0) { 659789Sahrens mutex_enter(&spa->spa_uberblock_lock); 660789Sahrens if (vdev_uberblock_compare(ub, ubbest) > 0) 661789Sahrens *ubbest = *ub; 662789Sahrens mutex_exit(&spa->spa_uberblock_lock); 663789Sahrens } 664789Sahrens 665789Sahrens zio_buf_free(zio->io_data, zio->io_size); 666789Sahrens } 667789Sahrens 668789Sahrens void 669789Sahrens vdev_uberblock_load(zio_t *zio, vdev_t *vd, uberblock_t *ubbest) 670789Sahrens { 671789Sahrens int l, c, n; 672789Sahrens 673789Sahrens for (c = 0; c < vd->vdev_children; c++) 674789Sahrens vdev_uberblock_load(zio, vd->vdev_child[c], ubbest); 675789Sahrens 676789Sahrens if (!vd->vdev_ops->vdev_op_leaf) 677789Sahrens return; 678789Sahrens 679789Sahrens if (vdev_is_dead(vd)) 680789Sahrens return; 681789Sahrens 682789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 6831732Sbonwick for (n = 0; n < VDEV_UBERBLOCK_COUNT(vd); n++) { 684789Sahrens vdev_label_read(zio, vd, l, 6851732Sbonwick zio_buf_alloc(VDEV_UBERBLOCK_SIZE(vd)), 6861732Sbonwick VDEV_UBERBLOCK_OFFSET(vd, n), 6871732Sbonwick VDEV_UBERBLOCK_SIZE(vd), 688789Sahrens vdev_uberblock_load_done, ubbest); 689789Sahrens } 690789Sahrens } 691789Sahrens } 692789Sahrens 693789Sahrens /* 694789Sahrens * Write the uberblock to both labels of all leaves of the specified vdev. 6951635Sbonwick * We only get credit for writes to known-visible vdevs; see spa_vdev_add(). 696789Sahrens */ 697789Sahrens static void 698789Sahrens vdev_uberblock_sync_done(zio_t *zio) 699789Sahrens { 700789Sahrens uint64_t *good_writes = zio->io_root->io_private; 701789Sahrens 7021635Sbonwick if (zio->io_error == 0 && zio->io_vd->vdev_top->vdev_ms_array != 0) 703789Sahrens atomic_add_64(good_writes, 1); 704789Sahrens } 705789Sahrens 706789Sahrens static void 7071732Sbonwick vdev_uberblock_sync(zio_t *zio, uberblock_t *ub, vdev_t *vd, uint64_t txg) 708789Sahrens { 709789Sahrens int l, c, n; 710789Sahrens 711789Sahrens for (c = 0; c < vd->vdev_children; c++) 7121732Sbonwick vdev_uberblock_sync(zio, ub, vd->vdev_child[c], txg); 713789Sahrens 714789Sahrens if (!vd->vdev_ops->vdev_op_leaf) 715789Sahrens return; 716789Sahrens 717789Sahrens if (vdev_is_dead(vd)) 718789Sahrens return; 719789Sahrens 7201732Sbonwick n = txg & (VDEV_UBERBLOCK_COUNT(vd) - 1); 721789Sahrens 7221732Sbonwick ASSERT(ub->ub_txg == txg); 723789Sahrens 724789Sahrens for (l = 0; l < VDEV_LABELS; l++) 7251732Sbonwick vdev_label_write(zio, vd, l, ub, 7261732Sbonwick VDEV_UBERBLOCK_OFFSET(vd, n), 7271732Sbonwick VDEV_UBERBLOCK_SIZE(vd), 7281732Sbonwick vdev_uberblock_sync_done, NULL); 729789Sahrens 730789Sahrens dprintf("vdev %s in txg %llu\n", vdev_description(vd), txg); 731789Sahrens } 732789Sahrens 733789Sahrens static int 7341732Sbonwick vdev_uberblock_sync_tree(spa_t *spa, uberblock_t *ub, vdev_t *vd, uint64_t txg) 735789Sahrens { 7361732Sbonwick uberblock_t *ubbuf; 7371732Sbonwick size_t size = vd->vdev_top ? VDEV_UBERBLOCK_SIZE(vd) : SPA_MAXBLOCKSIZE; 738789Sahrens uint64_t *good_writes; 739789Sahrens zio_t *zio; 740789Sahrens int error; 741789Sahrens 7421732Sbonwick ubbuf = zio_buf_alloc(size); 7431732Sbonwick bzero(ubbuf, size); 7441732Sbonwick *ubbuf = *ub; 745789Sahrens 746789Sahrens good_writes = kmem_zalloc(sizeof (uint64_t), KM_SLEEP); 747789Sahrens 748789Sahrens zio = zio_root(spa, NULL, good_writes, 749789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 750789Sahrens 7511732Sbonwick vdev_uberblock_sync(zio, ubbuf, vd, txg); 752789Sahrens 753789Sahrens error = zio_wait(zio); 754789Sahrens 755789Sahrens if (error && *good_writes != 0) { 756789Sahrens dprintf("partial success: good_writes = %llu\n", *good_writes); 757789Sahrens error = 0; 758789Sahrens } 759789Sahrens 760789Sahrens /* 761789Sahrens * It's possible to have no good writes and no error if every vdev is in 762789Sahrens * the CANT_OPEN state. 763789Sahrens */ 764789Sahrens if (*good_writes == 0 && error == 0) 765789Sahrens error = EIO; 766789Sahrens 767789Sahrens kmem_free(good_writes, sizeof (uint64_t)); 7681732Sbonwick zio_buf_free(ubbuf, size); 769789Sahrens 770789Sahrens return (error); 771789Sahrens } 772789Sahrens 773789Sahrens /* 774789Sahrens * Sync out an individual vdev. 775789Sahrens */ 776789Sahrens static void 777789Sahrens vdev_sync_label_done(zio_t *zio) 778789Sahrens { 779789Sahrens uint64_t *good_writes = zio->io_root->io_private; 780789Sahrens 781789Sahrens if (zio->io_error == 0) 782789Sahrens atomic_add_64(good_writes, 1); 783789Sahrens } 784789Sahrens 785789Sahrens static void 786789Sahrens vdev_sync_label(zio_t *zio, vdev_t *vd, int l, uint64_t txg) 787789Sahrens { 788789Sahrens nvlist_t *label; 789789Sahrens vdev_phys_t *vp; 790789Sahrens char *buf; 791789Sahrens size_t buflen; 792789Sahrens int c; 793789Sahrens 794789Sahrens for (c = 0; c < vd->vdev_children; c++) 795789Sahrens vdev_sync_label(zio, vd->vdev_child[c], l, txg); 796789Sahrens 797789Sahrens if (!vd->vdev_ops->vdev_op_leaf) 798789Sahrens return; 799789Sahrens 800789Sahrens if (vdev_is_dead(vd)) 801789Sahrens return; 802789Sahrens 803789Sahrens /* 804789Sahrens * Generate a label describing the top-level config to which we belong. 805789Sahrens */ 8061635Sbonwick label = spa_config_generate(vd->vdev_spa, vd, txg, B_FALSE); 807789Sahrens 808789Sahrens vp = zio_buf_alloc(sizeof (vdev_phys_t)); 809789Sahrens bzero(vp, sizeof (vdev_phys_t)); 810789Sahrens 811789Sahrens buf = vp->vp_nvlist; 812789Sahrens buflen = sizeof (vp->vp_nvlist); 813789Sahrens 8141544Seschrock if (nvlist_pack(label, &buf, &buflen, NV_ENCODE_XDR, KM_SLEEP) == 0) 815789Sahrens vdev_label_write(zio, vd, l, vp, 816789Sahrens offsetof(vdev_label_t, vl_vdev_phys), sizeof (vdev_phys_t), 817789Sahrens vdev_sync_label_done, NULL); 818789Sahrens 819789Sahrens zio_buf_free(vp, sizeof (vdev_phys_t)); 820789Sahrens nvlist_free(label); 821789Sahrens 822789Sahrens dprintf("%s label %d txg %llu\n", vdev_description(vd), l, txg); 823789Sahrens } 824789Sahrens 825789Sahrens static int 826789Sahrens vdev_sync_labels(vdev_t *vd, int l, uint64_t txg) 827789Sahrens { 828789Sahrens uint64_t *good_writes; 829789Sahrens zio_t *zio; 830789Sahrens int error; 831789Sahrens 832789Sahrens ASSERT(vd == vd->vdev_top); 833789Sahrens 834789Sahrens good_writes = kmem_zalloc(sizeof (uint64_t), KM_SLEEP); 835789Sahrens 836789Sahrens zio = zio_root(vd->vdev_spa, NULL, good_writes, 837789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 838789Sahrens 839789Sahrens /* 840789Sahrens * Recursively kick off writes to all labels. 841789Sahrens */ 842789Sahrens vdev_sync_label(zio, vd, l, txg); 843789Sahrens 844789Sahrens error = zio_wait(zio); 845789Sahrens 846789Sahrens if (error && *good_writes != 0) { 847789Sahrens dprintf("partial success: good_writes = %llu\n", *good_writes); 848789Sahrens error = 0; 849789Sahrens } 850789Sahrens 851789Sahrens if (*good_writes == 0 && error == 0) 852789Sahrens error = ENODEV; 853789Sahrens 854789Sahrens kmem_free(good_writes, sizeof (uint64_t)); 855789Sahrens 856789Sahrens return (error); 857789Sahrens } 858789Sahrens 859789Sahrens /* 860789Sahrens * Sync the entire vdev configuration. 861789Sahrens * 862789Sahrens * The order of operations is carefully crafted to ensure that 863789Sahrens * if the system panics or loses power at any time, the state on disk 864789Sahrens * is still transactionally consistent. The in-line comments below 865789Sahrens * describe the failure semantics at each stage. 866789Sahrens * 867789Sahrens * Moreover, it is designed to be idempotent: if spa_sync_labels() fails 868789Sahrens * at any time, you can just call it again, and it will resume its work. 869789Sahrens */ 870789Sahrens int 8711635Sbonwick vdev_config_sync(vdev_t *uvd, uint64_t txg) 872789Sahrens { 8731635Sbonwick spa_t *spa = uvd->vdev_spa; 874789Sahrens uberblock_t *ub = &spa->spa_uberblock; 875789Sahrens vdev_t *rvd = spa->spa_root_vdev; 8761635Sbonwick vdev_t *vd; 877789Sahrens zio_t *zio; 8781637Sbonwick int l, error; 879789Sahrens 880789Sahrens ASSERT(ub->ub_txg <= txg); 881789Sahrens 882789Sahrens /* 883789Sahrens * If this isn't a resync due to I/O errors, and nothing changed 884789Sahrens * in this transaction group, and the vdev configuration hasn't changed, 8851635Sbonwick * then there's nothing to do. 886789Sahrens */ 887789Sahrens if (ub->ub_txg < txg && uberblock_update(ub, rvd, txg) == B_FALSE && 888789Sahrens list_is_empty(&spa->spa_dirty_list)) { 889789Sahrens dprintf("nothing to sync in %s in txg %llu\n", 890789Sahrens spa_name(spa), txg); 891789Sahrens return (0); 892789Sahrens } 893789Sahrens 894789Sahrens if (txg > spa_freeze_txg(spa)) 895789Sahrens return (0); 896789Sahrens 8971635Sbonwick ASSERT(txg <= spa->spa_final_txg); 8981635Sbonwick 899789Sahrens dprintf("syncing %s txg %llu\n", spa_name(spa), txg); 900789Sahrens 901789Sahrens /* 902789Sahrens * Flush the write cache of every disk that's been written to 903789Sahrens * in this transaction group. This ensures that all blocks 904789Sahrens * written in this txg will be committed to stable storage 905789Sahrens * before any uberblock that references them. 906789Sahrens */ 907789Sahrens zio = zio_root(spa, NULL, NULL, 908789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 909789Sahrens for (vd = txg_list_head(&spa->spa_vdev_txg_list, TXG_CLEAN(txg)); vd; 910789Sahrens vd = txg_list_next(&spa->spa_vdev_txg_list, vd, TXG_CLEAN(txg))) { 911789Sahrens zio_nowait(zio_ioctl(zio, spa, vd, DKIOCFLUSHWRITECACHE, 912789Sahrens NULL, NULL, ZIO_PRIORITY_NOW, 913789Sahrens ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY)); 914789Sahrens } 915789Sahrens (void) zio_wait(zio); 916789Sahrens 917789Sahrens /* 918789Sahrens * Sync out the even labels (L0, L2) for every dirty vdev. If the 919789Sahrens * system dies in the middle of this process, that's OK: all of the 920789Sahrens * even labels that made it to disk will be newer than any uberblock, 921789Sahrens * and will therefore be considered invalid. The odd labels (L1, L3), 922789Sahrens * which have not yet been touched, will still be valid. 923789Sahrens */ 924789Sahrens for (vd = list_head(&spa->spa_dirty_list); vd != NULL; 925789Sahrens vd = list_next(&spa->spa_dirty_list, vd)) { 926789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 927789Sahrens if (l & 1) 928789Sahrens continue; 929789Sahrens if ((error = vdev_sync_labels(vd, l, txg)) != 0) 930789Sahrens return (error); 931789Sahrens } 932789Sahrens } 933789Sahrens 934789Sahrens /* 935789Sahrens * Flush the new labels to disk. This ensures that all even-label 936789Sahrens * updates are committed to stable storage before the uberblock update. 937789Sahrens */ 938789Sahrens zio = zio_root(spa, NULL, NULL, 939789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 940789Sahrens for (vd = list_head(&spa->spa_dirty_list); vd != NULL; 941789Sahrens vd = list_next(&spa->spa_dirty_list, vd)) { 942789Sahrens zio_nowait(zio_ioctl(zio, spa, vd, DKIOCFLUSHWRITECACHE, 943789Sahrens NULL, NULL, ZIO_PRIORITY_NOW, 944789Sahrens ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY)); 945789Sahrens } 946789Sahrens (void) zio_wait(zio); 947789Sahrens 948789Sahrens /* 9491635Sbonwick * Sync the uberblocks to all vdevs in the tree specified by uvd. 9501635Sbonwick * If the system dies in the middle of this step, there are two cases 9511635Sbonwick * to consider, and the on-disk state is consistent either way: 952789Sahrens * 953789Sahrens * (1) If none of the new uberblocks made it to disk, then the 954789Sahrens * previous uberblock will be the newest, and the odd labels 955789Sahrens * (which had not yet been touched) will be valid with respect 956789Sahrens * to that uberblock. 957789Sahrens * 958789Sahrens * (2) If one or more new uberblocks made it to disk, then they 959789Sahrens * will be the newest, and the even labels (which had all 960789Sahrens * been successfully committed) will be valid with respect 961789Sahrens * to the new uberblocks. 962789Sahrens */ 963789Sahrens if ((error = vdev_uberblock_sync_tree(spa, ub, uvd, txg)) != 0) 964789Sahrens return (error); 965789Sahrens 966789Sahrens /* 967789Sahrens * Flush the uberblocks to disk. This ensures that the odd labels 968789Sahrens * are no longer needed (because the new uberblocks and the even 969789Sahrens * labels are safely on disk), so it is safe to overwrite them. 970789Sahrens */ 971789Sahrens (void) zio_wait(zio_ioctl(NULL, spa, uvd, DKIOCFLUSHWRITECACHE, 972789Sahrens NULL, NULL, ZIO_PRIORITY_NOW, 973789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY)); 974789Sahrens 975789Sahrens /* 976789Sahrens * Sync out odd labels for every dirty vdev. If the system dies 977789Sahrens * in the middle of this process, the even labels and the new 978789Sahrens * uberblocks will suffice to open the pool. The next time 979789Sahrens * the pool is opened, the first thing we'll do -- before any 980789Sahrens * user data is modified -- is mark every vdev dirty so that 981789Sahrens * all labels will be brought up to date. 982789Sahrens */ 983789Sahrens for (vd = list_head(&spa->spa_dirty_list); vd != NULL; 984789Sahrens vd = list_next(&spa->spa_dirty_list, vd)) { 985789Sahrens for (l = 0; l < VDEV_LABELS; l++) { 986789Sahrens if ((l & 1) == 0) 987789Sahrens continue; 988789Sahrens if ((error = vdev_sync_labels(vd, l, txg)) != 0) 989789Sahrens return (error); 990789Sahrens } 991789Sahrens } 992789Sahrens 993789Sahrens /* 994789Sahrens * Flush the new labels to disk. This ensures that all odd-label 995789Sahrens * updates are committed to stable storage before the next 996789Sahrens * transaction group begins. 997789Sahrens */ 998789Sahrens zio = zio_root(spa, NULL, NULL, 999789Sahrens ZIO_FLAG_CONFIG_HELD | ZIO_FLAG_CANFAIL); 1000789Sahrens for (vd = list_head(&spa->spa_dirty_list); vd != NULL; 1001789Sahrens vd = list_next(&spa->spa_dirty_list, vd)) { 1002789Sahrens zio_nowait(zio_ioctl(zio, spa, vd, DKIOCFLUSHWRITECACHE, 1003789Sahrens NULL, NULL, ZIO_PRIORITY_NOW, 1004789Sahrens ZIO_FLAG_CANFAIL | ZIO_FLAG_DONT_RETRY)); 1005789Sahrens } 1006789Sahrens (void) zio_wait(zio); 1007789Sahrens 1008789Sahrens return (0); 1009789Sahrens } 1010