usr/src/uts/common/fs/zfs/spa_config.c
author Christopher Siden <chris.siden@delphix.com>
Mon, 21 May 2012 12:11:39 -0700
changeset 13700 2889e2596bd6
parent 13525 7059b67f1bc2
child 13992 313c3db67359
permissions -rw-r--r--
2619 asynchronous destruction of ZFS file systems 2747 SPA versioning with zfs feature flags Reviewed by: Matt Ahrens <[email protected]> Reviewed by: George Wilson <[email protected]> Reviewed by: Richard Lowe <[email protected]> Reviewed by: Dan Kruchinin <[email protected]> Approved by: Eric Schrock <[email protected]>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
     5
 * Common Development and Distribution License (the "License").
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
    21
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    22
/*
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 11422
diff changeset
    23
 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
13525
7059b67f1bc2 1693 persistent 'comment' field for a zpool
Dan McDonald <danmcd@nexenta.com>
parents: 12961
diff changeset
    24
 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
13700
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 13525
diff changeset
    25
 * Copyright (c) 2012 by Delphix. All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
#include <sys/spa.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#include <sys/spa_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
#include <sys/nvpair.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <sys/uio.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <sys/fs/zfs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
#include <sys/vdev_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
#include <sys/zfs_ioctl.h>
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
    35
#include <sys/utsname.h>
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
    36
#include <sys/systeminfo.h>
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
    37
#include <sys/sunddi.h>
13700
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 13525
diff changeset
    38
#include <sys/zfeature.h>
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    39
#ifdef _KERNEL
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    40
#include <sys/kobj.h>
8662
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
    41
#include <sys/zone.h>
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    42
#endif
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    43
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
 * Pool configuration repository.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
 *
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    47
 * Pool configuration is stored as a packed nvlist on the filesystem.  By
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    48
 * default, all pools are stored in /etc/zfs/zpool.cache and loaded on boot
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    49
 * (when the ZFS module is loaded).  Pools can also have the 'cachefile'
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    50
 * property set that allows them to be stored in an alternate location until
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    51
 * the control of external software.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    52
 *
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    53
 * For each cache file, we have a single nvlist which holds all the
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    54
 * configuration information.  When the module loads, we read this information
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    55
 * from /etc/zfs/zpool.cache and populate the SPA namespace.  This namespace is
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    56
 * maintained independently in spa.c.  Whenever the namespace is modified, or
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    57
 * the configuration of a pool is changed, we call spa_config_sync(), which
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    58
 * walks through all the active pools and writes the configuration to disk.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
static uint64_t spa_config_generation = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    63
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    64
 * This can be overridden in userland to preserve an alternate namespace for
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    65
 * userland pools when doing testing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
 */
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
    67
const char *spa_config_path = ZPOOL_CACHE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
 * Called when the module is first loaded, this routine loads the configuration
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
 * file into the SPA namespace.  It does not actually open or load the pools; it
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
 * only populates the namespace.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    75
