usr/src/uts/common/fs/zfs/spa_config.c
author George Wilson <George.Wilson@Sun.COM>
Tue, 29 Sep 2009 07:29:35 -0700
changeset 10685 931790026ac6
parent 10594 986cb68d2347
child 10921 8aac17999e4d
permissions -rw-r--r--
6846163 ZFS continues to use faulted logzilla, bringing system to a crawl 6872547 ztest LUN expansion test fails 6873635 zdb should be able to open a pool with a failed slog 6873654 system panics when a slog device is offlined 6875236 zdb should be able to dump the spa history
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
/*
8662
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
    23
 * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 * Use is subject to license terms.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
#include <sys/spa.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
#include <sys/spa_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#include <sys/nvpair.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
#include <sys/uio.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <sys/fs/zfs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <sys/vdev_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
#include <sys/zfs_ioctl.h>
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
    34
#include <sys/utsname.h>
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
    35
#include <sys/systeminfo.h>
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
    36
#include <sys/sunddi.h>
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    37
#ifdef _KERNEL
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    38
#include <sys/kobj.h>
8662
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
    39
#include <sys/zone.h>
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    40
#endif
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    41
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
 * Pool configuration repository.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
 *
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    45
 * Pool configuration is stored as a packed nvlist on the filesystem.  By
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    46
 * 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
    47
 * (when the ZFS module is loaded).  Pools can also have the 'cachefile'
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    48
 * 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
    49
 * the control of external software.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    50
 *
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    51
 * 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
    52
 * configuration information.  When the module loads, we read this information
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    53
 * 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
    54
 * maintained independently in spa.c.  Whenever the namespace is modified, or
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
    55
 * 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
    56
 * walks through all the active pools and writes the configuration to disk.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    57
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    58
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
static uint64_t spa_config_generation = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
 * This can be overridden in userland to preserve an alternate namespace for
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    63
 * userland pools when doing testing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    64
 */
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
    65
const char *spa_config_path = ZPOOL_CACHE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
 * Called when the module is first loaded, this routine loads the configuration
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
 * file into the SPA namespace.  It does not actually open or load the pools; it
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
 * only populates the namespace.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
