6659 nvlist_free(NULL) is a no-op
[illumos-gate.git] / usr / src / lib / libzfs / common / libzfs_config.c
blobb33d86432dc5f643e95cda3ffbf25ceb6120224a
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
28 * Copyright (c) 2012 by Delphix. All rights reserved.
29 * Copyright (c) 2015 by Syneto S.R.L. All rights reserved.
30 * Copyright 2016 Nexenta Systems, Inc.
34 * The pool configuration repository is stored in /etc/zfs/zpool.cache as a
35 * single packed nvlist. While it would be nice to just read in this
36 * file from userland, this wouldn't work from a local zone. So we have to have
37 * a zpool ioctl to return the complete configuration for all pools. In the
38 * global zone, this will be identical to reading the file and unpacking it in
39 * userland.
42 #include <errno.h>
43 #include <sys/stat.h>
44 #include <fcntl.h>
45 #include <stddef.h>
46 #include <string.h>
47 #include <unistd.h>
48 #include <libintl.h>
49 #include <libuutil.h>
51 #include "libzfs_impl.h"
53 typedef struct config_node {
54 char *cn_name;
55 nvlist_t *cn_config;
56 uu_avl_node_t cn_avl;
57 } config_node_t;
59 /* ARGSUSED */
60 static int
61 config_node_compare(const void *a, const void *b, void *unused)
63 int ret;
65 const config_node_t *ca = (config_node_t *)a;
66 const config_node_t *cb = (config_node_t *)b;
68 ret = strcmp(ca->cn_name, cb->cn_name);
70 if (ret < 0)
71 return (-1);
72 else if (ret > 0)
73 return (1);
74 else
75 return (0);
78 void
79 namespace_clear(libzfs_handle_t *hdl)
81 if (hdl->libzfs_ns_avl) {
82 config_node_t *cn;
83 void *cookie = NULL;
85 while ((cn = uu_avl_teardown(hdl->libzfs_ns_avl,
86 &cookie)) != NULL) {
87 nvlist_free(cn->cn_config);
88 free(cn->cn_name);
89 free(cn);
92 uu_avl_destroy(hdl->libzfs_ns_avl);
93 hdl->libzfs_ns_avl = NULL;
96 if (hdl->libzfs_ns_avlpool) {
97 uu_avl_pool_destroy(hdl->libzfs_ns_avlpool);
98 hdl->libzfs_ns_avlpool = NULL;
103 * Loads the pool namespace, or re-loads it if the cache has changed.
105 static int
106 namespace_reload(libzfs_handle_t *hdl)
108 nvlist_t *config;
109 config_node_t *cn;
110 nvpair_t *elem;
111 zfs_cmd_t zc = { 0 };
112 void *cookie;
114 if (hdl->libzfs_ns_gen == 0) {
116 * This is the first time we've accessed the configuration
117 * cache. Initialize the AVL tree and then fall through to the
118 * common code.
120 if ((hdl->libzfs_ns_avlpool = uu_avl_pool_create("config_pool",
121 sizeof (config_node_t),
122 offsetof(config_node_t, cn_avl),
123 config_node_compare, UU_DEFAULT)) == NULL)
124 return (no_memory(hdl));
126 if ((hdl->libzfs_ns_avl = uu_avl_create(hdl->libzfs_ns_avlpool,
127 NULL, UU_DEFAULT)) == NULL)
128 return (no_memory(hdl));
131 if (zcmd_alloc_dst_nvlist(hdl, &zc, 0) != 0)
132 return (-1);
134 for (;;) {
135 zc.zc_cookie = hdl->libzfs_ns_gen;
136 if (ioctl(hdl->libzfs_fd, ZFS_IOC_POOL_CONFIGS, &zc) != 0) {
137 switch (errno) {
138 case EEXIST:
140 * The namespace hasn't changed.
142 zcmd_free_nvlists(&zc);
143 return (0);
145 case ENOMEM:
146 if (zcmd_expand_dst_nvlist(hdl, &zc) != 0) {
147 zcmd_free_nvlists(&zc);
148 return (-1);
150 break;
152 default:
153 zcmd_free_nvlists(&zc);
154 return (zfs_standard_error(hdl, errno,
155 dgettext(TEXT_DOMAIN, "failed to read "
156 "pool configuration")));
158 } else {
159 hdl->libzfs_ns_gen = zc.zc_cookie;
160 break;
164 if (zcmd_read_dst_nvlist(hdl, &zc, &config) != 0) {
165 zcmd_free_nvlists(&zc);
166 return (-1);
169 zcmd_free_nvlists(&zc);
172 * Clear out any existing configuration information.
174 cookie = NULL;
175 while ((cn = uu_avl_teardown(hdl->libzfs_ns_avl, &cookie)) != NULL) {
176 nvlist_free(cn->cn_config);
177 free(cn->cn_name);
178 free(cn);
181 elem = NULL;
182 while ((elem = nvlist_next_nvpair(config, elem)) != NULL) {
183 nvlist_t *child;
184 uu_avl_index_t where;
186 if ((cn = zfs_alloc(hdl, sizeof (config_node_t))) == NULL) {
187 nvlist_free(config);
188 return (-1);
191 if ((cn->cn_name = zfs_strdup(hdl,
192 nvpair_name(elem))) == NULL) {
193 free(cn);
194 nvlist_free(config);
195 return (-1);
198 verify(nvpair_value_nvlist(elem, &child) == 0);
199 if (nvlist_dup(child, &cn->cn_config, 0) != 0) {
200 free(cn->cn_name);
201 free(cn);
202 nvlist_free(config);
203 return (no_memory(hdl));
205 verify(uu_avl_find(hdl->libzfs_ns_avl, cn, NULL, &where)
206 == NULL);
208 uu_avl_insert(hdl->libzfs_ns_avl, cn, where);
211 nvlist_free(config);
212 return (0);
216 * Retrieve the configuration for the given pool. The configuration is a nvlist
217 * describing the vdevs, as well as the statistics associated with each one.
219 nvlist_t *
220 zpool_get_config(zpool_handle_t *zhp, nvlist_t **oldconfig)
222 if (oldconfig)
223 *oldconfig = zhp->zpool_old_config;
224 return (zhp->zpool_config);
228 * Retrieves a list of enabled features and their refcounts and caches it in
229 * the pool handle.
231 nvlist_t *
232 zpool_get_features(zpool_handle_t *zhp)
234 nvlist_t *config, *features;
236 config = zpool_get_config(zhp, NULL);
238 if (config == NULL || !nvlist_exists(config,
239 ZPOOL_CONFIG_FEATURE_STATS)) {
240 int error;
241 boolean_t missing = B_FALSE;
243 error = zpool_refresh_stats(zhp, &missing);
245 if (error != 0 || missing)
246 return (NULL);
248 config = zpool_get_config(zhp, NULL);
251 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_FEATURE_STATS,
252 &features) != 0)
253 return (NULL);
255 return (features);
259 * Refresh the vdev statistics associated with the given pool. This is used in
260 * iostat to show configuration changes and determine the delta from the last
261 * time the function was called. This function can fail, in case the pool has
262 * been destroyed.
265 zpool_refresh_stats(zpool_handle_t *zhp, boolean_t *missing)
267 zfs_cmd_t zc = { 0 };
268 int error;
269 nvlist_t *config;
270 libzfs_handle_t *hdl = zhp->zpool_hdl;
272 *missing = B_FALSE;
273 (void) strcpy(zc.zc_name, zhp->zpool_name);
275 if (zhp->zpool_config_size == 0)
276 zhp->zpool_config_size = 1 << 16;
278 if (zcmd_alloc_dst_nvlist(hdl, &zc, zhp->zpool_config_size) != 0)
279 return (-1);
281 for (;;) {
282 if (ioctl(zhp->zpool_hdl->libzfs_fd, ZFS_IOC_POOL_STATS,
283 &zc) == 0) {
285 * The real error is returned in the zc_cookie field.
287 error = zc.zc_cookie;
288 break;
291 if (errno == ENOMEM) {
292 if (zcmd_expand_dst_nvlist(hdl, &zc) != 0) {
293 zcmd_free_nvlists(&zc);
294 return (-1);
296 } else {
297 zcmd_free_nvlists(&zc);
298 if (errno == ENOENT || errno == EINVAL)
299 *missing = B_TRUE;
300 zhp->zpool_state = POOL_STATE_UNAVAIL;
301 return (0);
305 if (zcmd_read_dst_nvlist(hdl, &zc, &config) != 0) {
306 zcmd_free_nvlists(&zc);
307 return (-1);
310 zcmd_free_nvlists(&zc);
312 zhp->zpool_config_size = zc.zc_nvlist_dst_size;
314 if (zhp->zpool_config != NULL) {
315 uint64_t oldtxg, newtxg;
317 verify(nvlist_lookup_uint64(zhp->zpool_config,
318 ZPOOL_CONFIG_POOL_TXG, &oldtxg) == 0);
319 verify(nvlist_lookup_uint64(config,
320 ZPOOL_CONFIG_POOL_TXG, &newtxg) == 0);
322 nvlist_free(zhp->zpool_old_config);
324 if (oldtxg != newtxg) {
325 nvlist_free(zhp->zpool_config);
326 zhp->zpool_old_config = NULL;
327 } else {
328 zhp->zpool_old_config = zhp->zpool_config;
332 zhp->zpool_config = config;
333 if (error)
334 zhp->zpool_state = POOL_STATE_UNAVAIL;
335 else
336 zhp->zpool_state = POOL_STATE_ACTIVE;
338 return (0);
342 * The following environment variables are undocumented
343 * and should be used for testing purposes only:
345 * __ZFS_POOL_EXCLUDE - don't iterate over the pools it lists
346 * __ZFS_POOL_RESTRICT - iterate only over the pools it lists
348 * This function returns B_TRUE if the pool should be skipped
349 * during iteration.
351 boolean_t
352 zpool_skip_pool(const char *poolname)
354 static boolean_t initialized = B_FALSE;
355 static const char *exclude = NULL;
356 static const char *restricted = NULL;
358 const char *cur, *end;
359 int len;
360 int namelen = strlen(poolname);
362 if (!initialized) {
363 initialized = B_TRUE;
364 exclude = getenv("__ZFS_POOL_EXCLUDE");
365 restricted = getenv("__ZFS_POOL_RESTRICT");
368 if (exclude != NULL) {
369 cur = exclude;
370 do {
371 end = strchr(cur, ' ');
372 len = (NULL == end) ? strlen(cur) : (end - cur);
373 if (len == namelen && 0 == strncmp(cur, poolname, len))
374 return (B_TRUE);
375 cur += (len + 1);
376 } while (NULL != end);
379 if (NULL == restricted)
380 return (B_FALSE);
382 cur = restricted;
383 do {
384 end = strchr(cur, ' ');
385 len = (NULL == end) ? strlen(cur) : (end - cur);
387 if (len == namelen && 0 == strncmp(cur, poolname, len)) {
388 return (B_FALSE);
391 cur += (len + 1);
392 } while (NULL != end);
394 return (B_TRUE);
398 * Iterate over all pools in the system.
401 zpool_iter(libzfs_handle_t *hdl, zpool_iter_f func, void *data)
403 config_node_t *cn;
404 zpool_handle_t *zhp;
405 int ret;
408 * If someone makes a recursive call to zpool_iter(), we want to avoid
409 * refreshing the namespace because that will invalidate the parent
410 * context. We allow recursive calls, but simply re-use the same
411 * namespace AVL tree.
413 if (!hdl->libzfs_pool_iter && namespace_reload(hdl) != 0)
414 return (-1);
416 hdl->libzfs_pool_iter++;
417 for (cn = uu_avl_first(hdl->libzfs_ns_avl); cn != NULL;
418 cn = uu_avl_next(hdl->libzfs_ns_avl, cn)) {
420 if (zpool_skip_pool(cn->cn_name))
421 continue;
423 if (zpool_open_silent(hdl, cn->cn_name, &zhp) != 0) {
424 hdl->libzfs_pool_iter--;
425 return (-1);
428 if (zhp == NULL)
429 continue;
431 if ((ret = func(zhp, data)) != 0) {
432 hdl->libzfs_pool_iter--;
433 return (ret);
436 hdl->libzfs_pool_iter--;
438 return (0);
442 * Iterate over root datasets, calling the given function for each. The zfs
443 * handle passed each time must be explicitly closed by the callback.
446 zfs_iter_root(libzfs_handle_t *hdl, zfs_iter_f func, void *data)
448 config_node_t *cn;
449 zfs_handle_t *zhp;
450 int ret;
452 if (namespace_reload(hdl) != 0)
453 return (-1);
455 for (cn = uu_avl_first(hdl->libzfs_ns_avl); cn != NULL;
456 cn = uu_avl_next(hdl->libzfs_ns_avl, cn)) {
458 if (zpool_skip_pool(cn->cn_name))
459 continue;
461 if ((zhp = make_dataset_handle(hdl, cn->cn_name)) == NULL)
462 continue;
464 if ((ret = func(zhp, data)) != 0)
465 return (ret);
468 return (0);