spa_config_load(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    76
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
	void *buf = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    78
	nvlist_t *nvlist, *child;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
	nvpair_t *nvpair;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
    80
	char *pathname;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    81
	struct _buf *file;
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
    82
	uint64_t fsize;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    84
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
	 * Open the configuration file.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
	 */
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
    87
	pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
    88
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
    89
	(void) snprintf(pathname, MAXPATHLEN, "%s%s",
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
    90
	    (rootdir != NULL) ? "./" : "", spa_config_path);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    91
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    92
	file = kobj_open_file(pathname);
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
    93
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
    94
	kmem_free(pathname, MAXPATHLEN);
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
    95
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    96
	if (file == (struct _buf *)-1)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    97
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    98
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
    99
	if (kobj_get_filesize(file, &fsize) != 0)
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   100
		goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   101
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
   102
	buf = kmem_alloc(fsize, KM_SLEEP);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   103
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   104
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   105
	 * Read the nvlist from the file.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   106
	 */
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
   107
	if (kobj_read_file(file, buf, fsize, 0) < 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   108
		goto out;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   109
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   110
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   111
	 * Unpack the nvlist.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   112
	 */
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
   113
	if (nvlist_unpack(buf, fsize, &nvlist, KM_SLEEP) != 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   114
		goto out;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   115
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   116
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   117
	 * Iterate over all elements in the nvlist, creating a new spa_t for
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   118
	 * each one with the specified configuration.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   119
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   120
	mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   121
	nvpair = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
	while ((nvpair = nvlist_next_nvpair(nvlist, nvpair)) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   123
		if (nvpair_type(nvpair) != DATA_TYPE_NVLIST)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   124
			continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   125
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   126
		VERIFY(nvpair_value_nvlist(nvpair, &child) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   127
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   128
		if (spa_lookup(nvpair_name(nvpair)) != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   129
			continue;
10921
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10594
diff changeset
   130
		(void) spa_add(nvpair_name(nvpair), child, NULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   131
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   132
	mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   133
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   134
	nvlist_free(nvlist);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   135
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   136
out:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   137
	if (buf != NULL)
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
   138
		kmem_free(buf, fsize);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   139
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   140
	kobj_close_file(file);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   141
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   142
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   143
static void
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   144
spa_config_write(spa_config_dirent_t *dp, nvlist_t *nvl)
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   145
{
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   146
	size_t buflen;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   147
	char *buf;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   148
	vnode_t *vp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   149
	int oflags = FWRITE | FTRUNC | FCREAT | FOFFMAX;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   150
	char *temp;
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   151
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   152
	/*
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   153
	 * If the nvlist is empty (NULL), then remove the old cachefile.
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   154
	 */
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   155
	if (nvl == NULL) {
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   156
		(void) vn_remove(dp->scd_path, UIO_SYSSPACE, RMFILE);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   157
		return;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   158
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   159
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   160
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   161
	 * Pack the configuration into a buffer.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   162
	 */
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   163
	VERIFY(nvlist_size(nvl, &buflen, NV_ENCODE_XDR) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   164
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   165
	buf = kmem_alloc(buflen, KM_SLEEP);
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   166
	temp = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   167
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   168
	VERIFY(nvlist_pack(nvl, &buf, &buflen, NV_ENCODE_XDR,
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   169
	    KM_SLEEP) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   170
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   171
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   172
	 * Write the configuration to disk.  We need to do the traditional
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   173
	 * 'write to temporary file, sync, move over original' to make sure we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   174
	 * always have a consistent view of the data.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   175
	 */
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   176
	(void) snprintf(temp, MAXPATHLEN, "%s.tmp", dp->scd_path);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   177
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   178
	if (vn_open(temp, UIO_SYSSPACE, oflags, 0644, &vp, CRCREAT, 0) == 0) {
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   179
		if (vn_rdwr(UIO_WRITE, vp, buf, buflen, 0, UIO_SYSSPACE,
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   180
		    0, RLIM64_INFINITY, kcred, NULL) == 0 &&
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   181
		    VOP_FSYNC(vp, FSYNC, kcred, NULL) == 0) {
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   182
			(void) vn_rename(temp, dp->scd_path, UIO_SYSSPACE);
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   183
		}
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   184
		(void) VOP_CLOSE(vp, oflags, 1, 0, kcred, NULL);
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   185
		VN_RELE(vp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   186
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   187
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   188
	(void) vn_remove(temp, UIO_SYSSPACE, RMFILE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   189
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   190
	kmem_free(buf, buflen);
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   191
	kmem_free(temp, MAXPATHLEN);
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   192
}
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   193
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   194
/*
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   195
 * Synchronize pool configuration to disk.  This must be called with the
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   196
 * namespace lock held.
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   197
 */
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   198
void
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   199
spa_config_sync(spa_t *target, boolean_t removing, boolean_t postsysevent)
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   200
{
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   201
	spa_config_dirent_t *dp, *tdp;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   202
	nvlist_t *nvl;
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   203
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   204
	ASSERT(MUTEX_HELD(&spa_namespace_lock));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   205
10000
241a51d8720c 6848242 zdb -e no longer works as expected
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 9816
diff changeset
   206
	if (rootdir == NULL || !(spa_mode_global & FWRITE))
8225
59a9961c2aeb 6737463 panic while trying to write out config file if root pool import fails
George Wilson <George.Wilson@Sun.COM>
parents: 7754
diff changeset
   207
		return;
59a9961c2aeb 6737463 panic while trying to write out config file if root pool import fails
George Wilson <George.Wilson@Sun.COM>
parents: 7754
diff changeset
   208
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   209
	/*
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   210
	 * Iterate over all cachefiles for the pool, past or present.  When the
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   211
	 * cachefile is changed, the new one is pushed onto this list, allowing
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   212
	 * us to update previous cachefiles that no longer contain this pool.
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   213
	 */
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   214
	for (dp = list_head(&target->spa_config_list); dp != NULL;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   215
	    dp = list_next(&target->spa_config_list, dp)) {
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   216
		spa_t *spa = NULL;
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   217
		if (dp->scd_path == NULL)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   218
			continue;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   219
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   220
		/*
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   221
		 * Iterate over all pools, adding any matching pools to 'nvl'.
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   222
		 */
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   223
		nvl = NULL;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   224
		while ((spa = spa_next(spa)) != NULL) {
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   225
			if (spa == target && removing)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   226
				continue;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   227
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   228
			mutex_enter(&spa->spa_props_lock);
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   229
			tdp = list_head(&spa->spa_config_list);
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   230
			if (spa->spa_config == NULL ||
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   231
			    tdp->scd_path == NULL ||
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   232
			    strcmp(tdp->scd_path, dp->scd_path) != 0) {
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   233
				mutex_exit(&spa->spa_props_lock);
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   234
				continue;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   235
			}
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   236
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   237
			if (nvl == NULL)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   238
				VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME,
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   239
				    KM_SLEEP) == 0);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   240
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   241
			VERIFY(nvlist_add_nvlist(nvl, spa->spa_name,
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   242
			    spa->spa_config) == 0);
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   243
			mutex_exit(&spa->spa_props_lock);
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   244
		}
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   245
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   246
		spa_config_write(dp, nvl);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   247
		nvlist_free(nvl);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   248
	}
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   249
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   250
	/*
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   251
	 * Remove any config entries older than the current one.
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   252
	 */
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   253
	dp = list_head(&target->spa_config_list);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   254
	while ((tdp = list_next(&target->spa_config_list, dp)) != NULL) {
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   255
		list_remove(&target->spa_config_list, tdp);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   256
		if (tdp->scd_path != NULL)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   257
			spa_strfree(tdp->scd_path);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   258
		kmem_free(tdp, sizeof (spa_config_dirent_t));
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   259
	}
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   260
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   261
	spa_config_generation++;
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   262
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   263
	if (postsysevent)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   264
		spa_event_notify(target, NULL, ESC_ZFS_CONFIG_SYNC);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   265
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   266
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   267
/*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   268
 * Sigh.  Inside a local zone, we don't have access to /etc/zfs/zpool.cache,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   269
 * and we don't want to allow the local zone to see all the pools anyway.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   270
 * So we have to invent the ZFS_IOC_CONFIG ioctl to grab the configuration
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   271
 * information for all pool visible within the zone.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   272
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   273
nvlist_t *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   274
spa_all_configs(uint64_t *generation)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   275
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   276
	nvlist_t *pools;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   277
	spa_t *spa = NULL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   278
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   279
	if (*generation == spa_config_generation)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   280
		return (NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   281
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   282
	VERIFY(nvlist_alloc(&pools, NV_UNIQUE_NAME, KM_SLEEP) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   283
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   284
	mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   285
	while ((spa = spa_next(spa)) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   286
		if (INGLOBALZONE(curproc) ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   287
		    zone_dataset_visible(spa_name(spa), NULL)) {
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   288
			mutex_enter(&spa->spa_props_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   289
			VERIFY(nvlist_add_nvlist(pools, spa_name(spa),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   290
			    spa->spa_config) == 0);
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   291
			mutex_exit(&spa->spa_props_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   292
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   293
	}
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   294
	*generation = spa_config_generation;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   295
	mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   296
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   297
	return (pools);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   298
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   299
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   300
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   301
spa_config_set(spa_t *spa, nvlist_t *config)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   302
{
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   303
	mutex_enter(&spa->spa_props_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   304
	if (spa->spa_config != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   305
		nvlist_free(spa->spa_config);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   306
	spa->spa_config = config;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   307
	mutex_exit(&spa->spa_props_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   308
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   309
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   310
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   311
 * Generate the pool's configuration based on the current in-core state.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   312
 * We infer whether to generate a complete config or just one top-level config
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   313
 * based on whether vd is the root vdev.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   314
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   315
nvlist_t *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   316
spa_config_generate(spa_t *spa, vdev_t *vd, uint64_t txg, int getstats)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   317
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   318
	nvlist_t *config, *nvroot;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   319
	vdev_t *rvd = spa->spa_root_vdev;
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   320
	unsigned long hostid = 0;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   321
	boolean_t locked = B_FALSE;
11422
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   322
	uint64_t split_guid;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   323
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   324
	if (vd == NULL) {
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   325
		vd = rvd;
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   326
		locked = B_TRUE;
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   327
		spa_config_enter(spa, SCL_CONFIG | SCL_STATE, FTAG, RW_READER);
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   328
	}
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   329
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   330
	ASSERT(spa_config_held(spa, SCL_CONFIG | SCL_STATE, RW_READER) ==
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   331
	    (SCL_CONFIG | SCL_STATE));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   332
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   333
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   334
	 * If txg is -1, report the current value of spa->spa_config_txg.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   335
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   336
	if (txg == -1ULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   337
		txg = spa->spa_config_txg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   338
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   339
	VERIFY(nvlist_alloc(&config, NV_UNIQUE_NAME, KM_SLEEP) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   340
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   341
	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_VERSION,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
   342
	    spa_version(spa)) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   343
	VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_POOL_NAME,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   344
	    spa_name(spa)) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   345
	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_STATE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   346
	    spa_state(spa)) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   347
	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_TXG,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   348
	    txg) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   349
	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_GUID,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   350
	    spa_guid(spa)) == 0);
13525
7059b67f1bc2 1693 persistent 'comment' field for a zpool
Dan McDonald <danmcd@nexenta.com>
parents: 12961
diff changeset
   351
	VERIFY(spa->spa_comment == NULL || nvlist_add_string(config,
7059b67f1bc2 1693 persistent 'comment' field for a zpool
Dan McDonald <danmcd@nexenta.com>
parents: 12961
diff changeset
   352
	    ZPOOL_CONFIG_COMMENT, spa->spa_comment) == 0);
7059b67f1bc2 1693 persistent 'comment' field for a zpool
Dan McDonald <danmcd@nexenta.com>
parents: 12961
diff changeset
   353
7059b67f1bc2 1693 persistent 'comment' field for a zpool
Dan McDonald <danmcd@nexenta.com>
parents: 12961
diff changeset
   354
8662
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   355
#ifdef	_KERNEL
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   356
	hostid = zone_get_hostid(NULL);
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   357
#else	/* _KERNEL */
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   358
	/*
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   359
	 * We're emulating the system's hostid in userland, so we can't use
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   360
	 * zone_get_hostid().
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   361
	 */
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   362
	(void) ddi_strtoul(hw_serial, NULL, 10, &hostid);
8662
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   363
#endif	/* _KERNEL */
4178
ad95fd86760b 6553537 zfs root fails to boot from a snv_63+zfsboot-pfinstall netinstall image
lling
parents: 3975
diff changeset
   364
	if (hostid != 0) {
ad95fd86760b 6553537 zfs root fails to boot from a snv_63+zfsboot-pfinstall netinstall image
lling
parents: 3975
diff changeset
   365
		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_HOSTID,
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4178
diff changeset
   366
		    hostid) == 0);
4178
ad95fd86760b 6553537 zfs root fails to boot from a snv_63+zfsboot-pfinstall netinstall image
lling
parents: 3975
diff changeset
   367
	}
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   368
	VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_HOSTNAME,
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   369
	    utsname.nodename) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   370
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   371
	if (vd != rvd) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   372
		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_TOP_GUID,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   373
		    vd->vdev_top->vdev_guid) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   374
		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_GUID,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   375
		    vd->vdev_guid) == 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
   376
		if (vd->vdev_isspare)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
   377
			VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_IS_SPARE,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
   378
			    1ULL) == 0);
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4178
diff changeset
   379
		if (vd->vdev_islog)
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4178
diff changeset
   380
			VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_IS_LOG,
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4178
diff changeset
   381
			    1ULL) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   382
		vd = vd->vdev_top;		/* label contains top config */
11422
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   383
	} else {
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   384
		/*
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   385
		 * Only add the (potentially large) split information
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   386
		 * in the mos config, and not in the vdev labels
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   387
		 */
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   388
		if (spa->spa_config_splitting != NULL)
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   389
			VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_SPLIT,
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   390
			    spa->spa_config_splitting) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   391
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   392
10594
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   393
	/*
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   394
	 * Add the top-level config.  We even add this on pools which
12961
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12296
diff changeset
   395
	 * don't support holes in the namespace.
10594
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   396
	 */
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   397
	vdev_top_config_generate(spa, config);
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   398
11422
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   399
	/*
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   400
	 * If we're splitting, record the original pool's guid.
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   401
	 */
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   402
	if (spa->spa_config_splitting != NULL &&
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   403
	    nvlist_lookup_uint64(spa->spa_config_splitting,
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   404
	    ZPOOL_CONFIG_SPLIT_GUID, &split_guid) == 0) {
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   405
		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_SPLIT_GUID,
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   406
		    split_guid) == 0);
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   407
	}
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   408
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 11422
diff changeset
   409
	nvroot = vdev_config_generate(spa, vd, getstats, 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   410
	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, nvroot) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   411
	nvlist_free(nvroot);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   412
13700
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 13525
diff changeset
   413
	/*
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 13525
diff changeset
   414
	 * Store what's necessary for reading the MOS in the label.
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 13525
diff changeset
   415
	 */
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 13525
diff changeset
   416
	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_FEATURES_FOR_READ,
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 13525
diff changeset
   417
	    spa->spa_label_features) == 0);
