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 https://opensource.org/licenses/CDDL-1.0.
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
)
70 zpool_handle_t
*l
= ((zpool_node_t
*)larg
)->zn_handle
;
71 zpool_handle_t
*r
= ((zpool_node_t
*)rarg
)->zn_handle
;
72 const char *lname
= zpool_get_name(l
);
73 const char *rname
= zpool_get_name(r
);
75 return (strcmp(lname
, rname
));
79 * Callback function for pool_list_get(). Adds the given pool to the AVL tree
83 add_pool(zpool_handle_t
*zhp
, void *data
)
85 zpool_list_t
*zlp
= data
;
86 zpool_node_t
*node
= safe_malloc(sizeof (zpool_node_t
));
89 node
->zn_handle
= zhp
;
90 uu_avl_node_init(node
, &node
->zn_avlnode
, zlp
->zl_pool
);
91 if (uu_avl_find(zlp
->zl_avl
, node
, NULL
, &idx
) == NULL
) {
92 if (zlp
->zl_proplist
&&
93 zpool_expand_proplist(zhp
, zlp
->zl_proplist
,
94 zlp
->zl_type
, zlp
->zl_literal
) != 0) {
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
, zfs_type_t type
,
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
;
136 zlp
->zl_literal
= literal
;
139 (void) zpool_iter(g_zfs
, add_pool
, zlp
);
140 zlp
->zl_findall
= B_TRUE
;
144 for (i
= 0; i
< argc
; i
++) {
147 if ((zhp
= zpool_open_canfail(g_zfs
, argv
[i
])) !=
149 if (add_pool(zhp
, zlp
) != 0)
161 * Search for any new pools, adding them to the list. We only add pools when no
162 * options were given on the command line. Otherwise, we keep the list fixed as
163 * those that were explicitly specified.
166 pool_list_update(zpool_list_t
*zlp
)
169 (void) zpool_iter(g_zfs
, add_pool
, zlp
);
173 * Iterate over all pools in the list, executing the callback for each
176 pool_list_iter(zpool_list_t
*zlp
, int unavail
, zpool_iter_f func
,
179 zpool_node_t
*node
, *next_node
;
182 for (node
= uu_avl_first(zlp
->zl_avl
); node
!= NULL
; node
= next_node
) {
183 next_node
= uu_avl_next(zlp
->zl_avl
, node
);
184 if (zpool_get_state(node
->zn_handle
) != POOL_STATE_UNAVAIL
||
186 ret
|= func(node
->zn_handle
, data
);
193 * Remove the given pool from the list. When running iostat, we want to remove
194 * those pools that no longer exist.
197 pool_list_remove(zpool_list_t
*zlp
, zpool_handle_t
*zhp
)
199 zpool_node_t search
, *node
;
201 search
.zn_handle
= zhp
;
202 if ((node
= uu_avl_find(zlp
->zl_avl
, &search
, NULL
, NULL
)) != NULL
) {
203 uu_avl_remove(zlp
->zl_avl
, node
);
204 zpool_close(node
->zn_handle
);
210 * Free all the handles associated with this list.
213 pool_list_free(zpool_list_t
*zlp
)
218 if ((walk
= uu_avl_walk_start(zlp
->zl_avl
, UU_WALK_ROBUST
)) == NULL
) {
219 (void) fprintf(stderr
,
220 gettext("internal error: out of memory"));
224 while ((node
= uu_avl_walk_next(walk
)) != NULL
) {
225 uu_avl_remove(zlp
->zl_avl
, node
);
226 zpool_close(node
->zn_handle
);
230 uu_avl_walk_end(walk
);
231 uu_avl_destroy(zlp
->zl_avl
);
232 uu_avl_pool_destroy(zlp
->zl_pool
);
238 * Returns the number of elements in the pool list.
241 pool_list_count(zpool_list_t
*zlp
)
243 return (uu_avl_numnodes(zlp
->zl_avl
));
247 * High level function which iterates over all pools given on the command line,
248 * using the pool_list_* interfaces.
251 for_each_pool(int argc
, char **argv
, boolean_t unavail
,
252 zprop_list_t
**proplist
, zfs_type_t type
, boolean_t literal
,
253 zpool_iter_f func
, void *data
)
258 if ((list
= pool_list_get(argc
, argv
, proplist
, type
, literal
,
262 if (pool_list_iter(list
, unavail
, func
, data
) != 0)
265 pool_list_free(list
);
271 * This is the equivalent of for_each_pool() for vdevs. It iterates thorough
272 * all vdevs in the pool, ignoring root vdevs and holes, calling func() on
276 * @func: Function to call on each vdev
277 * @data: Custom data to pass to the function
280 for_each_vdev(zpool_handle_t
*zhp
, pool_vdev_iter_f func
, void *data
)
282 nvlist_t
*config
, *nvroot
= NULL
;
284 if ((config
= zpool_get_config(zhp
, NULL
)) != NULL
) {
285 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
288 return (for_each_vdev_cb((void *) zhp
, nvroot
, func
, data
));
292 * Process the vcdl->vdev_cmd_data[] array to figure out all the unique column
293 * names and their widths. When this function is done, vcdl->uniq_cols,
294 * vcdl->uniq_cols_cnt, and vcdl->uniq_cols_width will be filled in.
297 process_unique_cmd_columns(vdev_cmd_data_list_t
*vcdl
)
299 char **uniq_cols
= NULL
, **tmp
= NULL
;
300 int *uniq_cols_width
;
301 vdev_cmd_data_t
*data
;
306 for (int i
= 0; i
< vcdl
->count
; i
++) {
307 data
= &vcdl
->data
[i
];
308 /* For each column the vdev reported */
309 for (int j
= 0; j
< data
->cols_cnt
; j
++) {
310 /* Is this column in our list of unique column names? */
311 for (k
= 0; k
< cnt
; k
++) {
312 if (strcmp(data
->cols
[j
], uniq_cols
[k
]) == 0)
313 break; /* yes it is */
316 /* No entry for column, add to list */
317 tmp
= realloc(uniq_cols
, sizeof (*uniq_cols
) *
320 break; /* Nothing we can do... */
322 uniq_cols
[cnt
] = data
->cols
[j
];
329 * We now have a list of all the unique column names. Figure out the
330 * max width of each column by looking at the column name and all its
333 uniq_cols_width
= safe_malloc(sizeof (*uniq_cols_width
) * cnt
);
334 for (int i
= 0; i
< cnt
; i
++) {
335 /* Start off with the column title's width */
336 uniq_cols_width
[i
] = strlen(uniq_cols
[i
]);
338 for (int j
= 0; j
< vcdl
->count
; j
++) {
339 /* For each of the vdev's values in a column */
340 data
= &vcdl
->data
[j
];
341 for (k
= 0; k
< data
->cols_cnt
; k
++) {
342 /* Does this vdev have a value for this col? */
343 if (strcmp(data
->cols
[k
], uniq_cols
[i
]) == 0) {
344 /* Is the value width larger? */
346 MAX(uniq_cols_width
[i
],
347 strlen(data
->lines
[k
]));
353 vcdl
->uniq_cols
= uniq_cols
;
354 vcdl
->uniq_cols_cnt
= cnt
;
355 vcdl
->uniq_cols_width
= uniq_cols_width
;
360 * Process a line of command output
362 * When running 'zpool iostat|status -c' the lines of output can either be
371 * Process the column_name (if any) and value.
373 * Returns 0 if line was processed, and there are more lines can still be
376 * Returns 1 if this was the last line to process, or error.
379 vdev_process_cmd_output(vdev_cmd_data_t
*data
, char *line
)
389 equals
= strchr(line
, '=');
390 if (equals
!= NULL
) {
392 * We have a 'column=value' type line. Split it into the
393 * column and value strings by turning the '=' into a '\0'.
402 /* Do we already have a column by this name? If so, skip it. */
404 for (int i
= 0; i
< data
->cols_cnt
; i
++) {
405 if (strcmp(col
, data
->cols
[i
]) == 0)
406 return (0); /* Duplicate, skip */
411 tmp
= realloc(data
->lines
,
412 (data
->lines_cnt
+ 1) * sizeof (*data
->lines
));
417 data
->lines
[data
->lines_cnt
] = strdup(val
);
422 tmp
= realloc(data
->cols
,
423 (data
->cols_cnt
+ 1) * sizeof (*data
->cols
));
428 data
->cols
[data
->cols_cnt
] = strdup(col
);
432 if (val
!= NULL
&& col
== NULL
)
439 * Run the cmd and store results in *data.
442 vdev_run_cmd(vdev_cmd_data_t
*data
, char *cmd
)
445 char *argv
[2] = {cmd
};
451 env
= zpool_vdev_script_alloc_env(data
->pool
, data
->path
, data
->upath
,
452 data
->vdev_enc_sysfs_path
, NULL
, NULL
);
456 /* Run the command */
457 rc
= libzfs_run_process_get_stdout_nopath(cmd
, argv
, env
, &lines
,
460 zpool_vdev_script_free_env(env
);
465 /* Process the output we got */
466 for (i
= 0; i
< lines_cnt
; i
++)
467 if (vdev_process_cmd_output(data
, lines
[i
]) != 0)
472 libzfs_free_str_array(lines
, lines_cnt
);
476 * Generate the search path for zpool iostat/status -c scripts.
477 * The string returned must be freed.
480 zpool_get_cmd_search_path(void)
485 env
= getenv("ZPOOL_SCRIPTS_PATH");
487 return (strdup(env
));
489 env
= getenv("HOME");
491 if (asprintf(&sp
, "%s/.zpool.d:%s",
492 env
, ZPOOL_SCRIPTS_DIR
) != -1) {
497 if (asprintf(&sp
, "%s", ZPOOL_SCRIPTS_DIR
) != -1)
503 /* Thread function run for each vdev */
505 vdev_run_cmd_thread(void *cb_cmd_data
)
507 vdev_cmd_data_t
*data
= cb_cmd_data
;
508 char *cmd
= NULL
, *cmddup
, *cmdrest
;
510 cmddup
= strdup(data
->cmd
);
515 while ((cmd
= strtok_r(cmdrest
, ",", &cmdrest
))) {
516 char *dir
= NULL
, *sp
, *sprest
;
517 char fullpath
[MAXPATHLEN
];
519 if (strchr(cmd
, '/') != NULL
)
522 sp
= zpool_get_cmd_search_path();
527 while ((dir
= strtok_r(sprest
, ":", &sprest
))) {
528 if (snprintf(fullpath
, sizeof (fullpath
),
529 "%s/%s", dir
, cmd
) == -1)
532 if (access(fullpath
, X_OK
) == 0) {
533 vdev_run_cmd(data
, fullpath
);
542 /* For each vdev in the pool run a command */
544 for_each_vdev_run_cb(void *zhp_data
, nvlist_t
*nv
, void *cb_vcdl
)
546 vdev_cmd_data_list_t
*vcdl
= cb_vcdl
;
547 vdev_cmd_data_t
*data
;
548 const char *path
= NULL
;
550 const char *vdev_enc_sysfs_path
= NULL
;
552 zpool_handle_t
*zhp
= zhp_data
;
554 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_PATH
, &path
) != 0)
557 /* Make sure we're getting the updated enclosure sysfs path */
558 update_vdev_config_dev_sysfs_path(nv
, path
,
559 ZPOOL_CONFIG_VDEV_ENC_SYSFS_PATH
);
561 nvlist_lookup_string(nv
, ZPOOL_CONFIG_VDEV_ENC_SYSFS_PATH
,
562 &vdev_enc_sysfs_path
);
564 /* Spares show more than once if they're in use, so skip if exists */
565 for (i
= 0; i
< vcdl
->count
; i
++) {
566 if ((strcmp(vcdl
->data
[i
].path
, path
) == 0) &&
567 (strcmp(vcdl
->data
[i
].pool
, zpool_get_name(zhp
)) == 0)) {
568 /* vdev already exists, skip it */
573 /* Check for selected vdevs here, if any */
574 for (i
= 0; i
< vcdl
->vdev_names_count
; i
++) {
575 vname
= zpool_vdev_name(g_zfs
, zhp
, nv
, vcdl
->cb_name_flags
);
576 if (strcmp(vcdl
->vdev_names
[i
], vname
) == 0) {
584 /* If we selected vdevs, and this isn't one of them, then bail out */
585 if (!match
&& vcdl
->vdev_names_count
)
589 * Resize our array and add in the new element.
591 if (!(vcdl
->data
= realloc(vcdl
->data
,
592 sizeof (*vcdl
->data
) * (vcdl
->count
+ 1))))
593 return (ENOMEM
); /* couldn't realloc */
595 data
= &vcdl
->data
[vcdl
->count
];
597 data
->pool
= strdup(zpool_get_name(zhp
));
598 data
->path
= strdup(path
);
599 data
->upath
= zfs_get_underlying_path(path
);
600 data
->cmd
= vcdl
->cmd
;
601 data
->lines
= data
->cols
= NULL
;
602 data
->lines_cnt
= data
->cols_cnt
= 0;
603 if (vdev_enc_sysfs_path
)
604 data
->vdev_enc_sysfs_path
= strdup(vdev_enc_sysfs_path
);
606 data
->vdev_enc_sysfs_path
= NULL
;
613 /* Get the names and count of the vdevs */
615 all_pools_for_each_vdev_gather_cb(zpool_handle_t
*zhp
, void *cb_vcdl
)
617 return (for_each_vdev(zhp
, for_each_vdev_run_cb
, cb_vcdl
));
621 * Now that vcdl is populated with our complete list of vdevs, spawn
625 all_pools_for_each_vdev_run_vcdl(vdev_cmd_data_list_t
*vcdl
)
629 t
= tpool_create(1, 5 * sysconf(_SC_NPROCESSORS_ONLN
), 0, NULL
);
633 /* Spawn off the command for each vdev */
634 for (int i
= 0; i
< vcdl
->count
; i
++) {
635 (void) tpool_dispatch(t
, vdev_run_cmd_thread
,
636 (void *) &vcdl
->data
[i
]);
639 /* Wait for threads to finish */
645 * Run command 'cmd' on all vdevs in all pools in argv. Saves the first line of
646 * output from the command in vcdk->data[].line for all vdevs. If you want
647 * to run the command on only certain vdevs, fill in g_zfs, vdev_names,
648 * vdev_names_count, and cb_name_flags. Otherwise leave them as zero.
650 * Returns a vdev_cmd_data_list_t that must be freed with
651 * free_vdev_cmd_data_list();
653 vdev_cmd_data_list_t
*
654 all_pools_for_each_vdev_run(int argc
, char **argv
, char *cmd
,
655 libzfs_handle_t
*g_zfs
, char **vdev_names
, int vdev_names_count
,
658 vdev_cmd_data_list_t
*vcdl
;
659 vcdl
= safe_malloc(sizeof (vdev_cmd_data_list_t
));
662 vcdl
->vdev_names
= vdev_names
;
663 vcdl
->vdev_names_count
= vdev_names_count
;
664 vcdl
->cb_name_flags
= cb_name_flags
;
667 /* Gather our list of all vdevs in all pools */
668 for_each_pool(argc
, argv
, B_TRUE
, NULL
, ZFS_TYPE_POOL
,
669 B_FALSE
, all_pools_for_each_vdev_gather_cb
, vcdl
);
671 /* Run command on all vdevs in all pools */
672 all_pools_for_each_vdev_run_vcdl(vcdl
);
675 * vcdl->data[] now contains all the column names and values for each
676 * vdev. We need to process that into a master list of unique column
677 * names, and figure out the width of each column.
679 process_unique_cmd_columns(vcdl
);
685 * Free the vdev_cmd_data_list_t created by all_pools_for_each_vdev_run()
688 free_vdev_cmd_data_list(vdev_cmd_data_list_t
*vcdl
)
690 free(vcdl
->uniq_cols
);
691 free(vcdl
->uniq_cols_width
);
693 for (int i
= 0; i
< vcdl
->count
; i
++) {
694 free(vcdl
->data
[i
].path
);
695 free(vcdl
->data
[i
].pool
);
696 free(vcdl
->data
[i
].upath
);
698 for (int j
= 0; j
< vcdl
->data
[i
].lines_cnt
; j
++)
699 free(vcdl
->data
[i
].lines
[j
]);
701 free(vcdl
->data
[i
].lines
);
703 for (int j
= 0; j
< vcdl
->data
[i
].cols_cnt
; j
++)
704 free(vcdl
->data
[i
].cols
[j
]);
706 free(vcdl
->data
[i
].cols
);
707 free(vcdl
->data
[i
].vdev_enc_sysfs_path
);