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]
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
27 * Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>.
36 #include <thread_pool.h>
40 #include <sys/zfs_context.h>
43 #include "zpool_util.h"
46 * Private interface for iterating over pools specified on the command line.
47 * Most consumers will call for_each_pool, but in order to support iostat, we
48 * allow fined grained control through the zpool_list_t interface.
51 typedef struct zpool_node
{
52 zpool_handle_t
*zn_handle
;
53 uu_avl_node_t zn_avlnode
;
61 uu_avl_pool_t
*zl_pool
;
62 zprop_list_t
**zl_proplist
;
67 zpool_compare(const void *larg
, const void *rarg
, void *unused
)
69 zpool_handle_t
*l
= ((zpool_node_t
*)larg
)->zn_handle
;
70 zpool_handle_t
*r
= ((zpool_node_t
*)rarg
)->zn_handle
;
71 const char *lname
= zpool_get_name(l
);
72 const char *rname
= zpool_get_name(r
);
74 return (strcmp(lname
, rname
));
78 * Callback function for pool_list_get(). Adds the given pool to the AVL tree
82 add_pool(zpool_handle_t
*zhp
, void *data
)
84 zpool_list_t
*zlp
= data
;
85 zpool_node_t
*node
= safe_malloc(sizeof (zpool_node_t
));
88 node
->zn_handle
= zhp
;
89 uu_avl_node_init(node
, &node
->zn_avlnode
, zlp
->zl_pool
);
90 if (uu_avl_find(zlp
->zl_avl
, node
, NULL
, &idx
) == NULL
) {
91 if (zlp
->zl_proplist
&&
92 zpool_expand_proplist(zhp
, zlp
->zl_proplist
,
99 uu_avl_insert(zlp
->zl_avl
, node
, idx
);
110 * Create a list of pools based on the given arguments. If we're given no
111 * arguments, then iterate over all pools in the system and add them to the AVL
112 * tree. Otherwise, add only those pool explicitly specified on the command
116 pool_list_get(int argc
, char **argv
, zprop_list_t
**proplist
,
117 boolean_t literal
, int *err
)
121 zlp
= safe_malloc(sizeof (zpool_list_t
));
123 zlp
->zl_pool
= uu_avl_pool_create("zfs_pool", sizeof (zpool_node_t
),
124 offsetof(zpool_node_t
, zn_avlnode
), zpool_compare
, UU_DEFAULT
);
126 if (zlp
->zl_pool
== NULL
)
129 if ((zlp
->zl_avl
= uu_avl_create(zlp
->zl_pool
, NULL
,
130 UU_DEFAULT
)) == NULL
)
133 zlp
->zl_proplist
= proplist
;
135 zlp
->zl_literal
= literal
;
138 (void) zpool_iter(g_zfs
, add_pool
, zlp
);
139 zlp
->zl_findall
= B_TRUE
;
143 for (i
= 0; i
< argc
; i
++) {
146 if ((zhp
= zpool_open_canfail(g_zfs
, argv
[i
])) !=
148 if (add_pool(zhp
, zlp
) != 0)
160 * Search for any new pools, adding them to the list. We only add pools when no
161 * options were given on the command line. Otherwise, we keep the list fixed as
162 * those that were explicitly specified.
165 pool_list_update(zpool_list_t
*zlp
)
168 (void) zpool_iter(g_zfs
, add_pool
, zlp
);
172 * Iterate over all pools in the list, executing the callback for each
175 pool_list_iter(zpool_list_t
*zlp
, int unavail
, zpool_iter_f func
,
178 zpool_node_t
*node
, *next_node
;
181 for (node
= uu_avl_first(zlp
->zl_avl
); node
!= NULL
; node
= next_node
) {
182 next_node
= uu_avl_next(zlp
->zl_avl
, node
);
183 if (zpool_get_state(node
->zn_handle
) != POOL_STATE_UNAVAIL
||
185 ret
|= func(node
->zn_handle
, data
);
192 * Remove the given pool from the list. When running iostat, we want to remove
193 * those pools that no longer exist.
196 pool_list_remove(zpool_list_t
*zlp
, zpool_handle_t
*zhp
)
198 zpool_node_t search
, *node
;
200 search
.zn_handle
= zhp
;
201 if ((node
= uu_avl_find(zlp
->zl_avl
, &search
, NULL
, NULL
)) != NULL
) {
202 uu_avl_remove(zlp
->zl_avl
, node
);
203 zpool_close(node
->zn_handle
);
209 * Free all the handles associated with this list.
212 pool_list_free(zpool_list_t
*zlp
)
217 if ((walk
= uu_avl_walk_start(zlp
->zl_avl
, UU_WALK_ROBUST
)) == NULL
) {
218 (void) fprintf(stderr
,
219 gettext("internal error: out of memory"));
223 while ((node
= uu_avl_walk_next(walk
)) != NULL
) {
224 uu_avl_remove(zlp
->zl_avl
, node
);
225 zpool_close(node
->zn_handle
);
229 uu_avl_walk_end(walk
);
230 uu_avl_destroy(zlp
->zl_avl
);
231 uu_avl_pool_destroy(zlp
->zl_pool
);
237 * Returns the number of elements in the pool list.
240 pool_list_count(zpool_list_t
*zlp
)
242 return (uu_avl_numnodes(zlp
->zl_avl
));
246 * High level function which iterates over all pools given on the command line,
247 * using the pool_list_* interfaces.
250 for_each_pool(int argc
, char **argv
, boolean_t unavail
,
251 zprop_list_t
**proplist
, boolean_t literal
, zpool_iter_f func
, void *data
)
256 if ((list
= pool_list_get(argc
, argv
, proplist
, literal
, &ret
)) == NULL
)
259 if (pool_list_iter(list
, unavail
, func
, data
) != 0)
262 pool_list_free(list
);
268 for_each_vdev_cb(zpool_handle_t
*zhp
, nvlist_t
*nv
, pool_vdev_iter_f func
,
277 const char *list
[] = {
279 ZPOOL_CONFIG_L2CACHE
,
280 ZPOOL_CONFIG_CHILDREN
283 for (i
= 0; i
< ARRAY_SIZE(list
); i
++) {
284 if (nvlist_lookup_nvlist_array(nv
, list
[i
], &child
,
286 for (c
= 0; c
< children
; c
++) {
289 (void) nvlist_lookup_uint64(child
[c
],
290 ZPOOL_CONFIG_IS_HOLE
, &ishole
);
295 ret
|= for_each_vdev_cb(zhp
, child
[c
], func
,
301 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_TYPE
, &type
) != 0)
304 /* Don't run our function on root vdevs */
305 if (strcmp(type
, VDEV_TYPE_ROOT
) != 0) {
306 ret
|= func(zhp
, nv
, data
);
313 * This is the equivalent of for_each_pool() for vdevs. It iterates thorough
314 * all vdevs in the pool, ignoring root vdevs and holes, calling func() on
318 * @func: Function to call on each vdev
319 * @data: Custom data to pass to the function
322 for_each_vdev(zpool_handle_t
*zhp
, pool_vdev_iter_f func
, void *data
)
324 nvlist_t
*config
, *nvroot
= NULL
;
326 if ((config
= zpool_get_config(zhp
, NULL
)) != NULL
) {
327 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
330 return (for_each_vdev_cb(zhp
, nvroot
, func
, data
));
334 * Process the vcdl->vdev_cmd_data[] array to figure out all the unique column
335 * names and their widths. When this function is done, vcdl->uniq_cols,
336 * vcdl->uniq_cols_cnt, and vcdl->uniq_cols_width will be filled in.
339 process_unique_cmd_columns(vdev_cmd_data_list_t
*vcdl
)
341 char **uniq_cols
= NULL
, **tmp
= NULL
;
342 int *uniq_cols_width
;
343 vdev_cmd_data_t
*data
;
348 for (int i
= 0; i
< vcdl
->count
; i
++) {
349 data
= &vcdl
->data
[i
];
350 /* For each column the vdev reported */
351 for (int j
= 0; j
< data
->cols_cnt
; j
++) {
352 /* Is this column in our list of unique column names? */
353 for (k
= 0; k
< cnt
; k
++) {
354 if (strcmp(data
->cols
[j
], uniq_cols
[k
]) == 0)
355 break; /* yes it is */
358 /* No entry for column, add to list */
359 tmp
= realloc(uniq_cols
, sizeof (*uniq_cols
) *
362 break; /* Nothing we can do... */
364 uniq_cols
[cnt
] = data
->cols
[j
];
371 * We now have a list of all the unique column names. Figure out the
372 * max width of each column by looking at the column name and all its
375 uniq_cols_width
= safe_malloc(sizeof (*uniq_cols_width
) * cnt
);
376 for (int i
= 0; i
< cnt
; i
++) {
377 /* Start off with the column title's width */
378 uniq_cols_width
[i
] = strlen(uniq_cols
[i
]);
380 for (int j
= 0; j
< vcdl
->count
; j
++) {
381 /* For each of the vdev's values in a column */
382 data
= &vcdl
->data
[j
];
383 for (k
= 0; k
< data
->cols_cnt
; k
++) {
384 /* Does this vdev have a value for this col? */
385 if (strcmp(data
->cols
[k
], uniq_cols
[i
]) == 0) {
386 /* Is the value width larger? */
388 MAX(uniq_cols_width
[i
],
389 strlen(data
->lines
[k
]));
395 vcdl
->uniq_cols
= uniq_cols
;
396 vcdl
->uniq_cols_cnt
= cnt
;
397 vcdl
->uniq_cols_width
= uniq_cols_width
;
402 * Process a line of command output
404 * When running 'zpool iostat|status -c' the lines of output can either be
413 * Process the column_name (if any) and value.
415 * Returns 0 if line was processed, and there are more lines can still be
418 * Returns 1 if this was the last line to process, or error.
421 vdev_process_cmd_output(vdev_cmd_data_t
*data
, char *line
)
431 equals
= strchr(line
, '=');
432 if (equals
!= NULL
) {
434 * We have a 'column=value' type line. Split it into the
435 * column and value strings by turning the '=' into a '\0'.
444 /* Do we already have a column by this name? If so, skip it. */
446 for (int i
= 0; i
< data
->cols_cnt
; i
++) {
447 if (strcmp(col
, data
->cols
[i
]) == 0)
448 return (0); /* Duplicate, skip */
453 tmp
= realloc(data
->lines
,
454 (data
->lines_cnt
+ 1) * sizeof (*data
->lines
));
459 data
->lines
[data
->lines_cnt
] = strdup(val
);
464 tmp
= realloc(data
->cols
,
465 (data
->cols_cnt
+ 1) * sizeof (*data
->cols
));
470 data
->cols
[data
->cols_cnt
] = strdup(col
);
474 if (val
!= NULL
&& col
== NULL
)
481 * Run the cmd and store results in *data.
484 vdev_run_cmd(vdev_cmd_data_t
*data
, char *cmd
)
487 char *argv
[2] = {cmd
, 0};
488 char *env
[5] = {"PATH=/bin:/sbin:/usr/bin:/usr/sbin", NULL
, NULL
, NULL
,
494 /* Setup our custom environment variables */
495 rc
= asprintf(&env
[1], "VDEV_PATH=%s",
496 data
->path
? data
->path
: "");
500 rc
= asprintf(&env
[2], "VDEV_UPATH=%s",
501 data
->upath
? data
->upath
: "");
505 rc
= asprintf(&env
[3], "VDEV_ENC_SYSFS_PATH=%s",
506 data
->vdev_enc_sysfs_path
?
507 data
->vdev_enc_sysfs_path
: "");
511 /* Run the command */
512 rc
= libzfs_run_process_get_stdout_nopath(cmd
, argv
, env
, &lines
,
517 /* Process the output we got */
518 for (i
= 0; i
< lines_cnt
; i
++)
519 if (vdev_process_cmd_output(data
, lines
[i
]) != 0)
524 libzfs_free_str_array(lines
, lines_cnt
);
526 /* Start with i = 1 since env[0] was statically allocated */
527 for (i
= 1; i
< ARRAY_SIZE(env
); i
++)
533 * Generate the search path for zpool iostat/status -c scripts.
534 * The string returned must be freed.
537 zpool_get_cmd_search_path(void)
542 env
= getenv("ZPOOL_SCRIPTS_PATH");
544 return (strdup(env
));
546 env
= getenv("HOME");
548 if (asprintf(&sp
, "%s/.zpool.d:%s",
549 env
, ZPOOL_SCRIPTS_DIR
) != -1) {
554 if (asprintf(&sp
, "%s", ZPOOL_SCRIPTS_DIR
) != -1)
560 /* Thread function run for each vdev */
562 vdev_run_cmd_thread(void *cb_cmd_data
)
564 vdev_cmd_data_t
*data
= cb_cmd_data
;
565 char *cmd
= NULL
, *cmddup
, *cmdrest
;
567 cmddup
= strdup(data
->cmd
);
572 while ((cmd
= strtok_r(cmdrest
, ",", &cmdrest
))) {
573 char *dir
= NULL
, *sp
, *sprest
;
574 char fullpath
[MAXPATHLEN
];
576 if (strchr(cmd
, '/') != NULL
)
579 sp
= zpool_get_cmd_search_path();
584 while ((dir
= strtok_r(sprest
, ":", &sprest
))) {
585 if (snprintf(fullpath
, sizeof (fullpath
),
586 "%s/%s", dir
, cmd
) == -1)
589 if (access(fullpath
, X_OK
) == 0) {
590 vdev_run_cmd(data
, fullpath
);
599 /* For each vdev in the pool run a command */
601 for_each_vdev_run_cb(zpool_handle_t
*zhp
, nvlist_t
*nv
, void *cb_vcdl
)
603 vdev_cmd_data_list_t
*vcdl
= cb_vcdl
;
604 vdev_cmd_data_t
*data
;
607 char *vdev_enc_sysfs_path
= NULL
;
610 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_PATH
, &path
) != 0)
613 nvlist_lookup_string(nv
, ZPOOL_CONFIG_VDEV_ENC_SYSFS_PATH
,
614 &vdev_enc_sysfs_path
);
616 /* Spares show more than once if they're in use, so skip if exists */
617 for (i
= 0; i
< vcdl
->count
; i
++) {
618 if ((strcmp(vcdl
->data
[i
].path
, path
) == 0) &&
619 (strcmp(vcdl
->data
[i
].pool
, zpool_get_name(zhp
)) == 0)) {
620 /* vdev already exists, skip it */
625 /* Check for selected vdevs here, if any */
626 for (i
= 0; i
< vcdl
->vdev_names_count
; i
++) {
627 vname
= zpool_vdev_name(g_zfs
, zhp
, nv
, vcdl
->cb_name_flags
);
628 if (strcmp(vcdl
->vdev_names
[i
], vname
) == 0) {
636 /* If we selected vdevs, and this isn't one of them, then bail out */
637 if (!match
&& vcdl
->vdev_names_count
)
641 * Resize our array and add in the new element.
643 if (!(vcdl
->data
= realloc(vcdl
->data
,
644 sizeof (*vcdl
->data
) * (vcdl
->count
+ 1))))
645 return (ENOMEM
); /* couldn't realloc */
647 data
= &vcdl
->data
[vcdl
->count
];
649 data
->pool
= strdup(zpool_get_name(zhp
));
650 data
->path
= strdup(path
);
651 data
->upath
= zfs_get_underlying_path(path
);
652 data
->cmd
= vcdl
->cmd
;
653 data
->lines
= data
->cols
= NULL
;
654 data
->lines_cnt
= data
->cols_cnt
= 0;
655 if (vdev_enc_sysfs_path
)
656 data
->vdev_enc_sysfs_path
= strdup(vdev_enc_sysfs_path
);
658 data
->vdev_enc_sysfs_path
= NULL
;
665 /* Get the names and count of the vdevs */
667 all_pools_for_each_vdev_gather_cb(zpool_handle_t
*zhp
, void *cb_vcdl
)
669 return (for_each_vdev(zhp
, for_each_vdev_run_cb
, cb_vcdl
));
673 * Now that vcdl is populated with our complete list of vdevs, spawn
677 all_pools_for_each_vdev_run_vcdl(vdev_cmd_data_list_t
*vcdl
)
681 t
= tpool_create(1, 5 * sysconf(_SC_NPROCESSORS_ONLN
), 0, NULL
);
685 /* Spawn off the command for each vdev */
686 for (int i
= 0; i
< vcdl
->count
; i
++) {
687 (void) tpool_dispatch(t
, vdev_run_cmd_thread
,
688 (void *) &vcdl
->data
[i
]);
691 /* Wait for threads to finish */
697 * Run command 'cmd' on all vdevs in all pools in argv. Saves the first line of
698 * output from the command in vcdk->data[].line for all vdevs. If you want
699 * to run the command on only certain vdevs, fill in g_zfs, vdev_names,
700 * vdev_names_count, and cb_name_flags. Otherwise leave them as zero.
702 * Returns a vdev_cmd_data_list_t that must be freed with
703 * free_vdev_cmd_data_list();
705 vdev_cmd_data_list_t
*
706 all_pools_for_each_vdev_run(int argc
, char **argv
, char *cmd
,
707 libzfs_handle_t
*g_zfs
, char **vdev_names
, int vdev_names_count
,
710 vdev_cmd_data_list_t
*vcdl
;
711 vcdl
= safe_malloc(sizeof (vdev_cmd_data_list_t
));
714 vcdl
->vdev_names
= vdev_names
;
715 vcdl
->vdev_names_count
= vdev_names_count
;
716 vcdl
->cb_name_flags
= cb_name_flags
;
719 /* Gather our list of all vdevs in all pools */
720 for_each_pool(argc
, argv
, B_TRUE
, NULL
, B_FALSE
,
721 all_pools_for_each_vdev_gather_cb
, vcdl
);
723 /* Run command on all vdevs in all pools */
724 all_pools_for_each_vdev_run_vcdl(vcdl
);
727 * vcdl->data[] now contains all the column names and values for each
728 * vdev. We need to process that into a master list of unique column
729 * names, and figure out the width of each column.
731 process_unique_cmd_columns(vcdl
);
737 * Free the vdev_cmd_data_list_t created by all_pools_for_each_vdev_run()
740 free_vdev_cmd_data_list(vdev_cmd_data_list_t
*vcdl
)
742 free(vcdl
->uniq_cols
);
743 free(vcdl
->uniq_cols_width
);
745 for (int i
= 0; i
< vcdl
->count
; i
++) {
746 free(vcdl
->data
[i
].path
);
747 free(vcdl
->data
[i
].pool
);
748 free(vcdl
->data
[i
].upath
);
750 for (int j
= 0; j
< vcdl
->data
[i
].lines_cnt
; j
++)
751 free(vcdl
->data
[i
].lines
[j
]);
753 free(vcdl
->data
[i
].lines
);
755 for (int j
= 0; j
< vcdl
->data
[i
].cols_cnt
; j
++)
756 free(vcdl
->data
[i
].cols
[j
]);
758 free(vcdl
->data
[i
].cols
);
759 free(vcdl
->data
[i
].vdev_enc_sysfs_path
);