8322 nl: misleading-indentation
[unleashed.git] / usr / src / cmd / zpool / zpool_iter.c
blob6e77f85fa3d00a777e66ff3401a031b618d211d3
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
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 * Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>.
29 #include <libintl.h>
30 #include <libuutil.h>
31 #include <stddef.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <strings.h>
36 #include <libzfs.h>
38 #include "zpool_util.h"
41 * Private interface for iterating over pools specified on the command line.
42 * Most consumers will call for_each_pool, but in order to support iostat, we
43 * allow fined grained control through the zpool_list_t interface.
46 typedef struct zpool_node {
47 zpool_handle_t *zn_handle;
48 uu_avl_node_t zn_avlnode;
49 int zn_mark;
50 } zpool_node_t;
52 struct zpool_list {
53 boolean_t zl_findall;
54 uu_avl_t *zl_avl;
55 uu_avl_pool_t *zl_pool;
56 zprop_list_t **zl_proplist;
59 /* ARGSUSED */
60 static int
61 zpool_compare(const void *larg, const void *rarg, void *unused)
63 zpool_handle_t *l = ((zpool_node_t *)larg)->zn_handle;
64 zpool_handle_t *r = ((zpool_node_t *)rarg)->zn_handle;
65 const char *lname = zpool_get_name(l);
66 const char *rname = zpool_get_name(r);
68 return (strcmp(lname, rname));
72 * Callback function for pool_list_get(). Adds the given pool to the AVL tree
73 * of known pools.
75 static int
76 add_pool(zpool_handle_t *zhp, void *data)
78 zpool_list_t *zlp = data;
79 zpool_node_t *node = safe_malloc(sizeof (zpool_node_t));
80 uu_avl_index_t idx;
82 node->zn_handle = zhp;
83 uu_avl_node_init(node, &node->zn_avlnode, zlp->zl_pool);
84 if (uu_avl_find(zlp->zl_avl, node, NULL, &idx) == NULL) {
85 if (zlp->zl_proplist &&
86 zpool_expand_proplist(zhp, zlp->zl_proplist) != 0) {
87 zpool_close(zhp);
88 free(node);
89 return (-1);
91 uu_avl_insert(zlp->zl_avl, node, idx);
92 } else {
93 zpool_close(zhp);
94 free(node);
95 return (-1);
98 return (0);
102 * Create a list of pools based on the given arguments. If we're given no
103 * arguments, then iterate over all pools in the system and add them to the AVL
104 * tree. Otherwise, add only those pool explicitly specified on the command
105 * line.
107 zpool_list_t *
108 pool_list_get(int argc, char **argv, zprop_list_t **proplist, int *err)
110 zpool_list_t *zlp;
112 zlp = safe_malloc(sizeof (zpool_list_t));
114 zlp->zl_pool = uu_avl_pool_create("zfs_pool", sizeof (zpool_node_t),
115 offsetof(zpool_node_t, zn_avlnode), zpool_compare, UU_DEFAULT);
117 if (zlp->zl_pool == NULL)
118 zpool_no_memory();
120 if ((zlp->zl_avl = uu_avl_create(zlp->zl_pool, NULL,
121 UU_DEFAULT)) == NULL)
122 zpool_no_memory();
124 zlp->zl_proplist = proplist;
126 if (argc == 0) {
127 (void) zpool_iter(g_zfs, add_pool, zlp);
128 zlp->zl_findall = B_TRUE;
129 } else {
130 int i;
132 for (i = 0; i < argc; i++) {
133 zpool_handle_t *zhp;
135 if ((zhp = zpool_open_canfail(g_zfs, argv[i])) !=
136 NULL) {
137 if (add_pool(zhp, zlp) != 0)
138 *err = B_TRUE;
139 } else {
140 *err = B_TRUE;
145 return (zlp);
149 * Search for any new pools, adding them to the list. We only add pools when no
150 * options were given on the command line. Otherwise, we keep the list fixed as
151 * those that were explicitly specified.
153 void
154 pool_list_update(zpool_list_t *zlp)
156 if (zlp->zl_findall)
157 (void) zpool_iter(g_zfs, add_pool, zlp);
161 * Iterate over all pools in the list, executing the callback for each
164 pool_list_iter(zpool_list_t *zlp, int unavail, zpool_iter_f func,
165 void *data)
167 zpool_node_t *node, *next_node;
168 int ret = 0;
170 for (node = uu_avl_first(zlp->zl_avl); node != NULL; node = next_node) {
171 next_node = uu_avl_next(zlp->zl_avl, node);
172 if (zpool_get_state(node->zn_handle) != POOL_STATE_UNAVAIL ||
173 unavail)
174 ret |= func(node->zn_handle, data);
177 return (ret);
181 * Remove the given pool from the list. When running iostat, we want to remove
182 * those pools that no longer exist.
184 void
185 pool_list_remove(zpool_list_t *zlp, zpool_handle_t *zhp)
187 zpool_node_t search, *node;
189 search.zn_handle = zhp;
190 if ((node = uu_avl_find(zlp->zl_avl, &search, NULL, NULL)) != NULL) {
191 uu_avl_remove(zlp->zl_avl, node);
192 zpool_close(node->zn_handle);
193 free(node);
198 * Free all the handles associated with this list.
200 void
201 pool_list_free(zpool_list_t *zlp)
203 uu_avl_walk_t *walk;
204 zpool_node_t *node;
206 if ((walk = uu_avl_walk_start(zlp->zl_avl, UU_WALK_ROBUST)) == NULL) {
207 (void) fprintf(stderr,
208 gettext("internal error: out of memory"));
209 exit(1);
212 while ((node = uu_avl_walk_next(walk)) != NULL) {
213 uu_avl_remove(zlp->zl_avl, node);
214 zpool_close(node->zn_handle);
215 free(node);
218 uu_avl_walk_end(walk);
219 uu_avl_destroy(zlp->zl_avl);
220 uu_avl_pool_destroy(zlp->zl_pool);
222 free(zlp);
226 * Returns the number of elements in the pool list.
229 pool_list_count(zpool_list_t *zlp)
231 return (uu_avl_numnodes(zlp->zl_avl));
235 * High level function which iterates over all pools given on the command line,
236 * using the pool_list_* interfaces.
239 for_each_pool(int argc, char **argv, boolean_t unavail,
240 zprop_list_t **proplist, zpool_iter_f func, void *data)
242 zpool_list_t *list;
243 int ret = 0;
245 if ((list = pool_list_get(argc, argv, proplist, &ret)) == NULL)
246 return (1);
248 if (pool_list_iter(list, unavail, func, data) != 0)
249 ret = 1;
251 pool_list_free(list);
253 return (ret);