2889e2596bd6 2619 asynchronous destruction of ZFS file systems
Christopher Siden <chris.siden@delphix.com>
parents: 13525
diff changeset
   418
11149
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   419
	if (getstats && spa_load_state(spa) == SPA_LOAD_NONE) {
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   420
		ddt_histogram_t *ddh;
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   421
		ddt_stat_t *dds;
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   422
		ddt_object_t *ddo;
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   423
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   424
		ddh = kmem_zalloc(sizeof (ddt_histogram_t), KM_SLEEP);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   425
		ddt_get_dedup_histogram(spa, ddh);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   426
		VERIFY(nvlist_add_uint64_array(config,
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   427
		    ZPOOL_CONFIG_DDT_HISTOGRAM,
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   428
		    (uint64_t *)ddh, sizeof (*ddh) / sizeof (uint64_t)) == 0);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   429
		kmem_free(ddh, sizeof (ddt_histogram_t));
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   430
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   431
		ddo = kmem_zalloc(sizeof (ddt_object_t), KM_SLEEP);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   432
		ddt_get_dedup_object_stats(spa, ddo);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   433
		VERIFY(nvlist_add_uint64_array(config,
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   434
		    ZPOOL_CONFIG_DDT_OBJ_STATS,
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   435
		    (uint64_t *)ddo, sizeof (*ddo) / sizeof (uint64_t)) == 0);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   436
		kmem_free(ddo, sizeof (ddt_object_t));
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   437
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   438
		dds = kmem_zalloc(sizeof (ddt_stat_t), KM_SLEEP);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   439
		ddt_get_dedup_stats(spa, dds);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   440
		VERIFY(nvlist_add_uint64_array(config,
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   441
		    ZPOOL_CONFIG_DDT_STATS,
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   442
		    (uint64_t *)dds, sizeof (*dds) / sizeof (uint64_t)) == 0);
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   443
		kmem_free(dds, sizeof (ddt_stat_t));
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   444
	}
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 10921
diff changeset
   445
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   446
	if (locked)
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   447
		spa_config_exit(spa, SCL_CONFIG | SCL_STATE, FTAG);
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   448
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   449
	return (config);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   450
}
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   451
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   452
/*
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   453
 * Update all disk labels, generate a fresh config based on the current
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   454
 * in-core state, and sync the global config cache (do not sync the config
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   455
 * cache if this is a booting rootpool).
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   456
 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   457
void
10100
4a6965f6bef8 6856634 snv_117 not booting: zfs_parse_bootfs: error2
Lin Ling <Lin.Ling@Sun.COM>
parents: 10000
diff changeset
   458
spa_config_update(spa_t *spa, int what)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   459
{
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   460
	vdev_t *rvd = spa->spa_root_vdev;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   461
	uint64_t txg;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   462
	int c;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   463
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   464
	ASSERT(MUTEX_HELD(&spa_namespace_lock));
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   465
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   466
	spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   467
	txg = spa_last_synced_txg(spa) + 1;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   468
	if (what == SPA_CONFIG_UPDATE_POOL) {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   469
		vdev_config_dirty(rvd);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   470
	} else {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   471
		/*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   472
		 * If we have top-level vdevs that were added but have
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   473
		 * not yet been prepared for allocation, do that now.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   474
		 * (It's safe now because the config cache is up to date,
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   475
		 * so it will be able to translate the new DVAs.)
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   476
		 * See comments in spa_vdev_add() for full details.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   477
		 */
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   478
		for (c = 0; c < rvd->vdev_children; c++) {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   479
			vdev_t *tvd = rvd->vdev_child[c];
9816
847676ec1c5b PSARC 2008/353 zpool autoexpand property
George Wilson <George.Wilson@Sun.COM>
parents: 8662
diff changeset
   480
			if (tvd->vdev_ms_array == 0)
847676ec1c5b PSARC 2008/353 zpool autoexpand property
George Wilson <George.Wilson@Sun.COM>
parents: 8662
diff changeset
   481
				vdev_metaslab_set_size(tvd);
847676ec1c5b PSARC 2008/353 zpool autoexpand property
George Wilson <George.Wilson@Sun.COM>
parents: 8662
diff changeset
   482
			vdev_expand(tvd, txg);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   483
		}
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   484
	}
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   485
	spa_config_exit(spa, SCL_ALL, FTAG);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   486
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   487
	/*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   488
	 * Wait for the mosconfig to be regenerated and synced.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   489
	 */
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   490
	txg_wait_synced(spa->spa_dsl_pool, txg);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   491
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   492
	/*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   493
	 * Update the global config cache to reflect the new mosconfig.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   494
	 */
10100
4a6965f6bef8 6856634 snv_117 not booting: zfs_parse_bootfs: error2
Lin Ling <Lin.Ling@Sun.COM>
parents: 10000
diff changeset
   495
	if (!spa->spa_is_root)
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   496
		spa_config_sync(spa, B_FALSE, what != SPA_CONFIG_UPDATE_POOL);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   497
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   498
	if (what == SPA_CONFIG_UPDATE_POOL)
10100
4a6965f6bef8 6856634 snv_117 not booting: zfs_parse_bootfs: error2
Lin Ling <Lin.Ling@Sun.COM>
parents: 10000
diff changeset
   499
		spa_config_update(spa, SPA_CONFIG_UPDATE_VDEVS);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   500
}