spa_config_load(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    75
	void *buf = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    76
	nvlist_t *nvlist, *child;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
	nvpair_t *nvpair;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    78
	spa_t *spa;
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
    79
	char *pathname;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    80
	struct _buf *file;
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
    81
	uint64_t fsize;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    82
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    84
	 * Open the configuration file.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
	 */
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
    86
	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
    87
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
	(void) snprintf(pathname, MAXPATHLEN, "%s%s",
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
    89
	    (rootdir != NULL) ? "./" : "", spa_config_path);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    90
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    91
	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
    92
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
	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
    94
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    95
	if (file == (struct _buf *)-1)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    96
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    97
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
    98
	if (kobj_get_filesize(file, &fsize) != 0)
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
    99
		goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   100
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
   101
	buf = kmem_alloc(fsize, KM_SLEEP);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   102
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   103
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   104
	 * Read the nvlist from the file.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   105
	 */
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
   106
	if (kobj_read_file(file, buf, fsize, 0) < 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   107
		goto out;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   108
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   109
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   110
	 * Unpack the nvlist.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   111
	 */
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
   112
	if (nvlist_unpack(buf, fsize, &nvlist, KM_SLEEP) != 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   113
		goto out;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   114
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   115
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   116
	 * Iterate over all elements in the nvlist, creating a new spa_t for
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   117
	 * each one with the specified configuration.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   118
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   119
	mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   120
	nvpair = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   121
	while ((nvpair = nvlist_next_nvpair(nvlist, nvpair)) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
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;
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   130
		spa = spa_add(nvpair_name(nvpair), NULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   131
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   132
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   133
		 * We blindly duplicate the configuration here.  If it's
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   134
		 * invalid, we will catch it when the pool is first opened.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   135
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   136
		VERIFY(nvlist_dup(child, &spa->spa_config, 0) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   137
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   138
	mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   139
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   140
	nvlist_free(nvlist);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   141
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   142
out:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   143
	if (buf != NULL)
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 2082
diff changeset
   144
		kmem_free(buf, fsize);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   145
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   146
	kobj_close_file(file);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   147
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   148
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   149
static void
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   150
spa_config_write(spa_config_dirent_t *dp, nvlist_t *nvl)
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   151
{
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   152
	size_t buflen;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   153
	char *buf;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   154
	vnode_t *vp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   155
	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
   156
	char *temp;
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   157
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   158
	/*
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   159
	 * 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
   160
	 */
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   161
	if (nvl == NULL) {
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   162
		(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
   163
		return;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   164
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   165
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   166
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   167
	 * Pack the configuration into a buffer.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   168
	 */
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   169
	VERIFY(nvlist_size(nvl, &buflen, NV_ENCODE_XDR) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   170
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   171
	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
   172
	temp = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   173
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   174
	VERIFY(nvlist_pack(nvl, &buf, &buflen, NV_ENCODE_XDR,
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   175
	    KM_SLEEP) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   176
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   177
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   178
	 * Write the configuration to disk.  We need to do the traditional
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   179
	 * 'write to temporary file, sync, move over original' to make sure we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   180
	 * always have a consistent view of the data.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   181
	 */
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
   182
	(void) snprintf(temp, MAXPATHLEN, "%s.tmp", dp->scd_path);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   183
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
   184
	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
   185
		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
   186
		    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
   187
		    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
   188
			(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
   189
		}
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 6643
diff changeset
   190
		(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
   191
		VN_RELE(vp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   192
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   193
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
   194
	(void) vn_remove(temp, UIO_SYSSPACE, RMFILE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   195
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   196
	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
   197
	kmem_free(temp, MAXPATHLEN);
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   198
}
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   199
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
 * 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
   202
 * namespace lock held.
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
void
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   205
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
   206
{
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   207
	spa_config_dirent_t *dp, *tdp;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   208
	nvlist_t *nvl;
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   209
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   210
	ASSERT(MUTEX_HELD(&spa_namespace_lock));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   211
10000
241a51d8720c 6848242 zdb -e no longer works as expected
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 9816
diff changeset
   212
	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
   213
		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
   214
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   215
	/*
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   216
	 * 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
   217
	 * 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
   218
	 * 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
   219
	 */
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   220
	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
   221
	    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
   222
		spa_t *spa = NULL;
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   223
		if (dp->scd_path == NULL)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   224
			continue;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   225
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   226
		/*
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   227
		 * 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
   228
		 */
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   229
		nvl = NULL;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   230
		while ((spa = spa_next(spa)) != NULL) {
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   231
			if (spa == target && removing)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   232
				continue;
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   233
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
   234
			mutex_enter(&spa->spa_props_lock);
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   235
			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
   236
			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
   237
			    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
   238
			    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
   239
				mutex_exit(&spa->spa_props_lock);
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   240
				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
   241
			}
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   242
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   243
			if (nvl == NULL)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   244
				VERIFY(nvlist_alloc(&nvl, NV_UNIQUE_NAME,
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   245
				    KM_SLEEP) == 0);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   246
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   247
			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
   248
			    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
   249
			mutex_exit(&spa->spa_props_lock);
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   250
		}
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   251
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   252
		spa_config_write(dp, nvl);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   253
		nvlist_free(nvl);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   254
	}
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   255
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   256
	/*
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   257
	 * Remove any config entries older than the current one.
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   258
	 */
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   259
	dp = list_head(&target->spa_config_list);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   260
	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
   261
		list_remove(&target->spa_config_list, tdp);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   262
		if (tdp->scd_path != NULL)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   263
			spa_strfree(tdp->scd_path);
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   264
		kmem_free(tdp, sizeof (spa_config_dirent_t));
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   265
	}
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   266
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   267
	spa_config_generation++;
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   268
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   269
	if (postsysevent)
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   270
		spa_event_notify(target, NULL, ESC_ZFS_CONFIG_SYNC);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   271
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   272
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   273
/*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   274
 * 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
   275
 * 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
   276
 * So we have to invent the ZFS_IOC_CONFIG ioctl to grab the configuration
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   277
 * information for all pool visible within the zone.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   278
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   279
nvlist_t *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   280
spa_all_configs(uint64_t *generation)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   281
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   282
	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
   283
	spa_t *spa = NULL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   284
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   285
	if (*generation == spa_config_generation)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   286
		return (NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   287
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   288
	VERIFY(nvlist_alloc(&pools, NV_UNIQUE_NAME, KM_SLEEP) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   289
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   290
	mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   291
	while ((spa = spa_next(spa)) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   292
		if (INGLOBALZONE(curproc) ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   293
		    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
   294
			mutex_enter(&spa->spa_props_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   295
			VERIFY(nvlist_add_nvlist(pools, spa_name(spa),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   296
			    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
   297
			mutex_exit(&spa->spa_props_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   298
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   299
	}
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
   300
	*generation = spa_config_generation;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   301
	mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   302
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   303
	return (pools);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   304
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   305
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   306
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   307
spa_config_set(spa_t *spa, nvlist_t *config)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   308
{
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
   309
	mutex_enter(&spa->spa_props_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   310
	if (spa->spa_config != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   311
		nvlist_free(spa->spa_config);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   312
	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
   313
	mutex_exit(&spa->spa_props_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   314
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   315
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   316
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   317
 * Generate the pool's configuration based on the current in-core state.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   318
 * We infer whether to generate a complete config or just one top-level config
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   319
 * based on whether vd is the root vdev.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   320
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   321
nvlist_t *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   322
spa_config_generate(spa_t *spa, vdev_t *vd, uint64_t txg, int getstats)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   323
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   324
	nvlist_t *config, *nvroot;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   325
	vdev_t *rvd = spa->spa_root_vdev;
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   326
	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
   327
	boolean_t locked = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   328
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
   329
	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
   330
		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
   331
		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
   332
		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
   333
	}
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   334
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
   335
	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
   336
	    (SCL_CONFIG | SCL_STATE));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   337
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   338
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   339
	 * If txg is -1, report the current value of spa->spa_config_txg.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   340
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   341
	if (txg == -1ULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   342
		txg = spa->spa_config_txg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   343
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 789
diff changeset
   344
	VERIFY(nvlist_alloc(&config, NV_UNIQUE_NAME, KM_SLEEP) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   345
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   346
	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_VERSION,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
   347
	    spa_version(spa)) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   348
	VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_POOL_NAME,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   349
	    spa_name(spa)) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   350
	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_STATE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   351
	    spa_state(spa)) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   352
	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_TXG,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   353
	    txg) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   354
	VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_GUID,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   355
	    spa_guid(spa)) == 0);
8662
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   356
#ifdef	_KERNEL
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   357
	hostid = zone_get_hostid(NULL);
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   358
#else	/* _KERNEL */
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   359
	/*
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   360
	 * 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
   361
	 * zone_get_hostid().
18153249ee93 PSARC/2008/647 Configurable Hostids for Non-Global Zones
jv227347 <Jordan.Vaughan@Sun.com>
parents: 8225
diff changeset
   362
	 */
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   363
	(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
   364
#endif	/* _KERNEL */
4178
ad95fd86760b 6553537 zfs root fails to boot from a snv_63+zfsboot-pfinstall netinstall image
lling
parents: 3975
diff changeset
   365
	if (hostid != 0) {
ad95fd86760b 6553537 zfs root fails to boot from a snv_63+zfsboot-pfinstall netinstall image
lling
parents: 3975
diff changeset
   366
		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_HOSTID,
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4178
diff changeset
   367
		    hostid) == 0);
4178
ad95fd86760b 6553537 zfs root fails to boot from a snv_63+zfsboot-pfinstall netinstall image
lling
parents: 3975
diff changeset
   368
	}
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   369
	VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_HOSTNAME,
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   370
	    utsname.nodename) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   371
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   372
	if (vd != rvd) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   373
		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_TOP_GUID,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   374
		    vd->vdev_top->vdev_guid) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   375
		VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_GUID,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   376
		    vd->vdev_guid) == 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
   377
		if (vd->vdev_isspare)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
   378
			VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_IS_SPARE,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1760
diff changeset
   379
			    1ULL) == 0);
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4178
diff changeset
   380
		if (vd->vdev_islog)
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4178
diff changeset
   381
			VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_IS_LOG,
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4178
diff changeset
   382
			    1ULL) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   383
		vd = vd->vdev_top;		/* label contains top config */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   384
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   385
10594
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   386
	/*
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   387
	 * Add the top-level config.  We even add this on pools which
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   388
	 * don't support holes in the namespace as older pools will
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   389
	 * just ignore it.
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   390
	 */
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   391
	vdev_top_config_generate(spa, config);
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10100
diff changeset
   392
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
   393
	nvroot = vdev_config_generate(spa, vd, getstats, B_FALSE, B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   394
	VERIFY(nvlist_add_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, nvroot) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   395
	nvlist_free(nvroot);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   396
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
   397
	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
   398
		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
   399
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   400
	return (config);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   401
}
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   402
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   403
/*
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   404
 * Update all disk labels, generate a fresh config based on the current
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   405
 * 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
   406
 * cache if this is a booting rootpool).
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   407
 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   408
void
10100
4a6965f6bef8 6856634 snv_117 not booting: zfs_parse_bootfs: error2
Lin Ling <Lin.Ling@Sun.COM>
parents: 10000
diff changeset
   409
spa_config_update(spa_t *spa, int what)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5450
diff changeset
   410
{
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   411
	vdev_t *rvd = spa->spa_root_vdev;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   412
	uint64_t txg;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   413
	int c;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   414
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   415
	ASSERT(MUTEX_HELD(&spa_namespace_lock));
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   416
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
   417
	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
   418
	txg = spa_last_synced_txg(spa) + 1;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   419
	if (what == SPA_CONFIG_UPDATE_POOL) {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   420
		vdev_config_dirty(rvd);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   421
	} else {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   422
		/*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   423
		 * 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
   424
		 * 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
   425
		 * (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
   426
		 * 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
   427
		 * 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
   428
		 */
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   429
		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
   430
			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
   431
			if (tvd->vdev_ms_array == 0)
847676ec1c5b PSARC 2008/353 zpool autoexpand property
George Wilson <George.Wilson@Sun.COM>
parents: 8662
diff changeset
   432
				vdev_metaslab_set_size(tvd);
847676ec1c5b PSARC 2008/353 zpool autoexpand property
George Wilson <George.Wilson@Sun.COM>
parents: 8662
diff changeset
   433
			vdev_expand(tvd, txg);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   434
		}
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   435
	}
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
   436
	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
   437
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   438
	/*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   439
	 * 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
   440
	 */
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   441
	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
   442
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   443
	/*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   444
	 * 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
   445
	 */
10100
4a6965f6bef8 6856634 snv_117 not booting: zfs_parse_bootfs: error2
Lin Ling <Lin.Ling@Sun.COM>
parents: 10000
diff changeset
   446
	if (!spa->spa_is_root)
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6423
diff changeset
   447
		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
   448
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1544
diff changeset
   449
	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
   450
		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
   451
}