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]
23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
25 * Copyright (c) 2011, 2020 by Delphix. All rights reserved.
26 * Copyright (c) 2012 by Frederik Wessels. All rights reserved.
27 * Copyright (c) 2012 by Cyril Plisko. All rights reserved.
28 * Copyright (c) 2013 by Prasad Joshi (sTec). All rights reserved.
29 * Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>.
30 * Copyright (c) 2017 Datto Inc.
31 * Copyright (c) 2017 Open-E, Inc. All Rights Reserved.
32 * Copyright (c) 2017, Intel Corporation.
33 * Copyright (c) 2019, loli10K <ezomori.nozomu@gmail.com>
34 * Copyright (c) 2021, Colm Buckley <colm@tuatha.org>
35 * Copyright (c) 2021, Klara Inc.
36 * Copyright [2021] Hewlett Packard Enterprise Development LP
59 #include <sys/fs/zfs.h>
61 #include <sys/systeminfo.h>
62 #include <sys/fm/fs/zfs.h>
63 #include <sys/fm/util.h>
64 #include <sys/fm/protocol.h>
65 #include <sys/zfs_ioctl.h>
66 #include <sys/mount.h>
67 #include <sys/sysmacros.h>
74 #include "zpool_util.h"
75 #include "zfs_comutil.h"
76 #include "zfeature_common.h"
78 #include "statcommon.h"
80 libzfs_handle_t
*g_zfs
;
82 static int zpool_do_create(int, char **);
83 static int zpool_do_destroy(int, char **);
85 static int zpool_do_add(int, char **);
86 static int zpool_do_remove(int, char **);
87 static int zpool_do_labelclear(int, char **);
89 static int zpool_do_checkpoint(int, char **);
91 static int zpool_do_list(int, char **);
92 static int zpool_do_iostat(int, char **);
93 static int zpool_do_status(int, char **);
95 static int zpool_do_online(int, char **);
96 static int zpool_do_offline(int, char **);
97 static int zpool_do_clear(int, char **);
98 static int zpool_do_reopen(int, char **);
100 static int zpool_do_reguid(int, char **);
102 static int zpool_do_attach(int, char **);
103 static int zpool_do_detach(int, char **);
104 static int zpool_do_replace(int, char **);
105 static int zpool_do_split(int, char **);
107 static int zpool_do_initialize(int, char **);
108 static int zpool_do_scrub(int, char **);
109 static int zpool_do_resilver(int, char **);
110 static int zpool_do_trim(int, char **);
112 static int zpool_do_import(int, char **);
113 static int zpool_do_export(int, char **);
115 static int zpool_do_upgrade(int, char **);
117 static int zpool_do_history(int, char **);
118 static int zpool_do_events(int, char **);
120 static int zpool_do_get(int, char **);
121 static int zpool_do_set(int, char **);
123 static int zpool_do_sync(int, char **);
125 static int zpool_do_version(int, char **);
127 static int zpool_do_wait(int, char **);
129 static int zpool_do_help(int argc
, char **argv
);
131 static zpool_compat_status_t
zpool_do_load_compat(
132 const char *, boolean_t
*);
135 * These libumem hooks provide a reasonable set of defaults for the allocator's
136 * debugging facilities.
141 _umem_debug_init(void)
143 return ("default,verbose"); /* $UMEM_DEBUG setting */
147 _umem_logging_init(void)
149 return ("fail,contents"); /* $UMEM_LOGGING setting */
190 * Flags for stats to display with "zpool iostats"
198 IOS_COUNT
, /* always last element */
201 /* iostat_type entries as bitmasks */
202 #define IOS_DEFAULT_M (1ULL << IOS_DEFAULT)
203 #define IOS_LATENCY_M (1ULL << IOS_LATENCY)
204 #define IOS_QUEUES_M (1ULL << IOS_QUEUES)
205 #define IOS_L_HISTO_M (1ULL << IOS_L_HISTO)
206 #define IOS_RQ_HISTO_M (1ULL << IOS_RQ_HISTO)
208 /* Mask of all the histo bits */
209 #define IOS_ANYHISTO_M (IOS_L_HISTO_M | IOS_RQ_HISTO_M)
212 * Lookup table for iostat flags to nvlist names. Basically a list
213 * of all the nvlists a flag requires. Also specifies the order in
214 * which data gets printed in zpool iostat.
216 static const char *vsx_type_to_nvlist
[IOS_COUNT
][15] = {
218 ZPOOL_CONFIG_VDEV_TOT_R_LAT_HISTO
,
219 ZPOOL_CONFIG_VDEV_TOT_W_LAT_HISTO
,
220 ZPOOL_CONFIG_VDEV_DISK_R_LAT_HISTO
,
221 ZPOOL_CONFIG_VDEV_DISK_W_LAT_HISTO
,
222 ZPOOL_CONFIG_VDEV_SYNC_R_LAT_HISTO
,
223 ZPOOL_CONFIG_VDEV_SYNC_W_LAT_HISTO
,
224 ZPOOL_CONFIG_VDEV_ASYNC_R_LAT_HISTO
,
225 ZPOOL_CONFIG_VDEV_ASYNC_W_LAT_HISTO
,
226 ZPOOL_CONFIG_VDEV_SCRUB_LAT_HISTO
,
227 ZPOOL_CONFIG_VDEV_TRIM_LAT_HISTO
,
228 ZPOOL_CONFIG_VDEV_REBUILD_LAT_HISTO
,
231 ZPOOL_CONFIG_VDEV_TOT_R_LAT_HISTO
,
232 ZPOOL_CONFIG_VDEV_TOT_W_LAT_HISTO
,
233 ZPOOL_CONFIG_VDEV_DISK_R_LAT_HISTO
,
234 ZPOOL_CONFIG_VDEV_DISK_W_LAT_HISTO
,
235 ZPOOL_CONFIG_VDEV_TRIM_LAT_HISTO
,
236 ZPOOL_CONFIG_VDEV_REBUILD_LAT_HISTO
,
239 ZPOOL_CONFIG_VDEV_SYNC_R_ACTIVE_QUEUE
,
240 ZPOOL_CONFIG_VDEV_SYNC_W_ACTIVE_QUEUE
,
241 ZPOOL_CONFIG_VDEV_ASYNC_R_ACTIVE_QUEUE
,
242 ZPOOL_CONFIG_VDEV_ASYNC_W_ACTIVE_QUEUE
,
243 ZPOOL_CONFIG_VDEV_SCRUB_ACTIVE_QUEUE
,
244 ZPOOL_CONFIG_VDEV_TRIM_ACTIVE_QUEUE
,
245 ZPOOL_CONFIG_VDEV_REBUILD_ACTIVE_QUEUE
,
248 ZPOOL_CONFIG_VDEV_SYNC_IND_R_HISTO
,
249 ZPOOL_CONFIG_VDEV_SYNC_AGG_R_HISTO
,
250 ZPOOL_CONFIG_VDEV_SYNC_IND_W_HISTO
,
251 ZPOOL_CONFIG_VDEV_SYNC_AGG_W_HISTO
,
252 ZPOOL_CONFIG_VDEV_ASYNC_IND_R_HISTO
,
253 ZPOOL_CONFIG_VDEV_ASYNC_AGG_R_HISTO
,
254 ZPOOL_CONFIG_VDEV_ASYNC_IND_W_HISTO
,
255 ZPOOL_CONFIG_VDEV_ASYNC_AGG_W_HISTO
,
256 ZPOOL_CONFIG_VDEV_IND_SCRUB_HISTO
,
257 ZPOOL_CONFIG_VDEV_AGG_SCRUB_HISTO
,
258 ZPOOL_CONFIG_VDEV_IND_TRIM_HISTO
,
259 ZPOOL_CONFIG_VDEV_AGG_TRIM_HISTO
,
260 ZPOOL_CONFIG_VDEV_IND_REBUILD_HISTO
,
261 ZPOOL_CONFIG_VDEV_AGG_REBUILD_HISTO
,
267 * Given a cb->cb_flags with a histogram bit set, return the iostat_type.
268 * Right now, only one histo bit is ever set at one time, so we can
269 * just do a highbit64(a)
271 #define IOS_HISTO_IDX(a) (highbit64(a & IOS_ANYHISTO_M) - 1)
273 typedef struct zpool_command
{
275 int (*func
)(int, char **);
280 * Master command table. Each ZFS command has a name, associated function, and
281 * usage message. The usage messages need to be internationalized, so we have
282 * to have a function to return the usage message based on a command index.
284 * These commands are organized according to how they are displayed in the usage
285 * message. An empty command (one with a NULL name) indicates an empty line in
286 * the generic usage message.
288 static zpool_command_t command_table
[] = {
289 { "version", zpool_do_version
, HELP_VERSION
},
291 { "create", zpool_do_create
, HELP_CREATE
},
292 { "destroy", zpool_do_destroy
, HELP_DESTROY
},
294 { "add", zpool_do_add
, HELP_ADD
},
295 { "remove", zpool_do_remove
, HELP_REMOVE
},
297 { "labelclear", zpool_do_labelclear
, HELP_LABELCLEAR
},
299 { "checkpoint", zpool_do_checkpoint
, HELP_CHECKPOINT
},
301 { "list", zpool_do_list
, HELP_LIST
},
302 { "iostat", zpool_do_iostat
, HELP_IOSTAT
},
303 { "status", zpool_do_status
, HELP_STATUS
},
305 { "online", zpool_do_online
, HELP_ONLINE
},
306 { "offline", zpool_do_offline
, HELP_OFFLINE
},
307 { "clear", zpool_do_clear
, HELP_CLEAR
},
308 { "reopen", zpool_do_reopen
, HELP_REOPEN
},
310 { "attach", zpool_do_attach
, HELP_ATTACH
},
311 { "detach", zpool_do_detach
, HELP_DETACH
},
312 { "replace", zpool_do_replace
, HELP_REPLACE
},
313 { "split", zpool_do_split
, HELP_SPLIT
},
315 { "initialize", zpool_do_initialize
, HELP_INITIALIZE
},
316 { "resilver", zpool_do_resilver
, HELP_RESILVER
},
317 { "scrub", zpool_do_scrub
, HELP_SCRUB
},
318 { "trim", zpool_do_trim
, HELP_TRIM
},
320 { "import", zpool_do_import
, HELP_IMPORT
},
321 { "export", zpool_do_export
, HELP_EXPORT
},
322 { "upgrade", zpool_do_upgrade
, HELP_UPGRADE
},
323 { "reguid", zpool_do_reguid
, HELP_REGUID
},
325 { "history", zpool_do_history
, HELP_HISTORY
},
326 { "events", zpool_do_events
, HELP_EVENTS
},
328 { "get", zpool_do_get
, HELP_GET
},
329 { "set", zpool_do_set
, HELP_SET
},
330 { "sync", zpool_do_sync
, HELP_SYNC
},
332 { "wait", zpool_do_wait
, HELP_WAIT
},
335 #define NCOMMAND (ARRAY_SIZE(command_table))
337 #define VDEV_ALLOC_CLASS_LOGS "logs"
339 static zpool_command_t
*current_command
;
340 static zfs_type_t current_prop_type
= (ZFS_TYPE_POOL
| ZFS_TYPE_VDEV
);
341 static char history_str
[HIS_MAX_RECORD_LEN
];
342 static boolean_t log_history
= B_TRUE
;
343 static uint_t timestamp_fmt
= NODATE
;
346 get_usage(zpool_help_t idx
)
350 return (gettext("\tadd [-fgLnP] [-o property=value] "
351 "<pool> <vdev> ...\n"));
353 return (gettext("\tattach [-fsw] [-o property=value] "
354 "<pool> <device> <new-device>\n"));
356 return (gettext("\tclear [-nF] <pool> [device]\n"));
358 return (gettext("\tcreate [-fnd] [-o property=value] ... \n"
359 "\t [-O file-system-property=value] ... \n"
360 "\t [-m mountpoint] [-R root] <pool> <vdev> ...\n"));
361 case HELP_CHECKPOINT
:
362 return (gettext("\tcheckpoint [-d [-w]] <pool> ...\n"));
364 return (gettext("\tdestroy [-f] <pool>\n"));
366 return (gettext("\tdetach <pool> <device>\n"));
368 return (gettext("\texport [-af] <pool> ...\n"));
370 return (gettext("\thistory [-il] [<pool>] ...\n"));
372 return (gettext("\timport [-d dir] [-D]\n"
373 "\timport [-o mntopts] [-o property=value] ... \n"
374 "\t [-d dir | -c cachefile] [-D] [-l] [-f] [-m] [-N] "
375 "[-R root] [-F [-n]] -a\n"
376 "\timport [-o mntopts] [-o property=value] ... \n"
377 "\t [-d dir | -c cachefile] [-D] [-l] [-f] [-m] [-N] "
378 "[-R root] [-F [-n]]\n"
379 "\t [--rewind-to-checkpoint] <pool | id> [newpool]\n"));
381 return (gettext("\tiostat [[[-c [script1,script2,...]"
382 "[-lq]]|[-rw]] [-T d | u] [-ghHLpPvy]\n"
383 "\t [[pool ...]|[pool vdev ...]|[vdev ...]]"
384 " [[-n] interval [count]]\n"));
385 case HELP_LABELCLEAR
:
386 return (gettext("\tlabelclear [-f] <vdev>\n"));
388 return (gettext("\tlist [-gHLpPv] [-o property[,...]] "
389 "[-T d|u] [pool] ... \n"
390 "\t [interval [count]]\n"));
392 return (gettext("\toffline [-f] [-t] <pool> <device> ...\n"));
394 return (gettext("\tonline [-e] <pool> <device> ...\n"));
396 return (gettext("\treplace [-fsw] [-o property=value] "
397 "<pool> <device> [new-device]\n"));
399 return (gettext("\tremove [-npsw] <pool> <device> ...\n"));
401 return (gettext("\treopen [-n] <pool>\n"));
402 case HELP_INITIALIZE
:
403 return (gettext("\tinitialize [-c | -s | -u] [-w] <pool> "
404 "[<device> ...]\n"));
406 return (gettext("\tscrub [-s | -p] [-w] [-e] <pool> ...\n"));
408 return (gettext("\tresilver <pool> ...\n"));
410 return (gettext("\ttrim [-dw] [-r <rate>] [-c | -s] <pool> "
411 "[<device> ...]\n"));
413 return (gettext("\tstatus [-c [script1,script2,...]] "
414 "[-igLpPstvxD] [-T d|u] [pool] ... \n"
415 "\t [interval [count]]\n"));
417 return (gettext("\tupgrade\n"
419 "\tupgrade [-V version] <-a | pool ...>\n"));
421 return (gettext("\tevents [-vHf [pool] | -c]\n"));
423 return (gettext("\tget [-Hp] [-o \"all\" | field[,...]] "
424 "<\"all\" | property[,...]> <pool> ...\n"));
426 return (gettext("\tset <property=value> <pool>\n"
427 "\tset <vdev_property=value> <pool> <vdev>\n"));
429 return (gettext("\tsplit [-gLnPl] [-R altroot] [-o mntopts]\n"
430 "\t [-o property=value] <pool> <newpool> "
431 "[<device> ...]\n"));
433 return (gettext("\treguid <pool>\n"));
435 return (gettext("\tsync [pool] ...\n"));
437 return (gettext("\tversion\n"));
439 return (gettext("\twait [-Hp] [-T d|u] [-t <activity>[,...]] "
440 "<pool> [interval]\n"));
442 __builtin_unreachable();
447 zpool_collect_leaves(zpool_handle_t
*zhp
, nvlist_t
*nvroot
, nvlist_t
*res
)
453 (void) nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_CHILDREN
,
457 char *path
= zpool_vdev_name(g_zfs
, zhp
, nvroot
,
460 if (strcmp(path
, VDEV_TYPE_INDIRECT
) != 0 &&
461 strcmp(path
, VDEV_TYPE_HOLE
) != 0)
462 fnvlist_add_boolean(res
, path
);
468 for (i
= 0; i
< children
; i
++) {
469 zpool_collect_leaves(zhp
, child
[i
], res
);
474 * Callback routine that will print out a pool property value.
477 print_pool_prop_cb(int prop
, void *cb
)
481 (void) fprintf(fp
, "\t%-19s ", zpool_prop_to_name(prop
));
483 if (zpool_prop_readonly(prop
))
484 (void) fprintf(fp
, " NO ");
486 (void) fprintf(fp
, " YES ");
488 if (zpool_prop_values(prop
) == NULL
)
489 (void) fprintf(fp
, "-\n");
491 (void) fprintf(fp
, "%s\n", zpool_prop_values(prop
));
497 * Callback routine that will print out a vdev property value.
500 print_vdev_prop_cb(int prop
, void *cb
)
504 (void) fprintf(fp
, "\t%-19s ", vdev_prop_to_name(prop
));
506 if (vdev_prop_readonly(prop
))
507 (void) fprintf(fp
, " NO ");
509 (void) fprintf(fp
, " YES ");
511 if (vdev_prop_values(prop
) == NULL
)
512 (void) fprintf(fp
, "-\n");
514 (void) fprintf(fp
, "%s\n", vdev_prop_values(prop
));
520 * Display usage message. If we're inside a command, display only the usage for
521 * that command. Otherwise, iterate over the entire command table and display
522 * a complete usage message.
524 static __attribute__((noreturn
)) void
525 usage(boolean_t requested
)
527 FILE *fp
= requested
? stdout
: stderr
;
529 if (current_command
== NULL
) {
532 (void) fprintf(fp
, gettext("usage: zpool command args ...\n"));
534 gettext("where 'command' is one of the following:\n\n"));
536 for (i
= 0; i
< NCOMMAND
; i
++) {
537 if (command_table
[i
].name
== NULL
)
538 (void) fprintf(fp
, "\n");
540 (void) fprintf(fp
, "%s",
541 get_usage(command_table
[i
].usage
));
545 gettext("\nFor further help on a command or topic, "
546 "run: %s\n"), "zpool help [<topic>]");
548 (void) fprintf(fp
, gettext("usage:\n"));
549 (void) fprintf(fp
, "%s", get_usage(current_command
->usage
));
552 if (current_command
!= NULL
&&
553 current_prop_type
!= (ZFS_TYPE_POOL
| ZFS_TYPE_VDEV
) &&
554 ((strcmp(current_command
->name
, "set") == 0) ||
555 (strcmp(current_command
->name
, "get") == 0) ||
556 (strcmp(current_command
->name
, "list") == 0))) {
558 (void) fprintf(fp
, "%s",
559 gettext("\nthe following properties are supported:\n"));
561 (void) fprintf(fp
, "\n\t%-19s %s %s\n\n",
562 "PROPERTY", "EDIT", "VALUES");
564 /* Iterate over all properties */
565 if (current_prop_type
== ZFS_TYPE_POOL
) {
566 (void) zprop_iter(print_pool_prop_cb
, fp
, B_FALSE
,
567 B_TRUE
, current_prop_type
);
569 (void) fprintf(fp
, "\t%-19s ", "feature@...");
570 (void) fprintf(fp
, "YES "
571 "disabled | enabled | active\n");
573 (void) fprintf(fp
, gettext("\nThe feature@ properties "
574 "must be appended with a feature name.\n"
575 "See zpool-features(7).\n"));
576 } else if (current_prop_type
== ZFS_TYPE_VDEV
) {
577 (void) zprop_iter(print_vdev_prop_cb
, fp
, B_FALSE
,
578 B_TRUE
, current_prop_type
);
583 * See comments at end of main().
585 if (getenv("ZFS_ABORT") != NULL
) {
586 (void) printf("dumping core by request\n");
590 exit(requested
? 0 : 2);
594 * zpool initialize [-c | -s | -u] [-w] <pool> [<vdev> ...]
595 * Initialize all unused blocks in the specified vdevs, or all vdevs in the pool
598 * -c Cancel. Ends active initializing.
599 * -s Suspend. Initializing can then be restarted with no flags.
600 * -u Uninitialize. Clears initialization state.
601 * -w Wait. Blocks until initializing has completed.
604 zpool_do_initialize(int argc
, char **argv
)
611 boolean_t wait
= B_FALSE
;
613 struct option long_options
[] = {
614 {"cancel", no_argument
, NULL
, 'c'},
615 {"suspend", no_argument
, NULL
, 's'},
616 {"uninit", no_argument
, NULL
, 'u'},
617 {"wait", no_argument
, NULL
, 'w'},
621 pool_initialize_func_t cmd_type
= POOL_INITIALIZE_START
;
622 while ((c
= getopt_long(argc
, argv
, "csuw", long_options
,
626 if (cmd_type
!= POOL_INITIALIZE_START
&&
627 cmd_type
!= POOL_INITIALIZE_CANCEL
) {
628 (void) fprintf(stderr
, gettext("-c cannot be "
629 "combined with other options\n"));
632 cmd_type
= POOL_INITIALIZE_CANCEL
;
635 if (cmd_type
!= POOL_INITIALIZE_START
&&
636 cmd_type
!= POOL_INITIALIZE_SUSPEND
) {
637 (void) fprintf(stderr
, gettext("-s cannot be "
638 "combined with other options\n"));
641 cmd_type
= POOL_INITIALIZE_SUSPEND
;
644 if (cmd_type
!= POOL_INITIALIZE_START
&&
645 cmd_type
!= POOL_INITIALIZE_UNINIT
) {
646 (void) fprintf(stderr
, gettext("-u cannot be "
647 "combined with other options\n"));
650 cmd_type
= POOL_INITIALIZE_UNINIT
;
657 (void) fprintf(stderr
,
658 gettext("invalid option '%c'\n"), optopt
);
660 (void) fprintf(stderr
,
661 gettext("invalid option '%s'\n"),
672 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
677 if (wait
&& (cmd_type
!= POOL_INITIALIZE_START
)) {
678 (void) fprintf(stderr
, gettext("-w cannot be used with -c, -s"
684 zhp
= zpool_open(g_zfs
, poolname
);
688 vdevs
= fnvlist_alloc();
690 /* no individual leaf vdevs specified, so add them all */
691 nvlist_t
*config
= zpool_get_config(zhp
, NULL
);
692 nvlist_t
*nvroot
= fnvlist_lookup_nvlist(config
,
693 ZPOOL_CONFIG_VDEV_TREE
);
694 zpool_collect_leaves(zhp
, nvroot
, vdevs
);
696 for (int i
= 1; i
< argc
; i
++) {
697 fnvlist_add_boolean(vdevs
, argv
[i
]);
702 err
= zpool_initialize_wait(zhp
, cmd_type
, vdevs
);
704 err
= zpool_initialize(zhp
, cmd_type
, vdevs
);
713 * print a pool vdev config for dry runs
716 print_vdev_tree(zpool_handle_t
*zhp
, const char *name
, nvlist_t
*nv
, int indent
,
717 const char *match
, int name_flags
)
722 boolean_t printed
= B_FALSE
;
724 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
725 &child
, &children
) != 0) {
727 (void) printf("\t%*s%s\n", indent
, "", name
);
731 for (c
= 0; c
< children
; c
++) {
732 uint64_t is_log
= B_FALSE
, is_hole
= B_FALSE
;
733 const char *class = "";
735 (void) nvlist_lookup_uint64(child
[c
], ZPOOL_CONFIG_IS_HOLE
,
738 if (is_hole
== B_TRUE
) {
742 (void) nvlist_lookup_uint64(child
[c
], ZPOOL_CONFIG_IS_LOG
,
745 class = VDEV_ALLOC_BIAS_LOG
;
746 (void) nvlist_lookup_string(child
[c
],
747 ZPOOL_CONFIG_ALLOCATION_BIAS
, &class);
748 if (strcmp(match
, class) != 0)
751 if (!printed
&& name
!= NULL
) {
752 (void) printf("\t%*s%s\n", indent
, "", name
);
755 vname
= zpool_vdev_name(g_zfs
, zhp
, child
[c
], name_flags
);
756 print_vdev_tree(zhp
, vname
, child
[c
], indent
+ 2, "",
763 * Print the list of l2cache devices for dry runs.
766 print_cache_list(nvlist_t
*nv
, int indent
)
771 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_L2CACHE
,
772 &child
, &children
) == 0 && children
> 0) {
773 (void) printf("\t%*s%s\n", indent
, "", "cache");
777 for (c
= 0; c
< children
; c
++) {
780 vname
= zpool_vdev_name(g_zfs
, NULL
, child
[c
], 0);
781 (void) printf("\t%*s%s\n", indent
+ 2, "", vname
);
787 * Print the list of spares for dry runs.
790 print_spare_list(nvlist_t
*nv
, int indent
)
795 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_SPARES
,
796 &child
, &children
) == 0 && children
> 0) {
797 (void) printf("\t%*s%s\n", indent
, "", "spares");
801 for (c
= 0; c
< children
; c
++) {
804 vname
= zpool_vdev_name(g_zfs
, NULL
, child
[c
], 0);
805 (void) printf("\t%*s%s\n", indent
+ 2, "", vname
);
811 prop_list_contains_feature(nvlist_t
*proplist
)
814 for (nvp
= nvlist_next_nvpair(proplist
, NULL
); NULL
!= nvp
;
815 nvp
= nvlist_next_nvpair(proplist
, nvp
)) {
816 if (zpool_prop_feature(nvpair_name(nvp
)))
823 * Add a property pair (name, string-value) into a property nvlist.
826 add_prop_list(const char *propname
, const char *propval
, nvlist_t
**props
,
829 zpool_prop_t prop
= ZPOOL_PROP_INVAL
;
834 if (*props
== NULL
&&
835 nvlist_alloc(props
, NV_UNIQUE_NAME
, 0) != 0) {
836 (void) fprintf(stderr
,
837 gettext("internal error: out of memory\n"));
844 const char *vname
= zpool_prop_to_name(ZPOOL_PROP_VERSION
);
846 zpool_prop_to_name(ZPOOL_PROP_COMPATIBILITY
);
848 if ((prop
= zpool_name_to_prop(propname
)) == ZPOOL_PROP_INVAL
&&
849 (!zpool_prop_feature(propname
) &&
850 !zpool_prop_vdev(propname
))) {
851 (void) fprintf(stderr
, gettext("property '%s' is "
852 "not a valid pool or vdev property\n"), propname
);
857 * feature@ properties and version should not be specified
860 if ((prop
== ZPOOL_PROP_INVAL
&& zpool_prop_feature(propname
) &&
861 nvlist_exists(proplist
, vname
)) ||
862 (prop
== ZPOOL_PROP_VERSION
&&
863 prop_list_contains_feature(proplist
))) {
864 (void) fprintf(stderr
, gettext("'feature@' and "
865 "'version' properties cannot be specified "
871 * if version is specified, only "legacy" compatibility
874 if ((prop
== ZPOOL_PROP_COMPATIBILITY
&&
875 strcmp(propval
, ZPOOL_COMPAT_LEGACY
) != 0 &&
876 nvlist_exists(proplist
, vname
)) ||
877 (prop
== ZPOOL_PROP_VERSION
&&
878 nvlist_exists(proplist
, cname
) &&
879 strcmp(fnvlist_lookup_string(proplist
, cname
),
880 ZPOOL_COMPAT_LEGACY
) != 0)) {
881 (void) fprintf(stderr
, gettext("when 'version' is "
882 "specified, the 'compatibility' feature may only "
883 "be set to '" ZPOOL_COMPAT_LEGACY
"'\n"));
887 if (zpool_prop_feature(propname
) || zpool_prop_vdev(propname
))
890 normnm
= zpool_prop_to_name(prop
);
892 zfs_prop_t fsprop
= zfs_name_to_prop(propname
);
894 if (zfs_prop_valid_for_type(fsprop
, ZFS_TYPE_FILESYSTEM
,
896 normnm
= zfs_prop_to_name(fsprop
);
897 } else if (zfs_prop_user(propname
) ||
898 zfs_prop_userquota(propname
)) {
901 (void) fprintf(stderr
, gettext("property '%s' is "
902 "not a valid filesystem property\n"), propname
);
907 if (nvlist_lookup_string(proplist
, normnm
, &strval
) == 0 &&
908 prop
!= ZPOOL_PROP_CACHEFILE
) {
909 (void) fprintf(stderr
, gettext("property '%s' "
910 "specified multiple times\n"), propname
);
914 if (nvlist_add_string(proplist
, normnm
, propval
) != 0) {
915 (void) fprintf(stderr
, gettext("internal "
916 "error: out of memory\n"));
924 * Set a default property pair (name, string-value) in a property nvlist
927 add_prop_list_default(const char *propname
, const char *propval
,
932 if (nvlist_lookup_string(*props
, propname
, &pval
) == 0)
935 return (add_prop_list(propname
, propval
, props
, B_TRUE
));
939 * zpool add [-fgLnP] [-o property=value] <pool> <vdev> ...
941 * -f Force addition of devices, even if they appear in use
942 * -g Display guid for individual vdev name.
943 * -L Follow links when resolving vdev path name.
944 * -n Do not add the devices, but display the resulting layout if
945 * they were to be added.
946 * -o Set property=value.
947 * -P Display full path for vdev name.
949 * Adds the given vdevs to 'pool'. As with create, the bulk of this work is
950 * handled by make_root_vdev(), which constructs the nvlist needed to pass to
954 zpool_do_add(int argc
, char **argv
)
956 boolean_t force
= B_FALSE
;
957 boolean_t dryrun
= B_FALSE
;
965 nvlist_t
*props
= NULL
;
969 while ((c
= getopt(argc
, argv
, "fgLno:P")) != -1) {
975 name_flags
|= VDEV_NAME_GUID
;
978 name_flags
|= VDEV_NAME_FOLLOW_LINKS
;
984 if ((propval
= strchr(optarg
, '=')) == NULL
) {
985 (void) fprintf(stderr
, gettext("missing "
986 "'=' for -o option\n"));
992 if ((strcmp(optarg
, ZPOOL_CONFIG_ASHIFT
) != 0) ||
993 (add_prop_list(optarg
, propval
, &props
, B_TRUE
)))
997 name_flags
|= VDEV_NAME_PATH
;
1000 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
1009 /* get pool name and check number of arguments */
1011 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
1015 (void) fprintf(stderr
, gettext("missing vdev specification\n"));
1024 if ((zhp
= zpool_open(g_zfs
, poolname
)) == NULL
)
1027 if ((config
= zpool_get_config(zhp
, NULL
)) == NULL
) {
1028 (void) fprintf(stderr
, gettext("pool '%s' is unavailable\n"),
1034 /* unless manually specified use "ashift" pool property (if set) */
1035 if (!nvlist_exists(props
, ZPOOL_CONFIG_ASHIFT
)) {
1038 char strval
[ZPOOL_MAXPROPLEN
];
1040 intval
= zpool_get_prop_int(zhp
, ZPOOL_PROP_ASHIFT
, &src
);
1041 if (src
!= ZPROP_SRC_DEFAULT
) {
1042 (void) sprintf(strval
, "%" PRId32
, intval
);
1043 verify(add_prop_list(ZPOOL_CONFIG_ASHIFT
, strval
,
1044 &props
, B_TRUE
) == 0);
1048 /* pass off to make_root_vdev for processing */
1049 nvroot
= make_root_vdev(zhp
, props
, force
, !force
, B_FALSE
, dryrun
,
1051 if (nvroot
== NULL
) {
1057 nvlist_t
*poolnvroot
;
1058 nvlist_t
**l2child
, **sparechild
;
1059 uint_t l2children
, sparechildren
, c
;
1061 boolean_t hadcache
= B_FALSE
, hadspare
= B_FALSE
;
1063 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
1066 (void) printf(gettext("would update '%s' to the following "
1067 "configuration:\n\n"), zpool_get_name(zhp
));
1069 /* print original main pool and new tree */
1070 print_vdev_tree(zhp
, poolname
, poolnvroot
, 0, "",
1071 name_flags
| VDEV_NAME_TYPE_ID
);
1072 print_vdev_tree(zhp
, NULL
, nvroot
, 0, "", name_flags
);
1074 /* print other classes: 'dedup', 'special', and 'log' */
1075 if (zfs_special_devs(poolnvroot
, VDEV_ALLOC_BIAS_DEDUP
)) {
1076 print_vdev_tree(zhp
, "dedup", poolnvroot
, 0,
1077 VDEV_ALLOC_BIAS_DEDUP
, name_flags
);
1078 print_vdev_tree(zhp
, NULL
, nvroot
, 0,
1079 VDEV_ALLOC_BIAS_DEDUP
, name_flags
);
1080 } else if (zfs_special_devs(nvroot
, VDEV_ALLOC_BIAS_DEDUP
)) {
1081 print_vdev_tree(zhp
, "dedup", nvroot
, 0,
1082 VDEV_ALLOC_BIAS_DEDUP
, name_flags
);
1085 if (zfs_special_devs(poolnvroot
, VDEV_ALLOC_BIAS_SPECIAL
)) {
1086 print_vdev_tree(zhp
, "special", poolnvroot
, 0,
1087 VDEV_ALLOC_BIAS_SPECIAL
, name_flags
);
1088 print_vdev_tree(zhp
, NULL
, nvroot
, 0,
1089 VDEV_ALLOC_BIAS_SPECIAL
, name_flags
);
1090 } else if (zfs_special_devs(nvroot
, VDEV_ALLOC_BIAS_SPECIAL
)) {
1091 print_vdev_tree(zhp
, "special", nvroot
, 0,
1092 VDEV_ALLOC_BIAS_SPECIAL
, name_flags
);
1095 if (num_logs(poolnvroot
) > 0) {
1096 print_vdev_tree(zhp
, "logs", poolnvroot
, 0,
1097 VDEV_ALLOC_BIAS_LOG
, name_flags
);
1098 print_vdev_tree(zhp
, NULL
, nvroot
, 0,
1099 VDEV_ALLOC_BIAS_LOG
, name_flags
);
1100 } else if (num_logs(nvroot
) > 0) {
1101 print_vdev_tree(zhp
, "logs", nvroot
, 0,
1102 VDEV_ALLOC_BIAS_LOG
, name_flags
);
1105 /* Do the same for the caches */
1106 if (nvlist_lookup_nvlist_array(poolnvroot
, ZPOOL_CONFIG_L2CACHE
,
1107 &l2child
, &l2children
) == 0 && l2children
) {
1109 (void) printf(gettext("\tcache\n"));
1110 for (c
= 0; c
< l2children
; c
++) {
1111 vname
= zpool_vdev_name(g_zfs
, NULL
,
1112 l2child
[c
], name_flags
);
1113 (void) printf("\t %s\n", vname
);
1117 if (nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_L2CACHE
,
1118 &l2child
, &l2children
) == 0 && l2children
) {
1120 (void) printf(gettext("\tcache\n"));
1121 for (c
= 0; c
< l2children
; c
++) {
1122 vname
= zpool_vdev_name(g_zfs
, NULL
,
1123 l2child
[c
], name_flags
);
1124 (void) printf("\t %s\n", vname
);
1128 /* And finally the spares */
1129 if (nvlist_lookup_nvlist_array(poolnvroot
, ZPOOL_CONFIG_SPARES
,
1130 &sparechild
, &sparechildren
) == 0 && sparechildren
> 0) {
1132 (void) printf(gettext("\tspares\n"));
1133 for (c
= 0; c
< sparechildren
; c
++) {
1134 vname
= zpool_vdev_name(g_zfs
, NULL
,
1135 sparechild
[c
], name_flags
);
1136 (void) printf("\t %s\n", vname
);
1140 if (nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_SPARES
,
1141 &sparechild
, &sparechildren
) == 0 && sparechildren
> 0) {
1143 (void) printf(gettext("\tspares\n"));
1144 for (c
= 0; c
< sparechildren
; c
++) {
1145 vname
= zpool_vdev_name(g_zfs
, NULL
,
1146 sparechild
[c
], name_flags
);
1147 (void) printf("\t %s\n", vname
);
1154 ret
= (zpool_add(zhp
, nvroot
) != 0);
1158 nvlist_free(nvroot
);
1165 * zpool remove [-npsw] <pool> <vdev> ...
1167 * Removes the given vdev from the pool.
1170 zpool_do_remove(int argc
, char **argv
)
1174 zpool_handle_t
*zhp
= NULL
;
1175 boolean_t stop
= B_FALSE
;
1177 boolean_t noop
= B_FALSE
;
1178 boolean_t parsable
= B_FALSE
;
1179 boolean_t wait
= B_FALSE
;
1182 while ((c
= getopt(argc
, argv
, "npsw")) != -1) {
1197 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
1206 /* get pool name and check number of arguments */
1208 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
1214 if ((zhp
= zpool_open(g_zfs
, poolname
)) == NULL
)
1219 (void) fprintf(stderr
, gettext("stop request ignored\n"));
1225 (void) fprintf(stderr
, gettext("too many arguments\n"));
1228 if (zpool_vdev_remove_cancel(zhp
) != 0)
1231 (void) fprintf(stderr
, gettext("invalid option "
1232 "combination: -w cannot be used with -s\n"));
1237 (void) fprintf(stderr
, gettext("missing device\n"));
1241 for (i
= 1; i
< argc
; i
++) {
1245 if (zpool_vdev_indirect_size(zhp
, argv
[i
],
1251 (void) printf("%s %llu\n",
1252 argv
[i
], (unsigned long long)size
);
1255 zfs_nicenum(size
, valstr
,
1257 (void) printf("Memory that will be "
1258 "used after removing %s: %s\n",
1262 if (zpool_vdev_remove(zhp
, argv
[i
]) != 0)
1267 if (ret
== 0 && wait
)
1268 ret
= zpool_wait(zhp
, ZPOOL_WAIT_REMOVE
);
1276 * Return 1 if a vdev is active (being used in a pool)
1277 * Return 0 if a vdev is inactive (offlined or faulted, or not in active pool)
1279 * This is useful for checking if a disk in an active pool is offlined or
1283 vdev_is_active(char *vdev_path
)
1286 fd
= open(vdev_path
, O_EXCL
);
1288 return (1); /* cant open O_EXCL - disk is active */
1292 return (0); /* disk is inactive in the pool */
1296 * zpool labelclear [-f] <vdev>
1298 * -f Force clearing the label for the vdevs which are members of
1299 * the exported or foreign pools.
1301 * Verifies that the vdev is not active and zeros out the label information
1305 zpool_do_labelclear(int argc
, char **argv
)
1307 char vdev
[MAXPATHLEN
];
1309 int c
, fd
= -1, ret
= 0;
1312 boolean_t inuse
= B_FALSE
;
1313 boolean_t force
= B_FALSE
;
1316 while ((c
= getopt(argc
, argv
, "f")) != -1) {
1322 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
1333 (void) fprintf(stderr
, gettext("missing vdev name\n"));
1337 (void) fprintf(stderr
, gettext("too many arguments\n"));
1341 (void) strlcpy(vdev
, argv
[0], sizeof (vdev
));
1344 * If we cannot open an absolute path, we quit.
1345 * Otherwise if the provided vdev name doesn't point to a file,
1346 * try prepending expected disk paths and partition numbers.
1348 if ((fd
= open(vdev
, O_RDWR
)) < 0) {
1350 if (vdev
[0] == '/') {
1351 (void) fprintf(stderr
, gettext("failed to open "
1352 "%s: %s\n"), vdev
, strerror(errno
));
1356 error
= zfs_resolve_shortname(argv
[0], vdev
, MAXPATHLEN
);
1357 if (error
== 0 && zfs_dev_is_whole_disk(vdev
)) {
1358 if (zfs_append_partition(vdev
, MAXPATHLEN
) == -1)
1362 if (error
|| ((fd
= open(vdev
, O_RDWR
)) < 0)) {
1363 if (errno
== ENOENT
) {
1364 (void) fprintf(stderr
, gettext(
1365 "failed to find device %s, try "
1366 "specifying absolute path instead\n"),
1371 (void) fprintf(stderr
, gettext("failed to open %s:"
1372 " %s\n"), vdev
, strerror(errno
));
1378 * Flush all dirty pages for the block device. This should not be
1379 * fatal when the device does not support BLKFLSBUF as would be the
1380 * case for a file vdev.
1382 if ((zfs_dev_flush(fd
) != 0) && (errno
!= ENOTTY
))
1383 (void) fprintf(stderr
, gettext("failed to invalidate "
1384 "cache for %s: %s\n"), vdev
, strerror(errno
));
1386 if (zpool_read_label(fd
, &config
, NULL
) != 0) {
1387 (void) fprintf(stderr
,
1388 gettext("failed to read label from %s\n"), vdev
);
1392 nvlist_free(config
);
1394 ret
= zpool_in_use(g_zfs
, fd
, &state
, &name
, &inuse
);
1396 (void) fprintf(stderr
,
1397 gettext("failed to check state for %s\n"), vdev
);
1407 case POOL_STATE_ACTIVE
:
1408 case POOL_STATE_SPARE
:
1409 case POOL_STATE_L2CACHE
:
1411 * We allow the user to call 'zpool offline -f'
1412 * on an offlined disk in an active pool. We can check if
1413 * the disk is online by calling vdev_is_active().
1415 if (force
&& !vdev_is_active(vdev
))
1418 (void) fprintf(stderr
, gettext(
1419 "%s is a member (%s) of pool \"%s\""),
1420 vdev
, zpool_pool_state_to_name(state
), name
);
1423 (void) fprintf(stderr
, gettext(
1424 ". Offline the disk first to clear its label."));
1430 case POOL_STATE_EXPORTED
:
1433 (void) fprintf(stderr
, gettext(
1434 "use '-f' to override the following error:\n"
1435 "%s is a member of exported pool \"%s\"\n"),
1440 case POOL_STATE_POTENTIALLY_ACTIVE
:
1443 (void) fprintf(stderr
, gettext(
1444 "use '-f' to override the following error:\n"
1445 "%s is a member of potentially active pool \"%s\"\n"),
1450 case POOL_STATE_DESTROYED
:
1451 /* inuse should never be set for a destroyed pool */
1457 ret
= zpool_clear_label(fd
);
1459 (void) fprintf(stderr
,
1460 gettext("failed to clear label for %s\n"), vdev
);
1471 * zpool create [-fnd] [-o property=value] ...
1472 * [-O file-system-property=value] ...
1473 * [-R root] [-m mountpoint] <pool> <dev> ...
1475 * -f Force creation, even if devices appear in use
1476 * -n Do not create the pool, but display the resulting layout if it
1477 * were to be created.
1478 * -R Create a pool under an alternate root
1479 * -m Set default mountpoint for the root dataset. By default it's
1481 * -o Set property=value.
1482 * -o Set feature@feature=enabled|disabled.
1483 * -d Don't automatically enable all supported pool features
1484 * (individual features can be enabled with -o).
1485 * -O Set fsproperty=value in the pool's root file system
1487 * Creates the named pool according to the given vdev specification. The
1488 * bulk of the vdev processing is done in make_root_vdev() in zpool_vdev.c.
1489 * Once we get the nvlist back from make_root_vdev(), we either print out the
1490 * contents (if '-n' was specified), or pass it to libzfs to do the creation.
1493 zpool_do_create(int argc
, char **argv
)
1495 boolean_t force
= B_FALSE
;
1496 boolean_t dryrun
= B_FALSE
;
1497 boolean_t enable_pool_features
= B_TRUE
;
1500 nvlist_t
*nvroot
= NULL
;
1504 char *altroot
= NULL
;
1505 char *compat
= NULL
;
1506 char *mountpoint
= NULL
;
1507 nvlist_t
*fsprops
= NULL
;
1508 nvlist_t
*props
= NULL
;
1512 while ((c
= getopt(argc
, argv
, ":fndR:m:o:O:t:")) != -1) {
1521 enable_pool_features
= B_FALSE
;
1525 if (add_prop_list(zpool_prop_to_name(
1526 ZPOOL_PROP_ALTROOT
), optarg
, &props
, B_TRUE
))
1528 if (add_prop_list_default(zpool_prop_to_name(
1529 ZPOOL_PROP_CACHEFILE
), "none", &props
))
1533 /* Equivalent to -O mountpoint=optarg */
1534 mountpoint
= optarg
;
1537 if ((propval
= strchr(optarg
, '=')) == NULL
) {
1538 (void) fprintf(stderr
, gettext("missing "
1539 "'=' for -o option\n"));
1545 if (add_prop_list(optarg
, propval
, &props
, B_TRUE
))
1549 * If the user is creating a pool that doesn't support
1550 * feature flags, don't enable any features.
1552 if (zpool_name_to_prop(optarg
) == ZPOOL_PROP_VERSION
) {
1556 ver
= strtoull(propval
, &end
, 10);
1558 ver
< SPA_VERSION_FEATURES
) {
1559 enable_pool_features
= B_FALSE
;
1562 if (zpool_name_to_prop(optarg
) == ZPOOL_PROP_ALTROOT
)
1564 if (zpool_name_to_prop(optarg
) ==
1565 ZPOOL_PROP_COMPATIBILITY
)
1569 if ((propval
= strchr(optarg
, '=')) == NULL
) {
1570 (void) fprintf(stderr
, gettext("missing "
1571 "'=' for -O option\n"));
1578 * Mountpoints are checked and then added later.
1579 * Uniquely among properties, they can be specified
1580 * more than once, to avoid conflict with -m.
1582 if (0 == strcmp(optarg
,
1583 zfs_prop_to_name(ZFS_PROP_MOUNTPOINT
))) {
1584 mountpoint
= propval
;
1585 } else if (add_prop_list(optarg
, propval
, &fsprops
,
1592 * Sanity check temporary pool name.
1594 if (strchr(optarg
, '/') != NULL
) {
1595 (void) fprintf(stderr
, gettext("cannot create "
1596 "'%s': invalid character '/' in temporary "
1598 (void) fprintf(stderr
, gettext("use 'zfs "
1599 "create' to create a dataset\n"));
1603 if (add_prop_list(zpool_prop_to_name(
1604 ZPOOL_PROP_TNAME
), optarg
, &props
, B_TRUE
))
1606 if (add_prop_list_default(zpool_prop_to_name(
1607 ZPOOL_PROP_CACHEFILE
), "none", &props
))
1612 (void) fprintf(stderr
, gettext("missing argument for "
1613 "'%c' option\n"), optopt
);
1616 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
1625 /* get pool name and check number of arguments */
1627 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
1631 (void) fprintf(stderr
, gettext("missing vdev specification\n"));
1638 * As a special case, check for use of '/' in the name, and direct the
1639 * user to use 'zfs create' instead.
1641 if (strchr(poolname
, '/') != NULL
) {
1642 (void) fprintf(stderr
, gettext("cannot create '%s': invalid "
1643 "character '/' in pool name\n"), poolname
);
1644 (void) fprintf(stderr
, gettext("use 'zfs create' to "
1645 "create a dataset\n"));
1649 /* pass off to make_root_vdev for bulk processing */
1650 nvroot
= make_root_vdev(NULL
, props
, force
, !force
, B_FALSE
, dryrun
,
1651 argc
- 1, argv
+ 1);
1655 /* make_root_vdev() allows 0 toplevel children if there are spares */
1656 if (!zfs_allocatable_devs(nvroot
)) {
1657 (void) fprintf(stderr
, gettext("invalid vdev "
1658 "specification: at least one toplevel vdev must be "
1663 if (altroot
!= NULL
&& altroot
[0] != '/') {
1664 (void) fprintf(stderr
, gettext("invalid alternate root '%s': "
1665 "must be an absolute path\n"), altroot
);
1670 * Check the validity of the mountpoint and direct the user to use the
1671 * '-m' mountpoint option if it looks like its in use.
1673 if (mountpoint
== NULL
||
1674 (strcmp(mountpoint
, ZFS_MOUNTPOINT_LEGACY
) != 0 &&
1675 strcmp(mountpoint
, ZFS_MOUNTPOINT_NONE
) != 0)) {
1676 char buf
[MAXPATHLEN
];
1679 if (mountpoint
&& mountpoint
[0] != '/') {
1680 (void) fprintf(stderr
, gettext("invalid mountpoint "
1681 "'%s': must be an absolute path, 'legacy', or "
1682 "'none'\n"), mountpoint
);
1686 if (mountpoint
== NULL
) {
1687 if (altroot
!= NULL
)
1688 (void) snprintf(buf
, sizeof (buf
), "%s/%s",
1691 (void) snprintf(buf
, sizeof (buf
), "/%s",
1694 if (altroot
!= NULL
)
1695 (void) snprintf(buf
, sizeof (buf
), "%s%s",
1696 altroot
, mountpoint
);
1698 (void) snprintf(buf
, sizeof (buf
), "%s",
1702 if ((dirp
= opendir(buf
)) == NULL
&& errno
!= ENOENT
) {
1703 (void) fprintf(stderr
, gettext("mountpoint '%s' : "
1704 "%s\n"), buf
, strerror(errno
));
1705 (void) fprintf(stderr
, gettext("use '-m' "
1706 "option to provide a different default\n"));
1711 while (count
< 3 && readdir(dirp
) != NULL
)
1713 (void) closedir(dirp
);
1716 (void) fprintf(stderr
, gettext("mountpoint "
1717 "'%s' exists and is not empty\n"), buf
);
1718 (void) fprintf(stderr
, gettext("use '-m' "
1719 "option to provide a "
1720 "different default\n"));
1727 * Now that the mountpoint's validity has been checked, ensure that
1728 * the property is set appropriately prior to creating the pool.
1730 if (mountpoint
!= NULL
) {
1731 ret
= add_prop_list(zfs_prop_to_name(ZFS_PROP_MOUNTPOINT
),
1732 mountpoint
, &fsprops
, B_FALSE
);
1740 * For a dry run invocation, print out a basic message and run
1741 * through all the vdevs in the list and print out in an
1742 * appropriate hierarchy.
1744 (void) printf(gettext("would create '%s' with the "
1745 "following layout:\n\n"), poolname
);
1747 print_vdev_tree(NULL
, poolname
, nvroot
, 0, "", 0);
1748 print_vdev_tree(NULL
, "dedup", nvroot
, 0,
1749 VDEV_ALLOC_BIAS_DEDUP
, 0);
1750 print_vdev_tree(NULL
, "special", nvroot
, 0,
1751 VDEV_ALLOC_BIAS_SPECIAL
, 0);
1752 print_vdev_tree(NULL
, "logs", nvroot
, 0,
1753 VDEV_ALLOC_BIAS_LOG
, 0);
1754 print_cache_list(nvroot
, 0);
1755 print_spare_list(nvroot
, 0);
1760 * Load in feature set.
1761 * Note: if compatibility property not given, we'll have
1762 * NULL, which means 'all features'.
1764 boolean_t requested_features
[SPA_FEATURES
];
1765 if (zpool_do_load_compat(compat
, requested_features
) !=
1766 ZPOOL_COMPATIBILITY_OK
)
1770 * props contains list of features to enable.
1772 * - remove it if feature@name=disabled
1773 * - leave it there if feature@name=enabled
1775 * - enable_pool_features (ie: no '-d' or '-o version')
1776 * - it's supported by the kernel module
1777 * - it's in the requested feature set
1778 * - warn if it's enabled but not in compat
1780 for (spa_feature_t i
= 0; i
< SPA_FEATURES
; i
++) {
1781 char propname
[MAXPATHLEN
];
1782 const char *propval
;
1783 zfeature_info_t
*feat
= &spa_feature_table
[i
];
1785 (void) snprintf(propname
, sizeof (propname
),
1786 "feature@%s", feat
->fi_uname
);
1788 if (!nvlist_lookup_string(props
, propname
, &propval
)) {
1790 ZFS_FEATURE_DISABLED
) == 0) {
1791 (void) nvlist_remove_all(props
,
1793 } else if (strcmp(propval
,
1794 ZFS_FEATURE_ENABLED
) == 0 &&
1795 !requested_features
[i
]) {
1796 (void) fprintf(stderr
, gettext(
1797 "Warning: feature \"%s\" enabled "
1798 "but is not in specified "
1799 "'compatibility' feature set.\n"),
1803 enable_pool_features
&&
1804 feat
->fi_zfs_mod_supported
&&
1805 requested_features
[i
]) {
1806 ret
= add_prop_list(propname
,
1807 ZFS_FEATURE_ENABLED
, &props
, B_TRUE
);
1814 if (zpool_create(g_zfs
, poolname
,
1815 nvroot
, props
, fsprops
) == 0) {
1816 zfs_handle_t
*pool
= zfs_open(g_zfs
,
1817 tname
? tname
: poolname
, ZFS_TYPE_FILESYSTEM
);
1819 if (zfs_mount(pool
, NULL
, 0) == 0) {
1820 ret
= zfs_share(pool
, NULL
);
1821 zfs_commit_shares(NULL
);
1825 } else if (libzfs_errno(g_zfs
) == EZFS_INVALIDNAME
) {
1826 (void) fprintf(stderr
, gettext("pool name may have "
1832 nvlist_free(nvroot
);
1833 nvlist_free(fsprops
);
1837 nvlist_free(fsprops
);
1844 * zpool destroy <pool>
1846 * -f Forcefully unmount any datasets
1848 * Destroy the given pool. Automatically unmounts any datasets in the pool.
1851 zpool_do_destroy(int argc
, char **argv
)
1853 boolean_t force
= B_FALSE
;
1856 zpool_handle_t
*zhp
;
1860 while ((c
= getopt(argc
, argv
, "f")) != -1) {
1866 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
1875 /* check arguments */
1877 (void) fprintf(stderr
, gettext("missing pool argument\n"));
1881 (void) fprintf(stderr
, gettext("too many arguments\n"));
1887 if ((zhp
= zpool_open_canfail(g_zfs
, pool
)) == NULL
) {
1889 * As a special case, check for use of '/' in the name, and
1890 * direct the user to use 'zfs destroy' instead.
1892 if (strchr(pool
, '/') != NULL
)
1893 (void) fprintf(stderr
, gettext("use 'zfs destroy' to "
1894 "destroy a dataset\n"));
1898 if (zpool_disable_datasets(zhp
, force
) != 0) {
1899 (void) fprintf(stderr
, gettext("could not destroy '%s': "
1900 "could not unmount datasets\n"), zpool_get_name(zhp
));
1905 /* The history must be logged as part of the export */
1906 log_history
= B_FALSE
;
1908 ret
= (zpool_destroy(zhp
, history_str
) != 0);
1915 typedef struct export_cbdata
{
1917 boolean_t hardforce
;
1924 zpool_export_one(zpool_handle_t
*zhp
, void *data
)
1926 export_cbdata_t
*cb
= data
;
1928 if (zpool_disable_datasets(zhp
, cb
->force
) != 0)
1931 /* The history must be logged as part of the export */
1932 log_history
= B_FALSE
;
1934 if (cb
->hardforce
) {
1935 if (zpool_export_force(zhp
, history_str
) != 0)
1937 } else if (zpool_export(zhp
, cb
->force
, history_str
) != 0) {
1945 * zpool export [-f] <pool> ...
1947 * -a Export all pools
1948 * -f Forcefully unmount datasets
1950 * Export the given pools. By default, the command will attempt to cleanly
1951 * unmount any active datasets within the pool. If the '-f' flag is specified,
1952 * then the datasets will be forcefully unmounted.
1955 zpool_do_export(int argc
, char **argv
)
1958 boolean_t do_all
= B_FALSE
;
1959 boolean_t force
= B_FALSE
;
1960 boolean_t hardforce
= B_FALSE
;
1964 while ((c
= getopt(argc
, argv
, "afF")) != -1) {
1976 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
1983 cb
.hardforce
= hardforce
;
1989 (void) fprintf(stderr
, gettext("too many arguments\n"));
1993 return (for_each_pool(argc
, argv
, B_TRUE
, NULL
,
1994 ZFS_TYPE_POOL
, B_FALSE
, zpool_export_one
, &cb
));
1997 /* check arguments */
1999 (void) fprintf(stderr
, gettext("missing pool argument\n"));
2003 ret
= for_each_pool(argc
, argv
, B_TRUE
, NULL
, ZFS_TYPE_POOL
,
2004 B_FALSE
, zpool_export_one
, &cb
);
2010 * Given a vdev configuration, determine the maximum width needed for the device
2014 max_width(zpool_handle_t
*zhp
, nvlist_t
*nv
, int depth
, int max
,
2017 static const char *const subtypes
[] =
2018 {ZPOOL_CONFIG_SPARES
, ZPOOL_CONFIG_L2CACHE
, ZPOOL_CONFIG_CHILDREN
};
2020 char *name
= zpool_vdev_name(g_zfs
, zhp
, nv
, name_flags
);
2021 max
= MAX(strlen(name
) + depth
, max
);
2026 for (size_t i
= 0; i
< ARRAY_SIZE(subtypes
); ++i
)
2027 if (nvlist_lookup_nvlist_array(nv
, subtypes
[i
],
2028 &child
, &children
) == 0)
2029 for (uint_t c
= 0; c
< children
; ++c
)
2030 max
= MAX(max_width(zhp
, child
[c
], depth
+ 2,
2031 max
, name_flags
), max
);
2036 typedef struct spare_cbdata
{
2038 zpool_handle_t
*cb_zhp
;
2042 find_vdev(nvlist_t
*nv
, uint64_t search
)
2048 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
, &guid
) == 0 &&
2052 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
2053 &child
, &children
) == 0) {
2054 for (c
= 0; c
< children
; c
++)
2055 if (find_vdev(child
[c
], search
))
2063 find_spare(zpool_handle_t
*zhp
, void *data
)
2065 spare_cbdata_t
*cbp
= data
;
2066 nvlist_t
*config
, *nvroot
;
2068 config
= zpool_get_config(zhp
, NULL
);
2069 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
2072 if (find_vdev(nvroot
, cbp
->cb_guid
)) {
2081 typedef struct status_cbdata
{
2085 boolean_t cb_allpools
;
2086 boolean_t cb_verbose
;
2087 boolean_t cb_literal
;
2088 boolean_t cb_explain
;
2090 boolean_t cb_dedup_stats
;
2091 boolean_t cb_print_status
;
2092 boolean_t cb_print_slow_ios
;
2093 boolean_t cb_print_vdev_init
;
2094 boolean_t cb_print_vdev_trim
;
2095 vdev_cmd_data_list_t
*vcdl
;
2098 /* Return 1 if string is NULL, empty, or whitespace; return 0 otherwise. */
2100 is_blank_str(const char *str
)
2102 for (; str
!= NULL
&& *str
!= '\0'; ++str
)
2108 /* Print command output lines for specific vdev in a specific pool */
2110 zpool_print_cmd(vdev_cmd_data_list_t
*vcdl
, const char *pool
, const char *path
)
2112 vdev_cmd_data_t
*data
;
2116 for (i
= 0; i
< vcdl
->count
; i
++) {
2117 if ((strcmp(vcdl
->data
[i
].path
, path
) != 0) ||
2118 (strcmp(vcdl
->data
[i
].pool
, pool
) != 0)) {
2119 /* Not the vdev we're looking for */
2123 data
= &vcdl
->data
[i
];
2124 /* Print out all the output values for this vdev */
2125 for (j
= 0; j
< vcdl
->uniq_cols_cnt
; j
++) {
2127 /* Does this vdev have values for this column? */
2128 for (int k
= 0; k
< data
->cols_cnt
; k
++) {
2129 if (strcmp(data
->cols
[k
],
2130 vcdl
->uniq_cols
[j
]) == 0) {
2131 /* yes it does, record the value */
2132 val
= data
->lines
[k
];
2137 * Mark empty values with dashes to make output
2140 if (val
== NULL
|| is_blank_str(val
))
2143 printf("%*s", vcdl
->uniq_cols_width
[j
], val
);
2144 if (j
< vcdl
->uniq_cols_cnt
- 1)
2148 /* Print out any values that aren't in a column at the end */
2149 for (j
= data
->cols_cnt
; j
< data
->lines_cnt
; j
++) {
2150 /* Did we have any columns? If so print a spacer. */
2151 if (vcdl
->uniq_cols_cnt
> 0)
2154 val
= data
->lines
[j
];
2155 fputs(val
?: "", stdout
);
2162 * Print vdev initialization status for leaves
2165 print_status_initialize(vdev_stat_t
*vs
, boolean_t verbose
)
2168 if ((vs
->vs_initialize_state
== VDEV_INITIALIZE_ACTIVE
||
2169 vs
->vs_initialize_state
== VDEV_INITIALIZE_SUSPENDED
||
2170 vs
->vs_initialize_state
== VDEV_INITIALIZE_COMPLETE
) &&
2171 !vs
->vs_scan_removing
) {
2174 struct tm zaction_ts
;
2176 time_t t
= vs
->vs_initialize_action_time
;
2177 int initialize_pct
= 100;
2178 if (vs
->vs_initialize_state
!=
2179 VDEV_INITIALIZE_COMPLETE
) {
2180 initialize_pct
= (vs
->vs_initialize_bytes_done
*
2181 100 / (vs
->vs_initialize_bytes_est
+ 1));
2184 (void) localtime_r(&t
, &zaction_ts
);
2185 (void) strftime(tbuf
, sizeof (tbuf
), "%c", &zaction_ts
);
2187 switch (vs
->vs_initialize_state
) {
2188 case VDEV_INITIALIZE_SUSPENDED
:
2189 (void) snprintf(zbuf
, sizeof (zbuf
), ", %s %s",
2190 gettext("suspended, started at"), tbuf
);
2192 case VDEV_INITIALIZE_ACTIVE
:
2193 (void) snprintf(zbuf
, sizeof (zbuf
), ", %s %s",
2194 gettext("started at"), tbuf
);
2196 case VDEV_INITIALIZE_COMPLETE
:
2197 (void) snprintf(zbuf
, sizeof (zbuf
), ", %s %s",
2198 gettext("completed at"), tbuf
);
2202 (void) printf(gettext(" (%d%% initialized%s)"),
2203 initialize_pct
, zbuf
);
2205 (void) printf(gettext(" (uninitialized)"));
2207 } else if (vs
->vs_initialize_state
== VDEV_INITIALIZE_ACTIVE
) {
2208 (void) printf(gettext(" (initializing)"));
2213 * Print vdev TRIM status for leaves
2216 print_status_trim(vdev_stat_t
*vs
, boolean_t verbose
)
2219 if ((vs
->vs_trim_state
== VDEV_TRIM_ACTIVE
||
2220 vs
->vs_trim_state
== VDEV_TRIM_SUSPENDED
||
2221 vs
->vs_trim_state
== VDEV_TRIM_COMPLETE
) &&
2222 !vs
->vs_scan_removing
) {
2225 struct tm zaction_ts
;
2227 time_t t
= vs
->vs_trim_action_time
;
2229 if (vs
->vs_trim_state
!= VDEV_TRIM_COMPLETE
) {
2230 trim_pct
= (vs
->vs_trim_bytes_done
*
2231 100 / (vs
->vs_trim_bytes_est
+ 1));
2234 (void) localtime_r(&t
, &zaction_ts
);
2235 (void) strftime(tbuf
, sizeof (tbuf
), "%c", &zaction_ts
);
2237 switch (vs
->vs_trim_state
) {
2238 case VDEV_TRIM_SUSPENDED
:
2239 (void) snprintf(zbuf
, sizeof (zbuf
), ", %s %s",
2240 gettext("suspended, started at"), tbuf
);
2242 case VDEV_TRIM_ACTIVE
:
2243 (void) snprintf(zbuf
, sizeof (zbuf
), ", %s %s",
2244 gettext("started at"), tbuf
);
2246 case VDEV_TRIM_COMPLETE
:
2247 (void) snprintf(zbuf
, sizeof (zbuf
), ", %s %s",
2248 gettext("completed at"), tbuf
);
2252 (void) printf(gettext(" (%d%% trimmed%s)"),
2254 } else if (vs
->vs_trim_notsup
) {
2255 (void) printf(gettext(" (trim unsupported)"));
2257 (void) printf(gettext(" (untrimmed)"));
2259 } else if (vs
->vs_trim_state
== VDEV_TRIM_ACTIVE
) {
2260 (void) printf(gettext(" (trimming)"));
2265 * Return the color associated with a health string. This includes returning
2266 * NULL for no color change.
2269 health_str_to_color(const char *health
)
2271 if (strcmp(health
, gettext("FAULTED")) == 0 ||
2272 strcmp(health
, gettext("SUSPENDED")) == 0 ||
2273 strcmp(health
, gettext("UNAVAIL")) == 0) {
2277 if (strcmp(health
, gettext("OFFLINE")) == 0 ||
2278 strcmp(health
, gettext("DEGRADED")) == 0 ||
2279 strcmp(health
, gettext("REMOVED")) == 0) {
2280 return (ANSI_YELLOW
);
2287 * Print out configuration state as requested by status_callback.
2290 print_status_config(zpool_handle_t
*zhp
, status_cbdata_t
*cb
, const char *name
,
2291 nvlist_t
*nv
, int depth
, boolean_t isspare
, vdev_rebuild_stat_t
*vrs
)
2293 nvlist_t
**child
, *root
;
2294 uint_t c
, i
, vsc
, children
;
2295 pool_scan_stat_t
*ps
= NULL
;
2297 char rbuf
[6], wbuf
[6], cbuf
[6];
2299 uint64_t notpresent
;
2300 spare_cbdata_t spare_cb
;
2303 const char *path
= NULL
;
2304 const char *rcolor
= NULL
, *wcolor
= NULL
, *ccolor
= NULL
;
2306 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
2307 &child
, &children
) != 0)
2310 verify(nvlist_lookup_uint64_array(nv
, ZPOOL_CONFIG_VDEV_STATS
,
2311 (uint64_t **)&vs
, &vsc
) == 0);
2313 verify(nvlist_lookup_string(nv
, ZPOOL_CONFIG_TYPE
, &type
) == 0);
2315 if (strcmp(type
, VDEV_TYPE_INDIRECT
) == 0)
2318 state
= zpool_state_to_name(vs
->vs_state
, vs
->vs_aux
);
2322 * For hot spares, we use the terms 'INUSE' and 'AVAILABLE' for
2325 if (vs
->vs_aux
== VDEV_AUX_SPARED
)
2326 state
= gettext("INUSE");
2327 else if (vs
->vs_state
== VDEV_STATE_HEALTHY
)
2328 state
= gettext("AVAIL");
2331 printf_color(health_str_to_color(state
),
2332 "\t%*s%-*s %-8s", depth
, "", cb
->cb_namewidth
- depth
,
2336 if (vs
->vs_read_errors
)
2339 if (vs
->vs_write_errors
)
2342 if (vs
->vs_checksum_errors
)
2345 if (cb
->cb_literal
) {
2347 printf_color(rcolor
, "%5llu",
2348 (u_longlong_t
)vs
->vs_read_errors
);
2350 printf_color(wcolor
, "%5llu",
2351 (u_longlong_t
)vs
->vs_write_errors
);
2353 printf_color(ccolor
, "%5llu",
2354 (u_longlong_t
)vs
->vs_checksum_errors
);
2356 zfs_nicenum(vs
->vs_read_errors
, rbuf
, sizeof (rbuf
));
2357 zfs_nicenum(vs
->vs_write_errors
, wbuf
, sizeof (wbuf
));
2358 zfs_nicenum(vs
->vs_checksum_errors
, cbuf
,
2361 printf_color(rcolor
, "%5s", rbuf
);
2363 printf_color(wcolor
, "%5s", wbuf
);
2365 printf_color(ccolor
, "%5s", cbuf
);
2367 if (cb
->cb_print_slow_ios
) {
2368 if (children
== 0) {
2369 /* Only leafs vdevs have slow IOs */
2370 zfs_nicenum(vs
->vs_slow_ios
, rbuf
,
2373 snprintf(rbuf
, sizeof (rbuf
), "-");
2377 printf(" %5llu", (u_longlong_t
)vs
->vs_slow_ios
);
2379 printf(" %5s", rbuf
);
2383 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_NOT_PRESENT
,
2384 ¬present
) == 0) {
2385 verify(nvlist_lookup_string(nv
, ZPOOL_CONFIG_PATH
, &path
) == 0);
2386 (void) printf(" %s %s", gettext("was"), path
);
2387 } else if (vs
->vs_aux
!= 0) {
2389 color_start(ANSI_RED
);
2390 switch (vs
->vs_aux
) {
2391 case VDEV_AUX_OPEN_FAILED
:
2392 (void) printf(gettext("cannot open"));
2395 case VDEV_AUX_BAD_GUID_SUM
:
2396 (void) printf(gettext("missing device"));
2399 case VDEV_AUX_NO_REPLICAS
:
2400 (void) printf(gettext("insufficient replicas"));
2403 case VDEV_AUX_VERSION_NEWER
:
2404 (void) printf(gettext("newer version"));
2407 case VDEV_AUX_UNSUP_FEAT
:
2408 (void) printf(gettext("unsupported feature(s)"));
2411 case VDEV_AUX_ASHIFT_TOO_BIG
:
2412 (void) printf(gettext("unsupported minimum blocksize"));
2415 case VDEV_AUX_SPARED
:
2416 verify(nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
,
2417 &spare_cb
.cb_guid
) == 0);
2418 if (zpool_iter(g_zfs
, find_spare
, &spare_cb
) == 1) {
2419 if (strcmp(zpool_get_name(spare_cb
.cb_zhp
),
2420 zpool_get_name(zhp
)) == 0)
2421 (void) printf(gettext("currently in "
2424 (void) printf(gettext("in use by "
2426 zpool_get_name(spare_cb
.cb_zhp
));
2427 zpool_close(spare_cb
.cb_zhp
);
2429 (void) printf(gettext("currently in use"));
2433 case VDEV_AUX_ERR_EXCEEDED
:
2434 (void) printf(gettext("too many errors"));
2437 case VDEV_AUX_IO_FAILURE
:
2438 (void) printf(gettext("experienced I/O failures"));
2441 case VDEV_AUX_BAD_LOG
:
2442 (void) printf(gettext("bad intent log"));
2445 case VDEV_AUX_EXTERNAL
:
2446 (void) printf(gettext("external device fault"));
2449 case VDEV_AUX_SPLIT_POOL
:
2450 (void) printf(gettext("split into new pool"));
2453 case VDEV_AUX_ACTIVE
:
2454 (void) printf(gettext("currently in use"));
2457 case VDEV_AUX_CHILDREN_OFFLINE
:
2458 (void) printf(gettext("all children offline"));
2461 case VDEV_AUX_BAD_LABEL
:
2462 (void) printf(gettext("invalid label"));
2466 (void) printf(gettext("corrupted data"));
2470 } else if (children
== 0 && !isspare
&&
2471 getenv("ZPOOL_STATUS_NON_NATIVE_ASHIFT_IGNORE") == NULL
&&
2472 VDEV_STAT_VALID(vs_physical_ashift
, vsc
) &&
2473 vs
->vs_configured_ashift
< vs
->vs_physical_ashift
) {
2475 gettext(" block size: %dB configured, %dB native"),
2476 1 << vs
->vs_configured_ashift
, 1 << vs
->vs_physical_ashift
);
2479 if (vs
->vs_scan_removing
!= 0) {
2480 (void) printf(gettext(" (removing)"));
2481 } else if (VDEV_STAT_VALID(vs_noalloc
, vsc
) && vs
->vs_noalloc
!= 0) {
2482 (void) printf(gettext(" (non-allocating)"));
2485 /* The root vdev has the scrub/resilver stats */
2486 root
= fnvlist_lookup_nvlist(zpool_get_config(zhp
, NULL
),
2487 ZPOOL_CONFIG_VDEV_TREE
);
2488 (void) nvlist_lookup_uint64_array(root
, ZPOOL_CONFIG_SCAN_STATS
,
2489 (uint64_t **)&ps
, &c
);
2492 * If you force fault a drive that's resilvering, its scan stats can
2493 * get frozen in time, giving the false impression that it's
2494 * being resilvered. That's why we check the state to see if the vdev
2495 * is healthy before reporting "resilvering" or "repairing".
2497 if (ps
!= NULL
&& ps
->pss_state
== DSS_SCANNING
&& children
== 0 &&
2498 vs
->vs_state
== VDEV_STATE_HEALTHY
) {
2499 if (vs
->vs_scan_processed
!= 0) {
2500 (void) printf(gettext(" (%s)"),
2501 (ps
->pss_func
== POOL_SCAN_RESILVER
) ?
2502 "resilvering" : "repairing");
2503 } else if (vs
->vs_resilver_deferred
) {
2504 (void) printf(gettext(" (awaiting resilver)"));
2508 /* The top-level vdevs have the rebuild stats */
2509 if (vrs
!= NULL
&& vrs
->vrs_state
== VDEV_REBUILD_ACTIVE
&&
2510 children
== 0 && vs
->vs_state
== VDEV_STATE_HEALTHY
) {
2511 if (vs
->vs_rebuild_processed
!= 0) {
2512 (void) printf(gettext(" (resilvering)"));
2516 if (cb
->vcdl
!= NULL
) {
2517 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_PATH
, &path
) == 0) {
2519 zpool_print_cmd(cb
->vcdl
, zpool_get_name(zhp
), path
);
2523 /* Display vdev initialization and trim status for leaves. */
2524 if (children
== 0) {
2525 print_status_initialize(vs
, cb
->cb_print_vdev_init
);
2526 print_status_trim(vs
, cb
->cb_print_vdev_trim
);
2529 (void) printf("\n");
2531 for (c
= 0; c
< children
; c
++) {
2532 uint64_t islog
= B_FALSE
, ishole
= B_FALSE
;
2534 /* Don't print logs or holes here */
2535 (void) nvlist_lookup_uint64(child
[c
], ZPOOL_CONFIG_IS_LOG
,
2537 (void) nvlist_lookup_uint64(child
[c
], ZPOOL_CONFIG_IS_HOLE
,
2539 if (islog
|| ishole
)
2541 /* Only print normal classes here */
2542 if (nvlist_exists(child
[c
], ZPOOL_CONFIG_ALLOCATION_BIAS
))
2545 /* Provide vdev_rebuild_stats to children if available */
2547 (void) nvlist_lookup_uint64_array(nv
,
2548 ZPOOL_CONFIG_REBUILD_STATS
,
2549 (uint64_t **)&vrs
, &i
);
2552 vname
= zpool_vdev_name(g_zfs
, zhp
, child
[c
],
2553 cb
->cb_name_flags
| VDEV_NAME_TYPE_ID
);
2554 print_status_config(zhp
, cb
, vname
, child
[c
], depth
+ 2,
2561 * Print the configuration of an exported pool. Iterate over all vdevs in the
2562 * pool, printing out the name and status for each one.
2565 print_import_config(status_cbdata_t
*cb
, const char *name
, nvlist_t
*nv
,
2574 verify(nvlist_lookup_string(nv
, ZPOOL_CONFIG_TYPE
, &type
) == 0);
2575 if (strcmp(type
, VDEV_TYPE_MISSING
) == 0 ||
2576 strcmp(type
, VDEV_TYPE_HOLE
) == 0)
2579 verify(nvlist_lookup_uint64_array(nv
, ZPOOL_CONFIG_VDEV_STATS
,
2580 (uint64_t **)&vs
, &c
) == 0);
2582 (void) printf("\t%*s%-*s", depth
, "", cb
->cb_namewidth
- depth
, name
);
2583 (void) printf(" %s", zpool_state_to_name(vs
->vs_state
, vs
->vs_aux
));
2585 if (vs
->vs_aux
!= 0) {
2588 switch (vs
->vs_aux
) {
2589 case VDEV_AUX_OPEN_FAILED
:
2590 (void) printf(gettext("cannot open"));
2593 case VDEV_AUX_BAD_GUID_SUM
:
2594 (void) printf(gettext("missing device"));
2597 case VDEV_AUX_NO_REPLICAS
:
2598 (void) printf(gettext("insufficient replicas"));
2601 case VDEV_AUX_VERSION_NEWER
:
2602 (void) printf(gettext("newer version"));
2605 case VDEV_AUX_UNSUP_FEAT
:
2606 (void) printf(gettext("unsupported feature(s)"));
2609 case VDEV_AUX_ERR_EXCEEDED
:
2610 (void) printf(gettext("too many errors"));
2613 case VDEV_AUX_ACTIVE
:
2614 (void) printf(gettext("currently in use"));
2617 case VDEV_AUX_CHILDREN_OFFLINE
:
2618 (void) printf(gettext("all children offline"));
2621 case VDEV_AUX_BAD_LABEL
:
2622 (void) printf(gettext("invalid label"));
2626 (void) printf(gettext("corrupted data"));
2630 (void) printf("\n");
2632 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
2633 &child
, &children
) != 0)
2636 for (c
= 0; c
< children
; c
++) {
2637 uint64_t is_log
= B_FALSE
;
2639 (void) nvlist_lookup_uint64(child
[c
], ZPOOL_CONFIG_IS_LOG
,
2643 if (nvlist_exists(child
[c
], ZPOOL_CONFIG_ALLOCATION_BIAS
))
2646 vname
= zpool_vdev_name(g_zfs
, NULL
, child
[c
],
2647 cb
->cb_name_flags
| VDEV_NAME_TYPE_ID
);
2648 print_import_config(cb
, vname
, child
[c
], depth
+ 2);
2652 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_L2CACHE
,
2653 &child
, &children
) == 0) {
2654 (void) printf(gettext("\tcache\n"));
2655 for (c
= 0; c
< children
; c
++) {
2656 vname
= zpool_vdev_name(g_zfs
, NULL
, child
[c
],
2658 (void) printf("\t %s\n", vname
);
2663 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_SPARES
,
2664 &child
, &children
) == 0) {
2665 (void) printf(gettext("\tspares\n"));
2666 for (c
= 0; c
< children
; c
++) {
2667 vname
= zpool_vdev_name(g_zfs
, NULL
, child
[c
],
2669 (void) printf("\t %s\n", vname
);
2676 * Print specialized class vdevs.
2678 * These are recorded as top level vdevs in the main pool child array
2679 * but with "is_log" set to 1 or an "alloc_bias" string. We use either
2680 * print_status_config() or print_import_config() to print the top level
2681 * class vdevs then any of their children (eg mirrored slogs) are printed
2682 * recursively - which works because only the top level vdev is marked.
2685 print_class_vdevs(zpool_handle_t
*zhp
, status_cbdata_t
*cb
, nvlist_t
*nv
,
2690 boolean_t printed
= B_FALSE
;
2692 assert(zhp
!= NULL
|| !cb
->cb_verbose
);
2694 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
, &child
,
2698 for (c
= 0; c
< children
; c
++) {
2699 uint64_t is_log
= B_FALSE
;
2700 const char *bias
= NULL
;
2701 const char *type
= NULL
;
2703 (void) nvlist_lookup_uint64(child
[c
], ZPOOL_CONFIG_IS_LOG
,
2707 bias
= (char *)VDEV_ALLOC_CLASS_LOGS
;
2709 (void) nvlist_lookup_string(child
[c
],
2710 ZPOOL_CONFIG_ALLOCATION_BIAS
, &bias
);
2711 (void) nvlist_lookup_string(child
[c
],
2712 ZPOOL_CONFIG_TYPE
, &type
);
2715 if (bias
== NULL
|| strcmp(bias
, class) != 0)
2717 if (!is_log
&& strcmp(type
, VDEV_TYPE_INDIRECT
) == 0)
2721 (void) printf("\t%s\t\n", gettext(class));
2725 char *name
= zpool_vdev_name(g_zfs
, zhp
, child
[c
],
2726 cb
->cb_name_flags
| VDEV_NAME_TYPE_ID
);
2727 if (cb
->cb_print_status
)
2728 print_status_config(zhp
, cb
, name
, child
[c
], 2,
2731 print_import_config(cb
, name
, child
[c
], 2);
2737 * Display the status for the given pool.
2740 show_import(nvlist_t
*config
, boolean_t report_error
)
2742 uint64_t pool_state
;
2746 uint64_t hostid
= 0;
2748 const char *hostname
= "unknown";
2749 nvlist_t
*nvroot
, *nvinfo
;
2750 zpool_status_t reason
;
2751 zpool_errata_t errata
;
2754 const char *comment
;
2755 status_cbdata_t cb
= { 0 };
2757 verify(nvlist_lookup_string(config
, ZPOOL_CONFIG_POOL_NAME
,
2759 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_GUID
,
2761 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_STATE
,
2763 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
2766 verify(nvlist_lookup_uint64_array(nvroot
, ZPOOL_CONFIG_VDEV_STATS
,
2767 (uint64_t **)&vs
, &vsc
) == 0);
2768 health
= zpool_state_to_name(vs
->vs_state
, vs
->vs_aux
);
2770 reason
= zpool_import_status(config
, &msgid
, &errata
);
2773 * If we're importing using a cachefile, then we won't report any
2774 * errors unless we are in the scan phase of the import.
2776 if (reason
!= ZPOOL_STATUS_OK
&& !report_error
)
2779 (void) printf(gettext(" pool: %s\n"), name
);
2780 (void) printf(gettext(" id: %llu\n"), (u_longlong_t
)guid
);
2781 (void) printf(gettext(" state: %s"), health
);
2782 if (pool_state
== POOL_STATE_DESTROYED
)
2783 (void) printf(gettext(" (DESTROYED)"));
2784 (void) printf("\n");
2787 case ZPOOL_STATUS_MISSING_DEV_R
:
2788 case ZPOOL_STATUS_MISSING_DEV_NR
:
2789 case ZPOOL_STATUS_BAD_GUID_SUM
:
2790 printf_color(ANSI_BOLD
, gettext("status: "));
2791 printf_color(ANSI_YELLOW
, gettext("One or more devices are "
2792 "missing from the system.\n"));
2795 case ZPOOL_STATUS_CORRUPT_LABEL_R
:
2796 case ZPOOL_STATUS_CORRUPT_LABEL_NR
:
2797 printf_color(ANSI_BOLD
, gettext("status: "));
2798 printf_color(ANSI_YELLOW
, gettext("One or more devices contains"
2799 " corrupted data.\n"));
2802 case ZPOOL_STATUS_CORRUPT_DATA
:
2804 gettext(" status: The pool data is corrupted.\n"));
2807 case ZPOOL_STATUS_OFFLINE_DEV
:
2808 printf_color(ANSI_BOLD
, gettext("status: "));
2809 printf_color(ANSI_YELLOW
, gettext("One or more devices "
2810 "are offlined.\n"));
2813 case ZPOOL_STATUS_CORRUPT_POOL
:
2814 printf_color(ANSI_BOLD
, gettext("status: "));
2815 printf_color(ANSI_YELLOW
, gettext("The pool metadata is "
2819 case ZPOOL_STATUS_VERSION_OLDER
:
2820 printf_color(ANSI_BOLD
, gettext("status: "));
2821 printf_color(ANSI_YELLOW
, gettext("The pool is formatted using "
2822 "a legacy on-disk version.\n"));
2825 case ZPOOL_STATUS_VERSION_NEWER
:
2826 printf_color(ANSI_BOLD
, gettext("status: "));
2827 printf_color(ANSI_YELLOW
, gettext("The pool is formatted using "
2828 "an incompatible version.\n"));
2831 case ZPOOL_STATUS_FEAT_DISABLED
:
2832 printf_color(ANSI_BOLD
, gettext("status: "));
2833 printf_color(ANSI_YELLOW
, gettext("Some supported "
2834 "features are not enabled on the pool.\n\t"
2835 "(Note that they may be intentionally disabled "
2836 "if the\n\t'compatibility' property is set.)\n"));
2839 case ZPOOL_STATUS_COMPATIBILITY_ERR
:
2840 printf_color(ANSI_BOLD
, gettext("status: "));
2841 printf_color(ANSI_YELLOW
, gettext("Error reading or parsing "
2842 "the file(s) indicated by the 'compatibility'\n"
2846 case ZPOOL_STATUS_INCOMPATIBLE_FEAT
:
2847 printf_color(ANSI_BOLD
, gettext("status: "));
2848 printf_color(ANSI_YELLOW
, gettext("One or more features "
2849 "are enabled on the pool despite not being\n"
2850 "requested by the 'compatibility' property.\n"));
2853 case ZPOOL_STATUS_UNSUP_FEAT_READ
:
2854 printf_color(ANSI_BOLD
, gettext("status: "));
2855 printf_color(ANSI_YELLOW
, gettext("The pool uses the following "
2856 "feature(s) not supported on this system:\n"));
2857 color_start(ANSI_YELLOW
);
2858 zpool_print_unsup_feat(config
);
2862 case ZPOOL_STATUS_UNSUP_FEAT_WRITE
:
2863 printf_color(ANSI_BOLD
, gettext("status: "));
2864 printf_color(ANSI_YELLOW
, gettext("The pool can only be "
2865 "accessed in read-only mode on this system. It\n\tcannot be"
2866 " accessed in read-write mode because it uses the "
2867 "following\n\tfeature(s) not supported on this system:\n"));
2868 color_start(ANSI_YELLOW
);
2869 zpool_print_unsup_feat(config
);
2873 case ZPOOL_STATUS_HOSTID_ACTIVE
:
2874 printf_color(ANSI_BOLD
, gettext("status: "));
2875 printf_color(ANSI_YELLOW
, gettext("The pool is currently "
2876 "imported by another system.\n"));
2879 case ZPOOL_STATUS_HOSTID_REQUIRED
:
2880 printf_color(ANSI_BOLD
, gettext("status: "));
2881 printf_color(ANSI_YELLOW
, gettext("The pool has the "
2882 "multihost property on. It cannot\n\tbe safely imported "
2883 "when the system hostid is not set.\n"));
2886 case ZPOOL_STATUS_HOSTID_MISMATCH
:
2887 printf_color(ANSI_BOLD
, gettext("status: "));
2888 printf_color(ANSI_YELLOW
, gettext("The pool was last accessed "
2889 "by another system.\n"));
2892 case ZPOOL_STATUS_FAULTED_DEV_R
:
2893 case ZPOOL_STATUS_FAULTED_DEV_NR
:
2894 printf_color(ANSI_BOLD
, gettext("status: "));
2895 printf_color(ANSI_YELLOW
, gettext("One or more devices are "
2899 case ZPOOL_STATUS_BAD_LOG
:
2900 printf_color(ANSI_BOLD
, gettext("status: "));
2901 printf_color(ANSI_YELLOW
, gettext("An intent log record cannot "
2905 case ZPOOL_STATUS_RESILVERING
:
2906 case ZPOOL_STATUS_REBUILDING
:
2907 printf_color(ANSI_BOLD
, gettext("status: "));
2908 printf_color(ANSI_YELLOW
, gettext("One or more devices were "
2909 "being resilvered.\n"));
2912 case ZPOOL_STATUS_ERRATA
:
2913 printf_color(ANSI_BOLD
, gettext("status: "));
2914 printf_color(ANSI_YELLOW
, gettext("Errata #%d detected.\n"),
2918 case ZPOOL_STATUS_NON_NATIVE_ASHIFT
:
2919 printf_color(ANSI_BOLD
, gettext("status: "));
2920 printf_color(ANSI_YELLOW
, gettext("One or more devices are "
2921 "configured to use a non-native block size.\n"
2922 "\tExpect reduced performance.\n"));
2927 * No other status can be seen when importing pools.
2929 assert(reason
== ZPOOL_STATUS_OK
);
2933 * Print out an action according to the overall state of the pool.
2935 if (vs
->vs_state
== VDEV_STATE_HEALTHY
) {
2936 if (reason
== ZPOOL_STATUS_VERSION_OLDER
||
2937 reason
== ZPOOL_STATUS_FEAT_DISABLED
) {
2938 (void) printf(gettext(" action: The pool can be "
2939 "imported using its name or numeric identifier, "
2940 "though\n\tsome features will not be available "
2941 "without an explicit 'zpool upgrade'.\n"));
2942 } else if (reason
== ZPOOL_STATUS_COMPATIBILITY_ERR
) {
2943 (void) printf(gettext(" action: The pool can be "
2944 "imported using its name or numeric\n\tidentifier, "
2945 "though the file(s) indicated by its "
2946 "'compatibility'\n\tproperty cannot be parsed at "
2948 } else if (reason
== ZPOOL_STATUS_HOSTID_MISMATCH
) {
2949 (void) printf(gettext(" action: The pool can be "
2950 "imported using its name or numeric "
2951 "identifier and\n\tthe '-f' flag.\n"));
2952 } else if (reason
== ZPOOL_STATUS_ERRATA
) {
2954 case ZPOOL_ERRATA_NONE
:
2957 case ZPOOL_ERRATA_ZOL_2094_SCRUB
:
2958 (void) printf(gettext(" action: The pool can "
2959 "be imported using its name or numeric "
2960 "identifier,\n\thowever there is a compat"
2961 "ibility issue which should be corrected"
2962 "\n\tby running 'zpool scrub'\n"));
2965 case ZPOOL_ERRATA_ZOL_2094_ASYNC_DESTROY
:
2966 (void) printf(gettext(" action: The pool can"
2967 "not be imported with this version of ZFS "
2968 "due to\n\tan active asynchronous destroy. "
2969 "Revert to an earlier version\n\tand "
2970 "allow the destroy to complete before "
2974 case ZPOOL_ERRATA_ZOL_6845_ENCRYPTION
:
2975 (void) printf(gettext(" action: Existing "
2976 "encrypted datasets contain an on-disk "
2977 "incompatibility, which\n\tneeds to be "
2978 "corrected. Backup these datasets to new "
2979 "encrypted datasets\n\tand destroy the "
2983 case ZPOOL_ERRATA_ZOL_8308_ENCRYPTION
:
2984 (void) printf(gettext(" action: Existing "
2985 "encrypted snapshots and bookmarks contain "
2986 "an on-disk\n\tincompatibility. This may "
2987 "cause on-disk corruption if they are used"
2988 "\n\twith 'zfs recv'. To correct the "
2989 "issue, enable the bookmark_v2 feature.\n\t"
2990 "No additional action is needed if there "
2991 "are no encrypted snapshots or\n\t"
2992 "bookmarks. If preserving the encrypted "
2993 "snapshots and bookmarks is\n\trequired, "
2994 "use a non-raw send to backup and restore "
2995 "them. Alternately,\n\tthey may be removed"
2996 " to resolve the incompatibility.\n"));
3000 * All errata must contain an action message.
3005 (void) printf(gettext(" action: The pool can be "
3006 "imported using its name or numeric "
3009 } else if (vs
->vs_state
== VDEV_STATE_DEGRADED
) {
3010 (void) printf(gettext(" action: The pool can be imported "
3011 "despite missing or damaged devices. The\n\tfault "
3012 "tolerance of the pool may be compromised if imported.\n"));
3015 case ZPOOL_STATUS_VERSION_NEWER
:
3016 (void) printf(gettext(" action: The pool cannot be "
3017 "imported. Access the pool on a system running "
3018 "newer\n\tsoftware, or recreate the pool from "
3021 case ZPOOL_STATUS_UNSUP_FEAT_READ
:
3022 printf_color(ANSI_BOLD
, gettext("action: "));
3023 printf_color(ANSI_YELLOW
, gettext("The pool cannot be "
3024 "imported. Access the pool on a system that "
3025 "supports\n\tthe required feature(s), or recreate "
3026 "the pool from backup.\n"));
3028 case ZPOOL_STATUS_UNSUP_FEAT_WRITE
:
3029 printf_color(ANSI_BOLD
, gettext("action: "));
3030 printf_color(ANSI_YELLOW
, gettext("The pool cannot be "
3031 "imported in read-write mode. Import the pool "
3033 "\t\"-o readonly=on\", access the pool on a system "
3034 "that supports the\n\trequired feature(s), or "
3035 "recreate the pool from backup.\n"));
3037 case ZPOOL_STATUS_MISSING_DEV_R
:
3038 case ZPOOL_STATUS_MISSING_DEV_NR
:
3039 case ZPOOL_STATUS_BAD_GUID_SUM
:
3040 (void) printf(gettext(" action: The pool cannot be "
3041 "imported. Attach the missing\n\tdevices and try "
3044 case ZPOOL_STATUS_HOSTID_ACTIVE
:
3045 VERIFY0(nvlist_lookup_nvlist(config
,
3046 ZPOOL_CONFIG_LOAD_INFO
, &nvinfo
));
3048 if (nvlist_exists(nvinfo
, ZPOOL_CONFIG_MMP_HOSTNAME
))
3049 hostname
= fnvlist_lookup_string(nvinfo
,
3050 ZPOOL_CONFIG_MMP_HOSTNAME
);
3052 if (nvlist_exists(nvinfo
, ZPOOL_CONFIG_MMP_HOSTID
))
3053 hostid
= fnvlist_lookup_uint64(nvinfo
,
3054 ZPOOL_CONFIG_MMP_HOSTID
);
3056 (void) printf(gettext(" action: The pool must be "
3057 "exported from %s (hostid=%"PRIx64
")\n\tbefore it "
3058 "can be safely imported.\n"), hostname
, hostid
);
3060 case ZPOOL_STATUS_HOSTID_REQUIRED
:
3061 (void) printf(gettext(" action: Set a unique system "
3062 "hostid with the zgenhostid(8) command.\n"));
3065 (void) printf(gettext(" action: The pool cannot be "
3066 "imported due to damaged devices or data.\n"));
3070 /* Print the comment attached to the pool. */
3071 if (nvlist_lookup_string(config
, ZPOOL_CONFIG_COMMENT
, &comment
) == 0)
3072 (void) printf(gettext("comment: %s\n"), comment
);
3075 * If the state is "closed" or "can't open", and the aux state
3076 * is "corrupt data":
3078 if (((vs
->vs_state
== VDEV_STATE_CLOSED
) ||
3079 (vs
->vs_state
== VDEV_STATE_CANT_OPEN
)) &&
3080 (vs
->vs_aux
== VDEV_AUX_CORRUPT_DATA
)) {
3081 if (pool_state
== POOL_STATE_DESTROYED
)
3082 (void) printf(gettext("\tThe pool was destroyed, "
3083 "but can be imported using the '-Df' flags.\n"));
3084 else if (pool_state
!= POOL_STATE_EXPORTED
)
3085 (void) printf(gettext("\tThe pool may be active on "
3086 "another system, but can be imported using\n\t"
3087 "the '-f' flag.\n"));
3090 if (msgid
!= NULL
) {
3091 (void) printf(gettext(
3092 " see: https://openzfs.github.io/openzfs-docs/msg/%s\n"),
3096 (void) printf(gettext(" config:\n\n"));
3098 cb
.cb_namewidth
= max_width(NULL
, nvroot
, 0, strlen(name
),
3100 if (cb
.cb_namewidth
< 10)
3101 cb
.cb_namewidth
= 10;
3103 print_import_config(&cb
, name
, nvroot
, 0);
3105 print_class_vdevs(NULL
, &cb
, nvroot
, VDEV_ALLOC_BIAS_DEDUP
);
3106 print_class_vdevs(NULL
, &cb
, nvroot
, VDEV_ALLOC_BIAS_SPECIAL
);
3107 print_class_vdevs(NULL
, &cb
, nvroot
, VDEV_ALLOC_CLASS_LOGS
);
3109 if (reason
== ZPOOL_STATUS_BAD_GUID_SUM
) {
3110 (void) printf(gettext("\n\tAdditional devices are known to "
3111 "be part of this pool, though their\n\texact "
3112 "configuration cannot be determined.\n"));
3118 zfs_force_import_required(nvlist_t
*config
)
3121 uint64_t hostid
= 0;
3124 state
= fnvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_STATE
);
3125 nvinfo
= fnvlist_lookup_nvlist(config
, ZPOOL_CONFIG_LOAD_INFO
);
3128 * The hostid on LOAD_INFO comes from the MOS label via
3129 * spa_tryimport(). If its not there then we're likely talking to an
3130 * older kernel, so use the top one, which will be from the label
3131 * discovered in zpool_find_import(), or if a cachefile is in use, the
3134 if (nvlist_lookup_uint64(nvinfo
, ZPOOL_CONFIG_HOSTID
, &hostid
) != 0)
3135 nvlist_lookup_uint64(config
, ZPOOL_CONFIG_HOSTID
, &hostid
);
3137 if (state
!= POOL_STATE_EXPORTED
&& hostid
!= get_system_hostid())
3140 if (nvlist_exists(nvinfo
, ZPOOL_CONFIG_MMP_STATE
)) {
3141 mmp_state_t mmp_state
= fnvlist_lookup_uint64(nvinfo
,
3142 ZPOOL_CONFIG_MMP_STATE
);
3144 if (mmp_state
!= MMP_STATE_INACTIVE
)
3152 * Perform the import for the given configuration. This passes the heavy
3153 * lifting off to zpool_import_props(), and then mounts the datasets contained
3157 do_import(nvlist_t
*config
, const char *newname
, const char *mntopts
,
3158 nvlist_t
*props
, int flags
)
3162 zpool_handle_t
*zhp
;
3166 name
= fnvlist_lookup_string(config
, ZPOOL_CONFIG_POOL_NAME
);
3167 version
= fnvlist_lookup_uint64(config
, ZPOOL_CONFIG_VERSION
);
3169 if (!SPA_VERSION_IS_SUPPORTED(version
)) {
3170 (void) fprintf(stderr
, gettext("cannot import '%s': pool "
3171 "is formatted using an unsupported ZFS version\n"), name
);
3173 } else if (zfs_force_import_required(config
) &&
3174 !(flags
& ZFS_IMPORT_ANY_HOST
)) {
3175 mmp_state_t mmp_state
= MMP_STATE_INACTIVE
;
3178 nvinfo
= fnvlist_lookup_nvlist(config
, ZPOOL_CONFIG_LOAD_INFO
);
3179 if (nvlist_exists(nvinfo
, ZPOOL_CONFIG_MMP_STATE
))
3180 mmp_state
= fnvlist_lookup_uint64(nvinfo
,
3181 ZPOOL_CONFIG_MMP_STATE
);
3183 if (mmp_state
== MMP_STATE_ACTIVE
) {
3184 const char *hostname
= "<unknown>";
3185 uint64_t hostid
= 0;
3187 if (nvlist_exists(nvinfo
, ZPOOL_CONFIG_MMP_HOSTNAME
))
3188 hostname
= fnvlist_lookup_string(nvinfo
,
3189 ZPOOL_CONFIG_MMP_HOSTNAME
);
3191 if (nvlist_exists(nvinfo
, ZPOOL_CONFIG_MMP_HOSTID
))
3192 hostid
= fnvlist_lookup_uint64(nvinfo
,
3193 ZPOOL_CONFIG_MMP_HOSTID
);
3195 (void) fprintf(stderr
, gettext("cannot import '%s': "
3196 "pool is imported on %s (hostid: "
3197 "0x%"PRIx64
")\nExport the pool on the other "
3198 "system, then run 'zpool import'.\n"),
3199 name
, hostname
, hostid
);
3200 } else if (mmp_state
== MMP_STATE_NO_HOSTID
) {
3201 (void) fprintf(stderr
, gettext("Cannot import '%s': "
3202 "pool has the multihost property on and the\n"
3203 "system's hostid is not set. Set a unique hostid "
3204 "with the zgenhostid(8) command.\n"), name
);
3206 const char *hostname
= "<unknown>";
3207 time_t timestamp
= 0;
3208 uint64_t hostid
= 0;
3210 if (nvlist_exists(nvinfo
, ZPOOL_CONFIG_HOSTNAME
))
3211 hostname
= fnvlist_lookup_string(nvinfo
,
3212 ZPOOL_CONFIG_HOSTNAME
);
3213 else if (nvlist_exists(config
, ZPOOL_CONFIG_HOSTNAME
))
3214 hostname
= fnvlist_lookup_string(config
,
3215 ZPOOL_CONFIG_HOSTNAME
);
3217 if (nvlist_exists(config
, ZPOOL_CONFIG_TIMESTAMP
))
3218 timestamp
= fnvlist_lookup_uint64(config
,
3219 ZPOOL_CONFIG_TIMESTAMP
);
3221 if (nvlist_exists(nvinfo
, ZPOOL_CONFIG_HOSTID
))
3222 hostid
= fnvlist_lookup_uint64(nvinfo
,
3223 ZPOOL_CONFIG_HOSTID
);
3224 else if (nvlist_exists(config
, ZPOOL_CONFIG_HOSTID
))
3225 hostid
= fnvlist_lookup_uint64(config
,
3226 ZPOOL_CONFIG_HOSTID
);
3228 (void) fprintf(stderr
, gettext("cannot import '%s': "
3229 "pool was previously in use from another system.\n"
3230 "Last accessed by %s (hostid=%"PRIx64
") at %s"
3231 "The pool can be imported, use 'zpool import -f' "
3232 "to import the pool.\n"), name
, hostname
,
3233 hostid
, ctime(×tamp
));
3239 if (zpool_import_props(g_zfs
, config
, newname
, props
, flags
) != 0)
3242 if (newname
!= NULL
)
3245 if ((zhp
= zpool_open_canfail(g_zfs
, name
)) == NULL
)
3249 * Loading keys is best effort. We don't want to return immediately
3250 * if it fails but we do want to give the error to the caller.
3252 if (flags
& ZFS_IMPORT_LOAD_KEYS
&&
3253 zfs_crypto_attempt_load_keys(g_zfs
, name
) != 0)
3256 if (zpool_get_state(zhp
) != POOL_STATE_UNAVAIL
&&
3257 !(flags
& ZFS_IMPORT_ONLY
)) {
3258 ms_status
= zpool_enable_datasets(zhp
, mntopts
, 0);
3259 if (ms_status
== EZFS_SHAREFAILED
) {
3260 (void) fprintf(stderr
, gettext("Import was "
3261 "successful, but unable to share some datasets"));
3262 } else if (ms_status
== EZFS_MOUNTFAILED
) {
3263 (void) fprintf(stderr
, gettext("Import was "
3264 "successful, but unable to mount some datasets"));
3273 import_pools(nvlist_t
*pools
, nvlist_t
*props
, char *mntopts
, int flags
,
3274 char *orig_name
, char *new_name
,
3275 boolean_t do_destroyed
, boolean_t pool_specified
, boolean_t do_all
,
3276 importargs_t
*import
)
3278 nvlist_t
*config
= NULL
;
3279 nvlist_t
*found_config
= NULL
;
3280 uint64_t pool_state
;
3283 * At this point we have a list of import candidate configs. Even if
3284 * we were searching by pool name or guid, we still need to
3285 * post-process the list to deal with pool state and possible
3289 nvpair_t
*elem
= NULL
;
3290 boolean_t first
= B_TRUE
;
3291 while ((elem
= nvlist_next_nvpair(pools
, elem
)) != NULL
) {
3293 verify(nvpair_value_nvlist(elem
, &config
) == 0);
3295 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_STATE
,
3297 if (!do_destroyed
&& pool_state
== POOL_STATE_DESTROYED
)
3299 if (do_destroyed
&& pool_state
!= POOL_STATE_DESTROYED
)
3302 verify(nvlist_add_nvlist(config
, ZPOOL_LOAD_POLICY
,
3303 import
->policy
) == 0);
3305 if (!pool_specified
) {
3309 (void) fputc('\n', stdout
);
3312 err
|= do_import(config
, NULL
, mntopts
,
3316 * If we're importing from cachefile, then
3317 * we don't want to report errors until we
3318 * are in the scan phase of the import. If
3319 * we get an error, then we return that error
3320 * to invoke the scan phase.
3322 if (import
->cachefile
&& !import
->scan
)
3323 err
= show_import(config
, B_FALSE
);
3325 (void) show_import(config
, B_TRUE
);
3327 } else if (import
->poolname
!= NULL
) {
3331 * We are searching for a pool based on name.
3333 verify(nvlist_lookup_string(config
,
3334 ZPOOL_CONFIG_POOL_NAME
, &name
) == 0);
3336 if (strcmp(name
, import
->poolname
) == 0) {
3337 if (found_config
!= NULL
) {
3338 (void) fprintf(stderr
, gettext(
3339 "cannot import '%s': more than "
3340 "one matching pool\n"),
3342 (void) fprintf(stderr
, gettext(
3343 "import by numeric ID instead\n"));
3346 found_config
= config
;
3352 * Search for a pool by guid.
3354 verify(nvlist_lookup_uint64(config
,
3355 ZPOOL_CONFIG_POOL_GUID
, &guid
) == 0);
3357 if (guid
== import
->guid
)
3358 found_config
= config
;
3363 * If we were searching for a specific pool, verify that we found a
3364 * pool, and then do the import.
3366 if (pool_specified
&& err
== 0) {
3367 if (found_config
== NULL
) {
3368 (void) fprintf(stderr
, gettext("cannot import '%s': "
3369 "no such pool available\n"), orig_name
);
3372 err
|= do_import(found_config
, new_name
,
3373 mntopts
, props
, flags
);
3378 * If we were just looking for pools, report an error if none were
3381 if (!pool_specified
&& first
)
3382 (void) fprintf(stderr
,
3383 gettext("no pools available to import\n"));
3387 typedef struct target_exists_args
{
3388 const char *poolname
;
3390 } target_exists_args_t
;
3393 name_or_guid_exists(zpool_handle_t
*zhp
, void *data
)
3395 target_exists_args_t
*args
= data
;
3396 nvlist_t
*config
= zpool_get_config(zhp
, NULL
);
3402 if (args
->poolname
!= NULL
) {
3403 const char *pool_name
;
3405 verify(nvlist_lookup_string(config
, ZPOOL_CONFIG_POOL_NAME
,
3407 if (strcmp(pool_name
, args
->poolname
) == 0)
3412 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_GUID
,
3414 if (pool_guid
== args
->poolguid
)
3422 * zpool checkpoint <pool>
3423 * checkpoint --discard <pool>
3425 * -d Discard the checkpoint from a checkpointed
3428 * -w Wait for discarding a checkpoint to complete.
3431 * Checkpoints the specified pool, by taking a "snapshot" of its
3432 * current state. A pool can only have one checkpoint at a time.
3435 zpool_do_checkpoint(int argc
, char **argv
)
3437 boolean_t discard
, wait
;
3439 zpool_handle_t
*zhp
;
3442 struct option long_options
[] = {
3443 {"discard", no_argument
, NULL
, 'd'},
3444 {"wait", no_argument
, NULL
, 'w'},
3450 while ((c
= getopt_long(argc
, argv
, ":dw", long_options
, NULL
)) != -1) {
3459 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
3465 if (wait
&& !discard
) {
3466 (void) fprintf(stderr
, gettext("--wait only valid when "
3467 "--discard also specified\n"));
3475 (void) fprintf(stderr
, gettext("missing pool argument\n"));
3480 (void) fprintf(stderr
, gettext("too many arguments\n"));
3486 if ((zhp
= zpool_open(g_zfs
, pool
)) == NULL
) {
3487 /* As a special case, check for use of '/' in the name */
3488 if (strchr(pool
, '/') != NULL
)
3489 (void) fprintf(stderr
, gettext("'zpool checkpoint' "
3490 "doesn't work on datasets. To save the state "
3491 "of a dataset from a specific point in time "
3492 "please use 'zfs snapshot'\n"));
3497 err
= (zpool_discard_checkpoint(zhp
) != 0);
3498 if (err
== 0 && wait
)
3499 err
= zpool_wait(zhp
, ZPOOL_WAIT_CKPT_DISCARD
);
3501 err
= (zpool_checkpoint(zhp
) != 0);
3509 #define CHECKPOINT_OPT 1024
3512 * zpool import [-d dir] [-D]
3513 * import [-o mntopts] [-o prop=value] ... [-R root] [-D] [-l]
3514 * [-d dir | -c cachefile | -s] [-f] -a
3515 * import [-o mntopts] [-o prop=value] ... [-R root] [-D] [-l]
3516 * [-d dir | -c cachefile | -s] [-f] [-n] [-F] <pool | id>
3519 * -c Read pool information from a cachefile instead of searching
3520 * devices. If importing from a cachefile config fails, then
3521 * fallback to searching for devices only in the directories that
3522 * exist in the cachefile.
3524 * -d Scan in a specific directory, other than /dev/. More than
3525 * one directory can be specified using multiple '-d' options.
3527 * -D Scan for previously destroyed pools or import all or only
3528 * specified destroyed pools.
3530 * -R Temporarily import the pool, with all mountpoints relative to
3531 * the given root. The pool will remain exported when the machine
3534 * -V Import even in the presence of faulted vdevs. This is an
3535 * intentionally undocumented option for testing purposes, and
3536 * treats the pool configuration as complete, leaving any bad
3537 * vdevs in the FAULTED state. In other words, it does verbatim
3540 * -f Force import, even if it appears that the pool is active.
3542 * -F Attempt rewind if necessary.
3544 * -n See if rewind would work, but don't actually rewind.
3546 * -N Import the pool but don't mount datasets.
3548 * -T Specify a starting txg to use for import. This option is
3549 * intentionally undocumented option for testing purposes.
3551 * -a Import all pools found.
3553 * -l Load encryption keys while importing.
3555 * -o Set property=value and/or temporary mount options (without '=').
3557 * -s Scan using the default search path, the libblkid cache will
3560 * --rewind-to-checkpoint
3561 * Import the pool and revert back to the checkpoint.
3563 * The import command scans for pools to import, and import pools based on pool
3564 * name and GUID. The pool can also be renamed as part of the import process.
3567 zpool_do_import(int argc
, char **argv
)
3569 char **searchdirs
= NULL
;
3570 char *env
, *envdup
= NULL
;
3574 nvlist_t
*pools
= NULL
;
3575 boolean_t do_all
= B_FALSE
;
3576 boolean_t do_destroyed
= B_FALSE
;
3577 char *mntopts
= NULL
;
3578 uint64_t searchguid
= 0;
3579 char *searchname
= NULL
;
3581 nvlist_t
*policy
= NULL
;
3582 nvlist_t
*props
= NULL
;
3583 int flags
= ZFS_IMPORT_NORMAL
;
3584 uint32_t rewind_policy
= ZPOOL_NO_REWIND
;
3585 boolean_t dryrun
= B_FALSE
;
3586 boolean_t do_rewind
= B_FALSE
;
3587 boolean_t xtreme_rewind
= B_FALSE
;
3588 boolean_t do_scan
= B_FALSE
;
3589 boolean_t pool_exists
= B_FALSE
;
3590 boolean_t pool_specified
= B_FALSE
;
3591 uint64_t txg
= -1ULL;
3592 char *cachefile
= NULL
;
3593 importargs_t idata
= { 0 };
3596 struct option long_options
[] = {
3597 {"rewind-to-checkpoint", no_argument
, NULL
, CHECKPOINT_OPT
},
3602 while ((c
= getopt_long(argc
, argv
, ":aCc:d:DEfFlmnNo:R:stT:VX",
3603 long_options
, NULL
)) != -1) {
3612 searchdirs
= safe_realloc(searchdirs
,
3613 (nsearch
+ 1) * sizeof (char *));
3614 searchdirs
[nsearch
++] = optarg
;
3617 do_destroyed
= B_TRUE
;
3620 flags
|= ZFS_IMPORT_ANY_HOST
;
3626 flags
|= ZFS_IMPORT_LOAD_KEYS
;
3629 flags
|= ZFS_IMPORT_MISSING_LOG
;
3635 flags
|= ZFS_IMPORT_ONLY
;
3638 if ((propval
= strchr(optarg
, '=')) != NULL
) {
3641 if (add_prop_list(optarg
, propval
,
3649 if (add_prop_list(zpool_prop_to_name(
3650 ZPOOL_PROP_ALTROOT
), optarg
, &props
, B_TRUE
))
3652 if (add_prop_list_default(zpool_prop_to_name(
3653 ZPOOL_PROP_CACHEFILE
), "none", &props
))
3660 flags
|= ZFS_IMPORT_TEMP_NAME
;
3661 if (add_prop_list_default(zpool_prop_to_name(
3662 ZPOOL_PROP_CACHEFILE
), "none", &props
))
3668 txg
= strtoull(optarg
, &endptr
, 0);
3669 if (errno
!= 0 || *endptr
!= '\0') {
3670 (void) fprintf(stderr
,
3671 gettext("invalid txg value\n"));
3674 rewind_policy
= ZPOOL_DO_REWIND
| ZPOOL_EXTREME_REWIND
;
3677 flags
|= ZFS_IMPORT_VERBATIM
;
3680 xtreme_rewind
= B_TRUE
;
3682 case CHECKPOINT_OPT
:
3683 flags
|= ZFS_IMPORT_CHECKPOINT
;
3686 (void) fprintf(stderr
, gettext("missing argument for "
3687 "'%c' option\n"), optopt
);
3691 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
3700 if (cachefile
&& nsearch
!= 0) {
3701 (void) fprintf(stderr
, gettext("-c is incompatible with -d\n"));
3705 if (cachefile
&& do_scan
) {
3706 (void) fprintf(stderr
, gettext("-c is incompatible with -s\n"));
3710 if ((flags
& ZFS_IMPORT_LOAD_KEYS
) && (flags
& ZFS_IMPORT_ONLY
)) {
3711 (void) fprintf(stderr
, gettext("-l is incompatible with -N\n"));
3715 if ((flags
& ZFS_IMPORT_LOAD_KEYS
) && !do_all
&& argc
== 0) {
3716 (void) fprintf(stderr
, gettext("-l is only meaningful during "
3721 if ((dryrun
|| xtreme_rewind
) && !do_rewind
) {
3722 (void) fprintf(stderr
,
3723 gettext("-n or -X only meaningful with -F\n"));
3727 rewind_policy
= ZPOOL_TRY_REWIND
;
3729 rewind_policy
= ZPOOL_DO_REWIND
;
3731 rewind_policy
|= ZPOOL_EXTREME_REWIND
;
3733 /* In the future, we can capture further policy and include it here */
3734 if (nvlist_alloc(&policy
, NV_UNIQUE_NAME
, 0) != 0 ||
3735 nvlist_add_uint64(policy
, ZPOOL_LOAD_REQUEST_TXG
, txg
) != 0 ||
3736 nvlist_add_uint32(policy
, ZPOOL_LOAD_REWIND_POLICY
,
3737 rewind_policy
) != 0)
3740 /* check argument count */
3743 (void) fprintf(stderr
, gettext("too many arguments\n"));
3748 (void) fprintf(stderr
, gettext("too many arguments\n"));
3754 * Check for the effective uid. We do this explicitly here because
3755 * otherwise any attempt to discover pools will silently fail.
3757 if (argc
== 0 && geteuid() != 0) {
3758 (void) fprintf(stderr
, gettext("cannot "
3759 "discover pools: permission denied\n"));
3763 nvlist_free(policy
);
3768 * Depending on the arguments given, we do one of the following:
3770 * <none> Iterate through all pools and display information about
3773 * -a Iterate through all pools and try to import each one.
3775 * <id> Find the pool that corresponds to the given GUID/pool
3776 * name and import that one.
3778 * -D Above options applies only to destroyed pools.
3784 searchguid
= strtoull(argv
[0], &endptr
, 10);
3785 if (errno
!= 0 || *endptr
!= '\0') {
3786 searchname
= argv
[0];
3789 pool_specified
= B_TRUE
;
3792 * User specified a name or guid. Ensure it's unique.
3794 target_exists_args_t search
= {searchname
, searchguid
};
3795 pool_exists
= zpool_iter(g_zfs
, name_or_guid_exists
, &search
);
3799 * Check the environment for the preferred search path.
3801 if ((searchdirs
== NULL
) && (env
= getenv("ZPOOL_IMPORT_PATH"))) {
3802 char *dir
, *tmp
= NULL
;
3804 envdup
= strdup(env
);
3806 for (dir
= strtok_r(envdup
, ":", &tmp
);
3808 dir
= strtok_r(NULL
, ":", &tmp
)) {
3809 searchdirs
= safe_realloc(searchdirs
,
3810 (nsearch
+ 1) * sizeof (char *));
3811 searchdirs
[nsearch
++] = dir
;
3815 idata
.path
= searchdirs
;
3816 idata
.paths
= nsearch
;
3817 idata
.poolname
= searchname
;
3818 idata
.guid
= searchguid
;
3819 idata
.cachefile
= cachefile
;
3820 idata
.scan
= do_scan
;
3821 idata
.policy
= policy
;
3823 libpc_handle_t lpch
= {
3824 .lpc_lib_handle
= g_zfs
,
3825 .lpc_ops
= &libzfs_config_ops
,
3826 .lpc_printerr
= B_TRUE
3828 pools
= zpool_search_import(&lpch
, &idata
);
3830 if (pools
!= NULL
&& pool_exists
&&
3831 (argc
== 1 || strcmp(argv
[0], argv
[1]) == 0)) {
3832 (void) fprintf(stderr
, gettext("cannot import '%s': "
3833 "a pool with that name already exists\n"),
3835 (void) fprintf(stderr
, gettext("use the form '%s "
3836 "<pool | id> <newpool>' to give it a new name\n"),
3839 } else if (pools
== NULL
&& pool_exists
) {
3840 (void) fprintf(stderr
, gettext("cannot import '%s': "
3841 "a pool with that name is already created/imported,\n"),
3843 (void) fprintf(stderr
, gettext("and no additional pools "
3844 "with that name were found\n"));
3846 } else if (pools
== NULL
) {
3848 (void) fprintf(stderr
, gettext("cannot import '%s': "
3849 "no such pool available\n"), argv
[0]);
3857 nvlist_free(policy
);
3863 err
= import_pools(pools
, props
, mntopts
, flags
,
3864 argc
>= 1 ? argv
[0] : NULL
,
3865 argc
>= 2 ? argv
[1] : NULL
,
3866 do_destroyed
, pool_specified
, do_all
, &idata
);
3869 * If we're using the cachefile and we failed to import, then
3870 * fallback to scanning the directory for pools that match
3871 * those in the cachefile.
3873 if (err
!= 0 && cachefile
!= NULL
) {
3874 (void) printf(gettext("cachefile import failed, retrying\n"));
3877 * We use the scan flag to gather the directories that exist
3878 * in the cachefile. If we need to fallback to searching for
3879 * the pool config, we will only search devices in these
3882 idata
.scan
= B_TRUE
;
3884 pools
= zpool_search_import(&lpch
, &idata
);
3886 err
= import_pools(pools
, props
, mntopts
, flags
,
3887 argc
>= 1 ? argv
[0] : NULL
,
3888 argc
>= 2 ? argv
[1] : NULL
,
3889 do_destroyed
, pool_specified
, do_all
, &idata
);
3895 nvlist_free(policy
);
3899 return (err
? 1 : 0);
3903 * zpool sync [-f] [pool] ...
3905 * -f (undocumented) force uberblock (and config including zpool cache file)
3908 * Sync the specified pool(s).
3909 * Without arguments "zpool sync" will sync all pools.
3910 * This command initiates TXG sync(s) and will return after the TXG(s) commit.
3914 zpool_do_sync(int argc
, char **argv
)
3917 boolean_t force
= B_FALSE
;
3920 while ((ret
= getopt(argc
, argv
, "f")) != -1) {
3926 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
3935 /* if argc == 0 we will execute zpool_sync_one on all pools */
3936 ret
= for_each_pool(argc
, argv
, B_FALSE
, NULL
, ZFS_TYPE_POOL
,
3937 B_FALSE
, zpool_sync_one
, &force
);
3942 typedef struct iostat_cbdata
{
3946 boolean_t cb_verbose
;
3947 boolean_t cb_literal
;
3948 boolean_t cb_scripted
;
3949 zpool_list_t
*cb_list
;
3950 vdev_cmd_data_list_t
*vcdl
;
3951 vdev_cbdata_t cb_vdevs
;
3955 typedef struct name_and_columns
{
3956 const char *name
; /* Column name */
3957 unsigned int columns
; /* Center name to this number of columns */
3958 } name_and_columns_t
;
3960 #define IOSTAT_MAX_LABELS 15 /* Max number of labels on one line */
3962 static const name_and_columns_t iostat_top_labels
[][IOSTAT_MAX_LABELS
] =
3964 [IOS_DEFAULT
] = {{"capacity", 2}, {"operations", 2}, {"bandwidth", 2},
3966 [IOS_LATENCY
] = {{"total_wait", 2}, {"disk_wait", 2}, {"syncq_wait", 2},
3967 {"asyncq_wait", 2}, {"scrub", 1}, {"trim", 1}, {"rebuild", 1},
3969 [IOS_QUEUES
] = {{"syncq_read", 2}, {"syncq_write", 2},
3970 {"asyncq_read", 2}, {"asyncq_write", 2}, {"scrubq_read", 2},
3971 {"trimq_write", 2}, {"rebuildq_write", 2}, {NULL
}},
3972 [IOS_L_HISTO
] = {{"total_wait", 2}, {"disk_wait", 2}, {"syncq_wait", 2},
3973 {"asyncq_wait", 2}, {NULL
}},
3974 [IOS_RQ_HISTO
] = {{"sync_read", 2}, {"sync_write", 2},
3975 {"async_read", 2}, {"async_write", 2}, {"scrub", 2},
3976 {"trim", 2}, {"rebuild", 2}, {NULL
}},
3979 /* Shorthand - if "columns" field not set, default to 1 column */
3980 static const name_and_columns_t iostat_bottom_labels
[][IOSTAT_MAX_LABELS
] =
3982 [IOS_DEFAULT
] = {{"alloc"}, {"free"}, {"read"}, {"write"}, {"read"},
3984 [IOS_LATENCY
] = {{"read"}, {"write"}, {"read"}, {"write"}, {"read"},
3985 {"write"}, {"read"}, {"write"}, {"wait"}, {"wait"}, {"wait"},
3987 [IOS_QUEUES
] = {{"pend"}, {"activ"}, {"pend"}, {"activ"}, {"pend"},
3988 {"activ"}, {"pend"}, {"activ"}, {"pend"}, {"activ"},
3989 {"pend"}, {"activ"}, {"pend"}, {"activ"}, {NULL
}},
3990 [IOS_L_HISTO
] = {{"read"}, {"write"}, {"read"}, {"write"}, {"read"},
3991 {"write"}, {"read"}, {"write"}, {"scrub"}, {"trim"}, {"rebuild"},
3993 [IOS_RQ_HISTO
] = {{"ind"}, {"agg"}, {"ind"}, {"agg"}, {"ind"}, {"agg"},
3994 {"ind"}, {"agg"}, {"ind"}, {"agg"}, {"ind"}, {"agg"},
3995 {"ind"}, {"agg"}, {NULL
}},
3998 static const char *histo_to_title
[] = {
3999 [IOS_L_HISTO
] = "latency",
4000 [IOS_RQ_HISTO
] = "req_size",
4004 * Return the number of labels in a null-terminated name_and_columns_t
4009 label_array_len(const name_and_columns_t
*labels
)
4013 while (labels
[i
].name
)
4020 * Return the number of strings in a null-terminated string array.
4023 * const char foo[] = {"bar", "baz", NULL}
4028 str_array_len(const char *array
[])
4039 * Return a default column width for default/latency/queue columns. This does
4040 * not include histograms, which have their columns autosized.
4043 default_column_width(iostat_cbdata_t
*cb
, enum iostat_type type
)
4045 unsigned long column_width
= 5; /* Normal niceprint */
4046 static unsigned long widths
[] = {
4048 * Choose some sane default column sizes for printing the
4051 [IOS_DEFAULT
] = 15, /* 1PB capacity */
4052 [IOS_LATENCY
] = 10, /* 1B ns = 10sec */
4053 [IOS_QUEUES
] = 6, /* 1M queue entries */
4054 [IOS_L_HISTO
] = 10, /* 1B ns = 10sec */
4055 [IOS_RQ_HISTO
] = 6, /* 1M queue entries */
4059 column_width
= widths
[type
];
4061 return (column_width
);
4065 * Print the column labels, i.e:
4067 * capacity operations bandwidth
4068 * alloc free read write read write ...
4070 * If force_column_width is set, use it for the column width. If not set, use
4071 * the default column width.
4074 print_iostat_labels(iostat_cbdata_t
*cb
, unsigned int force_column_width
,
4075 const name_and_columns_t labels
[][IOSTAT_MAX_LABELS
])
4078 int text_start
, rw_column_width
, spaces_to_end
;
4079 uint64_t flags
= cb
->cb_flags
;
4081 unsigned int column_width
= force_column_width
;
4083 /* For each bit set in flags */
4084 for (f
= flags
; f
; f
&= ~(1ULL << idx
)) {
4085 idx
= lowbit64(f
) - 1;
4086 if (!force_column_width
)
4087 column_width
= default_column_width(cb
, idx
);
4088 /* Print our top labels centered over "read write" label. */
4089 for (i
= 0; i
< label_array_len(labels
[idx
]); i
++) {
4090 const char *name
= labels
[idx
][i
].name
;
4092 * We treat labels[][].columns == 0 as shorthand
4093 * for one column. It makes writing out the label
4094 * tables more concise.
4096 unsigned int columns
= MAX(1, labels
[idx
][i
].columns
);
4097 unsigned int slen
= strlen(name
);
4099 rw_column_width
= (column_width
* columns
) +
4100 (2 * (columns
- 1));
4102 text_start
= (int)((rw_column_width
) / columns
-
4107 printf(" "); /* Two spaces between columns */
4109 /* Space from beginning of column to label */
4110 for (s
= 0; s
< text_start
; s
++)
4115 /* Print space after label to end of column */
4116 spaces_to_end
= rw_column_width
- text_start
- slen
;
4117 if (spaces_to_end
< 0)
4120 for (s
= 0; s
< spaces_to_end
; s
++)
4128 * print_cmd_columns - Print custom column titles from -c
4130 * If the user specified the "zpool status|iostat -c" then print their custom
4131 * column titles in the header. For example, print_cmd_columns() would print
4132 * the " col1 col2" part of this:
4134 * $ zpool iostat -vc 'echo col1=val1; echo col2=val2'
4136 * capacity operations bandwidth
4137 * pool alloc free read write read write col1 col2
4138 * ---------- ----- ----- ----- ----- ----- ----- ---- ----
4139 * mypool 269K 1008M 0 0 107 946
4140 * mirror 269K 1008M 0 0 107 946
4141 * sdb - - 0 0 102 473 val1 val2
4142 * sdc - - 0 0 5 473 val1 val2
4143 * ---------- ----- ----- ----- ----- ----- ----- ---- ----
4146 print_cmd_columns(vdev_cmd_data_list_t
*vcdl
, int use_dashes
)
4149 vdev_cmd_data_t
*data
= &vcdl
->data
[0];
4151 if (vcdl
->count
== 0 || data
== NULL
)
4155 * Each vdev cmd should have the same column names unless the user did
4156 * something weird with their cmd. Just take the column names from the
4157 * first vdev and assume it works for all of them.
4159 for (i
= 0; i
< vcdl
->uniq_cols_cnt
; i
++) {
4162 for (j
= 0; j
< vcdl
->uniq_cols_width
[i
]; j
++)
4165 printf_color(ANSI_BOLD
, "%*s", vcdl
->uniq_cols_width
[i
],
4166 vcdl
->uniq_cols
[i
]);
4173 * Utility function to print out a line of dashes like:
4175 * -------------------------------- ----- ----- ----- ----- -----
4177 * ...or a dashed named-row line like:
4183 * @force_column_width If non-zero, use the value as the column width.
4184 * Otherwise use the default column widths.
4186 * @name: Print a dashed named-row line starting
4187 * with @name. Otherwise, print a regular
4191 print_iostat_dashes(iostat_cbdata_t
*cb
, unsigned int force_column_width
,
4195 unsigned int namewidth
;
4196 uint64_t flags
= cb
->cb_flags
;
4199 const name_and_columns_t
*labels
;
4203 if (cb
->cb_flags
& IOS_ANYHISTO_M
) {
4204 title
= histo_to_title
[IOS_HISTO_IDX(cb
->cb_flags
)];
4205 } else if (cb
->cb_vdevs
.cb_names_count
) {
4211 namewidth
= MAX(MAX(strlen(title
), cb
->cb_namewidth
),
4212 name
? strlen(name
) : 0);
4216 printf("%-*s", namewidth
, name
);
4218 for (i
= 0; i
< namewidth
; i
++)
4222 /* For each bit in flags */
4223 for (f
= flags
; f
; f
&= ~(1ULL << idx
)) {
4224 unsigned int column_width
;
4225 idx
= lowbit64(f
) - 1;
4226 if (force_column_width
)
4227 column_width
= force_column_width
;
4229 column_width
= default_column_width(cb
, idx
);
4231 labels
= iostat_bottom_labels
[idx
];
4232 for (i
= 0; i
< label_array_len(labels
); i
++) {
4234 printf(" %*s-", column_width
- 1, " ");
4236 printf(" %.*s", column_width
,
4237 "--------------------");
4244 print_iostat_separator_impl(iostat_cbdata_t
*cb
,
4245 unsigned int force_column_width
)
4247 print_iostat_dashes(cb
, force_column_width
, NULL
);
4251 print_iostat_separator(iostat_cbdata_t
*cb
)
4253 print_iostat_separator_impl(cb
, 0);
4257 print_iostat_header_impl(iostat_cbdata_t
*cb
, unsigned int force_column_width
,
4258 const char *histo_vdev_name
)
4260 unsigned int namewidth
;
4263 color_start(ANSI_BOLD
);
4265 if (cb
->cb_flags
& IOS_ANYHISTO_M
) {
4266 title
= histo_to_title
[IOS_HISTO_IDX(cb
->cb_flags
)];
4267 } else if (cb
->cb_vdevs
.cb_names_count
) {
4273 namewidth
= MAX(MAX(strlen(title
), cb
->cb_namewidth
),
4274 histo_vdev_name
? strlen(histo_vdev_name
) : 0);
4276 if (histo_vdev_name
)
4277 printf("%-*s", namewidth
, histo_vdev_name
);
4279 printf("%*s", namewidth
, "");
4282 print_iostat_labels(cb
, force_column_width
, iostat_top_labels
);
4285 printf("%-*s", namewidth
, title
);
4287 print_iostat_labels(cb
, force_column_width
, iostat_bottom_labels
);
4288 if (cb
->vcdl
!= NULL
)
4289 print_cmd_columns(cb
->vcdl
, 0);
4293 print_iostat_separator_impl(cb
, force_column_width
);
4295 if (cb
->vcdl
!= NULL
)
4296 print_cmd_columns(cb
->vcdl
, 1);
4304 print_iostat_header(iostat_cbdata_t
*cb
)
4306 print_iostat_header_impl(cb
, 0, NULL
);
4310 * Prints a size string (i.e. 120M) with the suffix ("M") colored
4311 * by order of magnitude. Uses column_size to add padding.
4314 print_stat_color(const char *statbuf
, unsigned int column_size
)
4317 size_t len
= strlen(statbuf
);
4318 while (len
< column_size
) {
4322 if (*statbuf
== '0') {
4323 color_start(ANSI_GRAY
);
4326 for (; *statbuf
; statbuf
++) {
4327 if (*statbuf
== 'K') color_start(ANSI_GREEN
);
4328 else if (*statbuf
== 'M') color_start(ANSI_YELLOW
);
4329 else if (*statbuf
== 'G') color_start(ANSI_RED
);
4330 else if (*statbuf
== 'T') color_start(ANSI_BOLD_BLUE
);
4331 else if (*statbuf
== 'P') color_start(ANSI_MAGENTA
);
4332 else if (*statbuf
== 'E') color_start(ANSI_CYAN
);
4333 fputc(*statbuf
, stdout
);
4334 if (--column_size
<= 0)
4342 * Display a single statistic.
4345 print_one_stat(uint64_t value
, enum zfs_nicenum_format format
,
4346 unsigned int column_size
, boolean_t scripted
)
4350 zfs_nicenum_format(value
, buf
, sizeof (buf
), format
);
4353 printf("\t%s", buf
);
4355 print_stat_color(buf
, column_size
);
4359 * Calculate the default vdev stats
4361 * Subtract oldvs from newvs, apply a scaling factor, and save the resulting
4362 * stats into calcvs.
4365 calc_default_iostats(vdev_stat_t
*oldvs
, vdev_stat_t
*newvs
,
4366 vdev_stat_t
*calcvs
)
4370 memcpy(calcvs
, newvs
, sizeof (*calcvs
));
4371 for (i
= 0; i
< ARRAY_SIZE(calcvs
->vs_ops
); i
++)
4372 calcvs
->vs_ops
[i
] = (newvs
->vs_ops
[i
] - oldvs
->vs_ops
[i
]);
4374 for (i
= 0; i
< ARRAY_SIZE(calcvs
->vs_bytes
); i
++)
4375 calcvs
->vs_bytes
[i
] = (newvs
->vs_bytes
[i
] - oldvs
->vs_bytes
[i
]);
4379 * Internal representation of the extended iostats data.
4381 * The extended iostat stats are exported in nvlists as either uint64_t arrays
4382 * or single uint64_t's. We make both look like arrays to make them easier
4383 * to process. In order to make single uint64_t's look like arrays, we set
4384 * __data to the stat data, and then set *data = &__data with count = 1. Then,
4385 * we can just use *data and count.
4389 uint_t count
; /* Number of entries in data[] */
4390 uint64_t __data
; /* Only used when data is a single uint64_t */
4394 stat_histo_max(struct stat_array
*nva
, unsigned int len
)
4398 for (i
= 0; i
< len
; i
++)
4399 max
= MAX(max
, array64_max(nva
[i
].data
, nva
[i
].count
));
4405 * Helper function to lookup a uint64_t array or uint64_t value and store its
4406 * data as a stat_array. If the nvpair is a single uint64_t value, then we make
4407 * it look like a one element array to make it easier to process.
4410 nvpair64_to_stat_array(nvlist_t
*nvl
, const char *name
,
4411 struct stat_array
*nva
)
4416 verify(nvlist_lookup_nvpair(nvl
, name
, &tmp
) == 0);
4417 switch (nvpair_type(tmp
)) {
4418 case DATA_TYPE_UINT64_ARRAY
:
4419 ret
= nvpair_value_uint64_array(tmp
, &nva
->data
, &nva
->count
);
4421 case DATA_TYPE_UINT64
:
4422 ret
= nvpair_value_uint64(tmp
, &nva
->__data
);
4423 nva
->data
= &nva
->__data
;
4427 /* Not a uint64_t */
4436 * Given a list of nvlist names, look up the extended stats in newnv and oldnv,
4437 * subtract them, and return the results in a newly allocated stat_array.
4438 * You must free the returned array after you are done with it with
4439 * free_calc_stats().
4441 * Additionally, you can set "oldnv" to NULL if you simply want the newnv
4444 static struct stat_array
*
4445 calc_and_alloc_stats_ex(const char **names
, unsigned int len
, nvlist_t
*oldnv
,
4448 nvlist_t
*oldnvx
= NULL
, *newnvx
;
4449 struct stat_array
*oldnva
, *newnva
, *calcnva
;
4451 unsigned int alloc_size
= (sizeof (struct stat_array
)) * len
;
4453 /* Extract our extended stats nvlist from the main list */
4454 verify(nvlist_lookup_nvlist(newnv
, ZPOOL_CONFIG_VDEV_STATS_EX
,
4457 verify(nvlist_lookup_nvlist(oldnv
, ZPOOL_CONFIG_VDEV_STATS_EX
,
4461 newnva
= safe_malloc(alloc_size
);
4462 oldnva
= safe_malloc(alloc_size
);
4463 calcnva
= safe_malloc(alloc_size
);
4465 for (j
= 0; j
< len
; j
++) {
4466 verify(nvpair64_to_stat_array(newnvx
, names
[j
],
4468 calcnva
[j
].count
= newnva
[j
].count
;
4469 alloc_size
= calcnva
[j
].count
* sizeof (calcnva
[j
].data
[0]);
4470 calcnva
[j
].data
= safe_malloc(alloc_size
);
4471 memcpy(calcnva
[j
].data
, newnva
[j
].data
, alloc_size
);
4474 verify(nvpair64_to_stat_array(oldnvx
, names
[j
],
4476 for (i
= 0; i
< oldnva
[j
].count
; i
++)
4477 calcnva
[j
].data
[i
] -= oldnva
[j
].data
[i
];
4486 free_calc_stats(struct stat_array
*nva
, unsigned int len
)
4489 for (i
= 0; i
< len
; i
++)
4496 print_iostat_histo(struct stat_array
*nva
, unsigned int len
,
4497 iostat_cbdata_t
*cb
, unsigned int column_width
, unsigned int namewidth
,
4503 enum zfs_nicenum_format format
;
4504 unsigned int buckets
;
4505 unsigned int start_bucket
;
4508 format
= ZFS_NICENUM_RAW
;
4510 format
= ZFS_NICENUM_1024
;
4512 /* All these histos are the same size, so just use nva[0].count */
4513 buckets
= nva
[0].count
;
4515 if (cb
->cb_flags
& IOS_RQ_HISTO_M
) {
4516 /* Start at 512 - req size should never be lower than this */
4522 for (j
= start_bucket
; j
< buckets
; j
++) {
4523 /* Print histogram bucket label */
4524 if (cb
->cb_flags
& IOS_L_HISTO_M
) {
4525 /* Ending range of this bucket */
4526 val
= (1UL << (j
+ 1)) - 1;
4527 zfs_nicetime(val
, buf
, sizeof (buf
));
4529 /* Request size (starting range of bucket) */
4531 zfs_nicenum(val
, buf
, sizeof (buf
));
4534 if (cb
->cb_scripted
)
4535 printf("%llu", (u_longlong_t
)val
);
4537 printf("%-*s", namewidth
, buf
);
4539 /* Print the values on the line */
4540 for (i
= 0; i
< len
; i
++) {
4541 print_one_stat(nva
[i
].data
[j
] * scale
, format
,
4542 column_width
, cb
->cb_scripted
);
4549 print_solid_separator(unsigned int length
)
4557 print_iostat_histos(iostat_cbdata_t
*cb
, nvlist_t
*oldnv
,
4558 nvlist_t
*newnv
, double scale
, const char *name
)
4560 unsigned int column_width
;
4561 unsigned int namewidth
;
4562 unsigned int entire_width
;
4563 enum iostat_type type
;
4564 struct stat_array
*nva
;
4566 unsigned int names_len
;
4568 /* What type of histo are we? */
4569 type
= IOS_HISTO_IDX(cb
->cb_flags
);
4571 /* Get NULL-terminated array of nvlist names for our histo */
4572 names
= vsx_type_to_nvlist
[type
];
4573 names_len
= str_array_len(names
); /* num of names */
4575 nva
= calc_and_alloc_stats_ex(names
, names_len
, oldnv
, newnv
);
4577 if (cb
->cb_literal
) {
4578 column_width
= MAX(5,
4579 (unsigned int) log10(stat_histo_max(nva
, names_len
)) + 1);
4584 namewidth
= MAX(cb
->cb_namewidth
,
4585 strlen(histo_to_title
[IOS_HISTO_IDX(cb
->cb_flags
)]));
4588 * Calculate the entire line width of what we're printing. The
4589 * +2 is for the two spaces between columns:
4593 /* |___| <---------- column_width */
4595 /* |__________| <--- entire_width */
4597 entire_width
= namewidth
+ (column_width
+ 2) *
4598 label_array_len(iostat_bottom_labels
[type
]);
4600 if (cb
->cb_scripted
)
4601 printf("%s\n", name
);
4603 print_iostat_header_impl(cb
, column_width
, name
);
4605 print_iostat_histo(nva
, names_len
, cb
, column_width
,
4608 free_calc_stats(nva
, names_len
);
4609 if (!cb
->cb_scripted
)
4610 print_solid_separator(entire_width
);
4614 * Calculate the average latency of a power-of-two latency histogram
4617 single_histo_average(uint64_t *histo
, unsigned int buckets
)
4620 uint64_t count
= 0, total
= 0;
4622 for (i
= 0; i
< buckets
; i
++) {
4624 * Our buckets are power-of-two latency ranges. Use the
4625 * midpoint latency of each bucket to calculate the average.
4633 if (histo
[i
] != 0) {
4634 total
+= histo
[i
] * (((1UL << i
) + ((1UL << i
)/2)));
4639 /* Prevent divide by zero */
4640 return (count
== 0 ? 0 : total
/ count
);
4644 print_iostat_queues(iostat_cbdata_t
*cb
, nvlist_t
*newnv
)
4646 const char *names
[] = {
4647 ZPOOL_CONFIG_VDEV_SYNC_R_PEND_QUEUE
,
4648 ZPOOL_CONFIG_VDEV_SYNC_R_ACTIVE_QUEUE
,
4649 ZPOOL_CONFIG_VDEV_SYNC_W_PEND_QUEUE
,
4650 ZPOOL_CONFIG_VDEV_SYNC_W_ACTIVE_QUEUE
,
4651 ZPOOL_CONFIG_VDEV_ASYNC_R_PEND_QUEUE
,
4652 ZPOOL_CONFIG_VDEV_ASYNC_R_ACTIVE_QUEUE
,
4653 ZPOOL_CONFIG_VDEV_ASYNC_W_PEND_QUEUE
,
4654 ZPOOL_CONFIG_VDEV_ASYNC_W_ACTIVE_QUEUE
,
4655 ZPOOL_CONFIG_VDEV_SCRUB_PEND_QUEUE
,
4656 ZPOOL_CONFIG_VDEV_SCRUB_ACTIVE_QUEUE
,
4657 ZPOOL_CONFIG_VDEV_TRIM_PEND_QUEUE
,
4658 ZPOOL_CONFIG_VDEV_TRIM_ACTIVE_QUEUE
,
4659 ZPOOL_CONFIG_VDEV_REBUILD_PEND_QUEUE
,
4660 ZPOOL_CONFIG_VDEV_REBUILD_ACTIVE_QUEUE
,
4663 struct stat_array
*nva
;
4665 unsigned int column_width
= default_column_width(cb
, IOS_QUEUES
);
4666 enum zfs_nicenum_format format
;
4668 nva
= calc_and_alloc_stats_ex(names
, ARRAY_SIZE(names
), NULL
, newnv
);
4671 format
= ZFS_NICENUM_RAW
;
4673 format
= ZFS_NICENUM_1024
;
4675 for (int i
= 0; i
< ARRAY_SIZE(names
); i
++) {
4676 uint64_t val
= nva
[i
].data
[0];
4677 print_one_stat(val
, format
, column_width
, cb
->cb_scripted
);
4680 free_calc_stats(nva
, ARRAY_SIZE(names
));
4684 print_iostat_latency(iostat_cbdata_t
*cb
, nvlist_t
*oldnv
,
4689 const char *names
[] = {
4690 ZPOOL_CONFIG_VDEV_TOT_R_LAT_HISTO
,
4691 ZPOOL_CONFIG_VDEV_TOT_W_LAT_HISTO
,
4692 ZPOOL_CONFIG_VDEV_DISK_R_LAT_HISTO
,
4693 ZPOOL_CONFIG_VDEV_DISK_W_LAT_HISTO
,
4694 ZPOOL_CONFIG_VDEV_SYNC_R_LAT_HISTO
,
4695 ZPOOL_CONFIG_VDEV_SYNC_W_LAT_HISTO
,
4696 ZPOOL_CONFIG_VDEV_ASYNC_R_LAT_HISTO
,
4697 ZPOOL_CONFIG_VDEV_ASYNC_W_LAT_HISTO
,
4698 ZPOOL_CONFIG_VDEV_SCRUB_LAT_HISTO
,
4699 ZPOOL_CONFIG_VDEV_TRIM_LAT_HISTO
,
4700 ZPOOL_CONFIG_VDEV_REBUILD_LAT_HISTO
,
4702 struct stat_array
*nva
;
4704 unsigned int column_width
= default_column_width(cb
, IOS_LATENCY
);
4705 enum zfs_nicenum_format format
;
4707 nva
= calc_and_alloc_stats_ex(names
, ARRAY_SIZE(names
), oldnv
, newnv
);
4710 format
= ZFS_NICENUM_RAWTIME
;
4712 format
= ZFS_NICENUM_TIME
;
4714 /* Print our avg latencies on the line */
4715 for (i
= 0; i
< ARRAY_SIZE(names
); i
++) {
4716 /* Compute average latency for a latency histo */
4717 val
= single_histo_average(nva
[i
].data
, nva
[i
].count
);
4718 print_one_stat(val
, format
, column_width
, cb
->cb_scripted
);
4720 free_calc_stats(nva
, ARRAY_SIZE(names
));
4724 * Print default statistics (capacity/operations/bandwidth)
4727 print_iostat_default(vdev_stat_t
*vs
, iostat_cbdata_t
*cb
, double scale
)
4729 unsigned int column_width
= default_column_width(cb
, IOS_DEFAULT
);
4730 enum zfs_nicenum_format format
;
4731 char na
; /* char to print for "not applicable" values */
4733 if (cb
->cb_literal
) {
4734 format
= ZFS_NICENUM_RAW
;
4737 format
= ZFS_NICENUM_1024
;
4741 /* only toplevel vdevs have capacity stats */
4742 if (vs
->vs_space
== 0) {
4743 if (cb
->cb_scripted
)
4744 printf("\t%c\t%c", na
, na
);
4746 printf(" %*c %*c", column_width
, na
, column_width
,
4749 print_one_stat(vs
->vs_alloc
, format
, column_width
,
4751 print_one_stat(vs
->vs_space
- vs
->vs_alloc
, format
,
4752 column_width
, cb
->cb_scripted
);
4755 print_one_stat((uint64_t)(vs
->vs_ops
[ZIO_TYPE_READ
] * scale
),
4756 format
, column_width
, cb
->cb_scripted
);
4757 print_one_stat((uint64_t)(vs
->vs_ops
[ZIO_TYPE_WRITE
] * scale
),
4758 format
, column_width
, cb
->cb_scripted
);
4759 print_one_stat((uint64_t)(vs
->vs_bytes
[ZIO_TYPE_READ
] * scale
),
4760 format
, column_width
, cb
->cb_scripted
);
4761 print_one_stat((uint64_t)(vs
->vs_bytes
[ZIO_TYPE_WRITE
] * scale
),
4762 format
, column_width
, cb
->cb_scripted
);
4765 static const char *const class_name
[] = {
4766 VDEV_ALLOC_BIAS_DEDUP
,
4767 VDEV_ALLOC_BIAS_SPECIAL
,
4768 VDEV_ALLOC_CLASS_LOGS
4772 * Print out all the statistics for the given vdev. This can either be the
4773 * toplevel configuration, or called recursively. If 'name' is NULL, then this
4774 * is a verbose output, and we don't want to display the toplevel pool stats.
4776 * Returns the number of stat lines printed.
4779 print_vdev_stats(zpool_handle_t
*zhp
, const char *name
, nvlist_t
*oldnv
,
4780 nvlist_t
*newnv
, iostat_cbdata_t
*cb
, int depth
)
4782 nvlist_t
**oldchild
, **newchild
;
4783 uint_t c
, children
, oldchildren
;
4784 vdev_stat_t
*oldvs
, *newvs
, *calcvs
;
4785 vdev_stat_t zerovs
= { 0 };
4792 if (strcmp(name
, VDEV_TYPE_INDIRECT
) == 0)
4795 calcvs
= safe_malloc(sizeof (*calcvs
));
4797 if (oldnv
!= NULL
) {
4798 verify(nvlist_lookup_uint64_array(oldnv
,
4799 ZPOOL_CONFIG_VDEV_STATS
, (uint64_t **)&oldvs
, &c
) == 0);
4804 /* Do we only want to see a specific vdev? */
4805 for (i
= 0; i
< cb
->cb_vdevs
.cb_names_count
; i
++) {
4806 /* Yes we do. Is this the vdev? */
4807 if (strcmp(name
, cb
->cb_vdevs
.cb_names
[i
]) == 0) {
4809 * This is our vdev. Since it is the only vdev we
4810 * will be displaying, make depth = 0 so that it
4811 * doesn't get indented.
4818 if (cb
->cb_vdevs
.cb_names_count
&& (i
== cb
->cb_vdevs
.cb_names_count
)) {
4819 /* Couldn't match the name */
4824 verify(nvlist_lookup_uint64_array(newnv
, ZPOOL_CONFIG_VDEV_STATS
,
4825 (uint64_t **)&newvs
, &c
) == 0);
4828 * Print the vdev name unless it's is a histogram. Histograms
4829 * display the vdev name in the header itself.
4831 if (!(cb
->cb_flags
& IOS_ANYHISTO_M
)) {
4832 if (cb
->cb_scripted
) {
4835 if (strlen(name
) + depth
> cb
->cb_namewidth
)
4836 (void) printf("%*s%s", depth
, "", name
);
4838 (void) printf("%*s%s%*s", depth
, "", name
,
4839 (int)(cb
->cb_namewidth
- strlen(name
) -
4844 /* Calculate our scaling factor */
4845 tdelta
= newvs
->vs_timestamp
- oldvs
->vs_timestamp
;
4846 if ((oldvs
->vs_timestamp
== 0) && (cb
->cb_flags
& IOS_ANYHISTO_M
)) {
4848 * If we specify printing histograms with no time interval, then
4849 * print the histogram numbers over the entire lifetime of the
4857 scale
= (double)NANOSEC
/ tdelta
;
4860 if (cb
->cb_flags
& IOS_DEFAULT_M
) {
4861 calc_default_iostats(oldvs
, newvs
, calcvs
);
4862 print_iostat_default(calcvs
, cb
, scale
);
4864 if (cb
->cb_flags
& IOS_LATENCY_M
)
4865 print_iostat_latency(cb
, oldnv
, newnv
);
4866 if (cb
->cb_flags
& IOS_QUEUES_M
)
4867 print_iostat_queues(cb
, newnv
);
4868 if (cb
->cb_flags
& IOS_ANYHISTO_M
) {
4870 print_iostat_histos(cb
, oldnv
, newnv
, scale
, name
);
4873 if (cb
->vcdl
!= NULL
) {
4875 if (nvlist_lookup_string(newnv
, ZPOOL_CONFIG_PATH
,
4878 zpool_print_cmd(cb
->vcdl
, zpool_get_name(zhp
), path
);
4882 if (!(cb
->cb_flags
& IOS_ANYHISTO_M
))
4891 if (!cb
->cb_verbose
)
4894 if (nvlist_lookup_nvlist_array(newnv
, ZPOOL_CONFIG_CHILDREN
,
4895 &newchild
, &children
) != 0)
4899 if (nvlist_lookup_nvlist_array(oldnv
, ZPOOL_CONFIG_CHILDREN
,
4900 &oldchild
, &oldchildren
) != 0)
4903 children
= MIN(oldchildren
, children
);
4907 * print normal top-level devices
4909 for (c
= 0; c
< children
; c
++) {
4910 uint64_t ishole
= B_FALSE
, islog
= B_FALSE
;
4912 (void) nvlist_lookup_uint64(newchild
[c
], ZPOOL_CONFIG_IS_HOLE
,
4915 (void) nvlist_lookup_uint64(newchild
[c
], ZPOOL_CONFIG_IS_LOG
,
4918 if (ishole
|| islog
)
4921 if (nvlist_exists(newchild
[c
], ZPOOL_CONFIG_ALLOCATION_BIAS
))
4924 vname
= zpool_vdev_name(g_zfs
, zhp
, newchild
[c
],
4925 cb
->cb_vdevs
.cb_name_flags
| VDEV_NAME_TYPE_ID
);
4926 ret
+= print_vdev_stats(zhp
, vname
, oldnv
? oldchild
[c
] : NULL
,
4927 newchild
[c
], cb
, depth
+ 2);
4932 * print all other top-level devices
4934 for (uint_t n
= 0; n
< ARRAY_SIZE(class_name
); n
++) {
4935 boolean_t printed
= B_FALSE
;
4937 for (c
= 0; c
< children
; c
++) {
4938 uint64_t islog
= B_FALSE
;
4939 const char *bias
= NULL
;
4940 const char *type
= NULL
;
4942 (void) nvlist_lookup_uint64(newchild
[c
],
4943 ZPOOL_CONFIG_IS_LOG
, &islog
);
4945 bias
= VDEV_ALLOC_CLASS_LOGS
;
4947 (void) nvlist_lookup_string(newchild
[c
],
4948 ZPOOL_CONFIG_ALLOCATION_BIAS
, &bias
);
4949 (void) nvlist_lookup_string(newchild
[c
],
4950 ZPOOL_CONFIG_TYPE
, &type
);
4952 if (bias
== NULL
|| strcmp(bias
, class_name
[n
]) != 0)
4954 if (!islog
&& strcmp(type
, VDEV_TYPE_INDIRECT
) == 0)
4958 if ((!(cb
->cb_flags
& IOS_ANYHISTO_M
)) &&
4960 !cb
->cb_vdevs
.cb_names
) {
4961 print_iostat_dashes(cb
, 0,
4968 vname
= zpool_vdev_name(g_zfs
, zhp
, newchild
[c
],
4969 cb
->cb_vdevs
.cb_name_flags
| VDEV_NAME_TYPE_ID
);
4970 ret
+= print_vdev_stats(zhp
, vname
, oldnv
?
4971 oldchild
[c
] : NULL
, newchild
[c
], cb
, depth
+ 2);
4977 * Include level 2 ARC devices in iostat output
4979 if (nvlist_lookup_nvlist_array(newnv
, ZPOOL_CONFIG_L2CACHE
,
4980 &newchild
, &children
) != 0)
4984 if (nvlist_lookup_nvlist_array(oldnv
, ZPOOL_CONFIG_L2CACHE
,
4985 &oldchild
, &oldchildren
) != 0)
4988 children
= MIN(oldchildren
, children
);
4992 if ((!(cb
->cb_flags
& IOS_ANYHISTO_M
)) && !cb
->cb_scripted
&&
4993 !cb
->cb_vdevs
.cb_names
) {
4994 print_iostat_dashes(cb
, 0, "cache");
4998 for (c
= 0; c
< children
; c
++) {
4999 vname
= zpool_vdev_name(g_zfs
, zhp
, newchild
[c
],
5000 cb
->cb_vdevs
.cb_name_flags
);
5001 ret
+= print_vdev_stats(zhp
, vname
, oldnv
? oldchild
[c
]
5002 : NULL
, newchild
[c
], cb
, depth
+ 2);
5011 refresh_iostat(zpool_handle_t
*zhp
, void *data
)
5013 iostat_cbdata_t
*cb
= data
;
5017 * If the pool has disappeared, remove it from the list and continue.
5019 if (zpool_refresh_stats(zhp
, &missing
) != 0)
5023 pool_list_remove(cb
->cb_list
, zhp
);
5029 * Callback to print out the iostats for the given pool.
5032 print_iostat(zpool_handle_t
*zhp
, void *data
)
5034 iostat_cbdata_t
*cb
= data
;
5035 nvlist_t
*oldconfig
, *newconfig
;
5036 nvlist_t
*oldnvroot
, *newnvroot
;
5039 newconfig
= zpool_get_config(zhp
, &oldconfig
);
5041 if (cb
->cb_iteration
== 1)
5044 verify(nvlist_lookup_nvlist(newconfig
, ZPOOL_CONFIG_VDEV_TREE
,
5047 if (oldconfig
== NULL
)
5050 verify(nvlist_lookup_nvlist(oldconfig
, ZPOOL_CONFIG_VDEV_TREE
,
5053 ret
= print_vdev_stats(zhp
, zpool_get_name(zhp
), oldnvroot
, newnvroot
,
5055 if ((ret
!= 0) && !(cb
->cb_flags
& IOS_ANYHISTO_M
) &&
5056 !cb
->cb_scripted
&& cb
->cb_verbose
&&
5057 !cb
->cb_vdevs
.cb_names_count
) {
5058 print_iostat_separator(cb
);
5059 if (cb
->vcdl
!= NULL
) {
5060 print_cmd_columns(cb
->vcdl
, 1);
5075 if (isatty(STDOUT_FILENO
)) {
5076 error
= ioctl(STDOUT_FILENO
, TIOCGWINSZ
, &ws
);
5078 columns
= ws
.ws_col
;
5087 * Return the required length of the pool/vdev name column. The minimum
5088 * allowed width and output formatting flags must be provided.
5091 get_namewidth(zpool_handle_t
*zhp
, int min_width
, int flags
, boolean_t verbose
)
5093 nvlist_t
*config
, *nvroot
;
5094 int width
= min_width
;
5096 if ((config
= zpool_get_config(zhp
, NULL
)) != NULL
) {
5097 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
5099 size_t poolname_len
= strlen(zpool_get_name(zhp
));
5100 if (verbose
== B_FALSE
) {
5101 width
= MAX(poolname_len
, min_width
);
5103 width
= MAX(poolname_len
,
5104 max_width(zhp
, nvroot
, 0, min_width
, flags
));
5112 * Parse the input string, get the 'interval' and 'count' value if there is one.
5115 get_interval_count(int *argcp
, char **argv
, float *iv
,
5119 unsigned long count
= 0;
5123 * Determine if the last argument is an integer or a pool name
5125 if (argc
> 0 && zfs_isnumber(argv
[argc
- 1])) {
5129 interval
= strtof(argv
[argc
- 1], &end
);
5131 if (*end
== '\0' && errno
== 0) {
5132 if (interval
== 0) {
5133 (void) fprintf(stderr
, gettext(
5134 "interval cannot be zero\n"));
5138 * Ignore the last parameter
5143 * If this is not a valid number, just plow on. The
5144 * user will get a more informative error message later
5152 * If the last argument is also an integer, then we have both a count
5155 if (argc
> 0 && zfs_isnumber(argv
[argc
- 1])) {
5160 interval
= strtof(argv
[argc
- 1], &end
);
5162 if (*end
== '\0' && errno
== 0) {
5163 if (interval
== 0) {
5164 (void) fprintf(stderr
, gettext(
5165 "interval cannot be zero\n"));
5170 * Ignore the last parameter
5184 get_timestamp_arg(char c
)
5187 timestamp_fmt
= UDATE
;
5189 timestamp_fmt
= DDATE
;
5195 * Return stat flags that are supported by all pools by both the module and
5196 * zpool iostat. "*data" should be initialized to all 0xFFs before running.
5197 * It will get ANDed down until only the flags that are supported on all pools
5201 get_stat_flags_cb(zpool_handle_t
*zhp
, void *data
)
5203 uint64_t *mask
= data
;
5204 nvlist_t
*config
, *nvroot
, *nvx
;
5208 config
= zpool_get_config(zhp
, NULL
);
5209 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
5212 /* Default stats are always supported, but for completeness.. */
5213 if (nvlist_exists(nvroot
, ZPOOL_CONFIG_VDEV_STATS
))
5214 flags
|= IOS_DEFAULT_M
;
5216 /* Get our extended stats nvlist from the main list */
5217 if (nvlist_lookup_nvlist(nvroot
, ZPOOL_CONFIG_VDEV_STATS_EX
,
5220 * No extended stats; they're probably running an older
5221 * module. No big deal, we support that too.
5226 /* For each extended stat, make sure all its nvpairs are supported */
5227 for (j
= 0; j
< ARRAY_SIZE(vsx_type_to_nvlist
); j
++) {
5228 if (!vsx_type_to_nvlist
[j
][0])
5231 /* Start off by assuming the flag is supported, then check */
5232 flags
|= (1ULL << j
);
5233 for (i
= 0; vsx_type_to_nvlist
[j
][i
]; i
++) {
5234 if (!nvlist_exists(nvx
, vsx_type_to_nvlist
[j
][i
])) {
5235 /* flag isn't supported */
5236 flags
= flags
& ~(1ULL << j
);
5242 *mask
= *mask
& flags
;
5247 * Return a bitmask of stats that are supported on all pools by both the module
5251 get_stat_flags(zpool_list_t
*list
)
5256 * get_stat_flags_cb() will lop off bits from "mask" until only the
5257 * flags that are supported on all pools remain.
5259 pool_list_iter(list
, B_FALSE
, get_stat_flags_cb
, &mask
);
5264 * Return 1 if cb_data->cb_names[0] is this vdev's name, 0 otherwise.
5267 is_vdev_cb(void *zhp_data
, nvlist_t
*nv
, void *cb_data
)
5270 vdev_cbdata_t
*cb
= cb_data
;
5271 zpool_handle_t
*zhp
= zhp_data
;
5273 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
, &guid
) != 0)
5276 return (guid
== zpool_vdev_path_to_guid(zhp
, cb
->cb_names
[0]));
5280 * Returns 1 if cb_data->cb_names[0] is a vdev name, 0 otherwise.
5283 is_vdev(zpool_handle_t
*zhp
, void *cb_data
)
5285 return (for_each_vdev(zhp
, is_vdev_cb
, cb_data
));
5289 * Check if vdevs are in a pool
5291 * Return 1 if all argv[] strings are vdev names in pool "pool_name". Otherwise
5292 * return 0. If pool_name is NULL, then search all pools.
5295 are_vdevs_in_pool(int argc
, char **argv
, char *pool_name
,
5303 if ((argc
== 0) || !*argv
)
5309 /* Temporarily hijack cb_names for a second... */
5310 tmp_name
= cb
->cb_names
;
5312 /* Go though our list of prospective vdev names */
5313 for (i
= 0; i
< argc
; i
++) {
5314 cb
->cb_names
= argv
+ i
;
5316 /* Is this name a vdev in our pools? */
5317 ret
= for_each_pool(pool_count
, &pool_name
, B_TRUE
, NULL
,
5318 ZFS_TYPE_POOL
, B_FALSE
, is_vdev
, cb
);
5325 cb
->cb_names
= tmp_name
;
5331 is_pool_cb(zpool_handle_t
*zhp
, void *data
)
5334 if (strcmp(name
, zpool_get_name(zhp
)) == 0)
5341 * Do we have a pool named *name? If so, return 1, otherwise 0.
5346 return (for_each_pool(0, NULL
, B_TRUE
, NULL
, ZFS_TYPE_POOL
, B_FALSE
,
5350 /* Are all our argv[] strings pool names? If so return 1, 0 otherwise. */
5352 are_all_pools(int argc
, char **argv
)
5354 if ((argc
== 0) || !*argv
)
5358 if (!is_pool(argv
[argc
]))
5365 * Helper function to print out vdev/pool names we can't resolve. Used for an
5369 error_list_unresolved_vdevs(int argc
, char **argv
, char *pool_name
,
5375 for (i
= 0; i
< argc
; i
++) {
5379 str
= gettext("pool");
5380 else if (are_vdevs_in_pool(1, &name
, pool_name
, cb
))
5381 str
= gettext("vdev in this pool");
5382 else if (are_vdevs_in_pool(1, &name
, NULL
, cb
))
5383 str
= gettext("vdev in another pool");
5385 str
= gettext("unknown");
5387 fprintf(stderr
, "\t%s (%s)\n", name
, str
);
5392 * Same as get_interval_count(), but with additional checks to not misinterpret
5393 * guids as interval/count values. Assumes VDEV_NAME_GUID is set in
5394 * cb.cb_vdevs.cb_name_flags.
5397 get_interval_count_filter_guids(int *argc
, char **argv
, float *interval
,
5398 unsigned long *count
, iostat_cbdata_t
*cb
)
5400 char **tmpargv
= argv
;
5401 int argc_for_interval
= 0;
5403 /* Is the last arg an interval value? Or a guid? */
5404 if (*argc
>= 1 && !are_vdevs_in_pool(1, &argv
[*argc
- 1], NULL
,
5407 * The last arg is not a guid, so it's probably an
5410 argc_for_interval
++;
5413 !are_vdevs_in_pool(1, &argv
[*argc
- 2], NULL
,
5416 * The 2nd to last arg is not a guid, so it's probably
5417 * an interval value.
5419 argc_for_interval
++;
5423 /* Point to our list of possible intervals */
5424 tmpargv
= &argv
[*argc
- argc_for_interval
];
5426 *argc
= *argc
- argc_for_interval
;
5427 get_interval_count(&argc_for_interval
, tmpargv
,
5432 * Floating point sleep(). Allows you to pass in a floating point value for
5438 struct timespec req
;
5439 req
.tv_sec
= floor(sec
);
5440 req
.tv_nsec
= (sec
- (float)req
.tv_sec
) * NANOSEC
;
5441 nanosleep(&req
, NULL
);
5445 * Terminal height, in rows. Returns -1 if stdout is not connected to a TTY or
5446 * if we were unable to determine its size.
5449 terminal_height(void)
5453 if (isatty(STDOUT_FILENO
) == 0)
5456 if (ioctl(STDOUT_FILENO
, TIOCGWINSZ
, &win
) != -1 && win
.ws_row
> 0)
5457 return (win
.ws_row
);
5463 * Run one of the zpool status/iostat -c scripts with the help (-h) option and
5466 * name: Short name of the script ('iostat').
5467 * path: Full path to the script ('/usr/local/etc/zfs/zpool.d/iostat');
5470 print_zpool_script_help(char *name
, char *path
)
5472 char *argv
[] = {path
, (char *)"-h", NULL
};
5473 char **lines
= NULL
;
5477 rc
= libzfs_run_process_get_stdout_nopath(path
, argv
, NULL
, &lines
,
5479 if (rc
!= 0 || lines
== NULL
|| lines_cnt
<= 0) {
5481 libzfs_free_str_array(lines
, lines_cnt
);
5485 for (int i
= 0; i
< lines_cnt
; i
++)
5486 if (!is_blank_str(lines
[i
]))
5487 printf(" %-14s %s\n", name
, lines
[i
]);
5489 libzfs_free_str_array(lines
, lines_cnt
);
5493 * Go though the zpool status/iostat -c scripts in the user's path, run their
5494 * help option (-h), and print out the results.
5497 print_zpool_dir_scripts(char *dirpath
)
5501 char fullpath
[MAXPATHLEN
];
5502 struct stat dir_stat
;
5504 if ((dir
= opendir(dirpath
)) != NULL
) {
5505 /* print all the files and directories within directory */
5506 while ((ent
= readdir(dir
)) != NULL
) {
5507 if (snprintf(fullpath
, sizeof (fullpath
), "%s/%s",
5508 dirpath
, ent
->d_name
) >= sizeof (fullpath
)) {
5509 (void) fprintf(stderr
,
5510 gettext("internal error: "
5511 "ZPOOL_SCRIPTS_PATH too large.\n"));
5515 /* Print the scripts */
5516 if (stat(fullpath
, &dir_stat
) == 0)
5517 if (dir_stat
.st_mode
& S_IXUSR
&&
5518 S_ISREG(dir_stat
.st_mode
))
5519 print_zpool_script_help(ent
->d_name
,
5527 * Print out help text for all zpool status/iostat -c scripts.
5530 print_zpool_script_list(const char *subcommand
)
5532 char *dir
, *sp
, *tmp
;
5534 printf(gettext("Available 'zpool %s -c' commands:\n"), subcommand
);
5536 sp
= zpool_get_cmd_search_path();
5540 for (dir
= strtok_r(sp
, ":", &tmp
);
5542 dir
= strtok_r(NULL
, ":", &tmp
))
5543 print_zpool_dir_scripts(dir
);
5549 * Set the minimum pool/vdev name column width. The width must be at least 10,
5550 * but may be as large as the column width - 42 so it still fits on one line.
5551 * NOTE: 42 is the width of the default capacity/operations/bandwidth output
5554 get_namewidth_iostat(zpool_handle_t
*zhp
, void *data
)
5556 iostat_cbdata_t
*cb
= data
;
5557 int width
, available_width
;
5560 * get_namewidth() returns the maximum width of any name in that column
5561 * for any pool/vdev/device line that will be output.
5563 width
= get_namewidth(zhp
, cb
->cb_namewidth
,
5564 cb
->cb_vdevs
.cb_name_flags
| VDEV_NAME_TYPE_ID
, cb
->cb_verbose
);
5567 * The width we are calculating is the width of the header and also the
5568 * padding width for names that are less than maximum width. The stats
5569 * take up 42 characters, so the width available for names is:
5571 available_width
= get_columns() - 42;
5574 * If the maximum width fits on a screen, then great! Make everything
5575 * line up by justifying all lines to the same width. If that max
5576 * width is larger than what's available, the name plus stats won't fit
5577 * on one line, and justifying to that width would cause every line to
5578 * wrap on the screen. We only want lines with long names to wrap.
5579 * Limit the padding to what won't wrap.
5581 if (width
> available_width
)
5582 width
= available_width
;
5585 * And regardless of whatever the screen width is (get_columns can
5586 * return 0 if the width is not known or less than 42 for a narrow
5587 * terminal) have the width be a minimum of 10.
5592 /* Save the calculated width */
5593 cb
->cb_namewidth
= width
;
5599 * zpool iostat [[-c [script1,script2,...]] [-lq]|[-rw]] [-ghHLpPvy] [-n name]
5600 * [-T d|u] [[ pool ...]|[pool vdev ...]|[vdev ...]]
5601 * [interval [count]]
5603 * -c CMD For each vdev, run command CMD
5604 * -g Display guid for individual vdev name.
5605 * -L Follow links when resolving vdev path name.
5606 * -P Display full path for vdev name.
5607 * -v Display statistics for individual vdevs
5609 * -p Display values in parsable (exact) format.
5610 * -H Scripted mode. Don't display headers, and separate properties
5612 * -l Display average latency
5613 * -q Display queue depths
5614 * -w Display latency histograms
5615 * -r Display request size histogram
5616 * -T Display a timestamp in date(1) or Unix format
5617 * -n Only print headers once
5619 * This command can be tricky because we want to be able to deal with pool
5620 * creation/destruction as well as vdev configuration changes. The bulk of this
5621 * processing is handled by the pool_list_* routines in zpool_iter.c. We rely
5622 * on pool_list_update() to detect the addition of new pools. Configuration
5623 * changes are all handled within libzfs.
5626 zpool_do_iostat(int argc
, char **argv
)
5632 unsigned long count
= 0;
5635 boolean_t verbose
= B_FALSE
;
5636 boolean_t latency
= B_FALSE
, l_histo
= B_FALSE
, rq_histo
= B_FALSE
;
5637 boolean_t queues
= B_FALSE
, parsable
= B_FALSE
, scripted
= B_FALSE
;
5638 boolean_t omit_since_boot
= B_FALSE
;
5639 boolean_t guid
= B_FALSE
;
5640 boolean_t follow_links
= B_FALSE
;
5641 boolean_t full_name
= B_FALSE
;
5642 boolean_t headers_once
= B_FALSE
;
5643 iostat_cbdata_t cb
= { 0 };
5646 /* Used for printing error message */
5647 const char flag_to_arg
[] = {[IOS_LATENCY
] = 'l', [IOS_QUEUES
] = 'q',
5648 [IOS_L_HISTO
] = 'w', [IOS_RQ_HISTO
] = 'r'};
5650 uint64_t unsupported_flags
;
5653 while ((c
= getopt(argc
, argv
, "c:gLPT:vyhplqrwnH")) != -1) {
5658 gettext("Can't set -c flag twice\n"));
5662 if (getenv("ZPOOL_SCRIPTS_ENABLED") != NULL
&&
5663 !libzfs_envvar_is_set("ZPOOL_SCRIPTS_ENABLED")) {
5664 fprintf(stderr
, gettext(
5665 "Can't run -c, disabled by "
5666 "ZPOOL_SCRIPTS_ENABLED.\n"));
5670 if ((getuid() <= 0 || geteuid() <= 0) &&
5671 !libzfs_envvar_is_set("ZPOOL_SCRIPTS_AS_ROOT")) {
5672 fprintf(stderr
, gettext(
5673 "Can't run -c with root privileges "
5674 "unless ZPOOL_SCRIPTS_AS_ROOT is set.\n"));
5684 follow_links
= B_TRUE
;
5690 get_timestamp_arg(*optarg
);
5714 omit_since_boot
= B_TRUE
;
5717 headers_once
= B_TRUE
;
5723 if (optopt
== 'c') {
5724 print_zpool_script_list("iostat");
5728 gettext("invalid option '%c'\n"), optopt
);
5737 cb
.cb_literal
= parsable
;
5738 cb
.cb_scripted
= scripted
;
5741 cb
.cb_vdevs
.cb_name_flags
|= VDEV_NAME_GUID
;
5743 cb
.cb_vdevs
.cb_name_flags
|= VDEV_NAME_FOLLOW_LINKS
;
5745 cb
.cb_vdevs
.cb_name_flags
|= VDEV_NAME_PATH
;
5746 cb
.cb_iteration
= 0;
5747 cb
.cb_namewidth
= 0;
5748 cb
.cb_verbose
= verbose
;
5750 /* Get our interval and count values (if any) */
5752 get_interval_count_filter_guids(&argc
, argv
, &interval
,
5755 get_interval_count(&argc
, argv
, &interval
, &count
);
5759 /* No args, so just print the defaults. */
5760 } else if (are_all_pools(argc
, argv
)) {
5761 /* All the args are pool names */
5762 } else if (are_vdevs_in_pool(argc
, argv
, NULL
, &cb
.cb_vdevs
)) {
5763 /* All the args are vdevs */
5764 cb
.cb_vdevs
.cb_names
= argv
;
5765 cb
.cb_vdevs
.cb_names_count
= argc
;
5766 argc
= 0; /* No pools to process */
5767 } else if (are_all_pools(1, argv
)) {
5768 /* The first arg is a pool name */
5769 if (are_vdevs_in_pool(argc
- 1, argv
+ 1, argv
[0],
5771 /* ...and the rest are vdev names */
5772 cb
.cb_vdevs
.cb_names
= argv
+ 1;
5773 cb
.cb_vdevs
.cb_names_count
= argc
- 1;
5774 argc
= 1; /* One pool to process */
5776 fprintf(stderr
, gettext("Expected either a list of "));
5777 fprintf(stderr
, gettext("pools, or list of vdevs in"));
5778 fprintf(stderr
, " \"%s\", ", argv
[0]);
5779 fprintf(stderr
, gettext("but got:\n"));
5780 error_list_unresolved_vdevs(argc
- 1, argv
+ 1,
5781 argv
[0], &cb
.cb_vdevs
);
5782 fprintf(stderr
, "\n");
5788 * The args don't make sense. The first arg isn't a pool name,
5789 * nor are all the args vdevs.
5791 fprintf(stderr
, gettext("Unable to parse pools/vdevs list.\n"));
5792 fprintf(stderr
, "\n");
5796 if (cb
.cb_vdevs
.cb_names_count
!= 0) {
5798 * If user specified vdevs, it implies verbose.
5800 cb
.cb_verbose
= B_TRUE
;
5804 * Construct the list of all interesting pools.
5807 if ((list
= pool_list_get(argc
, argv
, NULL
, ZFS_TYPE_POOL
, parsable
,
5811 if (pool_list_count(list
) == 0 && argc
!= 0) {
5812 pool_list_free(list
);
5816 if (pool_list_count(list
) == 0 && interval
== 0) {
5817 pool_list_free(list
);
5818 (void) fprintf(stderr
, gettext("no pools available\n"));
5822 if ((l_histo
|| rq_histo
) && (cmd
!= NULL
|| latency
|| queues
)) {
5823 pool_list_free(list
);
5824 (void) fprintf(stderr
,
5825 gettext("[-r|-w] isn't allowed with [-c|-l|-q]\n"));
5830 if (l_histo
&& rq_histo
) {
5831 pool_list_free(list
);
5832 (void) fprintf(stderr
,
5833 gettext("Only one of [-r|-w] can be passed at a time\n"));
5839 * Enter the main iostat loop.
5845 * Histograms tables look out of place when you try to display
5846 * them with the other stats, so make a rule that you can only
5847 * print histograms by themselves.
5849 cb
.cb_flags
= IOS_L_HISTO_M
;
5850 } else if (rq_histo
) {
5851 cb
.cb_flags
= IOS_RQ_HISTO_M
;
5853 cb
.cb_flags
= IOS_DEFAULT_M
;
5855 cb
.cb_flags
|= IOS_LATENCY_M
;
5857 cb
.cb_flags
|= IOS_QUEUES_M
;
5861 * See if the module supports all the stats we want to display.
5863 unsupported_flags
= cb
.cb_flags
& ~get_stat_flags(list
);
5864 if (unsupported_flags
) {
5868 gettext("The loaded zfs module doesn't support:"));
5870 /* for each bit set in unsupported_flags */
5871 for (f
= unsupported_flags
; f
; f
&= ~(1ULL << idx
)) {
5872 idx
= lowbit64(f
) - 1;
5873 fprintf(stderr
, " -%c", flag_to_arg
[idx
]);
5876 fprintf(stderr
, ". Try running a newer module.\n");
5877 pool_list_free(list
);
5883 if ((npools
= pool_list_count(list
)) == 0)
5884 (void) fprintf(stderr
, gettext("no pools available\n"));
5887 * If this is the first iteration and -y was supplied
5888 * we skip any printing.
5890 boolean_t skip
= (omit_since_boot
&&
5891 cb
.cb_iteration
== 0);
5894 * Refresh all statistics. This is done as an
5895 * explicit step before calculating the maximum name
5896 * width, so that any * configuration changes are
5897 * properly accounted for.
5899 (void) pool_list_iter(list
, B_FALSE
, refresh_iostat
,
5903 * Iterate over all pools to determine the maximum width
5904 * for the pool / device name column across all pools.
5906 cb
.cb_namewidth
= 0;
5907 (void) pool_list_iter(list
, B_FALSE
,
5908 get_namewidth_iostat
, &cb
);
5910 if (timestamp_fmt
!= NODATE
)
5911 print_timestamp(timestamp_fmt
);
5913 if (cmd
!= NULL
&& cb
.cb_verbose
&&
5914 !(cb
.cb_flags
& IOS_ANYHISTO_M
)) {
5915 cb
.vcdl
= all_pools_for_each_vdev_run(argc
,
5916 argv
, cmd
, g_zfs
, cb
.cb_vdevs
.cb_names
,
5917 cb
.cb_vdevs
.cb_names_count
,
5918 cb
.cb_vdevs
.cb_name_flags
);
5925 * Check terminal size so we can print headers
5926 * even when terminal window has its height
5929 winheight
= terminal_height();
5931 * Are we connected to TTY? If not, headers_once
5932 * should be true, to avoid breaking scripts.
5935 headers_once
= B_TRUE
;
5938 * If it's the first time and we're not skipping it,
5939 * or either skip or verbose mode, print the header.
5941 * The histogram code explicitly prints its header on
5942 * every vdev, so skip this for histograms.
5944 if (((++cb
.cb_iteration
== 1 && !skip
) ||
5945 (skip
!= verbose
) ||
5947 (cb
.cb_iteration
% winheight
) == 0)) &&
5948 (!(cb
.cb_flags
& IOS_ANYHISTO_M
)) &&
5950 print_iostat_header(&cb
);
5953 (void) fsleep(interval
);
5957 pool_list_iter(list
, B_FALSE
, print_iostat
, &cb
);
5960 * If there's more than one pool, and we're not in
5961 * verbose mode (which prints a separator for us),
5962 * then print a separator.
5964 * In addition, if we're printing specific vdevs then
5965 * we also want an ending separator.
5967 if (((npools
> 1 && !verbose
&&
5968 !(cb
.cb_flags
& IOS_ANYHISTO_M
)) ||
5969 (!(cb
.cb_flags
& IOS_ANYHISTO_M
) &&
5970 cb
.cb_vdevs
.cb_names_count
)) &&
5972 print_iostat_separator(&cb
);
5973 if (cb
.vcdl
!= NULL
)
5974 print_cmd_columns(cb
.vcdl
, 1);
5978 if (cb
.vcdl
!= NULL
)
5979 free_vdev_cmd_data_list(cb
.vcdl
);
5984 * Flush the output so that redirection to a file isn't buffered
5987 (void) fflush(stdout
);
5992 if (count
!= 0 && --count
== 0)
5995 (void) fsleep(interval
);
5998 pool_list_free(list
);
6003 typedef struct list_cbdata
{
6004 boolean_t cb_verbose
;
6007 boolean_t cb_scripted
;
6008 zprop_list_t
*cb_proplist
;
6009 boolean_t cb_literal
;
6014 * Given a list of columns to display, output appropriate headers for each one.
6017 print_header(list_cbdata_t
*cb
)
6019 zprop_list_t
*pl
= cb
->cb_proplist
;
6020 char headerbuf
[ZPOOL_MAXPROPLEN
];
6022 boolean_t first
= B_TRUE
;
6023 boolean_t right_justify
;
6026 for (; pl
!= NULL
; pl
= pl
->pl_next
) {
6027 width
= pl
->pl_width
;
6028 if (first
&& cb
->cb_verbose
) {
6030 * Reset the width to accommodate the verbose listing
6033 width
= cb
->cb_namewidth
;
6037 (void) fputs(" ", stdout
);
6041 right_justify
= B_FALSE
;
6042 if (pl
->pl_prop
!= ZPROP_USERPROP
) {
6043 header
= zpool_prop_column_name(pl
->pl_prop
);
6044 right_justify
= zpool_prop_align_right(pl
->pl_prop
);
6048 for (i
= 0; pl
->pl_user_prop
[i
] != '\0'; i
++)
6049 headerbuf
[i
] = toupper(pl
->pl_user_prop
[i
]);
6050 headerbuf
[i
] = '\0';
6054 if (pl
->pl_next
== NULL
&& !right_justify
)
6055 (void) fputs(header
, stdout
);
6056 else if (right_justify
)
6057 (void) printf("%*s", (int)width
, header
);
6059 (void) printf("%-*s", (int)width
, header
);
6062 (void) fputc('\n', stdout
);
6066 * Given a pool and a list of properties, print out all the properties according
6067 * to the described layout. Used by zpool_do_list().
6070 print_pool(zpool_handle_t
*zhp
, list_cbdata_t
*cb
)
6072 zprop_list_t
*pl
= cb
->cb_proplist
;
6073 boolean_t first
= B_TRUE
;
6074 char property
[ZPOOL_MAXPROPLEN
];
6075 const char *propstr
;
6076 boolean_t right_justify
;
6079 for (; pl
!= NULL
; pl
= pl
->pl_next
) {
6081 width
= pl
->pl_width
;
6082 if (first
&& cb
->cb_verbose
) {
6084 * Reset the width to accommodate the verbose listing
6087 width
= cb
->cb_namewidth
;
6091 if (cb
->cb_scripted
)
6092 (void) fputc('\t', stdout
);
6094 (void) fputs(" ", stdout
);
6099 right_justify
= B_FALSE
;
6100 if (pl
->pl_prop
!= ZPROP_USERPROP
) {
6101 if (zpool_get_prop(zhp
, pl
->pl_prop
, property
,
6102 sizeof (property
), NULL
, cb
->cb_literal
) != 0)
6107 right_justify
= zpool_prop_align_right(pl
->pl_prop
);
6108 } else if ((zpool_prop_feature(pl
->pl_user_prop
) ||
6109 zpool_prop_unsupported(pl
->pl_user_prop
)) &&
6110 zpool_prop_get_feature(zhp
, pl
->pl_user_prop
, property
,
6111 sizeof (property
)) == 0) {
6113 } else if (zfs_prop_user(pl
->pl_user_prop
) &&
6114 zpool_get_userprop(zhp
, pl
->pl_user_prop
, property
,
6115 sizeof (property
), NULL
) == 0) {
6122 * If this is being called in scripted mode, or if this is the
6123 * last column and it is left-justified, don't include a width
6126 if (cb
->cb_scripted
|| (pl
->pl_next
== NULL
&& !right_justify
))
6127 (void) fputs(propstr
, stdout
);
6128 else if (right_justify
)
6129 (void) printf("%*s", (int)width
, propstr
);
6131 (void) printf("%-*s", (int)width
, propstr
);
6134 (void) fputc('\n', stdout
);
6138 print_one_column(zpool_prop_t prop
, uint64_t value
, const char *str
,
6139 boolean_t scripted
, boolean_t valid
, enum zfs_nicenum_format format
)
6143 size_t width
= zprop_width(prop
, &fixed
, ZFS_TYPE_POOL
);
6146 case ZPOOL_PROP_SIZE
:
6147 case ZPOOL_PROP_EXPANDSZ
:
6148 case ZPOOL_PROP_CHECKPOINT
:
6149 case ZPOOL_PROP_DEDUPRATIO
:
6151 (void) strlcpy(propval
, "-", sizeof (propval
));
6153 zfs_nicenum_format(value
, propval
, sizeof (propval
),
6156 case ZPOOL_PROP_FRAGMENTATION
:
6157 if (value
== ZFS_FRAG_INVALID
) {
6158 (void) strlcpy(propval
, "-", sizeof (propval
));
6159 } else if (format
== ZFS_NICENUM_RAW
) {
6160 (void) snprintf(propval
, sizeof (propval
), "%llu",
6161 (unsigned long long)value
);
6163 (void) snprintf(propval
, sizeof (propval
), "%llu%%",
6164 (unsigned long long)value
);
6167 case ZPOOL_PROP_CAPACITY
:
6168 /* capacity value is in parts-per-10,000 (aka permyriad) */
6169 if (format
== ZFS_NICENUM_RAW
)
6170 (void) snprintf(propval
, sizeof (propval
), "%llu",
6171 (unsigned long long)value
/ 100);
6173 (void) snprintf(propval
, sizeof (propval
),
6174 value
< 1000 ? "%1.2f%%" : value
< 10000 ?
6175 "%2.1f%%" : "%3.0f%%", value
/ 100.0);
6177 case ZPOOL_PROP_HEALTH
:
6179 (void) strlcpy(propval
, str
, sizeof (propval
));
6182 zfs_nicenum_format(value
, propval
, sizeof (propval
), format
);
6186 (void) strlcpy(propval
, "-", sizeof (propval
));
6189 (void) printf("\t%s", propval
);
6191 (void) printf(" %*s", (int)width
, propval
);
6195 * print static default line per vdev
6196 * not compatible with '-o' <proplist> option
6199 print_list_stats(zpool_handle_t
*zhp
, const char *name
, nvlist_t
*nv
,
6200 list_cbdata_t
*cb
, int depth
, boolean_t isspare
)
6206 boolean_t scripted
= cb
->cb_scripted
;
6207 uint64_t islog
= B_FALSE
;
6208 const char *dashes
= "%-*s - - - - "
6211 verify(nvlist_lookup_uint64_array(nv
, ZPOOL_CONFIG_VDEV_STATS
,
6212 (uint64_t **)&vs
, &c
) == 0);
6215 boolean_t toplevel
= (vs
->vs_space
!= 0);
6217 enum zfs_nicenum_format format
;
6221 format
= ZFS_NICENUM_RAW
;
6223 format
= ZFS_NICENUM_1024
;
6225 if (strcmp(name
, VDEV_TYPE_INDIRECT
) == 0)
6229 (void) printf("\t%s", name
);
6230 else if (strlen(name
) + depth
> cb
->cb_namewidth
)
6231 (void) printf("%*s%s", depth
, "", name
);
6233 (void) printf("%*s%s%*s", depth
, "", name
,
6234 (int)(cb
->cb_namewidth
- strlen(name
) - depth
), "");
6237 * Print the properties for the individual vdevs. Some
6238 * properties are only applicable to toplevel vdevs. The
6239 * 'toplevel' boolean value is passed to the print_one_column()
6240 * to indicate that the value is valid.
6242 if (VDEV_STAT_VALID(vs_pspace
, c
) && vs
->vs_pspace
)
6243 print_one_column(ZPOOL_PROP_SIZE
, vs
->vs_pspace
, NULL
,
6244 scripted
, B_TRUE
, format
);
6246 print_one_column(ZPOOL_PROP_SIZE
, vs
->vs_space
, NULL
,
6247 scripted
, toplevel
, format
);
6248 print_one_column(ZPOOL_PROP_ALLOCATED
, vs
->vs_alloc
, NULL
,
6249 scripted
, toplevel
, format
);
6250 print_one_column(ZPOOL_PROP_FREE
, vs
->vs_space
- vs
->vs_alloc
,
6251 NULL
, scripted
, toplevel
, format
);
6252 print_one_column(ZPOOL_PROP_CHECKPOINT
,
6253 vs
->vs_checkpoint_space
, NULL
, scripted
, toplevel
, format
);
6254 print_one_column(ZPOOL_PROP_EXPANDSZ
, vs
->vs_esize
, NULL
,
6255 scripted
, B_TRUE
, format
);
6256 print_one_column(ZPOOL_PROP_FRAGMENTATION
,
6257 vs
->vs_fragmentation
, NULL
, scripted
,
6258 (vs
->vs_fragmentation
!= ZFS_FRAG_INVALID
&& toplevel
),
6260 cap
= (vs
->vs_space
== 0) ? 0 :
6261 (vs
->vs_alloc
* 10000 / vs
->vs_space
);
6262 print_one_column(ZPOOL_PROP_CAPACITY
, cap
, NULL
,
6263 scripted
, toplevel
, format
);
6264 print_one_column(ZPOOL_PROP_DEDUPRATIO
, 0, NULL
,
6265 scripted
, toplevel
, format
);
6266 state
= zpool_state_to_name(vs
->vs_state
, vs
->vs_aux
);
6268 if (vs
->vs_aux
== VDEV_AUX_SPARED
)
6270 else if (vs
->vs_state
== VDEV_STATE_HEALTHY
)
6273 print_one_column(ZPOOL_PROP_HEALTH
, 0, state
, scripted
,
6275 (void) fputc('\n', stdout
);
6278 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
6279 &child
, &children
) != 0)
6282 /* list the normal vdevs first */
6283 for (c
= 0; c
< children
; c
++) {
6284 uint64_t ishole
= B_FALSE
;
6286 if (nvlist_lookup_uint64(child
[c
],
6287 ZPOOL_CONFIG_IS_HOLE
, &ishole
) == 0 && ishole
)
6290 if (nvlist_lookup_uint64(child
[c
],
6291 ZPOOL_CONFIG_IS_LOG
, &islog
) == 0 && islog
)
6294 if (nvlist_exists(child
[c
], ZPOOL_CONFIG_ALLOCATION_BIAS
))
6297 vname
= zpool_vdev_name(g_zfs
, zhp
, child
[c
],
6298 cb
->cb_name_flags
| VDEV_NAME_TYPE_ID
);
6299 print_list_stats(zhp
, vname
, child
[c
], cb
, depth
+ 2, B_FALSE
);
6303 /* list the classes: 'logs', 'dedup', and 'special' */
6304 for (uint_t n
= 0; n
< ARRAY_SIZE(class_name
); n
++) {
6305 boolean_t printed
= B_FALSE
;
6307 for (c
= 0; c
< children
; c
++) {
6308 const char *bias
= NULL
;
6309 const char *type
= NULL
;
6311 if (nvlist_lookup_uint64(child
[c
], ZPOOL_CONFIG_IS_LOG
,
6312 &islog
) == 0 && islog
) {
6313 bias
= VDEV_ALLOC_CLASS_LOGS
;
6315 (void) nvlist_lookup_string(child
[c
],
6316 ZPOOL_CONFIG_ALLOCATION_BIAS
, &bias
);
6317 (void) nvlist_lookup_string(child
[c
],
6318 ZPOOL_CONFIG_TYPE
, &type
);
6320 if (bias
== NULL
|| strcmp(bias
, class_name
[n
]) != 0)
6322 if (!islog
&& strcmp(type
, VDEV_TYPE_INDIRECT
) == 0)
6326 /* LINTED E_SEC_PRINTF_VAR_FMT */
6327 (void) printf(dashes
, cb
->cb_namewidth
,
6331 vname
= zpool_vdev_name(g_zfs
, zhp
, child
[c
],
6332 cb
->cb_name_flags
| VDEV_NAME_TYPE_ID
);
6333 print_list_stats(zhp
, vname
, child
[c
], cb
, depth
+ 2,
6339 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_L2CACHE
,
6340 &child
, &children
) == 0 && children
> 0) {
6341 /* LINTED E_SEC_PRINTF_VAR_FMT */
6342 (void) printf(dashes
, cb
->cb_namewidth
, "cache");
6343 for (c
= 0; c
< children
; c
++) {
6344 vname
= zpool_vdev_name(g_zfs
, zhp
, child
[c
],
6346 print_list_stats(zhp
, vname
, child
[c
], cb
, depth
+ 2,
6352 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_SPARES
, &child
,
6353 &children
) == 0 && children
> 0) {
6354 /* LINTED E_SEC_PRINTF_VAR_FMT */
6355 (void) printf(dashes
, cb
->cb_namewidth
, "spare");
6356 for (c
= 0; c
< children
; c
++) {
6357 vname
= zpool_vdev_name(g_zfs
, zhp
, child
[c
],
6359 print_list_stats(zhp
, vname
, child
[c
], cb
, depth
+ 2,
6367 * Generic callback function to list a pool.
6370 list_callback(zpool_handle_t
*zhp
, void *data
)
6372 list_cbdata_t
*cbp
= data
;
6374 print_pool(zhp
, cbp
);
6376 if (cbp
->cb_verbose
) {
6377 nvlist_t
*config
, *nvroot
;
6379 config
= zpool_get_config(zhp
, NULL
);
6380 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
6382 print_list_stats(zhp
, NULL
, nvroot
, cbp
, 0, B_FALSE
);
6389 * Set the minimum pool/vdev name column width. The width must be at least 9,
6390 * but may be as large as needed.
6393 get_namewidth_list(zpool_handle_t
*zhp
, void *data
)
6395 list_cbdata_t
*cb
= data
;
6398 width
= get_namewidth(zhp
, cb
->cb_namewidth
,
6399 cb
->cb_name_flags
| VDEV_NAME_TYPE_ID
, cb
->cb_verbose
);
6404 cb
->cb_namewidth
= width
;
6410 * zpool list [-gHLpP] [-o prop[,prop]*] [-T d|u] [pool] ... [interval [count]]
6412 * -g Display guid for individual vdev name.
6413 * -H Scripted mode. Don't display headers, and separate properties
6415 * -L Follow links when resolving vdev path name.
6416 * -o List of properties to display. Defaults to
6417 * "name,size,allocated,free,expandsize,fragmentation,capacity,"
6418 * "dedupratio,health,altroot"
6419 * -p Display values in parsable (exact) format.
6420 * -P Display full path for vdev name.
6421 * -T Display a timestamp in date(1) or Unix format
6423 * List all pools in the system, whether or not they're healthy. Output space
6424 * statistics for each one, as well as health status summary.
6427 zpool_do_list(int argc
, char **argv
)
6431 list_cbdata_t cb
= { 0 };
6432 static char default_props
[] =
6433 "name,size,allocated,free,checkpoint,expandsize,fragmentation,"
6434 "capacity,dedupratio,health,altroot";
6435 char *props
= default_props
;
6437 unsigned long count
= 0;
6439 boolean_t first
= B_TRUE
;
6440 current_prop_type
= ZFS_TYPE_POOL
;
6443 while ((c
= getopt(argc
, argv
, ":gHLo:pPT:v")) != -1) {
6446 cb
.cb_name_flags
|= VDEV_NAME_GUID
;
6449 cb
.cb_scripted
= B_TRUE
;
6452 cb
.cb_name_flags
|= VDEV_NAME_FOLLOW_LINKS
;
6458 cb
.cb_name_flags
|= VDEV_NAME_PATH
;
6461 cb
.cb_literal
= B_TRUE
;
6464 get_timestamp_arg(*optarg
);
6467 cb
.cb_verbose
= B_TRUE
;
6468 cb
.cb_namewidth
= 8; /* 8 until precalc is avail */
6471 (void) fprintf(stderr
, gettext("missing argument for "
6472 "'%c' option\n"), optopt
);
6476 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
6485 get_interval_count(&argc
, argv
, &interval
, &count
);
6487 if (zprop_get_list(g_zfs
, props
, &cb
.cb_proplist
, ZFS_TYPE_POOL
) != 0)
6491 if ((list
= pool_list_get(argc
, argv
, &cb
.cb_proplist
,
6492 ZFS_TYPE_POOL
, cb
.cb_literal
, &ret
)) == NULL
)
6495 if (pool_list_count(list
) == 0)
6498 cb
.cb_namewidth
= 0;
6499 (void) pool_list_iter(list
, B_FALSE
, get_namewidth_list
, &cb
);
6501 if (timestamp_fmt
!= NODATE
)
6502 print_timestamp(timestamp_fmt
);
6504 if (!cb
.cb_scripted
&& (first
|| cb
.cb_verbose
)) {
6508 ret
= pool_list_iter(list
, B_TRUE
, list_callback
, &cb
);
6513 if (count
!= 0 && --count
== 0)
6516 pool_list_free(list
);
6517 (void) fsleep(interval
);
6520 if (argc
== 0 && !cb
.cb_scripted
&& pool_list_count(list
) == 0) {
6521 (void) printf(gettext("no pools available\n"));
6525 pool_list_free(list
);
6526 zprop_free_list(cb
.cb_proplist
);
6531 zpool_do_attach_or_replace(int argc
, char **argv
, int replacing
)
6533 boolean_t force
= B_FALSE
;
6534 boolean_t rebuild
= B_FALSE
;
6535 boolean_t wait
= B_FALSE
;
6538 char *poolname
, *old_disk
, *new_disk
;
6539 zpool_handle_t
*zhp
;
6540 nvlist_t
*props
= NULL
;
6545 while ((c
= getopt(argc
, argv
, "fo:sw")) != -1) {
6551 if ((propval
= strchr(optarg
, '=')) == NULL
) {
6552 (void) fprintf(stderr
, gettext("missing "
6553 "'=' for -o option\n"));
6559 if ((strcmp(optarg
, ZPOOL_CONFIG_ASHIFT
) != 0) ||
6560 (add_prop_list(optarg
, propval
, &props
, B_TRUE
)))
6570 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
6579 /* get pool name and check number of arguments */
6581 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
6588 (void) fprintf(stderr
,
6589 gettext("missing <device> specification\n"));
6597 (void) fprintf(stderr
,
6598 gettext("missing <new_device> specification\n"));
6601 new_disk
= old_disk
;
6611 (void) fprintf(stderr
, gettext("too many arguments\n"));
6615 if ((zhp
= zpool_open(g_zfs
, poolname
)) == NULL
) {
6620 if (zpool_get_config(zhp
, NULL
) == NULL
) {
6621 (void) fprintf(stderr
, gettext("pool '%s' is unavailable\n"),
6628 /* unless manually specified use "ashift" pool property (if set) */
6629 if (!nvlist_exists(props
, ZPOOL_CONFIG_ASHIFT
)) {
6632 char strval
[ZPOOL_MAXPROPLEN
];
6634 intval
= zpool_get_prop_int(zhp
, ZPOOL_PROP_ASHIFT
, &src
);
6635 if (src
!= ZPROP_SRC_DEFAULT
) {
6636 (void) sprintf(strval
, "%" PRId32
, intval
);
6637 verify(add_prop_list(ZPOOL_CONFIG_ASHIFT
, strval
,
6638 &props
, B_TRUE
) == 0);
6642 nvroot
= make_root_vdev(zhp
, props
, force
, B_FALSE
, replacing
, B_FALSE
,
6644 if (nvroot
== NULL
) {
6650 ret
= zpool_vdev_attach(zhp
, old_disk
, new_disk
, nvroot
, replacing
,
6653 if (ret
== 0 && wait
)
6654 ret
= zpool_wait(zhp
,
6655 replacing
? ZPOOL_WAIT_REPLACE
: ZPOOL_WAIT_RESILVER
);
6658 nvlist_free(nvroot
);
6665 * zpool replace [-fsw] [-o property=value] <pool> <device> <new_device>
6667 * -f Force attach, even if <new_device> appears to be in use.
6668 * -s Use sequential instead of healing reconstruction for resilver.
6669 * -o Set property=value.
6670 * -w Wait for replacing to complete before returning
6672 * Replace <device> with <new_device>.
6675 zpool_do_replace(int argc
, char **argv
)
6677 return (zpool_do_attach_or_replace(argc
, argv
, B_TRUE
));
6681 * zpool attach [-fsw] [-o property=value] <pool> <device> <new_device>
6683 * -f Force attach, even if <new_device> appears to be in use.
6684 * -s Use sequential instead of healing reconstruction for resilver.
6685 * -o Set property=value.
6686 * -w Wait for resilvering to complete before returning
6688 * Attach <new_device> to the mirror containing <device>. If <device> is not
6689 * part of a mirror, then <device> will be transformed into a mirror of
6690 * <device> and <new_device>. In either case, <new_device> will begin life
6691 * with a DTL of [0, now], and will immediately begin to resilver itself.
6694 zpool_do_attach(int argc
, char **argv
)
6696 return (zpool_do_attach_or_replace(argc
, argv
, B_FALSE
));
6700 * zpool detach [-f] <pool> <device>
6702 * -f Force detach of <device>, even if DTLs argue against it
6703 * (not supported yet)
6705 * Detach a device from a mirror. The operation will be refused if <device>
6706 * is the last device in the mirror, or if the DTLs indicate that this device
6707 * has the only valid copy of some data.
6710 zpool_do_detach(int argc
, char **argv
)
6713 char *poolname
, *path
;
6714 zpool_handle_t
*zhp
;
6718 while ((c
= getopt(argc
, argv
, "")) != -1) {
6721 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
6730 /* get pool name and check number of arguments */
6732 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
6737 (void) fprintf(stderr
,
6738 gettext("missing <device> specification\n"));
6745 if ((zhp
= zpool_open(g_zfs
, poolname
)) == NULL
)
6748 ret
= zpool_vdev_detach(zhp
, path
);
6756 * zpool split [-gLnP] [-o prop=val] ...
6758 * [-R altroot] <pool> <newpool> [<device> ...]
6760 * -g Display guid for individual vdev name.
6761 * -L Follow links when resolving vdev path name.
6762 * -n Do not split the pool, but display the resulting layout if
6763 * it were to be split.
6764 * -o Set property=value, or set mount options.
6765 * -P Display full path for vdev name.
6766 * -R Mount the split-off pool under an alternate root.
6767 * -l Load encryption keys while importing.
6769 * Splits the named pool and gives it the new pool name. Devices to be split
6770 * off may be listed, provided that no more than one device is specified
6771 * per top-level vdev mirror. The newly split pool is left in an exported
6772 * state unless -R is specified.
6774 * Restrictions: the top-level of the pool pool must only be made up of
6775 * mirrors; all devices in the pool must be healthy; no device may be
6776 * undergoing a resilvering operation.
6779 zpool_do_split(int argc
, char **argv
)
6781 char *srcpool
, *newpool
, *propval
;
6782 char *mntopts
= NULL
;
6786 boolean_t loadkeys
= B_FALSE
;
6787 zpool_handle_t
*zhp
;
6788 nvlist_t
*config
, *props
= NULL
;
6790 flags
.dryrun
= B_FALSE
;
6791 flags
.import
= B_FALSE
;
6792 flags
.name_flags
= 0;
6795 while ((c
= getopt(argc
, argv
, ":gLR:lno:P")) != -1) {
6798 flags
.name_flags
|= VDEV_NAME_GUID
;
6801 flags
.name_flags
|= VDEV_NAME_FOLLOW_LINKS
;
6804 flags
.import
= B_TRUE
;
6806 zpool_prop_to_name(ZPOOL_PROP_ALTROOT
), optarg
,
6807 &props
, B_TRUE
) != 0) {
6816 flags
.dryrun
= B_TRUE
;
6819 if ((propval
= strchr(optarg
, '=')) != NULL
) {
6822 if (add_prop_list(optarg
, propval
,
6823 &props
, B_TRUE
) != 0) {
6832 flags
.name_flags
|= VDEV_NAME_PATH
;
6835 (void) fprintf(stderr
, gettext("missing argument for "
6836 "'%c' option\n"), optopt
);
6840 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
6847 if (!flags
.import
&& mntopts
!= NULL
) {
6848 (void) fprintf(stderr
, gettext("setting mntopts is only "
6849 "valid when importing the pool\n"));
6853 if (!flags
.import
&& loadkeys
) {
6854 (void) fprintf(stderr
, gettext("loading keys is only "
6855 "valid when importing the pool\n"));
6863 (void) fprintf(stderr
, gettext("Missing pool name\n"));
6867 (void) fprintf(stderr
, gettext("Missing new pool name\n"));
6877 if ((zhp
= zpool_open(g_zfs
, srcpool
)) == NULL
) {
6882 config
= split_mirror_vdev(zhp
, newpool
, props
, flags
, argc
, argv
);
6883 if (config
== NULL
) {
6887 (void) printf(gettext("would create '%s' with the "
6888 "following layout:\n\n"), newpool
);
6889 print_vdev_tree(NULL
, newpool
, config
, 0, "",
6891 print_vdev_tree(NULL
, "dedup", config
, 0,
6892 VDEV_ALLOC_BIAS_DEDUP
, 0);
6893 print_vdev_tree(NULL
, "special", config
, 0,
6894 VDEV_ALLOC_BIAS_SPECIAL
, 0);
6900 if (ret
!= 0 || flags
.dryrun
|| !flags
.import
) {
6901 nvlist_free(config
);
6907 * The split was successful. Now we need to open the new
6908 * pool and import it.
6910 if ((zhp
= zpool_open_canfail(g_zfs
, newpool
)) == NULL
) {
6911 nvlist_free(config
);
6917 ret
= zfs_crypto_attempt_load_keys(g_zfs
, newpool
);
6922 if (zpool_get_state(zhp
) != POOL_STATE_UNAVAIL
) {
6923 ms_status
= zpool_enable_datasets(zhp
, mntopts
, 0);
6924 if (ms_status
== EZFS_SHAREFAILED
) {
6925 (void) fprintf(stderr
, gettext("Split was successful, "
6926 "datasets are mounted but sharing of some datasets "
6928 } else if (ms_status
== EZFS_MOUNTFAILED
) {
6929 (void) fprintf(stderr
, gettext("Split was successful"
6930 ", but some datasets could not be mounted\n"));
6931 (void) fprintf(stderr
, gettext("Try doing '%s' with a "
6932 "different altroot\n"), "zpool import");
6936 nvlist_free(config
);
6945 * zpool online <pool> <device> ...
6948 zpool_do_online(int argc
, char **argv
)
6952 zpool_handle_t
*zhp
;
6954 vdev_state_t newstate
;
6958 while ((c
= getopt(argc
, argv
, "e")) != -1) {
6961 flags
|= ZFS_ONLINE_EXPAND
;
6964 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
6973 /* get pool name and check number of arguments */
6975 (void) fprintf(stderr
, gettext("missing pool name\n"));
6979 (void) fprintf(stderr
, gettext("missing device name\n"));
6985 if ((zhp
= zpool_open(g_zfs
, poolname
)) == NULL
)
6988 for (i
= 1; i
< argc
; i
++) {
6989 vdev_state_t oldstate
;
6990 boolean_t avail_spare
, l2cache
;
6991 nvlist_t
*tgt
= zpool_find_vdev(zhp
, argv
[i
], &avail_spare
,
6998 oldstate
= ((vdev_stat_t
*)fnvlist_lookup_uint64_array(tgt
,
6999 ZPOOL_CONFIG_VDEV_STATS
, &vsc
))->vs_state
;
7000 if (zpool_vdev_online(zhp
, argv
[i
], flags
, &newstate
) == 0) {
7001 if (newstate
!= VDEV_STATE_HEALTHY
) {
7002 (void) printf(gettext("warning: device '%s' "
7003 "onlined, but remains in faulted state\n"),
7005 if (newstate
== VDEV_STATE_FAULTED
)
7006 (void) printf(gettext("use 'zpool "
7007 "clear' to restore a faulted "
7010 (void) printf(gettext("use 'zpool "
7011 "replace' to replace devices "
7012 "that are no longer present\n"));
7013 if ((flags
& ZFS_ONLINE_EXPAND
)) {
7014 (void) printf(gettext("%s: failed "
7015 "to expand usable space on "
7016 "unhealthy device '%s'\n"),
7017 (oldstate
>= VDEV_STATE_DEGRADED
?
7018 "error" : "warning"), argv
[i
]);
7019 if (oldstate
>= VDEV_STATE_DEGRADED
) {
7036 * zpool offline [-ft] <pool> <device> ...
7038 * -f Force the device into a faulted state.
7040 * -t Only take the device off-line temporarily. The offline/faulted
7041 * state will not be persistent across reboots.
7044 zpool_do_offline(int argc
, char **argv
)
7048 zpool_handle_t
*zhp
;
7050 boolean_t istmp
= B_FALSE
;
7051 boolean_t fault
= B_FALSE
;
7054 while ((c
= getopt(argc
, argv
, "ft")) != -1) {
7063 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
7072 /* get pool name and check number of arguments */
7074 (void) fprintf(stderr
, gettext("missing pool name\n"));
7078 (void) fprintf(stderr
, gettext("missing device name\n"));
7084 if ((zhp
= zpool_open(g_zfs
, poolname
)) == NULL
)
7087 for (i
= 1; i
< argc
; i
++) {
7089 uint64_t guid
= zpool_vdev_path_to_guid(zhp
, argv
[i
]);
7091 if (istmp
== B_FALSE
) {
7092 /* Force the fault to persist across imports */
7093 aux
= VDEV_AUX_EXTERNAL_PERSIST
;
7095 aux
= VDEV_AUX_EXTERNAL
;
7098 if (guid
== 0 || zpool_vdev_fault(zhp
, guid
, aux
) != 0)
7101 if (zpool_vdev_offline(zhp
, argv
[i
], istmp
) != 0)
7112 * zpool clear <pool> [device]
7114 * Clear all errors associated with a pool or a particular device.
7117 zpool_do_clear(int argc
, char **argv
)
7121 boolean_t dryrun
= B_FALSE
;
7122 boolean_t do_rewind
= B_FALSE
;
7123 boolean_t xtreme_rewind
= B_FALSE
;
7124 uint32_t rewind_policy
= ZPOOL_NO_REWIND
;
7125 nvlist_t
*policy
= NULL
;
7126 zpool_handle_t
*zhp
;
7127 char *pool
, *device
;
7130 while ((c
= getopt(argc
, argv
, "FnX")) != -1) {
7139 xtreme_rewind
= B_TRUE
;
7142 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
7152 (void) fprintf(stderr
, gettext("missing pool name\n"));
7157 (void) fprintf(stderr
, gettext("too many arguments\n"));
7161 if ((dryrun
|| xtreme_rewind
) && !do_rewind
) {
7162 (void) fprintf(stderr
,
7163 gettext("-n or -X only meaningful with -F\n"));
7167 rewind_policy
= ZPOOL_TRY_REWIND
;
7169 rewind_policy
= ZPOOL_DO_REWIND
;
7171 rewind_policy
|= ZPOOL_EXTREME_REWIND
;
7173 /* In future, further rewind policy choices can be passed along here */
7174 if (nvlist_alloc(&policy
, NV_UNIQUE_NAME
, 0) != 0 ||
7175 nvlist_add_uint32(policy
, ZPOOL_LOAD_REWIND_POLICY
,
7176 rewind_policy
) != 0) {
7181 device
= argc
== 2 ? argv
[1] : NULL
;
7183 if ((zhp
= zpool_open_canfail(g_zfs
, pool
)) == NULL
) {
7184 nvlist_free(policy
);
7188 if (zpool_clear(zhp
, device
, policy
) != 0)
7193 nvlist_free(policy
);
7199 * zpool reguid <pool>
7202 zpool_do_reguid(int argc
, char **argv
)
7206 zpool_handle_t
*zhp
;
7210 while ((c
= getopt(argc
, argv
, "")) != -1) {
7213 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
7222 /* get pool name and check number of arguments */
7224 (void) fprintf(stderr
, gettext("missing pool name\n"));
7229 (void) fprintf(stderr
, gettext("too many arguments\n"));
7234 if ((zhp
= zpool_open(g_zfs
, poolname
)) == NULL
)
7237 ret
= zpool_reguid(zhp
);
7245 * zpool reopen <pool>
7247 * Reopen the pool so that the kernel can update the sizes of all vdevs.
7250 zpool_do_reopen(int argc
, char **argv
)
7254 boolean_t scrub_restart
= B_TRUE
;
7257 while ((c
= getopt(argc
, argv
, "n")) != -1) {
7260 scrub_restart
= B_FALSE
;
7263 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
7272 /* if argc == 0 we will execute zpool_reopen_one on all pools */
7273 ret
= for_each_pool(argc
, argv
, B_TRUE
, NULL
, ZFS_TYPE_POOL
,
7274 B_FALSE
, zpool_reopen_one
, &scrub_restart
);
7279 typedef struct scrub_cbdata
{
7281 pool_scrub_cmd_t cb_scrub_cmd
;
7285 zpool_has_checkpoint(zpool_handle_t
*zhp
)
7287 nvlist_t
*config
, *nvroot
;
7289 config
= zpool_get_config(zhp
, NULL
);
7291 if (config
!= NULL
) {
7292 pool_checkpoint_stat_t
*pcs
= NULL
;
7295 nvroot
= fnvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
);
7296 (void) nvlist_lookup_uint64_array(nvroot
,
7297 ZPOOL_CONFIG_CHECKPOINT_STATS
, (uint64_t **)&pcs
, &c
);
7299 if (pcs
== NULL
|| pcs
->pcs_state
== CS_NONE
)
7302 assert(pcs
->pcs_state
== CS_CHECKPOINT_EXISTS
||
7303 pcs
->pcs_state
== CS_CHECKPOINT_DISCARDING
);
7311 scrub_callback(zpool_handle_t
*zhp
, void *data
)
7313 scrub_cbdata_t
*cb
= data
;
7317 * Ignore faulted pools.
7319 if (zpool_get_state(zhp
) == POOL_STATE_UNAVAIL
) {
7320 (void) fprintf(stderr
, gettext("cannot scan '%s': pool is "
7321 "currently unavailable\n"), zpool_get_name(zhp
));
7325 err
= zpool_scan(zhp
, cb
->cb_type
, cb
->cb_scrub_cmd
);
7327 if (err
== 0 && zpool_has_checkpoint(zhp
) &&
7328 cb
->cb_type
== POOL_SCAN_SCRUB
) {
7329 (void) printf(gettext("warning: will not scrub state that "
7330 "belongs to the checkpoint of pool '%s'\n"),
7331 zpool_get_name(zhp
));
7338 wait_callback(zpool_handle_t
*zhp
, void *data
)
7340 zpool_wait_activity_t
*act
= data
;
7341 return (zpool_wait(zhp
, *act
));
7345 * zpool scrub [-s | -p] [-w] [-e] <pool> ...
7347 * -e Only scrub blocks in the error log.
7348 * -s Stop. Stops any in-progress scrub.
7349 * -p Pause. Pause in-progress scrub.
7350 * -w Wait. Blocks until scrub has completed.
7353 zpool_do_scrub(int argc
, char **argv
)
7357 boolean_t wait
= B_FALSE
;
7360 cb
.cb_type
= POOL_SCAN_SCRUB
;
7361 cb
.cb_scrub_cmd
= POOL_SCRUB_NORMAL
;
7363 boolean_t is_error_scrub
= B_FALSE
;
7364 boolean_t is_pause
= B_FALSE
;
7365 boolean_t is_stop
= B_FALSE
;
7368 while ((c
= getopt(argc
, argv
, "spwe")) != -1) {
7371 is_error_scrub
= B_TRUE
;
7383 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
7389 if (is_pause
&& is_stop
) {
7390 (void) fprintf(stderr
, gettext("invalid option "
7391 "combination :-s and -p are mutually exclusive\n"));
7395 cb
.cb_type
= POOL_SCAN_ERRORSCRUB
;
7398 cb
.cb_scrub_cmd
= POOL_SCRUB_PAUSE
;
7399 } else if (is_stop
) {
7400 cb
.cb_type
= POOL_SCAN_NONE
;
7402 cb
.cb_scrub_cmd
= POOL_SCRUB_NORMAL
;
7406 if (wait
&& (cb
.cb_type
== POOL_SCAN_NONE
||
7407 cb
.cb_scrub_cmd
== POOL_SCRUB_PAUSE
)) {
7408 (void) fprintf(stderr
, gettext("invalid option combination: "
7409 "-w cannot be used with -p or -s\n"));
7417 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
7421 error
= for_each_pool(argc
, argv
, B_TRUE
, NULL
, ZFS_TYPE_POOL
,
7422 B_FALSE
, scrub_callback
, &cb
);
7424 if (wait
&& !error
) {
7425 zpool_wait_activity_t act
= ZPOOL_WAIT_SCRUB
;
7426 error
= for_each_pool(argc
, argv
, B_TRUE
, NULL
, ZFS_TYPE_POOL
,
7427 B_FALSE
, wait_callback
, &act
);
7434 * zpool resilver <pool> ...
7436 * Restarts any in-progress resilver
7439 zpool_do_resilver(int argc
, char **argv
)
7444 cb
.cb_type
= POOL_SCAN_RESILVER
;
7445 cb
.cb_scrub_cmd
= POOL_SCRUB_NORMAL
;
7448 while ((c
= getopt(argc
, argv
, "")) != -1) {
7451 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
7461 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
7465 return (for_each_pool(argc
, argv
, B_TRUE
, NULL
, ZFS_TYPE_POOL
,
7466 B_FALSE
, scrub_callback
, &cb
));
7470 * zpool trim [-d] [-r <rate>] [-c | -s] <pool> [<device> ...]
7472 * -c Cancel. Ends any in-progress trim.
7473 * -d Secure trim. Requires kernel and device support.
7474 * -r <rate> Sets the TRIM rate in bytes (per second). Supports
7475 * adding a multiplier suffix such as 'k' or 'm'.
7476 * -s Suspend. TRIM can then be restarted with no flags.
7477 * -w Wait. Blocks until trimming has completed.
7480 zpool_do_trim(int argc
, char **argv
)
7482 struct option long_options
[] = {
7483 {"cancel", no_argument
, NULL
, 'c'},
7484 {"secure", no_argument
, NULL
, 'd'},
7485 {"rate", required_argument
, NULL
, 'r'},
7486 {"suspend", no_argument
, NULL
, 's'},
7487 {"wait", no_argument
, NULL
, 'w'},
7491 pool_trim_func_t cmd_type
= POOL_TRIM_START
;
7493 boolean_t secure
= B_FALSE
;
7494 boolean_t wait
= B_FALSE
;
7497 while ((c
= getopt_long(argc
, argv
, "cdr:sw", long_options
, NULL
))
7501 if (cmd_type
!= POOL_TRIM_START
&&
7502 cmd_type
!= POOL_TRIM_CANCEL
) {
7503 (void) fprintf(stderr
, gettext("-c cannot be "
7504 "combined with other options\n"));
7507 cmd_type
= POOL_TRIM_CANCEL
;
7510 if (cmd_type
!= POOL_TRIM_START
) {
7511 (void) fprintf(stderr
, gettext("-d cannot be "
7512 "combined with the -c or -s options\n"));
7518 if (cmd_type
!= POOL_TRIM_START
) {
7519 (void) fprintf(stderr
, gettext("-r cannot be "
7520 "combined with the -c or -s options\n"));
7523 if (zfs_nicestrtonum(g_zfs
, optarg
, &rate
) == -1) {
7524 (void) fprintf(stderr
, "%s: %s\n",
7525 gettext("invalid value for rate"),
7526 libzfs_error_description(g_zfs
));
7531 if (cmd_type
!= POOL_TRIM_START
&&
7532 cmd_type
!= POOL_TRIM_SUSPEND
) {
7533 (void) fprintf(stderr
, gettext("-s cannot be "
7534 "combined with other options\n"));
7537 cmd_type
= POOL_TRIM_SUSPEND
;
7544 (void) fprintf(stderr
,
7545 gettext("invalid option '%c'\n"), optopt
);
7547 (void) fprintf(stderr
,
7548 gettext("invalid option '%s'\n"),
7559 (void) fprintf(stderr
, gettext("missing pool name argument\n"));
7564 if (wait
&& (cmd_type
!= POOL_TRIM_START
)) {
7565 (void) fprintf(stderr
, gettext("-w cannot be used with -c or "
7570 char *poolname
= argv
[0];
7571 zpool_handle_t
*zhp
= zpool_open(g_zfs
, poolname
);
7575 trimflags_t trim_flags
= {
7581 nvlist_t
*vdevs
= fnvlist_alloc();
7583 /* no individual leaf vdevs specified, so add them all */
7584 nvlist_t
*config
= zpool_get_config(zhp
, NULL
);
7585 nvlist_t
*nvroot
= fnvlist_lookup_nvlist(config
,
7586 ZPOOL_CONFIG_VDEV_TREE
);
7587 zpool_collect_leaves(zhp
, nvroot
, vdevs
);
7588 trim_flags
.fullpool
= B_TRUE
;
7590 trim_flags
.fullpool
= B_FALSE
;
7591 for (int i
= 1; i
< argc
; i
++) {
7592 fnvlist_add_boolean(vdevs
, argv
[i
]);
7596 int error
= zpool_trim(zhp
, cmd_type
, vdevs
, &trim_flags
);
7598 fnvlist_free(vdevs
);
7605 * Converts a total number of seconds to a human readable string broken
7606 * down in to days/hours/minutes/seconds.
7609 secs_to_dhms(uint64_t total
, char *buf
)
7611 uint64_t days
= total
/ 60 / 60 / 24;
7612 uint64_t hours
= (total
/ 60 / 60) % 24;
7613 uint64_t mins
= (total
/ 60) % 60;
7614 uint64_t secs
= (total
% 60);
7617 (void) sprintf(buf
, "%llu days %02llu:%02llu:%02llu",
7618 (u_longlong_t
)days
, (u_longlong_t
)hours
,
7619 (u_longlong_t
)mins
, (u_longlong_t
)secs
);
7621 (void) sprintf(buf
, "%02llu:%02llu:%02llu",
7622 (u_longlong_t
)hours
, (u_longlong_t
)mins
,
7623 (u_longlong_t
)secs
);
7628 * Print out detailed error scrub status.
7631 print_err_scrub_status(pool_scan_stat_t
*ps
)
7633 time_t start
, end
, pause
;
7634 uint64_t total_secs_left
;
7635 uint64_t secs_left
, mins_left
, hours_left
, days_left
;
7636 uint64_t examined
, to_be_examined
;
7638 if (ps
== NULL
|| ps
->pss_error_scrub_func
!= POOL_SCAN_ERRORSCRUB
) {
7642 (void) printf(gettext(" scrub: "));
7644 start
= ps
->pss_error_scrub_start
;
7645 end
= ps
->pss_error_scrub_end
;
7646 pause
= ps
->pss_pass_error_scrub_pause
;
7647 examined
= ps
->pss_error_scrub_examined
;
7648 to_be_examined
= ps
->pss_error_scrub_to_be_examined
;
7650 assert(ps
->pss_error_scrub_func
== POOL_SCAN_ERRORSCRUB
);
7652 if (ps
->pss_error_scrub_state
== DSS_FINISHED
) {
7653 total_secs_left
= end
- start
;
7654 days_left
= total_secs_left
/ 60 / 60 / 24;
7655 hours_left
= (total_secs_left
/ 60 / 60) % 24;
7656 mins_left
= (total_secs_left
/ 60) % 60;
7657 secs_left
= (total_secs_left
% 60);
7659 (void) printf(gettext("scrubbed %llu error blocks in %llu days "
7660 "%02llu:%02llu:%02llu on %s"), (u_longlong_t
)examined
,
7661 (u_longlong_t
)days_left
, (u_longlong_t
)hours_left
,
7662 (u_longlong_t
)mins_left
, (u_longlong_t
)secs_left
,
7666 } else if (ps
->pss_error_scrub_state
== DSS_CANCELED
) {
7667 (void) printf(gettext("error scrub canceled on %s"),
7671 assert(ps
->pss_error_scrub_state
== DSS_ERRORSCRUBBING
);
7673 /* Error scrub is in progress. */
7675 (void) printf(gettext("error scrub in progress since %s"),
7678 (void) printf(gettext("error scrub paused since %s"),
7680 (void) printf(gettext("\terror scrub started on %s"),
7684 double fraction_done
= (double)examined
/ (to_be_examined
+ examined
);
7685 (void) printf(gettext("\t%.2f%% done, issued I/O for %llu error"
7686 " blocks"), 100 * fraction_done
, (u_longlong_t
)examined
);
7688 (void) printf("\n");
7692 * Print out detailed scrub status.
7695 print_scan_scrub_resilver_status(pool_scan_stat_t
*ps
)
7697 time_t start
, end
, pause
;
7698 uint64_t pass_scanned
, scanned
, pass_issued
, issued
, total_s
, total_i
;
7699 uint64_t elapsed
, scan_rate
, issue_rate
;
7700 double fraction_done
;
7701 char processed_buf
[7], scanned_buf
[7], issued_buf
[7], total_s_buf
[7];
7702 char total_i_buf
[7], srate_buf
[7], irate_buf
[7], time_buf
[32];
7705 printf_color(ANSI_BOLD
, gettext("scan:"));
7708 /* If there's never been a scan, there's not much to say. */
7709 if (ps
== NULL
|| ps
->pss_func
== POOL_SCAN_NONE
||
7710 ps
->pss_func
>= POOL_SCAN_FUNCS
) {
7711 (void) printf(gettext("none requested\n"));
7715 start
= ps
->pss_start_time
;
7716 end
= ps
->pss_end_time
;
7717 pause
= ps
->pss_pass_scrub_pause
;
7719 zfs_nicebytes(ps
->pss_processed
, processed_buf
, sizeof (processed_buf
));
7721 int is_resilver
= ps
->pss_func
== POOL_SCAN_RESILVER
;
7722 int is_scrub
= ps
->pss_func
== POOL_SCAN_SCRUB
;
7723 assert(is_resilver
|| is_scrub
);
7725 /* Scan is finished or canceled. */
7726 if (ps
->pss_state
== DSS_FINISHED
) {
7727 secs_to_dhms(end
- start
, time_buf
);
7730 (void) printf(gettext("scrub repaired %s "
7731 "in %s with %llu errors on %s"), processed_buf
,
7732 time_buf
, (u_longlong_t
)ps
->pss_errors
,
7734 } else if (is_resilver
) {
7735 (void) printf(gettext("resilvered %s "
7736 "in %s with %llu errors on %s"), processed_buf
,
7737 time_buf
, (u_longlong_t
)ps
->pss_errors
,
7741 } else if (ps
->pss_state
== DSS_CANCELED
) {
7743 (void) printf(gettext("scrub canceled on %s"),
7745 } else if (is_resilver
) {
7746 (void) printf(gettext("resilver canceled on %s"),
7752 assert(ps
->pss_state
== DSS_SCANNING
);
7754 /* Scan is in progress. Resilvers can't be paused. */
7757 (void) printf(gettext("scrub in progress since %s"),
7760 (void) printf(gettext("scrub paused since %s"),
7762 (void) printf(gettext("\tscrub started on %s"),
7765 } else if (is_resilver
) {
7766 (void) printf(gettext("resilver in progress since %s"),
7770 scanned
= ps
->pss_examined
;
7771 pass_scanned
= ps
->pss_pass_exam
;
7772 issued
= ps
->pss_issued
;
7773 pass_issued
= ps
->pss_pass_issued
;
7774 total_s
= ps
->pss_to_examine
;
7775 total_i
= ps
->pss_to_examine
- ps
->pss_skipped
;
7777 /* we are only done with a block once we have issued the IO for it */
7778 fraction_done
= (double)issued
/ total_i
;
7780 /* elapsed time for this pass, rounding up to 1 if it's 0 */
7781 elapsed
= time(NULL
) - ps
->pss_pass_start
;
7782 elapsed
-= ps
->pss_pass_scrub_spent_paused
;
7783 elapsed
= (elapsed
!= 0) ? elapsed
: 1;
7785 scan_rate
= pass_scanned
/ elapsed
;
7786 issue_rate
= pass_issued
/ elapsed
;
7788 /* format all of the numbers we will be reporting */
7789 zfs_nicebytes(scanned
, scanned_buf
, sizeof (scanned_buf
));
7790 zfs_nicebytes(issued
, issued_buf
, sizeof (issued_buf
));
7791 zfs_nicebytes(total_s
, total_s_buf
, sizeof (total_s_buf
));
7792 zfs_nicebytes(total_i
, total_i_buf
, sizeof (total_i_buf
));
7794 /* do not print estimated time if we have a paused scrub */
7795 (void) printf(gettext("\t%s / %s scanned"), scanned_buf
, total_s_buf
);
7796 if (pause
== 0 && scan_rate
> 0) {
7797 zfs_nicebytes(scan_rate
, srate_buf
, sizeof (srate_buf
));
7798 (void) printf(gettext(" at %s/s"), srate_buf
);
7800 (void) printf(gettext(", %s / %s issued"), issued_buf
, total_i_buf
);
7801 if (pause
== 0 && issue_rate
> 0) {
7802 zfs_nicebytes(issue_rate
, irate_buf
, sizeof (irate_buf
));
7803 (void) printf(gettext(" at %s/s"), irate_buf
);
7805 (void) printf(gettext("\n"));
7808 (void) printf(gettext("\t%s resilvered, %.2f%% done"),
7809 processed_buf
, 100 * fraction_done
);
7810 } else if (is_scrub
) {
7811 (void) printf(gettext("\t%s repaired, %.2f%% done"),
7812 processed_buf
, 100 * fraction_done
);
7817 * Only provide an estimate iff:
7818 * 1) we haven't yet issued all we expected, and
7819 * 2) the issue rate exceeds 10 MB/s, and
7821 * a) a resilver which has started repairs, or
7822 * b) a scrub which has entered the issue phase.
7824 if (total_i
>= issued
&& issue_rate
>= 10 * 1024 * 1024 &&
7825 ((is_resilver
&& ps
->pss_processed
> 0) ||
7826 (is_scrub
&& issued
> 0))) {
7827 secs_to_dhms((total_i
- issued
) / issue_rate
, time_buf
);
7828 (void) printf(gettext(", %s to go\n"), time_buf
);
7830 (void) printf(gettext(", no estimated "
7831 "completion time\n"));
7834 (void) printf(gettext("\n"));
7839 print_rebuild_status_impl(vdev_rebuild_stat_t
*vrs
, uint_t c
, char *vdev_name
)
7841 if (vrs
== NULL
|| vrs
->vrs_state
== VDEV_REBUILD_NONE
)
7845 printf_color(ANSI_BOLD
, gettext("scan:"));
7848 uint64_t bytes_scanned
= vrs
->vrs_bytes_scanned
;
7849 uint64_t bytes_issued
= vrs
->vrs_bytes_issued
;
7850 uint64_t bytes_rebuilt
= vrs
->vrs_bytes_rebuilt
;
7851 uint64_t bytes_est_s
= vrs
->vrs_bytes_est
;
7852 uint64_t bytes_est_i
= vrs
->vrs_bytes_est
;
7853 if (c
> offsetof(vdev_rebuild_stat_t
, vrs_pass_bytes_skipped
) / 8)
7854 bytes_est_i
-= vrs
->vrs_pass_bytes_skipped
;
7855 uint64_t scan_rate
= (vrs
->vrs_pass_bytes_scanned
/
7856 (vrs
->vrs_pass_time_ms
+ 1)) * 1000;
7857 uint64_t issue_rate
= (vrs
->vrs_pass_bytes_issued
/
7858 (vrs
->vrs_pass_time_ms
+ 1)) * 1000;
7859 double scan_pct
= MIN((double)bytes_scanned
* 100 /
7860 (bytes_est_s
+ 1), 100);
7862 /* Format all of the numbers we will be reporting */
7863 char bytes_scanned_buf
[7], bytes_issued_buf
[7];
7864 char bytes_rebuilt_buf
[7], bytes_est_s_buf
[7], bytes_est_i_buf
[7];
7865 char scan_rate_buf
[7], issue_rate_buf
[7], time_buf
[32];
7866 zfs_nicebytes(bytes_scanned
, bytes_scanned_buf
,
7867 sizeof (bytes_scanned_buf
));
7868 zfs_nicebytes(bytes_issued
, bytes_issued_buf
,
7869 sizeof (bytes_issued_buf
));
7870 zfs_nicebytes(bytes_rebuilt
, bytes_rebuilt_buf
,
7871 sizeof (bytes_rebuilt_buf
));
7872 zfs_nicebytes(bytes_est_s
, bytes_est_s_buf
, sizeof (bytes_est_s_buf
));
7873 zfs_nicebytes(bytes_est_i
, bytes_est_i_buf
, sizeof (bytes_est_i_buf
));
7875 time_t start
= vrs
->vrs_start_time
;
7876 time_t end
= vrs
->vrs_end_time
;
7878 /* Rebuild is finished or canceled. */
7879 if (vrs
->vrs_state
== VDEV_REBUILD_COMPLETE
) {
7880 secs_to_dhms(vrs
->vrs_scan_time_ms
/ 1000, time_buf
);
7881 (void) printf(gettext("resilvered (%s) %s in %s "
7882 "with %llu errors on %s"), vdev_name
, bytes_rebuilt_buf
,
7883 time_buf
, (u_longlong_t
)vrs
->vrs_errors
, ctime(&end
));
7885 } else if (vrs
->vrs_state
== VDEV_REBUILD_CANCELED
) {
7886 (void) printf(gettext("resilver (%s) canceled on %s"),
7887 vdev_name
, ctime(&end
));
7889 } else if (vrs
->vrs_state
== VDEV_REBUILD_ACTIVE
) {
7890 (void) printf(gettext("resilver (%s) in progress since %s"),
7891 vdev_name
, ctime(&start
));
7894 assert(vrs
->vrs_state
== VDEV_REBUILD_ACTIVE
);
7896 (void) printf(gettext("\t%s / %s scanned"), bytes_scanned_buf
,
7898 if (scan_rate
> 0) {
7899 zfs_nicebytes(scan_rate
, scan_rate_buf
, sizeof (scan_rate_buf
));
7900 (void) printf(gettext(" at %s/s"), scan_rate_buf
);
7902 (void) printf(gettext(", %s / %s issued"), bytes_issued_buf
,
7904 if (issue_rate
> 0) {
7905 zfs_nicebytes(issue_rate
, issue_rate_buf
,
7906 sizeof (issue_rate_buf
));
7907 (void) printf(gettext(" at %s/s"), issue_rate_buf
);
7909 (void) printf(gettext("\n"));
7911 (void) printf(gettext("\t%s resilvered, %.2f%% done"),
7912 bytes_rebuilt_buf
, scan_pct
);
7914 if (vrs
->vrs_state
== VDEV_REBUILD_ACTIVE
) {
7915 if (bytes_est_s
>= bytes_scanned
&&
7916 scan_rate
>= 10 * 1024 * 1024) {
7917 secs_to_dhms((bytes_est_s
- bytes_scanned
) / scan_rate
,
7919 (void) printf(gettext(", %s to go\n"), time_buf
);
7921 (void) printf(gettext(", no estimated "
7922 "completion time\n"));
7925 (void) printf(gettext("\n"));
7930 * Print rebuild status for top-level vdevs.
7933 print_rebuild_status(zpool_handle_t
*zhp
, nvlist_t
*nvroot
)
7938 if (nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_CHILDREN
,
7939 &child
, &children
) != 0)
7942 for (uint_t c
= 0; c
< children
; c
++) {
7943 vdev_rebuild_stat_t
*vrs
;
7946 if (nvlist_lookup_uint64_array(child
[c
],
7947 ZPOOL_CONFIG_REBUILD_STATS
, (uint64_t **)&vrs
, &i
) == 0) {
7948 char *name
= zpool_vdev_name(g_zfs
, zhp
,
7949 child
[c
], VDEV_NAME_TYPE_ID
);
7950 print_rebuild_status_impl(vrs
, i
, name
);
7957 * As we don't scrub checkpointed blocks, we want to warn the user that we
7958 * skipped scanning some blocks if a checkpoint exists or existed at any
7959 * time during the scan. If a sequential instead of healing reconstruction
7960 * was performed then the blocks were reconstructed. However, their checksums
7961 * have not been verified so we still print the warning.
7964 print_checkpoint_scan_warning(pool_scan_stat_t
*ps
, pool_checkpoint_stat_t
*pcs
)
7966 if (ps
== NULL
|| pcs
== NULL
)
7969 if (pcs
->pcs_state
== CS_NONE
||
7970 pcs
->pcs_state
== CS_CHECKPOINT_DISCARDING
)
7973 assert(pcs
->pcs_state
== CS_CHECKPOINT_EXISTS
);
7975 if (ps
->pss_state
== DSS_NONE
)
7978 if ((ps
->pss_state
== DSS_FINISHED
|| ps
->pss_state
== DSS_CANCELED
) &&
7979 ps
->pss_end_time
< pcs
->pcs_start_time
)
7982 if (ps
->pss_state
== DSS_FINISHED
|| ps
->pss_state
== DSS_CANCELED
) {
7983 (void) printf(gettext(" scan warning: skipped blocks "
7984 "that are only referenced by the checkpoint.\n"));
7986 assert(ps
->pss_state
== DSS_SCANNING
);
7987 (void) printf(gettext(" scan warning: skipping blocks "
7988 "that are only referenced by the checkpoint.\n"));
7993 * Returns B_TRUE if there is an active rebuild in progress. Otherwise,
7994 * B_FALSE is returned and 'rebuild_end_time' is set to the end time for
7995 * the last completed (or cancelled) rebuild.
7998 check_rebuilding(nvlist_t
*nvroot
, uint64_t *rebuild_end_time
)
8002 boolean_t rebuilding
= B_FALSE
;
8003 uint64_t end_time
= 0;
8005 if (nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_CHILDREN
,
8006 &child
, &children
) != 0)
8009 for (uint_t c
= 0; c
< children
; c
++) {
8010 vdev_rebuild_stat_t
*vrs
;
8013 if (nvlist_lookup_uint64_array(child
[c
],
8014 ZPOOL_CONFIG_REBUILD_STATS
, (uint64_t **)&vrs
, &i
) == 0) {
8016 if (vrs
->vrs_end_time
> end_time
)
8017 end_time
= vrs
->vrs_end_time
;
8019 if (vrs
->vrs_state
== VDEV_REBUILD_ACTIVE
) {
8020 rebuilding
= B_TRUE
;
8027 if (rebuild_end_time
!= NULL
)
8028 *rebuild_end_time
= end_time
;
8030 return (rebuilding
);
8034 * Print the scan status.
8037 print_scan_status(zpool_handle_t
*zhp
, nvlist_t
*nvroot
)
8039 uint64_t rebuild_end_time
= 0, resilver_end_time
= 0;
8040 boolean_t have_resilver
= B_FALSE
, have_scrub
= B_FALSE
;
8041 boolean_t have_errorscrub
= B_FALSE
;
8042 boolean_t active_resilver
= B_FALSE
;
8043 pool_checkpoint_stat_t
*pcs
= NULL
;
8044 pool_scan_stat_t
*ps
= NULL
;
8046 time_t scrub_start
= 0, errorscrub_start
= 0;
8048 if (nvlist_lookup_uint64_array(nvroot
, ZPOOL_CONFIG_SCAN_STATS
,
8049 (uint64_t **)&ps
, &c
) == 0) {
8050 if (ps
->pss_func
== POOL_SCAN_RESILVER
) {
8051 resilver_end_time
= ps
->pss_end_time
;
8052 active_resilver
= (ps
->pss_state
== DSS_SCANNING
);
8055 have_resilver
= (ps
->pss_func
== POOL_SCAN_RESILVER
);
8056 have_scrub
= (ps
->pss_func
== POOL_SCAN_SCRUB
);
8057 scrub_start
= ps
->pss_start_time
;
8058 if (c
> offsetof(pool_scan_stat_t
,
8059 pss_pass_error_scrub_pause
) / 8) {
8060 have_errorscrub
= (ps
->pss_error_scrub_func
==
8061 POOL_SCAN_ERRORSCRUB
);
8062 errorscrub_start
= ps
->pss_error_scrub_start
;
8066 boolean_t active_rebuild
= check_rebuilding(nvroot
, &rebuild_end_time
);
8067 boolean_t have_rebuild
= (active_rebuild
|| (rebuild_end_time
> 0));
8069 /* Always print the scrub status when available. */
8070 if (have_scrub
&& scrub_start
> errorscrub_start
)
8071 print_scan_scrub_resilver_status(ps
);
8072 else if (have_errorscrub
&& errorscrub_start
>= scrub_start
)
8073 print_err_scrub_status(ps
);
8076 * When there is an active resilver or rebuild print its status.
8077 * Otherwise print the status of the last resilver or rebuild.
8079 if (active_resilver
|| (!active_rebuild
&& have_resilver
&&
8080 resilver_end_time
&& resilver_end_time
> rebuild_end_time
)) {
8081 print_scan_scrub_resilver_status(ps
);
8082 } else if (active_rebuild
|| (!active_resilver
&& have_rebuild
&&
8083 rebuild_end_time
&& rebuild_end_time
> resilver_end_time
)) {
8084 print_rebuild_status(zhp
, nvroot
);
8087 (void) nvlist_lookup_uint64_array(nvroot
,
8088 ZPOOL_CONFIG_CHECKPOINT_STATS
, (uint64_t **)&pcs
, &c
);
8089 print_checkpoint_scan_warning(ps
, pcs
);
8093 * Print out detailed removal status.
8096 print_removal_status(zpool_handle_t
*zhp
, pool_removal_stat_t
*prs
)
8098 char copied_buf
[7], examined_buf
[7], total_buf
[7], rate_buf
[7];
8100 nvlist_t
*config
, *nvroot
;
8105 if (prs
== NULL
|| prs
->prs_state
== DSS_NONE
)
8109 * Determine name of vdev.
8111 config
= zpool_get_config(zhp
, NULL
);
8112 nvroot
= fnvlist_lookup_nvlist(config
,
8113 ZPOOL_CONFIG_VDEV_TREE
);
8114 verify(nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_CHILDREN
,
8115 &child
, &children
) == 0);
8116 assert(prs
->prs_removing_vdev
< children
);
8117 vdev_name
= zpool_vdev_name(g_zfs
, zhp
,
8118 child
[prs
->prs_removing_vdev
], B_TRUE
);
8120 printf_color(ANSI_BOLD
, gettext("remove: "));
8122 start
= prs
->prs_start_time
;
8123 end
= prs
->prs_end_time
;
8124 zfs_nicenum(prs
->prs_copied
, copied_buf
, sizeof (copied_buf
));
8127 * Removal is finished or canceled.
8129 if (prs
->prs_state
== DSS_FINISHED
) {
8130 uint64_t minutes_taken
= (end
- start
) / 60;
8132 (void) printf(gettext("Removal of vdev %llu copied %s "
8133 "in %lluh%um, completed on %s"),
8134 (longlong_t
)prs
->prs_removing_vdev
,
8136 (u_longlong_t
)(minutes_taken
/ 60),
8137 (uint_t
)(minutes_taken
% 60),
8138 ctime((time_t *)&end
));
8139 } else if (prs
->prs_state
== DSS_CANCELED
) {
8140 (void) printf(gettext("Removal of %s canceled on %s"),
8141 vdev_name
, ctime(&end
));
8143 uint64_t copied
, total
, elapsed
, mins_left
, hours_left
;
8144 double fraction_done
;
8147 assert(prs
->prs_state
== DSS_SCANNING
);
8150 * Removal is in progress.
8152 (void) printf(gettext(
8153 "Evacuation of %s in progress since %s"),
8154 vdev_name
, ctime(&start
));
8156 copied
= prs
->prs_copied
> 0 ? prs
->prs_copied
: 1;
8157 total
= prs
->prs_to_copy
;
8158 fraction_done
= (double)copied
/ total
;
8160 /* elapsed time for this pass */
8161 elapsed
= time(NULL
) - prs
->prs_start_time
;
8162 elapsed
= elapsed
> 0 ? elapsed
: 1;
8163 rate
= copied
/ elapsed
;
8164 rate
= rate
> 0 ? rate
: 1;
8165 mins_left
= ((total
- copied
) / rate
) / 60;
8166 hours_left
= mins_left
/ 60;
8168 zfs_nicenum(copied
, examined_buf
, sizeof (examined_buf
));
8169 zfs_nicenum(total
, total_buf
, sizeof (total_buf
));
8170 zfs_nicenum(rate
, rate_buf
, sizeof (rate_buf
));
8173 * do not print estimated time if hours_left is more than
8176 (void) printf(gettext(
8177 "\t%s copied out of %s at %s/s, %.2f%% done"),
8178 examined_buf
, total_buf
, rate_buf
, 100 * fraction_done
);
8179 if (hours_left
< (30 * 24)) {
8180 (void) printf(gettext(", %lluh%um to go\n"),
8181 (u_longlong_t
)hours_left
, (uint_t
)(mins_left
% 60));
8183 (void) printf(gettext(
8184 ", (copy is slow, no estimated time)\n"));
8189 if (prs
->prs_mapping_memory
> 0) {
8191 zfs_nicenum(prs
->prs_mapping_memory
, mem_buf
, sizeof (mem_buf
));
8192 (void) printf(gettext(
8193 "\t%s memory used for removed device mappings\n"),
8199 print_checkpoint_status(pool_checkpoint_stat_t
*pcs
)
8204 if (pcs
== NULL
|| pcs
->pcs_state
== CS_NONE
)
8207 (void) printf(gettext("checkpoint: "));
8209 start
= pcs
->pcs_start_time
;
8210 zfs_nicenum(pcs
->pcs_space
, space_buf
, sizeof (space_buf
));
8212 if (pcs
->pcs_state
== CS_CHECKPOINT_EXISTS
) {
8213 char *date
= ctime(&start
);
8216 * ctime() adds a newline at the end of the generated
8217 * string, thus the weird format specifier and the
8218 * strlen() call used to chop it off from the output.
8220 (void) printf(gettext("created %.*s, consumes %s\n"),
8221 (int)(strlen(date
) - 1), date
, space_buf
);
8225 assert(pcs
->pcs_state
== CS_CHECKPOINT_DISCARDING
);
8227 (void) printf(gettext("discarding, %s remaining.\n"),
8232 print_error_log(zpool_handle_t
*zhp
)
8234 nvlist_t
*nverrlist
= NULL
;
8237 size_t len
= MAXPATHLEN
* 2;
8239 if (zpool_get_errlog(zhp
, &nverrlist
) != 0)
8242 (void) printf("errors: Permanent errors have been "
8243 "detected in the following files:\n\n");
8245 pathname
= safe_malloc(len
);
8247 while ((elem
= nvlist_next_nvpair(nverrlist
, elem
)) != NULL
) {
8249 uint64_t dsobj
, obj
;
8251 verify(nvpair_value_nvlist(elem
, &nv
) == 0);
8252 verify(nvlist_lookup_uint64(nv
, ZPOOL_ERR_DATASET
,
8254 verify(nvlist_lookup_uint64(nv
, ZPOOL_ERR_OBJECT
,
8256 zpool_obj_to_path(zhp
, dsobj
, obj
, pathname
, len
);
8257 (void) printf("%7s %s\n", "", pathname
);
8260 nvlist_free(nverrlist
);
8264 print_spares(zpool_handle_t
*zhp
, status_cbdata_t
*cb
, nvlist_t
**spares
,
8273 (void) printf(gettext("\tspares\n"));
8275 for (i
= 0; i
< nspares
; i
++) {
8276 name
= zpool_vdev_name(g_zfs
, zhp
, spares
[i
],
8278 print_status_config(zhp
, cb
, name
, spares
[i
], 2, B_TRUE
, NULL
);
8284 print_l2cache(zpool_handle_t
*zhp
, status_cbdata_t
*cb
, nvlist_t
**l2cache
,
8293 (void) printf(gettext("\tcache\n"));
8295 for (i
= 0; i
< nl2cache
; i
++) {
8296 name
= zpool_vdev_name(g_zfs
, zhp
, l2cache
[i
],
8298 print_status_config(zhp
, cb
, name
, l2cache
[i
], 2,
8305 print_dedup_stats(nvlist_t
*config
)
8307 ddt_histogram_t
*ddh
;
8311 char dspace
[6], mspace
[6];
8314 * If the pool was faulted then we may not have been able to
8315 * obtain the config. Otherwise, if we have anything in the dedup
8316 * table continue processing the stats.
8318 if (nvlist_lookup_uint64_array(config
, ZPOOL_CONFIG_DDT_OBJ_STATS
,
8319 (uint64_t **)&ddo
, &c
) != 0)
8322 (void) printf("\n");
8323 (void) printf(gettext(" dedup: "));
8324 if (ddo
->ddo_count
== 0) {
8325 (void) printf(gettext("no DDT entries\n"));
8329 zfs_nicebytes(ddo
->ddo_dspace
, dspace
, sizeof (dspace
));
8330 zfs_nicebytes(ddo
->ddo_mspace
, mspace
, sizeof (mspace
));
8331 (void) printf("DDT entries %llu, size %s on disk, %s in core\n",
8332 (u_longlong_t
)ddo
->ddo_count
,
8336 verify(nvlist_lookup_uint64_array(config
, ZPOOL_CONFIG_DDT_STATS
,
8337 (uint64_t **)&dds
, &c
) == 0);
8338 verify(nvlist_lookup_uint64_array(config
, ZPOOL_CONFIG_DDT_HISTOGRAM
,
8339 (uint64_t **)&ddh
, &c
) == 0);
8340 zpool_dump_ddt(dds
, ddh
);
8344 * Display a summary of pool status. Displays a summary such as:
8348 * reason: One or more devices ...
8349 * see: https://openzfs.github.io/openzfs-docs/msg/ZFS-xxxx-01
8355 * When given the '-v' option, we print out the complete config. If the '-e'
8356 * option is specified, then we print out error rate information as well.
8359 status_callback(zpool_handle_t
*zhp
, void *data
)
8361 status_cbdata_t
*cbp
= data
;
8362 nvlist_t
*config
, *nvroot
;
8364 zpool_status_t reason
;
8365 zpool_errata_t errata
;
8370 config
= zpool_get_config(zhp
, NULL
);
8371 reason
= zpool_get_status(zhp
, &msgid
, &errata
);
8376 * If we were given 'zpool status -x', only report those pools with
8379 if (cbp
->cb_explain
&&
8380 (reason
== ZPOOL_STATUS_OK
||
8381 reason
== ZPOOL_STATUS_VERSION_OLDER
||
8382 reason
== ZPOOL_STATUS_FEAT_DISABLED
||
8383 reason
== ZPOOL_STATUS_COMPATIBILITY_ERR
||
8384 reason
== ZPOOL_STATUS_INCOMPATIBLE_FEAT
)) {
8385 if (!cbp
->cb_allpools
) {
8386 (void) printf(gettext("pool '%s' is healthy\n"),
8387 zpool_get_name(zhp
));
8389 cbp
->cb_first
= B_FALSE
;
8395 cbp
->cb_first
= B_FALSE
;
8397 (void) printf("\n");
8399 nvroot
= fnvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
);
8400 verify(nvlist_lookup_uint64_array(nvroot
, ZPOOL_CONFIG_VDEV_STATS
,
8401 (uint64_t **)&vs
, &c
) == 0);
8403 health
= zpool_get_state_str(zhp
);
8406 printf_color(ANSI_BOLD
, gettext("pool:"));
8407 printf(" %s\n", zpool_get_name(zhp
));
8409 printf_color(ANSI_BOLD
, gettext("state: "));
8411 printf_color(health_str_to_color(health
), "%s", health
);
8413 fputc('\n', stdout
);
8416 case ZPOOL_STATUS_MISSING_DEV_R
:
8417 printf_color(ANSI_BOLD
, gettext("status: "));
8418 printf_color(ANSI_YELLOW
, gettext("One or more devices could "
8419 "not be opened. Sufficient replicas exist for\n\tthe pool "
8420 "to continue functioning in a degraded state.\n"));
8421 printf_color(ANSI_BOLD
, gettext("action: "));
8422 printf_color(ANSI_YELLOW
, gettext("Attach the missing device "
8423 "and online it using 'zpool online'.\n"));
8426 case ZPOOL_STATUS_MISSING_DEV_NR
:
8427 printf_color(ANSI_BOLD
, gettext("status: "));
8428 printf_color(ANSI_YELLOW
, gettext("One or more devices could "
8429 "not be opened. There are insufficient\n\treplicas for the"
8430 " pool to continue functioning.\n"));
8431 printf_color(ANSI_BOLD
, gettext("action: "));
8432 printf_color(ANSI_YELLOW
, gettext("Attach the missing device "
8433 "and online it using 'zpool online'.\n"));
8436 case ZPOOL_STATUS_CORRUPT_LABEL_R
:
8437 printf_color(ANSI_BOLD
, gettext("status: "));
8438 printf_color(ANSI_YELLOW
, gettext("One or more devices could "
8439 "not be used because the label is missing or\n\tinvalid. "
8440 "Sufficient replicas exist for the pool to continue\n\t"
8441 "functioning in a degraded state.\n"));
8442 printf_color(ANSI_BOLD
, gettext("action: "));
8443 printf_color(ANSI_YELLOW
, gettext("Replace the device using "
8444 "'zpool replace'.\n"));
8447 case ZPOOL_STATUS_CORRUPT_LABEL_NR
:
8448 printf_color(ANSI_BOLD
, gettext("status: "));
8449 printf_color(ANSI_YELLOW
, gettext("One or more devices could "
8450 "not be used because the label is missing \n\tor invalid. "
8451 "There are insufficient replicas for the pool to "
8452 "continue\n\tfunctioning.\n"));
8453 zpool_explain_recover(zpool_get_handle(zhp
),
8454 zpool_get_name(zhp
), reason
, config
);
8457 case ZPOOL_STATUS_FAILING_DEV
:
8458 printf_color(ANSI_BOLD
, gettext("status: "));
8459 printf_color(ANSI_YELLOW
, gettext("One or more devices has "
8460 "experienced an unrecoverable error. An\n\tattempt was "
8461 "made to correct the error. Applications are "
8463 printf_color(ANSI_BOLD
, gettext("action: "));
8464 printf_color(ANSI_YELLOW
, gettext("Determine if the "
8465 "device needs to be replaced, and clear the errors\n\tusing"
8466 " 'zpool clear' or replace the device with 'zpool "
8470 case ZPOOL_STATUS_OFFLINE_DEV
:
8471 printf_color(ANSI_BOLD
, gettext("status: "));
8472 printf_color(ANSI_YELLOW
, gettext("One or more devices has "
8473 "been taken offline by the administrator.\n\tSufficient "
8474 "replicas exist for the pool to continue functioning in "
8475 "a\n\tdegraded state.\n"));
8476 printf_color(ANSI_BOLD
, gettext("action: "));
8477 printf_color(ANSI_YELLOW
, gettext("Online the device "
8478 "using 'zpool online' or replace the device with\n\t'zpool "
8482 case ZPOOL_STATUS_REMOVED_DEV
:
8483 printf_color(ANSI_BOLD
, gettext("status: "));
8484 printf_color(ANSI_YELLOW
, gettext("One or more devices has "
8485 "been removed by the administrator.\n\tSufficient "
8486 "replicas exist for the pool to continue functioning in "
8487 "a\n\tdegraded state.\n"));
8488 printf_color(ANSI_BOLD
, gettext("action: "));
8489 printf_color(ANSI_YELLOW
, gettext("Online the device "
8490 "using zpool online' or replace the device with\n\t'zpool "
8494 case ZPOOL_STATUS_RESILVERING
:
8495 case ZPOOL_STATUS_REBUILDING
:
8496 printf_color(ANSI_BOLD
, gettext("status: "));
8497 printf_color(ANSI_YELLOW
, gettext("One or more devices is "
8498 "currently being resilvered. The pool will\n\tcontinue "
8499 "to function, possibly in a degraded state.\n"));
8500 printf_color(ANSI_BOLD
, gettext("action: "));
8501 printf_color(ANSI_YELLOW
, gettext("Wait for the resilver to "
8505 case ZPOOL_STATUS_REBUILD_SCRUB
:
8506 printf_color(ANSI_BOLD
, gettext("status: "));
8507 printf_color(ANSI_YELLOW
, gettext("One or more devices have "
8508 "been sequentially resilvered, scrubbing\n\tthe pool "
8509 "is recommended.\n"));
8510 printf_color(ANSI_BOLD
, gettext("action: "));
8511 printf_color(ANSI_YELLOW
, gettext("Use 'zpool scrub' to "
8512 "verify all data checksums.\n"));
8515 case ZPOOL_STATUS_CORRUPT_DATA
:
8516 printf_color(ANSI_BOLD
, gettext("status: "));
8517 printf_color(ANSI_YELLOW
, gettext("One or more devices has "
8518 "experienced an error resulting in data\n\tcorruption. "
8519 "Applications may be affected.\n"));
8520 printf_color(ANSI_BOLD
, gettext("action: "));
8521 printf_color(ANSI_YELLOW
, gettext("Restore the file in question"
8522 " if possible. Otherwise restore the\n\tentire pool from "
8526 case ZPOOL_STATUS_CORRUPT_POOL
:
8527 printf_color(ANSI_BOLD
, gettext("status: "));
8528 printf_color(ANSI_YELLOW
, gettext("The pool metadata is "
8529 "corrupted and the pool cannot be opened.\n"));
8530 zpool_explain_recover(zpool_get_handle(zhp
),
8531 zpool_get_name(zhp
), reason
, config
);
8534 case ZPOOL_STATUS_VERSION_OLDER
:
8535 printf_color(ANSI_BOLD
, gettext("status: "));
8536 printf_color(ANSI_YELLOW
, gettext("The pool is formatted using "
8537 "a legacy on-disk format. The pool can\n\tstill be used, "
8538 "but some features are unavailable.\n"));
8539 printf_color(ANSI_BOLD
, gettext("action: "));
8540 printf_color(ANSI_YELLOW
, gettext("Upgrade the pool using "
8541 "'zpool upgrade'. Once this is done, the\n\tpool will no "
8542 "longer be accessible on software that does not support\n\t"
8543 "feature flags.\n"));
8546 case ZPOOL_STATUS_VERSION_NEWER
:
8547 printf_color(ANSI_BOLD
, gettext("status: "));
8548 printf_color(ANSI_YELLOW
, gettext("The pool has been upgraded "
8549 "to a newer, incompatible on-disk version.\n\tThe pool "
8550 "cannot be accessed on this system.\n"));
8551 printf_color(ANSI_BOLD
, gettext("action: "));
8552 printf_color(ANSI_YELLOW
, gettext("Access the pool from a "
8553 "system running more recent software, or\n\trestore the "
8554 "pool from backup.\n"));
8557 case ZPOOL_STATUS_FEAT_DISABLED
:
8558 printf_color(ANSI_BOLD
, gettext("status: "));
8559 printf_color(ANSI_YELLOW
, gettext("Some supported and "
8560 "requested features are not enabled on the pool.\n\t"
8561 "The pool can still be used, but some features are "
8563 printf_color(ANSI_BOLD
, gettext("action: "));
8564 printf_color(ANSI_YELLOW
, gettext("Enable all features using "
8565 "'zpool upgrade'. Once this is done,\n\tthe pool may no "
8566 "longer be accessible by software that does not support\n\t"
8567 "the features. See zpool-features(7) for details.\n"));
8570 case ZPOOL_STATUS_COMPATIBILITY_ERR
:
8571 printf_color(ANSI_BOLD
, gettext("status: "));
8572 printf_color(ANSI_YELLOW
, gettext("This pool has a "
8573 "compatibility list specified, but it could not be\n\t"
8574 "read/parsed at this time. The pool can still be used, "
8575 "but this\n\tshould be investigated.\n"));
8576 printf_color(ANSI_BOLD
, gettext("action: "));
8577 printf_color(ANSI_YELLOW
, gettext("Check the value of the "
8578 "'compatibility' property against the\n\t"
8579 "appropriate file in " ZPOOL_SYSCONF_COMPAT_D
" or "
8580 ZPOOL_DATA_COMPAT_D
".\n"));
8583 case ZPOOL_STATUS_INCOMPATIBLE_FEAT
:
8584 printf_color(ANSI_BOLD
, gettext("status: "));
8585 printf_color(ANSI_YELLOW
, gettext("One or more features "
8586 "are enabled on the pool despite not being\n\t"
8587 "requested by the 'compatibility' property.\n"));
8588 printf_color(ANSI_BOLD
, gettext("action: "));
8589 printf_color(ANSI_YELLOW
, gettext("Consider setting "
8590 "'compatibility' to an appropriate value, or\n\t"
8591 "adding needed features to the relevant file in\n\t"
8592 ZPOOL_SYSCONF_COMPAT_D
" or " ZPOOL_DATA_COMPAT_D
".\n"));
8595 case ZPOOL_STATUS_UNSUP_FEAT_READ
:
8596 printf_color(ANSI_BOLD
, gettext("status: "));
8597 printf_color(ANSI_YELLOW
, gettext("The pool cannot be accessed "
8598 "on this system because it uses the\n\tfollowing feature(s)"
8599 " not supported on this system:\n"));
8600 zpool_print_unsup_feat(config
);
8601 (void) printf("\n");
8602 printf_color(ANSI_BOLD
, gettext("action: "));
8603 printf_color(ANSI_YELLOW
, gettext("Access the pool from a "
8604 "system that supports the required feature(s),\n\tor "
8605 "restore the pool from backup.\n"));
8608 case ZPOOL_STATUS_UNSUP_FEAT_WRITE
:
8609 printf_color(ANSI_BOLD
, gettext("status: "));
8610 printf_color(ANSI_YELLOW
, gettext("The pool can only be "
8611 "accessed in read-only mode on this system. It\n\tcannot be"
8612 " accessed in read-write mode because it uses the "
8613 "following\n\tfeature(s) not supported on this system:\n"));
8614 zpool_print_unsup_feat(config
);
8615 (void) printf("\n");
8616 printf_color(ANSI_BOLD
, gettext("action: "));
8617 printf_color(ANSI_YELLOW
, gettext("The pool cannot be accessed "
8618 "in read-write mode. Import the pool with\n"
8619 "\t\"-o readonly=on\", access the pool from a system that "
8620 "supports the\n\trequired feature(s), or restore the "
8621 "pool from backup.\n"));
8624 case ZPOOL_STATUS_FAULTED_DEV_R
:
8625 printf_color(ANSI_BOLD
, gettext("status: "));
8626 printf_color(ANSI_YELLOW
, gettext("One or more devices are "
8627 "faulted in response to persistent errors.\n\tSufficient "
8628 "replicas exist for the pool to continue functioning "
8629 "in a\n\tdegraded state.\n"));
8630 printf_color(ANSI_BOLD
, gettext("action: "));
8631 printf_color(ANSI_YELLOW
, gettext("Replace the faulted device, "
8632 "or use 'zpool clear' to mark the device\n\trepaired.\n"));
8635 case ZPOOL_STATUS_FAULTED_DEV_NR
:
8636 printf_color(ANSI_BOLD
, gettext("status: "));
8637 printf_color(ANSI_YELLOW
, gettext("One or more devices are "
8638 "faulted in response to persistent errors. There are "
8639 "insufficient replicas for the pool to\n\tcontinue "
8641 printf_color(ANSI_BOLD
, gettext("action: "));
8642 printf_color(ANSI_YELLOW
, gettext("Destroy and re-create the "
8643 "pool from a backup source. Manually marking the device\n"
8644 "\trepaired using 'zpool clear' may allow some data "
8645 "to be recovered.\n"));
8648 case ZPOOL_STATUS_IO_FAILURE_MMP
:
8649 printf_color(ANSI_BOLD
, gettext("status: "));
8650 printf_color(ANSI_YELLOW
, gettext("The pool is suspended "
8651 "because multihost writes failed or were delayed;\n\t"
8652 "another system could import the pool undetected.\n"));
8653 printf_color(ANSI_BOLD
, gettext("action: "));
8654 printf_color(ANSI_YELLOW
, gettext("Make sure the pool's devices"
8655 " are connected, then reboot your system and\n\timport the "
8659 case ZPOOL_STATUS_IO_FAILURE_WAIT
:
8660 case ZPOOL_STATUS_IO_FAILURE_CONTINUE
:
8661 printf_color(ANSI_BOLD
, gettext("status: "));
8662 printf_color(ANSI_YELLOW
, gettext("One or more devices are "
8663 "faulted in response to IO failures.\n"));
8664 printf_color(ANSI_BOLD
, gettext("action: "));
8665 printf_color(ANSI_YELLOW
, gettext("Make sure the affected "
8666 "devices are connected, then run 'zpool clear'.\n"));
8669 case ZPOOL_STATUS_BAD_LOG
:
8670 printf_color(ANSI_BOLD
, gettext("status: "));
8671 printf_color(ANSI_YELLOW
, gettext("An intent log record "
8672 "could not be read.\n"
8673 "\tWaiting for administrator intervention to fix the "
8674 "faulted pool.\n"));
8675 printf_color(ANSI_BOLD
, gettext("action: "));
8676 printf_color(ANSI_YELLOW
, gettext("Either restore the affected "
8677 "device(s) and run 'zpool online',\n"
8678 "\tor ignore the intent log records by running "
8679 "'zpool clear'.\n"));
8682 case ZPOOL_STATUS_NON_NATIVE_ASHIFT
:
8683 (void) printf(gettext("status: One or more devices are "
8684 "configured to use a non-native block size.\n"
8685 "\tExpect reduced performance.\n"));
8686 (void) printf(gettext("action: Replace affected devices with "
8687 "devices that support the\n\tconfigured block size, or "
8688 "migrate data to a properly configured\n\tpool.\n"));
8691 case ZPOOL_STATUS_HOSTID_MISMATCH
:
8692 printf_color(ANSI_BOLD
, gettext("status: "));
8693 printf_color(ANSI_YELLOW
, gettext("Mismatch between pool hostid"
8694 " and system hostid on imported pool.\n\tThis pool was "
8695 "previously imported into a system with a different "
8696 "hostid,\n\tand then was verbatim imported into this "
8698 printf_color(ANSI_BOLD
, gettext("action: "));
8699 printf_color(ANSI_YELLOW
, gettext("Export this pool on all "
8700 "systems on which it is imported.\n"
8701 "\tThen import it to correct the mismatch.\n"));
8704 case ZPOOL_STATUS_ERRATA
:
8705 printf_color(ANSI_BOLD
, gettext("status: "));
8706 printf_color(ANSI_YELLOW
, gettext("Errata #%d detected.\n"),
8710 case ZPOOL_ERRATA_NONE
:
8713 case ZPOOL_ERRATA_ZOL_2094_SCRUB
:
8714 printf_color(ANSI_BOLD
, gettext("action: "));
8715 printf_color(ANSI_YELLOW
, gettext("To correct the issue"
8716 " run 'zpool scrub'.\n"));
8719 case ZPOOL_ERRATA_ZOL_6845_ENCRYPTION
:
8720 (void) printf(gettext("\tExisting encrypted datasets "
8721 "contain an on-disk incompatibility\n\twhich "
8722 "needs to be corrected.\n"));
8723 printf_color(ANSI_BOLD
, gettext("action: "));
8724 printf_color(ANSI_YELLOW
, gettext("To correct the issue"
8725 " backup existing encrypted datasets to new\n\t"
8726 "encrypted datasets and destroy the old ones. "
8727 "'zfs mount -o ro' can\n\tbe used to temporarily "
8728 "mount existing encrypted datasets readonly.\n"));
8731 case ZPOOL_ERRATA_ZOL_8308_ENCRYPTION
:
8732 (void) printf(gettext("\tExisting encrypted snapshots "
8733 "and bookmarks contain an on-disk\n\tincompat"
8734 "ibility. This may cause on-disk corruption if "
8735 "they are used\n\twith 'zfs recv'.\n"));
8736 printf_color(ANSI_BOLD
, gettext("action: "));
8737 printf_color(ANSI_YELLOW
, gettext("To correct the"
8738 "issue, enable the bookmark_v2 feature. No "
8739 "additional\n\taction is needed if there are no "
8740 "encrypted snapshots or bookmarks.\n\tIf preserving"
8741 "the encrypted snapshots and bookmarks is required,"
8742 " use\n\ta non-raw send to backup and restore them."
8743 " Alternately, they may be\n\tremoved to resolve "
8744 "the incompatibility.\n"));
8749 * All errata which allow the pool to be imported
8750 * must contain an action message.
8758 * The remaining errors can't actually be generated, yet.
8760 assert(reason
== ZPOOL_STATUS_OK
);
8763 if (msgid
!= NULL
) {
8765 printf_color(ANSI_BOLD
, gettext("see:"));
8767 " https://openzfs.github.io/openzfs-docs/msg/%s\n"),
8771 if (config
!= NULL
) {
8773 nvlist_t
**spares
, **l2cache
;
8774 uint_t nspares
, nl2cache
;
8775 pool_checkpoint_stat_t
*pcs
= NULL
;
8776 pool_removal_stat_t
*prs
= NULL
;
8778 print_scan_status(zhp
, nvroot
);
8780 (void) nvlist_lookup_uint64_array(nvroot
,
8781 ZPOOL_CONFIG_REMOVAL_STATS
, (uint64_t **)&prs
, &c
);
8782 print_removal_status(zhp
, prs
);
8784 (void) nvlist_lookup_uint64_array(nvroot
,
8785 ZPOOL_CONFIG_CHECKPOINT_STATS
, (uint64_t **)&pcs
, &c
);
8786 print_checkpoint_status(pcs
);
8788 cbp
->cb_namewidth
= max_width(zhp
, nvroot
, 0, 0,
8789 cbp
->cb_name_flags
| VDEV_NAME_TYPE_ID
);
8790 if (cbp
->cb_namewidth
< 10)
8791 cbp
->cb_namewidth
= 10;
8793 color_start(ANSI_BOLD
);
8794 (void) printf(gettext("config:\n\n"));
8795 (void) printf(gettext("\t%-*s %-8s %5s %5s %5s"),
8796 cbp
->cb_namewidth
, "NAME", "STATE", "READ", "WRITE",
8800 if (cbp
->cb_print_slow_ios
) {
8801 printf_color(ANSI_BOLD
, " %5s", gettext("SLOW"));
8804 if (cbp
->vcdl
!= NULL
)
8805 print_cmd_columns(cbp
->vcdl
, 0);
8809 print_status_config(zhp
, cbp
, zpool_get_name(zhp
), nvroot
, 0,
8812 print_class_vdevs(zhp
, cbp
, nvroot
, VDEV_ALLOC_BIAS_DEDUP
);
8813 print_class_vdevs(zhp
, cbp
, nvroot
, VDEV_ALLOC_BIAS_SPECIAL
);
8814 print_class_vdevs(zhp
, cbp
, nvroot
, VDEV_ALLOC_CLASS_LOGS
);
8816 if (nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_L2CACHE
,
8817 &l2cache
, &nl2cache
) == 0)
8818 print_l2cache(zhp
, cbp
, l2cache
, nl2cache
);
8820 if (nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_SPARES
,
8821 &spares
, &nspares
) == 0)
8822 print_spares(zhp
, cbp
, spares
, nspares
);
8824 if (nvlist_lookup_uint64(config
, ZPOOL_CONFIG_ERRCOUNT
,
8826 (void) printf("\n");
8828 (void) printf(gettext(
8829 "errors: No known data errors\n"));
8830 } else if (!cbp
->cb_verbose
) {
8831 (void) printf(gettext("errors: %llu data "
8832 "errors, use '-v' for a list\n"),
8833 (u_longlong_t
)nerr
);
8835 print_error_log(zhp
);
8839 if (cbp
->cb_dedup_stats
)
8840 print_dedup_stats(config
);
8842 (void) printf(gettext("config: The configuration cannot be "
8850 * zpool status [-c [script1,script2,...]] [-igLpPstvx] [-T d|u] [pool] ...
8851 * [interval [count]]
8853 * -c CMD For each vdev, run command CMD
8854 * -i Display vdev initialization status.
8855 * -g Display guid for individual vdev name.
8856 * -L Follow links when resolving vdev path name.
8857 * -p Display values in parsable (exact) format.
8858 * -P Display full path for vdev name.
8859 * -s Display slow IOs column.
8860 * -v Display complete error logs
8861 * -x Display only pools with potential problems
8862 * -D Display dedup status (undocumented)
8863 * -t Display vdev TRIM status.
8864 * -T Display a timestamp in date(1) or Unix format
8866 * Describes the health status of all pools or some subset.
8869 zpool_do_status(int argc
, char **argv
)
8874 unsigned long count
= 0;
8875 status_cbdata_t cb
= { 0 };
8879 while ((c
= getopt(argc
, argv
, "c:igLpPsvxDtT:")) != -1) {
8884 gettext("Can't set -c flag twice\n"));
8888 if (getenv("ZPOOL_SCRIPTS_ENABLED") != NULL
&&
8889 !libzfs_envvar_is_set("ZPOOL_SCRIPTS_ENABLED")) {
8890 fprintf(stderr
, gettext(
8891 "Can't run -c, disabled by "
8892 "ZPOOL_SCRIPTS_ENABLED.\n"));
8896 if ((getuid() <= 0 || geteuid() <= 0) &&
8897 !libzfs_envvar_is_set("ZPOOL_SCRIPTS_AS_ROOT")) {
8898 fprintf(stderr
, gettext(
8899 "Can't run -c with root privileges "
8900 "unless ZPOOL_SCRIPTS_AS_ROOT is set.\n"));
8906 cb
.cb_print_vdev_init
= B_TRUE
;
8909 cb
.cb_name_flags
|= VDEV_NAME_GUID
;
8912 cb
.cb_name_flags
|= VDEV_NAME_FOLLOW_LINKS
;
8915 cb
.cb_literal
= B_TRUE
;
8918 cb
.cb_name_flags
|= VDEV_NAME_PATH
;
8921 cb
.cb_print_slow_ios
= B_TRUE
;
8924 cb
.cb_verbose
= B_TRUE
;
8927 cb
.cb_explain
= B_TRUE
;
8930 cb
.cb_dedup_stats
= B_TRUE
;
8933 cb
.cb_print_vdev_trim
= B_TRUE
;
8936 get_timestamp_arg(*optarg
);
8939 if (optopt
== 'c') {
8940 print_zpool_script_list("status");
8944 gettext("invalid option '%c'\n"), optopt
);
8953 get_interval_count(&argc
, argv
, &interval
, &count
);
8956 cb
.cb_allpools
= B_TRUE
;
8958 cb
.cb_first
= B_TRUE
;
8959 cb
.cb_print_status
= B_TRUE
;
8962 if (timestamp_fmt
!= NODATE
)
8963 print_timestamp(timestamp_fmt
);
8966 cb
.vcdl
= all_pools_for_each_vdev_run(argc
, argv
, cmd
,
8969 ret
= for_each_pool(argc
, argv
, B_TRUE
, NULL
, ZFS_TYPE_POOL
,
8970 cb
.cb_literal
, status_callback
, &cb
);
8972 if (cb
.vcdl
!= NULL
)
8973 free_vdev_cmd_data_list(cb
.vcdl
);
8975 if (argc
== 0 && cb
.cb_count
== 0)
8976 (void) fprintf(stderr
, gettext("no pools available\n"));
8977 else if (cb
.cb_explain
&& cb
.cb_first
&& cb
.cb_allpools
)
8978 (void) printf(gettext("all pools are healthy\n"));
8986 if (count
!= 0 && --count
== 0)
8989 (void) fsleep(interval
);
8995 typedef struct upgrade_cbdata
{
8998 uint64_t cb_version
;
9003 check_unsupp_fs(zfs_handle_t
*zhp
, void *unsupp_fs
)
9005 int zfs_version
= (int)zfs_prop_get_int(zhp
, ZFS_PROP_VERSION
);
9006 int *count
= (int *)unsupp_fs
;
9008 if (zfs_version
> ZPL_VERSION
) {
9009 (void) printf(gettext("%s (v%d) is not supported by this "
9010 "implementation of ZFS.\n"),
9011 zfs_get_name(zhp
), zfs_version
);
9015 zfs_iter_filesystems_v2(zhp
, 0, check_unsupp_fs
, unsupp_fs
);
9023 upgrade_version(zpool_handle_t
*zhp
, uint64_t version
)
9027 uint64_t oldversion
;
9030 config
= zpool_get_config(zhp
, NULL
);
9031 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_VERSION
,
9034 char compat
[ZFS_MAXPROPLEN
];
9035 if (zpool_get_prop(zhp
, ZPOOL_PROP_COMPATIBILITY
, compat
,
9036 ZFS_MAXPROPLEN
, NULL
, B_FALSE
) != 0)
9039 assert(SPA_VERSION_IS_SUPPORTED(oldversion
));
9040 assert(oldversion
< version
);
9042 ret
= zfs_iter_root(zpool_get_handle(zhp
), check_unsupp_fs
, &unsupp_fs
);
9047 (void) fprintf(stderr
, gettext("Upgrade not performed due "
9048 "to %d unsupported filesystems (max v%d).\n"),
9049 unsupp_fs
, (int)ZPL_VERSION
);
9053 if (strcmp(compat
, ZPOOL_COMPAT_LEGACY
) == 0) {
9054 (void) fprintf(stderr
, gettext("Upgrade not performed because "
9055 "'compatibility' property set to '"
9056 ZPOOL_COMPAT_LEGACY
"'.\n"));
9060 ret
= zpool_upgrade(zhp
, version
);
9064 if (version
>= SPA_VERSION_FEATURES
) {
9065 (void) printf(gettext("Successfully upgraded "
9066 "'%s' from version %llu to feature flags.\n"),
9067 zpool_get_name(zhp
), (u_longlong_t
)oldversion
);
9069 (void) printf(gettext("Successfully upgraded "
9070 "'%s' from version %llu to version %llu.\n"),
9071 zpool_get_name(zhp
), (u_longlong_t
)oldversion
,
9072 (u_longlong_t
)version
);
9079 upgrade_enable_all(zpool_handle_t
*zhp
, int *countp
)
9082 boolean_t firstff
= B_TRUE
;
9083 nvlist_t
*enabled
= zpool_get_features(zhp
);
9085 char compat
[ZFS_MAXPROPLEN
];
9086 if (zpool_get_prop(zhp
, ZPOOL_PROP_COMPATIBILITY
, compat
,
9087 ZFS_MAXPROPLEN
, NULL
, B_FALSE
) != 0)
9090 boolean_t requested_features
[SPA_FEATURES
];
9091 if (zpool_do_load_compat(compat
, requested_features
) !=
9092 ZPOOL_COMPATIBILITY_OK
)
9096 for (i
= 0; i
< SPA_FEATURES
; i
++) {
9097 const char *fname
= spa_feature_table
[i
].fi_uname
;
9098 const char *fguid
= spa_feature_table
[i
].fi_guid
;
9100 if (!spa_feature_table
[i
].fi_zfs_mod_supported
)
9103 if (!nvlist_exists(enabled
, fguid
) && requested_features
[i
]) {
9105 verify(-1 != asprintf(&propname
, "feature@%s", fname
));
9106 ret
= zpool_set_prop(zhp
, propname
,
9107 ZFS_FEATURE_ENABLED
);
9115 (void) printf(gettext("Enabled the "
9116 "following features on '%s':\n"),
9117 zpool_get_name(zhp
));
9120 (void) printf(gettext(" %s\n"), fname
);
9131 upgrade_cb(zpool_handle_t
*zhp
, void *arg
)
9133 upgrade_cbdata_t
*cbp
= arg
;
9136 boolean_t modified_pool
= B_FALSE
;
9139 config
= zpool_get_config(zhp
, NULL
);
9140 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_VERSION
,
9143 assert(SPA_VERSION_IS_SUPPORTED(version
));
9145 if (version
< cbp
->cb_version
) {
9146 cbp
->cb_first
= B_FALSE
;
9147 ret
= upgrade_version(zhp
, cbp
->cb_version
);
9150 modified_pool
= B_TRUE
;
9153 * If they did "zpool upgrade -a", then we could
9154 * be doing ioctls to different pools. We need
9155 * to log this history once to each pool, and bypass
9156 * the normal history logging that happens in main().
9158 (void) zpool_log_history(g_zfs
, history_str
);
9159 log_history
= B_FALSE
;
9162 if (cbp
->cb_version
>= SPA_VERSION_FEATURES
) {
9164 ret
= upgrade_enable_all(zhp
, &count
);
9169 cbp
->cb_first
= B_FALSE
;
9170 modified_pool
= B_TRUE
;
9174 if (modified_pool
) {
9175 (void) printf("\n");
9176 (void) after_zpool_upgrade(zhp
);
9183 upgrade_list_older_cb(zpool_handle_t
*zhp
, void *arg
)
9185 upgrade_cbdata_t
*cbp
= arg
;
9189 config
= zpool_get_config(zhp
, NULL
);
9190 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_VERSION
,
9193 assert(SPA_VERSION_IS_SUPPORTED(version
));
9195 if (version
< SPA_VERSION_FEATURES
) {
9196 if (cbp
->cb_first
) {
9197 (void) printf(gettext("The following pools are "
9198 "formatted with legacy version numbers and can\n"
9199 "be upgraded to use feature flags. After "
9200 "being upgraded, these pools\nwill no "
9201 "longer be accessible by software that does not "
9202 "support feature\nflags.\n\n"
9203 "Note that setting a pool's 'compatibility' "
9204 "feature to '" ZPOOL_COMPAT_LEGACY
"' will\n"
9205 "inhibit upgrades.\n\n"));
9206 (void) printf(gettext("VER POOL\n"));
9207 (void) printf(gettext("--- ------------\n"));
9208 cbp
->cb_first
= B_FALSE
;
9211 (void) printf("%2llu %s\n", (u_longlong_t
)version
,
9212 zpool_get_name(zhp
));
9219 upgrade_list_disabled_cb(zpool_handle_t
*zhp
, void *arg
)
9221 upgrade_cbdata_t
*cbp
= arg
;
9225 config
= zpool_get_config(zhp
, NULL
);
9226 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_VERSION
,
9229 if (version
>= SPA_VERSION_FEATURES
) {
9231 boolean_t poolfirst
= B_TRUE
;
9232 nvlist_t
*enabled
= zpool_get_features(zhp
);
9234 for (i
= 0; i
< SPA_FEATURES
; i
++) {
9235 const char *fguid
= spa_feature_table
[i
].fi_guid
;
9236 const char *fname
= spa_feature_table
[i
].fi_uname
;
9238 if (!spa_feature_table
[i
].fi_zfs_mod_supported
)
9241 if (!nvlist_exists(enabled
, fguid
)) {
9242 if (cbp
->cb_first
) {
9243 (void) printf(gettext("\nSome "
9244 "supported features are not "
9245 "enabled on the following pools. "
9246 "Once a\nfeature is enabled the "
9247 "pool may become incompatible with "
9248 "software\nthat does not support "
9250 "zpool-features(7) for "
9252 "Note that the pool "
9253 "'compatibility' feature can be "
9254 "used to inhibit\nfeature "
9256 (void) printf(gettext("POOL "
9258 (void) printf(gettext("------"
9260 cbp
->cb_first
= B_FALSE
;
9264 (void) printf(gettext("%s\n"),
9265 zpool_get_name(zhp
));
9266 poolfirst
= B_FALSE
;
9269 (void) printf(gettext(" %s\n"), fname
);
9272 * If they did "zpool upgrade -a", then we could
9273 * be doing ioctls to different pools. We need
9274 * to log this history once to each pool, and bypass
9275 * the normal history logging that happens in main().
9277 (void) zpool_log_history(g_zfs
, history_str
);
9278 log_history
= B_FALSE
;
9286 upgrade_one(zpool_handle_t
*zhp
, void *data
)
9288 boolean_t modified_pool
= B_FALSE
;
9289 upgrade_cbdata_t
*cbp
= data
;
9290 uint64_t cur_version
;
9293 if (strcmp("log", zpool_get_name(zhp
)) == 0) {
9294 (void) fprintf(stderr
, gettext("'log' is now a reserved word\n"
9295 "Pool 'log' must be renamed using export and import"
9300 cur_version
= zpool_get_prop_int(zhp
, ZPOOL_PROP_VERSION
, NULL
);
9301 if (cur_version
> cbp
->cb_version
) {
9302 (void) printf(gettext("Pool '%s' is already formatted "
9303 "using more current version '%llu'.\n\n"),
9304 zpool_get_name(zhp
), (u_longlong_t
)cur_version
);
9308 if (cbp
->cb_version
!= SPA_VERSION
&& cur_version
== cbp
->cb_version
) {
9309 (void) printf(gettext("Pool '%s' is already formatted "
9310 "using version %llu.\n\n"), zpool_get_name(zhp
),
9311 (u_longlong_t
)cbp
->cb_version
);
9315 if (cur_version
!= cbp
->cb_version
) {
9316 modified_pool
= B_TRUE
;
9317 ret
= upgrade_version(zhp
, cbp
->cb_version
);
9322 if (cbp
->cb_version
>= SPA_VERSION_FEATURES
) {
9324 ret
= upgrade_enable_all(zhp
, &count
);
9329 modified_pool
= B_TRUE
;
9330 } else if (cur_version
== SPA_VERSION
) {
9331 (void) printf(gettext("Pool '%s' already has all "
9332 "supported and requested features enabled.\n"),
9333 zpool_get_name(zhp
));
9337 if (modified_pool
) {
9338 (void) printf("\n");
9339 (void) after_zpool_upgrade(zhp
);
9348 * zpool upgrade [-V version] <-a | pool ...>
9350 * With no arguments, display downrev'd ZFS pool available for upgrade.
9351 * Individual pools can be upgraded by specifying the pool, and '-a' will
9352 * upgrade all pools.
9355 zpool_do_upgrade(int argc
, char **argv
)
9358 upgrade_cbdata_t cb
= { 0 };
9360 boolean_t showversions
= B_FALSE
;
9361 boolean_t upgradeall
= B_FALSE
;
9366 while ((c
= getopt(argc
, argv
, ":avV:")) != -1) {
9369 upgradeall
= B_TRUE
;
9372 showversions
= B_TRUE
;
9375 cb
.cb_version
= strtoll(optarg
, &end
, 10);
9377 !SPA_VERSION_IS_SUPPORTED(cb
.cb_version
)) {
9378 (void) fprintf(stderr
,
9379 gettext("invalid version '%s'\n"), optarg
);
9384 (void) fprintf(stderr
, gettext("missing argument for "
9385 "'%c' option\n"), optopt
);
9389 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
9400 if (cb
.cb_version
== 0) {
9401 cb
.cb_version
= SPA_VERSION
;
9402 } else if (!upgradeall
&& argc
== 0) {
9403 (void) fprintf(stderr
, gettext("-V option is "
9404 "incompatible with other arguments\n"));
9409 if (upgradeall
|| argc
!= 0) {
9410 (void) fprintf(stderr
, gettext("-v option is "
9411 "incompatible with other arguments\n"));
9414 } else if (upgradeall
) {
9416 (void) fprintf(stderr
, gettext("-a option should not "
9417 "be used along with a pool name\n"));
9422 (void) printf("%s", gettext("This system supports ZFS pool feature "
9427 (void) printf(gettext("The following features are "
9429 (void) printf(gettext("FEAT DESCRIPTION\n"));
9430 (void) printf("----------------------------------------------"
9431 "---------------\n");
9432 for (i
= 0; i
< SPA_FEATURES
; i
++) {
9433 zfeature_info_t
*fi
= &spa_feature_table
[i
];
9434 if (!fi
->fi_zfs_mod_supported
)
9437 (fi
->fi_flags
& ZFEATURE_FLAG_READONLY_COMPAT
) ?
9438 " (read-only compatible)" : "";
9440 (void) printf("%-37s%s\n", fi
->fi_uname
, ro
);
9441 (void) printf(" %s\n", fi
->fi_desc
);
9443 (void) printf("\n");
9445 (void) printf(gettext("The following legacy versions are also "
9447 (void) printf(gettext("VER DESCRIPTION\n"));
9448 (void) printf("--- -----------------------------------------"
9449 "---------------\n");
9450 (void) printf(gettext(" 1 Initial ZFS version\n"));
9451 (void) printf(gettext(" 2 Ditto blocks "
9452 "(replicated metadata)\n"));
9453 (void) printf(gettext(" 3 Hot spares and double parity "
9455 (void) printf(gettext(" 4 zpool history\n"));
9456 (void) printf(gettext(" 5 Compression using the gzip "
9458 (void) printf(gettext(" 6 bootfs pool property\n"));
9459 (void) printf(gettext(" 7 Separate intent log devices\n"));
9460 (void) printf(gettext(" 8 Delegated administration\n"));
9461 (void) printf(gettext(" 9 refquota and refreservation "
9463 (void) printf(gettext(" 10 Cache devices\n"));
9464 (void) printf(gettext(" 11 Improved scrub performance\n"));
9465 (void) printf(gettext(" 12 Snapshot properties\n"));
9466 (void) printf(gettext(" 13 snapused property\n"));
9467 (void) printf(gettext(" 14 passthrough-x aclinherit\n"));
9468 (void) printf(gettext(" 15 user/group space accounting\n"));
9469 (void) printf(gettext(" 16 stmf property support\n"));
9470 (void) printf(gettext(" 17 Triple-parity RAID-Z\n"));
9471 (void) printf(gettext(" 18 Snapshot user holds\n"));
9472 (void) printf(gettext(" 19 Log device removal\n"));
9473 (void) printf(gettext(" 20 Compression using zle "
9474 "(zero-length encoding)\n"));
9475 (void) printf(gettext(" 21 Deduplication\n"));
9476 (void) printf(gettext(" 22 Received properties\n"));
9477 (void) printf(gettext(" 23 Slim ZIL\n"));
9478 (void) printf(gettext(" 24 System attributes\n"));
9479 (void) printf(gettext(" 25 Improved scrub stats\n"));
9480 (void) printf(gettext(" 26 Improved snapshot deletion "
9482 (void) printf(gettext(" 27 Improved snapshot creation "
9484 (void) printf(gettext(" 28 Multiple vdev replacements\n"));
9485 (void) printf(gettext("\nFor more information on a particular "
9486 "version, including supported releases,\n"));
9487 (void) printf(gettext("see the ZFS Administration Guide.\n\n"));
9488 } else if (argc
== 0 && upgradeall
) {
9489 cb
.cb_first
= B_TRUE
;
9490 ret
= zpool_iter(g_zfs
, upgrade_cb
, &cb
);
9491 if (ret
== 0 && cb
.cb_first
) {
9492 if (cb
.cb_version
== SPA_VERSION
) {
9493 (void) printf(gettext("All pools are already "
9494 "formatted using feature flags.\n\n"));
9495 (void) printf(gettext("Every feature flags "
9496 "pool already has all supported and "
9497 "requested features enabled.\n"));
9499 (void) printf(gettext("All pools are already "
9500 "formatted with version %llu or higher.\n"),
9501 (u_longlong_t
)cb
.cb_version
);
9504 } else if (argc
== 0) {
9505 cb
.cb_first
= B_TRUE
;
9506 ret
= zpool_iter(g_zfs
, upgrade_list_older_cb
, &cb
);
9510 (void) printf(gettext("All pools are formatted "
9511 "using feature flags.\n\n"));
9513 (void) printf(gettext("\nUse 'zpool upgrade -v' "
9514 "for a list of available legacy versions.\n"));
9517 cb
.cb_first
= B_TRUE
;
9518 ret
= zpool_iter(g_zfs
, upgrade_list_disabled_cb
, &cb
);
9522 (void) printf(gettext("Every feature flags pool has "
9523 "all supported and requested features enabled.\n"));
9525 (void) printf(gettext("\n"));
9528 ret
= for_each_pool(argc
, argv
, B_FALSE
, NULL
, ZFS_TYPE_POOL
,
9529 B_FALSE
, upgrade_one
, &cb
);
9535 typedef struct hist_cbdata
{
9542 print_history_records(nvlist_t
*nvhis
, hist_cbdata_t
*cb
)
9548 verify(nvlist_lookup_nvlist_array(nvhis
, ZPOOL_HIST_RECORD
,
9549 &records
, &numrecords
) == 0);
9550 for (i
= 0; i
< numrecords
; i
++) {
9551 nvlist_t
*rec
= records
[i
];
9554 if (nvlist_exists(rec
, ZPOOL_HIST_TIME
)) {
9558 tsec
= fnvlist_lookup_uint64(records
[i
],
9560 (void) localtime_r(&tsec
, &t
);
9561 (void) strftime(tbuf
, sizeof (tbuf
), "%F.%T", &t
);
9564 if (nvlist_exists(rec
, ZPOOL_HIST_ELAPSED_NS
)) {
9565 uint64_t elapsed_ns
= fnvlist_lookup_int64(records
[i
],
9566 ZPOOL_HIST_ELAPSED_NS
);
9567 (void) snprintf(tbuf
+ strlen(tbuf
),
9568 sizeof (tbuf
) - strlen(tbuf
),
9569 " (%lldms)", (long long)elapsed_ns
/ 1000 / 1000);
9572 if (nvlist_exists(rec
, ZPOOL_HIST_CMD
)) {
9573 (void) printf("%s %s", tbuf
,
9574 fnvlist_lookup_string(rec
, ZPOOL_HIST_CMD
));
9575 } else if (nvlist_exists(rec
, ZPOOL_HIST_INT_EVENT
)) {
9577 fnvlist_lookup_uint64(rec
, ZPOOL_HIST_INT_EVENT
);
9580 if (ievent
>= ZFS_NUM_LEGACY_HISTORY_EVENTS
) {
9581 (void) printf("%s unrecognized record:\n",
9583 dump_nvlist(rec
, 4);
9586 (void) printf("%s [internal %s txg:%lld] %s", tbuf
,
9587 zfs_history_event_names
[ievent
],
9588 (longlong_t
)fnvlist_lookup_uint64(
9589 rec
, ZPOOL_HIST_TXG
),
9590 fnvlist_lookup_string(rec
, ZPOOL_HIST_INT_STR
));
9591 } else if (nvlist_exists(rec
, ZPOOL_HIST_INT_NAME
)) {
9594 (void) printf("%s [txg:%lld] %s", tbuf
,
9595 (longlong_t
)fnvlist_lookup_uint64(
9596 rec
, ZPOOL_HIST_TXG
),
9597 fnvlist_lookup_string(rec
, ZPOOL_HIST_INT_NAME
));
9598 if (nvlist_exists(rec
, ZPOOL_HIST_DSNAME
)) {
9599 (void) printf(" %s (%llu)",
9600 fnvlist_lookup_string(rec
,
9602 (u_longlong_t
)fnvlist_lookup_uint64(rec
,
9605 (void) printf(" %s", fnvlist_lookup_string(rec
,
9606 ZPOOL_HIST_INT_STR
));
9607 } else if (nvlist_exists(rec
, ZPOOL_HIST_IOCTL
)) {
9610 (void) printf("%s ioctl %s\n", tbuf
,
9611 fnvlist_lookup_string(rec
, ZPOOL_HIST_IOCTL
));
9612 if (nvlist_exists(rec
, ZPOOL_HIST_INPUT_NVL
)) {
9613 (void) printf(" input:\n");
9614 dump_nvlist(fnvlist_lookup_nvlist(rec
,
9615 ZPOOL_HIST_INPUT_NVL
), 8);
9617 if (nvlist_exists(rec
, ZPOOL_HIST_OUTPUT_NVL
)) {
9618 (void) printf(" output:\n");
9619 dump_nvlist(fnvlist_lookup_nvlist(rec
,
9620 ZPOOL_HIST_OUTPUT_NVL
), 8);
9622 if (nvlist_exists(rec
, ZPOOL_HIST_OUTPUT_SIZE
)) {
9623 (void) printf(" output nvlist omitted; "
9624 "original size: %lldKB\n",
9625 (longlong_t
)fnvlist_lookup_int64(rec
,
9626 ZPOOL_HIST_OUTPUT_SIZE
) / 1024);
9628 if (nvlist_exists(rec
, ZPOOL_HIST_ERRNO
)) {
9629 (void) printf(" errno: %lld\n",
9630 (longlong_t
)fnvlist_lookup_int64(rec
,
9636 (void) printf("%s unrecognized record:\n", tbuf
);
9637 dump_nvlist(rec
, 4);
9641 (void) printf("\n");
9644 (void) printf(" [");
9645 if (nvlist_exists(rec
, ZPOOL_HIST_WHO
)) {
9646 uid_t who
= fnvlist_lookup_uint64(rec
, ZPOOL_HIST_WHO
);
9647 struct passwd
*pwd
= getpwuid(who
);
9648 (void) printf("user %d ", (int)who
);
9650 (void) printf("(%s) ", pwd
->pw_name
);
9652 if (nvlist_exists(rec
, ZPOOL_HIST_HOST
)) {
9653 (void) printf("on %s",
9654 fnvlist_lookup_string(rec
, ZPOOL_HIST_HOST
));
9656 if (nvlist_exists(rec
, ZPOOL_HIST_ZONE
)) {
9657 (void) printf(":%s",
9658 fnvlist_lookup_string(rec
, ZPOOL_HIST_ZONE
));
9662 (void) printf("\n");
9667 * Print out the command history for a specific pool.
9670 get_history_one(zpool_handle_t
*zhp
, void *data
)
9674 hist_cbdata_t
*cb
= (hist_cbdata_t
*)data
;
9676 boolean_t eof
= B_FALSE
;
9678 cb
->first
= B_FALSE
;
9680 (void) printf(gettext("History for '%s':\n"), zpool_get_name(zhp
));
9683 if ((ret
= zpool_get_history(zhp
, &nvhis
, &off
, &eof
)) != 0)
9686 print_history_records(nvhis
, cb
);
9689 (void) printf("\n");
9695 * zpool history <pool>
9697 * Displays the history of commands that modified pools.
9700 zpool_do_history(int argc
, char **argv
)
9702 hist_cbdata_t cbdata
= { 0 };
9706 cbdata
.first
= B_TRUE
;
9708 while ((c
= getopt(argc
, argv
, "li")) != -1) {
9711 cbdata
.longfmt
= B_TRUE
;
9714 cbdata
.internal
= B_TRUE
;
9717 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
9725 ret
= for_each_pool(argc
, argv
, B_FALSE
, NULL
, ZFS_TYPE_POOL
,
9726 B_FALSE
, get_history_one
, &cbdata
);
9728 if (argc
== 0 && cbdata
.first
== B_TRUE
) {
9729 (void) fprintf(stderr
, gettext("no pools available\n"));
9736 typedef struct ev_opts
{
9741 char poolname
[ZFS_MAX_DATASET_NAME_LEN
];
9745 zpool_do_events_short(nvlist_t
*nvl
, ev_opts_t
*opts
)
9747 char ctime_str
[26], str
[32];
9752 verify(nvlist_lookup_int64_array(nvl
, FM_EREPORT_TIME
, &tv
, &n
) == 0);
9753 memset(str
, ' ', 32);
9754 (void) ctime_r((const time_t *)&tv
[0], ctime_str
);
9755 (void) memcpy(str
, ctime_str
+4, 6); /* 'Jun 30' */
9756 (void) memcpy(str
+7, ctime_str
+20, 4); /* '1993' */
9757 (void) memcpy(str
+12, ctime_str
+11, 8); /* '21:49:08' */
9758 (void) sprintf(str
+20, ".%09lld", (longlong_t
)tv
[1]); /* '.123456789' */
9760 (void) printf(gettext("%s\t"), str
);
9762 (void) printf(gettext("%s "), str
);
9764 verify(nvlist_lookup_string(nvl
, FM_CLASS
, &ptr
) == 0);
9765 (void) printf(gettext("%s\n"), ptr
);
9769 zpool_do_events_nvprint(nvlist_t
*nvl
, int depth
)
9773 for (nvp
= nvlist_next_nvpair(nvl
, NULL
);
9774 nvp
!= NULL
; nvp
= nvlist_next_nvpair(nvl
, nvp
)) {
9776 data_type_t type
= nvpair_type(nvp
);
9777 const char *name
= nvpair_name(nvp
);
9787 printf(gettext("%*s%s = "), depth
, "", name
);
9790 case DATA_TYPE_BOOLEAN
:
9791 printf(gettext("%s"), "1");
9794 case DATA_TYPE_BOOLEAN_VALUE
:
9795 (void) nvpair_value_boolean_value(nvp
, &b
);
9796 printf(gettext("%s"), b
? "1" : "0");
9799 case DATA_TYPE_BYTE
:
9800 (void) nvpair_value_byte(nvp
, &i8
);
9801 printf(gettext("0x%x"), i8
);
9804 case DATA_TYPE_INT8
:
9805 (void) nvpair_value_int8(nvp
, (void *)&i8
);
9806 printf(gettext("0x%x"), i8
);
9809 case DATA_TYPE_UINT8
:
9810 (void) nvpair_value_uint8(nvp
, &i8
);
9811 printf(gettext("0x%x"), i8
);
9814 case DATA_TYPE_INT16
:
9815 (void) nvpair_value_int16(nvp
, (void *)&i16
);
9816 printf(gettext("0x%x"), i16
);
9819 case DATA_TYPE_UINT16
:
9820 (void) nvpair_value_uint16(nvp
, &i16
);
9821 printf(gettext("0x%x"), i16
);
9824 case DATA_TYPE_INT32
:
9825 (void) nvpair_value_int32(nvp
, (void *)&i32
);
9826 printf(gettext("0x%x"), i32
);
9829 case DATA_TYPE_UINT32
:
9830 (void) nvpair_value_uint32(nvp
, &i32
);
9831 printf(gettext("0x%x"), i32
);
9834 case DATA_TYPE_INT64
:
9835 (void) nvpair_value_int64(nvp
, (void *)&i64
);
9836 printf(gettext("0x%llx"), (u_longlong_t
)i64
);
9839 case DATA_TYPE_UINT64
:
9840 (void) nvpair_value_uint64(nvp
, &i64
);
9842 * translate vdev state values to readable
9843 * strings to aide zpool events consumers
9846 FM_EREPORT_PAYLOAD_ZFS_VDEV_STATE
) == 0 ||
9848 FM_EREPORT_PAYLOAD_ZFS_VDEV_LASTSTATE
) == 0) {
9849 printf(gettext("\"%s\" (0x%llx)"),
9850 zpool_state_to_name(i64
, VDEV_AUX_NONE
),
9853 printf(gettext("0x%llx"), (u_longlong_t
)i64
);
9857 case DATA_TYPE_HRTIME
:
9858 (void) nvpair_value_hrtime(nvp
, (void *)&i64
);
9859 printf(gettext("0x%llx"), (u_longlong_t
)i64
);
9862 case DATA_TYPE_STRING
:
9863 (void) nvpair_value_string(nvp
, &str
);
9864 printf(gettext("\"%s\""), str
? str
: "<NULL>");
9867 case DATA_TYPE_NVLIST
:
9868 printf(gettext("(embedded nvlist)\n"));
9869 (void) nvpair_value_nvlist(nvp
, &cnv
);
9870 zpool_do_events_nvprint(cnv
, depth
+ 8);
9871 printf(gettext("%*s(end %s)"), depth
, "", name
);
9874 case DATA_TYPE_NVLIST_ARRAY
: {
9878 (void) nvpair_value_nvlist_array(nvp
, &val
, &nelem
);
9879 printf(gettext("(%d embedded nvlists)\n"), nelem
);
9880 for (i
= 0; i
< nelem
; i
++) {
9881 printf(gettext("%*s%s[%d] = %s\n"),
9882 depth
, "", name
, i
, "(embedded nvlist)");
9883 zpool_do_events_nvprint(val
[i
], depth
+ 8);
9884 printf(gettext("%*s(end %s[%i])\n"),
9885 depth
, "", name
, i
);
9887 printf(gettext("%*s(end %s)\n"), depth
, "", name
);
9891 case DATA_TYPE_INT8_ARRAY
: {
9895 (void) nvpair_value_int8_array(nvp
, &val
, &nelem
);
9896 for (i
= 0; i
< nelem
; i
++)
9897 printf(gettext("0x%x "), val
[i
]);
9902 case DATA_TYPE_UINT8_ARRAY
: {
9906 (void) nvpair_value_uint8_array(nvp
, &val
, &nelem
);
9907 for (i
= 0; i
< nelem
; i
++)
9908 printf(gettext("0x%x "), val
[i
]);
9913 case DATA_TYPE_INT16_ARRAY
: {
9917 (void) nvpair_value_int16_array(nvp
, &val
, &nelem
);
9918 for (i
= 0; i
< nelem
; i
++)
9919 printf(gettext("0x%x "), val
[i
]);
9924 case DATA_TYPE_UINT16_ARRAY
: {
9928 (void) nvpair_value_uint16_array(nvp
, &val
, &nelem
);
9929 for (i
= 0; i
< nelem
; i
++)
9930 printf(gettext("0x%x "), val
[i
]);
9935 case DATA_TYPE_INT32_ARRAY
: {
9939 (void) nvpair_value_int32_array(nvp
, &val
, &nelem
);
9940 for (i
= 0; i
< nelem
; i
++)
9941 printf(gettext("0x%x "), val
[i
]);
9946 case DATA_TYPE_UINT32_ARRAY
: {
9950 (void) nvpair_value_uint32_array(nvp
, &val
, &nelem
);
9951 for (i
= 0; i
< nelem
; i
++)
9952 printf(gettext("0x%x "), val
[i
]);
9957 case DATA_TYPE_INT64_ARRAY
: {
9961 (void) nvpair_value_int64_array(nvp
, &val
, &nelem
);
9962 for (i
= 0; i
< nelem
; i
++)
9963 printf(gettext("0x%llx "),
9964 (u_longlong_t
)val
[i
]);
9969 case DATA_TYPE_UINT64_ARRAY
: {
9973 (void) nvpair_value_uint64_array(nvp
, &val
, &nelem
);
9974 for (i
= 0; i
< nelem
; i
++)
9975 printf(gettext("0x%llx "),
9976 (u_longlong_t
)val
[i
]);
9981 case DATA_TYPE_STRING_ARRAY
: {
9985 (void) nvpair_value_string_array(nvp
, &str
, &nelem
);
9986 for (i
= 0; i
< nelem
; i
++)
9987 printf(gettext("\"%s\" "),
9988 str
[i
] ? str
[i
] : "<NULL>");
9993 case DATA_TYPE_BOOLEAN_ARRAY
:
9994 case DATA_TYPE_BYTE_ARRAY
:
9995 case DATA_TYPE_DOUBLE
:
9996 case DATA_TYPE_DONTCARE
:
9997 case DATA_TYPE_UNKNOWN
:
9998 printf(gettext("<unknown>"));
10002 printf(gettext("\n"));
10007 zpool_do_events_next(ev_opts_t
*opts
)
10010 int zevent_fd
, ret
, dropped
;
10013 zevent_fd
= open(ZFS_DEV
, O_RDWR
);
10014 VERIFY(zevent_fd
>= 0);
10016 if (!opts
->scripted
)
10017 (void) printf(gettext("%-30s %s\n"), "TIME", "CLASS");
10020 ret
= zpool_events_next(g_zfs
, &nvl
, &dropped
,
10021 (opts
->follow
? ZEVENT_NONE
: ZEVENT_NONBLOCK
), zevent_fd
);
10022 if (ret
|| nvl
== NULL
)
10026 (void) printf(gettext("dropped %d events\n"), dropped
);
10028 if (strlen(opts
->poolname
) > 0 &&
10029 nvlist_lookup_string(nvl
, FM_FMRI_ZFS_POOL
, &pool
) == 0 &&
10030 strcmp(opts
->poolname
, pool
) != 0)
10033 zpool_do_events_short(nvl
, opts
);
10035 if (opts
->verbose
) {
10036 zpool_do_events_nvprint(nvl
, 8);
10037 printf(gettext("\n"));
10039 (void) fflush(stdout
);
10044 VERIFY(0 == close(zevent_fd
));
10050 zpool_do_events_clear(void)
10054 ret
= zpool_events_clear(g_zfs
, &count
);
10056 (void) printf(gettext("cleared %d events\n"), count
);
10062 * zpool events [-vHf [pool] | -c]
10064 * Displays events logs by ZFS.
10067 zpool_do_events(int argc
, char **argv
)
10069 ev_opts_t opts
= { 0 };
10073 /* check options */
10074 while ((c
= getopt(argc
, argv
, "vHfc")) != -1) {
10089 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
10098 (void) fprintf(stderr
, gettext("too many arguments\n"));
10100 } else if (argc
== 1) {
10101 (void) strlcpy(opts
.poolname
, argv
[0], sizeof (opts
.poolname
));
10102 if (!zfs_name_valid(opts
.poolname
, ZFS_TYPE_POOL
)) {
10103 (void) fprintf(stderr
,
10104 gettext("invalid pool name '%s'\n"), opts
.poolname
);
10109 if ((argc
== 1 || opts
.verbose
|| opts
.scripted
|| opts
.follow
) &&
10111 (void) fprintf(stderr
,
10112 gettext("invalid options combined with -c\n"));
10117 ret
= zpool_do_events_clear();
10119 ret
= zpool_do_events_next(&opts
);
10125 get_callback_vdev(zpool_handle_t
*zhp
, char *vdevname
, void *data
)
10127 zprop_get_cbdata_t
*cbp
= (zprop_get_cbdata_t
*)data
;
10128 char value
[ZFS_MAXPROPLEN
];
10129 zprop_source_t srctype
;
10131 for (zprop_list_t
*pl
= cbp
->cb_proplist
; pl
!= NULL
;
10132 pl
= pl
->pl_next
) {
10135 * If the first property is pool name, it is a special
10136 * placeholder that we can skip. This will also skip
10137 * over the name property when 'all' is specified.
10139 if (pl
->pl_prop
== ZPOOL_PROP_NAME
&&
10140 pl
== cbp
->cb_proplist
)
10143 if (pl
->pl_prop
== ZPROP_INVAL
) {
10144 prop_name
= pl
->pl_user_prop
;
10146 prop_name
= (char *)vdev_prop_to_name(pl
->pl_prop
);
10148 if (zpool_get_vdev_prop(zhp
, vdevname
, pl
->pl_prop
,
10149 prop_name
, value
, sizeof (value
), &srctype
,
10150 cbp
->cb_literal
) == 0) {
10151 zprop_print_one_property(vdevname
, cbp
, prop_name
,
10152 value
, srctype
, NULL
, NULL
);
10160 get_callback_vdev_cb(void *zhp_data
, nvlist_t
*nv
, void *data
)
10162 zpool_handle_t
*zhp
= zhp_data
;
10163 zprop_get_cbdata_t
*cbp
= (zprop_get_cbdata_t
*)data
;
10169 * zpool_vdev_name() transforms the root vdev name (i.e., root-0) to the
10170 * pool name for display purposes, which is not desired. Fallback to
10171 * zpool_vdev_name() when not dealing with the root vdev.
10173 type
= fnvlist_lookup_string(nv
, ZPOOL_CONFIG_TYPE
);
10174 if (zhp
!= NULL
&& strcmp(type
, "root") == 0)
10175 vdevname
= strdup("root-0");
10177 vdevname
= zpool_vdev_name(g_zfs
, zhp
, nv
,
10178 cbp
->cb_vdevs
.cb_name_flags
);
10180 (void) vdev_expand_proplist(zhp
, vdevname
, &cbp
->cb_proplist
);
10182 ret
= get_callback_vdev(zhp
, vdevname
, data
);
10190 get_callback(zpool_handle_t
*zhp
, void *data
)
10192 zprop_get_cbdata_t
*cbp
= (zprop_get_cbdata_t
*)data
;
10193 char value
[ZFS_MAXPROPLEN
];
10194 zprop_source_t srctype
;
10198 if (cbp
->cb_type
== ZFS_TYPE_VDEV
) {
10199 if (strcmp(cbp
->cb_vdevs
.cb_names
[0], "all-vdevs") == 0) {
10200 for_each_vdev(zhp
, get_callback_vdev_cb
, data
);
10202 /* Adjust column widths for vdev properties */
10203 for (vid
= 0; vid
< cbp
->cb_vdevs
.cb_names_count
;
10205 vdev_expand_proplist(zhp
,
10206 cbp
->cb_vdevs
.cb_names
[vid
],
10207 &cbp
->cb_proplist
);
10209 /* Display the properties */
10210 for (vid
= 0; vid
< cbp
->cb_vdevs
.cb_names_count
;
10212 get_callback_vdev(zhp
,
10213 cbp
->cb_vdevs
.cb_names
[vid
], data
);
10217 assert(cbp
->cb_type
== ZFS_TYPE_POOL
);
10218 for (pl
= cbp
->cb_proplist
; pl
!= NULL
; pl
= pl
->pl_next
) {
10220 * Skip the special fake placeholder. This will also
10221 * skip over the name property when 'all' is specified.
10223 if (pl
->pl_prop
== ZPOOL_PROP_NAME
&&
10224 pl
== cbp
->cb_proplist
)
10227 if (pl
->pl_prop
== ZPROP_INVAL
&&
10228 zfs_prop_user(pl
->pl_user_prop
)) {
10229 srctype
= ZPROP_SRC_LOCAL
;
10231 if (zpool_get_userprop(zhp
, pl
->pl_user_prop
,
10232 value
, sizeof (value
), &srctype
) != 0)
10235 zprop_print_one_property(zpool_get_name(zhp
),
10236 cbp
, pl
->pl_user_prop
, value
, srctype
,
10238 } else if (pl
->pl_prop
== ZPROP_INVAL
&&
10239 (zpool_prop_feature(pl
->pl_user_prop
) ||
10240 zpool_prop_unsupported(pl
->pl_user_prop
))) {
10241 srctype
= ZPROP_SRC_LOCAL
;
10243 if (zpool_prop_get_feature(zhp
,
10244 pl
->pl_user_prop
, value
,
10245 sizeof (value
)) == 0) {
10246 zprop_print_one_property(
10247 zpool_get_name(zhp
), cbp
,
10248 pl
->pl_user_prop
, value
, srctype
,
10252 if (zpool_get_prop(zhp
, pl
->pl_prop
, value
,
10253 sizeof (value
), &srctype
,
10254 cbp
->cb_literal
) != 0)
10257 zprop_print_one_property(zpool_get_name(zhp
),
10258 cbp
, zpool_prop_to_name(pl
->pl_prop
),
10259 value
, srctype
, NULL
, NULL
);
10268 * zpool get [-Hp] [-o "all" | field[,...]] <"all" | property[,...]> <pool> ...
10270 * -H Scripted mode. Don't display headers, and separate properties
10272 * -o List of columns to display. Defaults to
10273 * "name,property,value,source".
10274 * -p Display values in parsable (exact) format.
10276 * Get properties of pools in the system. Output space statistics
10277 * for each one as well as other attributes.
10280 zpool_do_get(int argc
, char **argv
)
10282 zprop_get_cbdata_t cb
= { 0 };
10283 zprop_list_t fake_name
= { 0 };
10286 char *propstr
= NULL
;
10289 cb
.cb_first
= B_TRUE
;
10292 * Set up default columns and sources.
10294 cb
.cb_sources
= ZPROP_SRC_ALL
;
10295 cb
.cb_columns
[0] = GET_COL_NAME
;
10296 cb
.cb_columns
[1] = GET_COL_PROPERTY
;
10297 cb
.cb_columns
[2] = GET_COL_VALUE
;
10298 cb
.cb_columns
[3] = GET_COL_SOURCE
;
10299 cb
.cb_type
= ZFS_TYPE_POOL
;
10300 cb
.cb_vdevs
.cb_name_flags
|= VDEV_NAME_TYPE_ID
;
10301 current_prop_type
= cb
.cb_type
;
10303 /* check options */
10304 while ((c
= getopt(argc
, argv
, ":Hpo:")) != -1) {
10307 cb
.cb_literal
= B_TRUE
;
10310 cb
.cb_scripted
= B_TRUE
;
10313 memset(&cb
.cb_columns
, 0, sizeof (cb
.cb_columns
));
10316 for (char *tok
; (tok
= strsep(&optarg
, ",")); ) {
10317 static const char *const col_opts
[] =
10318 { "name", "property", "value", "source",
10320 static const zfs_get_column_t col_cols
[] =
10321 { GET_COL_NAME
, GET_COL_PROPERTY
, GET_COL_VALUE
,
10324 if (i
== ZFS_GET_NCOLS
- 1) {
10325 (void) fprintf(stderr
, gettext("too "
10326 "many fields given to -o "
10331 for (c
= 0; c
< ARRAY_SIZE(col_opts
); ++c
)
10332 if (strcmp(tok
, col_opts
[c
]) == 0)
10335 (void) fprintf(stderr
,
10336 gettext("invalid column name '%s'\n"), tok
);
10342 (void) fprintf(stderr
,
10343 gettext("\"all\" conflicts "
10344 "with specific fields "
10345 "given to -o option\n"));
10349 memcpy(cb
.cb_columns
, col_cols
,
10350 sizeof (col_cols
));
10351 i
= ZFS_GET_NCOLS
- 1;
10353 cb
.cb_columns
[i
++] = col_cols
[c
];
10357 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
10367 (void) fprintf(stderr
, gettext("missing property "
10372 /* Properties list is needed later by zprop_get_list() */
10379 /* No args, so just print the defaults. */
10380 } else if (are_all_pools(argc
, argv
)) {
10381 /* All the args are pool names */
10382 } else if (are_all_pools(1, argv
)) {
10383 /* The first arg is a pool name */
10384 if ((argc
== 2 && strcmp(argv
[1], "all-vdevs") == 0) ||
10385 (argc
== 2 && strcmp(argv
[1], "root") == 0) ||
10386 are_vdevs_in_pool(argc
- 1, argv
+ 1, argv
[0],
10389 if (strcmp(argv
[1], "root") == 0)
10390 vdev
= strdup("root-0");
10392 vdev
= strdup(argv
[1]);
10394 /* ... and the rest are vdev names */
10395 cb
.cb_vdevs
.cb_names
= &vdev
;
10396 cb
.cb_vdevs
.cb_names_count
= argc
- 1;
10397 cb
.cb_type
= ZFS_TYPE_VDEV
;
10398 argc
= 1; /* One pool to process */
10400 fprintf(stderr
, gettext("Expected a list of vdevs in"
10401 " \"%s\", but got:\n"), argv
[0]);
10402 error_list_unresolved_vdevs(argc
- 1, argv
+ 1,
10403 argv
[0], &cb
.cb_vdevs
);
10404 fprintf(stderr
, "\n");
10410 * The first arg isn't a pool name,
10412 fprintf(stderr
, gettext("missing pool name.\n"));
10413 fprintf(stderr
, "\n");
10418 if (zprop_get_list(g_zfs
, propstr
, &cb
.cb_proplist
,
10419 cb
.cb_type
) != 0) {
10420 /* Use correct list of valid properties (pool or vdev) */
10421 current_prop_type
= cb
.cb_type
;
10425 if (cb
.cb_proplist
!= NULL
) {
10426 fake_name
.pl_prop
= ZPOOL_PROP_NAME
;
10427 fake_name
.pl_width
= strlen(gettext("NAME"));
10428 fake_name
.pl_next
= cb
.cb_proplist
;
10429 cb
.cb_proplist
= &fake_name
;
10432 ret
= for_each_pool(argc
, argv
, B_TRUE
, &cb
.cb_proplist
, cb
.cb_type
,
10433 cb
.cb_literal
, get_callback
, &cb
);
10435 if (cb
.cb_proplist
== &fake_name
)
10436 zprop_free_list(fake_name
.pl_next
);
10438 zprop_free_list(cb
.cb_proplist
);
10446 typedef struct set_cbdata
{
10449 zfs_type_t cb_type
;
10450 vdev_cbdata_t cb_vdevs
;
10451 boolean_t cb_any_successful
;
10455 set_pool_callback(zpool_handle_t
*zhp
, set_cbdata_t
*cb
)
10459 /* Check if we have out-of-bounds features */
10460 if (strcmp(cb
->cb_propname
, ZPOOL_CONFIG_COMPATIBILITY
) == 0) {
10461 boolean_t features
[SPA_FEATURES
];
10462 if (zpool_do_load_compat(cb
->cb_value
, features
) !=
10463 ZPOOL_COMPATIBILITY_OK
)
10466 nvlist_t
*enabled
= zpool_get_features(zhp
);
10468 for (i
= 0; i
< SPA_FEATURES
; i
++) {
10469 const char *fguid
= spa_feature_table
[i
].fi_guid
;
10470 if (nvlist_exists(enabled
, fguid
) && !features
[i
])
10473 if (i
< SPA_FEATURES
)
10474 (void) fprintf(stderr
, gettext("Warning: one or "
10475 "more features already enabled on pool '%s'\n"
10476 "are not present in this compatibility set.\n"),
10477 zpool_get_name(zhp
));
10480 /* if we're setting a feature, check it's in compatibility set */
10481 if (zpool_prop_feature(cb
->cb_propname
) &&
10482 strcmp(cb
->cb_value
, ZFS_FEATURE_ENABLED
) == 0) {
10483 char *fname
= strchr(cb
->cb_propname
, '@') + 1;
10486 if (zfeature_lookup_name(fname
, &f
) == 0) {
10487 char compat
[ZFS_MAXPROPLEN
];
10488 if (zpool_get_prop(zhp
, ZPOOL_PROP_COMPATIBILITY
,
10489 compat
, ZFS_MAXPROPLEN
, NULL
, B_FALSE
) != 0)
10492 boolean_t features
[SPA_FEATURES
];
10493 if (zpool_do_load_compat(compat
, features
) !=
10494 ZPOOL_COMPATIBILITY_OK
) {
10495 (void) fprintf(stderr
, gettext("Error: "
10496 "cannot enable feature '%s' on pool '%s'\n"
10497 "because the pool's 'compatibility' "
10498 "property cannot be parsed.\n"),
10499 fname
, zpool_get_name(zhp
));
10503 if (!features
[f
]) {
10504 (void) fprintf(stderr
, gettext("Error: "
10505 "cannot enable feature '%s' on pool '%s'\n"
10506 "as it is not specified in this pool's "
10507 "current compatibility set.\n"
10508 "Consider setting 'compatibility' to a "
10509 "less restrictive set, or to 'off'.\n"),
10510 fname
, zpool_get_name(zhp
));
10516 error
= zpool_set_prop(zhp
, cb
->cb_propname
, cb
->cb_value
);
10522 set_callback(zpool_handle_t
*zhp
, void *data
)
10525 set_cbdata_t
*cb
= (set_cbdata_t
*)data
;
10527 if (cb
->cb_type
== ZFS_TYPE_VDEV
) {
10528 error
= zpool_set_vdev_prop(zhp
, *cb
->cb_vdevs
.cb_names
,
10529 cb
->cb_propname
, cb
->cb_value
);
10531 assert(cb
->cb_type
== ZFS_TYPE_POOL
);
10532 error
= set_pool_callback(zhp
, cb
);
10535 cb
->cb_any_successful
= !error
;
10540 zpool_do_set(int argc
, char **argv
)
10542 set_cbdata_t cb
= { 0 };
10546 current_prop_type
= ZFS_TYPE_POOL
;
10547 if (argc
> 1 && argv
[1][0] == '-') {
10548 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
10554 (void) fprintf(stderr
, gettext("missing property=value "
10560 (void) fprintf(stderr
, gettext("missing pool name\n"));
10565 (void) fprintf(stderr
, gettext("too many pool names\n"));
10569 cb
.cb_propname
= argv
[1];
10570 cb
.cb_type
= ZFS_TYPE_POOL
;
10571 cb
.cb_vdevs
.cb_name_flags
|= VDEV_NAME_TYPE_ID
;
10572 cb
.cb_value
= strchr(cb
.cb_propname
, '=');
10573 if (cb
.cb_value
== NULL
) {
10574 (void) fprintf(stderr
, gettext("missing value in "
10575 "property=value argument\n"));
10579 *(cb
.cb_value
) = '\0';
10584 /* argv[0] is pool name */
10585 if (!is_pool(argv
[0])) {
10586 (void) fprintf(stderr
,
10587 gettext("cannot open '%s': is not a pool\n"), argv
[0]);
10591 /* argv[1], when supplied, is vdev name */
10594 if (strcmp(argv
[1], "root") == 0)
10595 vdev
= strdup("root-0");
10597 vdev
= strdup(argv
[1]);
10599 if (!are_vdevs_in_pool(1, &vdev
, argv
[0], &cb
.cb_vdevs
)) {
10600 (void) fprintf(stderr
, gettext(
10601 "cannot find '%s' in '%s': device not in pool\n"),
10606 cb
.cb_vdevs
.cb_names
= &vdev
;
10607 cb
.cb_vdevs
.cb_names_count
= 1;
10608 cb
.cb_type
= ZFS_TYPE_VDEV
;
10611 error
= for_each_pool(1, argv
, B_TRUE
, NULL
, ZFS_TYPE_POOL
,
10612 B_FALSE
, set_callback
, &cb
);
10620 /* Add up the total number of bytes left to initialize/trim across all vdevs */
10622 vdev_activity_remaining(nvlist_t
*nv
, zpool_wait_activity_t activity
)
10624 uint64_t bytes_remaining
;
10626 uint_t c
, children
;
10629 assert(activity
== ZPOOL_WAIT_INITIALIZE
||
10630 activity
== ZPOOL_WAIT_TRIM
);
10632 verify(nvlist_lookup_uint64_array(nv
, ZPOOL_CONFIG_VDEV_STATS
,
10633 (uint64_t **)&vs
, &c
) == 0);
10635 if (activity
== ZPOOL_WAIT_INITIALIZE
&&
10636 vs
->vs_initialize_state
== VDEV_INITIALIZE_ACTIVE
)
10637 bytes_remaining
= vs
->vs_initialize_bytes_est
-
10638 vs
->vs_initialize_bytes_done
;
10639 else if (activity
== ZPOOL_WAIT_TRIM
&&
10640 vs
->vs_trim_state
== VDEV_TRIM_ACTIVE
)
10641 bytes_remaining
= vs
->vs_trim_bytes_est
-
10642 vs
->vs_trim_bytes_done
;
10644 bytes_remaining
= 0;
10646 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
10647 &child
, &children
) != 0)
10650 for (c
= 0; c
< children
; c
++)
10651 bytes_remaining
+= vdev_activity_remaining(child
[c
], activity
);
10653 return (bytes_remaining
);
10656 /* Add up the total number of bytes left to rebuild across top-level vdevs */
10658 vdev_activity_top_remaining(nvlist_t
*nv
)
10660 uint64_t bytes_remaining
= 0;
10665 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
10666 &child
, &children
) != 0)
10669 for (uint_t c
= 0; c
< children
; c
++) {
10670 vdev_rebuild_stat_t
*vrs
;
10673 error
= nvlist_lookup_uint64_array(child
[c
],
10674 ZPOOL_CONFIG_REBUILD_STATS
, (uint64_t **)&vrs
, &i
);
10676 if (vrs
->vrs_state
== VDEV_REBUILD_ACTIVE
) {
10677 bytes_remaining
+= (vrs
->vrs_bytes_est
-
10678 vrs
->vrs_bytes_rebuilt
);
10683 return (bytes_remaining
);
10686 /* Whether any vdevs are 'spare' or 'replacing' vdevs */
10688 vdev_any_spare_replacing(nvlist_t
*nv
)
10691 uint_t c
, children
;
10692 const char *vdev_type
;
10694 (void) nvlist_lookup_string(nv
, ZPOOL_CONFIG_TYPE
, &vdev_type
);
10696 if (strcmp(vdev_type
, VDEV_TYPE_REPLACING
) == 0 ||
10697 strcmp(vdev_type
, VDEV_TYPE_SPARE
) == 0 ||
10698 strcmp(vdev_type
, VDEV_TYPE_DRAID_SPARE
) == 0) {
10702 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
10703 &child
, &children
) != 0)
10706 for (c
= 0; c
< children
; c
++) {
10707 if (vdev_any_spare_replacing(child
[c
]))
10714 typedef struct wait_data
{
10716 boolean_t wd_scripted
;
10717 boolean_t wd_exact
;
10718 boolean_t wd_headers_once
;
10719 boolean_t wd_should_exit
;
10720 /* Which activities to wait for */
10721 boolean_t wd_enabled
[ZPOOL_WAIT_NUM_ACTIVITIES
];
10723 pthread_cond_t wd_cv
;
10724 pthread_mutex_t wd_mutex
;
10728 * Print to stdout a single line, containing one column for each activity that
10729 * we are waiting for specifying how many bytes of work are left for that
10733 print_wait_status_row(wait_data_t
*wd
, zpool_handle_t
*zhp
, int row
)
10735 nvlist_t
*config
, *nvroot
;
10738 pool_checkpoint_stat_t
*pcs
= NULL
;
10739 pool_scan_stat_t
*pss
= NULL
;
10740 pool_removal_stat_t
*prs
= NULL
;
10741 const char *const headers
[] = {"DISCARD", "FREE", "INITIALIZE",
10742 "REPLACE", "REMOVE", "RESILVER", "SCRUB", "TRIM"};
10743 int col_widths
[ZPOOL_WAIT_NUM_ACTIVITIES
];
10745 /* Calculate the width of each column */
10746 for (i
= 0; i
< ZPOOL_WAIT_NUM_ACTIVITIES
; i
++) {
10748 * Make sure we have enough space in the col for pretty-printed
10749 * numbers and for the column header, and then leave a couple
10750 * spaces between cols for readability.
10752 col_widths
[i
] = MAX(strlen(headers
[i
]), 6) + 2;
10755 /* Print header if appropriate */
10756 int term_height
= terminal_height();
10757 boolean_t reprint_header
= (!wd
->wd_headers_once
&& term_height
> 0 &&
10758 row
% (term_height
-1) == 0);
10759 if (!wd
->wd_scripted
&& (row
== 0 || reprint_header
)) {
10760 for (i
= 0; i
< ZPOOL_WAIT_NUM_ACTIVITIES
; i
++) {
10761 if (wd
->wd_enabled
[i
])
10762 (void) printf("%*s", col_widths
[i
], headers
[i
]);
10764 (void) fputc('\n', stdout
);
10767 /* Bytes of work remaining in each activity */
10768 int64_t bytes_rem
[ZPOOL_WAIT_NUM_ACTIVITIES
] = {0};
10770 bytes_rem
[ZPOOL_WAIT_FREE
] =
10771 zpool_get_prop_int(zhp
, ZPOOL_PROP_FREEING
, NULL
);
10773 config
= zpool_get_config(zhp
, NULL
);
10774 nvroot
= fnvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
);
10776 (void) nvlist_lookup_uint64_array(nvroot
,
10777 ZPOOL_CONFIG_CHECKPOINT_STATS
, (uint64_t **)&pcs
, &c
);
10778 if (pcs
!= NULL
&& pcs
->pcs_state
== CS_CHECKPOINT_DISCARDING
)
10779 bytes_rem
[ZPOOL_WAIT_CKPT_DISCARD
] = pcs
->pcs_space
;
10781 (void) nvlist_lookup_uint64_array(nvroot
,
10782 ZPOOL_CONFIG_REMOVAL_STATS
, (uint64_t **)&prs
, &c
);
10783 if (prs
!= NULL
&& prs
->prs_state
== DSS_SCANNING
)
10784 bytes_rem
[ZPOOL_WAIT_REMOVE
] = prs
->prs_to_copy
-
10787 (void) nvlist_lookup_uint64_array(nvroot
,
10788 ZPOOL_CONFIG_SCAN_STATS
, (uint64_t **)&pss
, &c
);
10789 if (pss
!= NULL
&& pss
->pss_state
== DSS_SCANNING
&&
10790 pss
->pss_pass_scrub_pause
== 0) {
10791 int64_t rem
= pss
->pss_to_examine
- pss
->pss_issued
;
10792 if (pss
->pss_func
== POOL_SCAN_SCRUB
)
10793 bytes_rem
[ZPOOL_WAIT_SCRUB
] = rem
;
10795 bytes_rem
[ZPOOL_WAIT_RESILVER
] = rem
;
10796 } else if (check_rebuilding(nvroot
, NULL
)) {
10797 bytes_rem
[ZPOOL_WAIT_RESILVER
] =
10798 vdev_activity_top_remaining(nvroot
);
10801 bytes_rem
[ZPOOL_WAIT_INITIALIZE
] =
10802 vdev_activity_remaining(nvroot
, ZPOOL_WAIT_INITIALIZE
);
10803 bytes_rem
[ZPOOL_WAIT_TRIM
] =
10804 vdev_activity_remaining(nvroot
, ZPOOL_WAIT_TRIM
);
10807 * A replace finishes after resilvering finishes, so the amount of work
10808 * left for a replace is the same as for resilvering.
10810 * It isn't quite correct to say that if we have any 'spare' or
10811 * 'replacing' vdevs and a resilver is happening, then a replace is in
10812 * progress, like we do here. When a hot spare is used, the faulted vdev
10813 * is not removed after the hot spare is resilvered, so parent 'spare'
10814 * vdev is not removed either. So we could have a 'spare' vdev, but be
10815 * resilvering for a different reason. However, we use it as a heuristic
10816 * because we don't have access to the DTLs, which could tell us whether
10817 * or not we have really finished resilvering a hot spare.
10819 if (vdev_any_spare_replacing(nvroot
))
10820 bytes_rem
[ZPOOL_WAIT_REPLACE
] = bytes_rem
[ZPOOL_WAIT_RESILVER
];
10822 if (timestamp_fmt
!= NODATE
)
10823 print_timestamp(timestamp_fmt
);
10825 for (i
= 0; i
< ZPOOL_WAIT_NUM_ACTIVITIES
; i
++) {
10827 if (!wd
->wd_enabled
[i
])
10831 (void) snprintf(buf
, sizeof (buf
), "%" PRIi64
,
10834 zfs_nicenum(bytes_rem
[i
], buf
, sizeof (buf
));
10836 if (wd
->wd_scripted
)
10837 (void) printf(i
== 0 ? "%s" : "\t%s", buf
);
10839 (void) printf(" %*s", col_widths
[i
] - 1, buf
);
10841 (void) printf("\n");
10842 (void) fflush(stdout
);
10846 wait_status_thread(void *arg
)
10848 wait_data_t
*wd
= (wait_data_t
*)arg
;
10849 zpool_handle_t
*zhp
;
10851 if ((zhp
= zpool_open(g_zfs
, wd
->wd_poolname
)) == NULL
)
10852 return (void *)(1);
10854 for (int row
= 0; ; row
++) {
10856 struct timespec timeout
;
10858 (void) clock_gettime(CLOCK_REALTIME
, &timeout
);
10860 if (zpool_refresh_stats(zhp
, &missing
) != 0 || missing
||
10861 zpool_props_refresh(zhp
) != 0) {
10863 return (void *)(uintptr_t)(missing
? 0 : 1);
10866 print_wait_status_row(wd
, zhp
, row
);
10868 timeout
.tv_sec
+= floor(wd
->wd_interval
);
10869 long nanos
= timeout
.tv_nsec
+
10870 (wd
->wd_interval
- floor(wd
->wd_interval
)) * NANOSEC
;
10871 if (nanos
>= NANOSEC
) {
10873 timeout
.tv_nsec
= nanos
- NANOSEC
;
10875 timeout
.tv_nsec
= nanos
;
10877 pthread_mutex_lock(&wd
->wd_mutex
);
10878 if (!wd
->wd_should_exit
)
10879 ret
= pthread_cond_timedwait(&wd
->wd_cv
, &wd
->wd_mutex
,
10881 pthread_mutex_unlock(&wd
->wd_mutex
);
10883 break; /* signaled by main thread */
10884 } else if (ret
!= ETIMEDOUT
) {
10885 (void) fprintf(stderr
, gettext("pthread_cond_timedwait "
10886 "failed: %s\n"), strerror(ret
));
10888 return (void *)(uintptr_t)(1);
10893 return (void *)(0);
10897 zpool_do_wait(int argc
, char **argv
)
10899 boolean_t verbose
= B_FALSE
;
10901 unsigned long count
;
10902 pthread_t status_thr
;
10904 zpool_handle_t
*zhp
;
10907 wd
.wd_scripted
= B_FALSE
;
10908 wd
.wd_exact
= B_FALSE
;
10909 wd
.wd_headers_once
= B_FALSE
;
10910 wd
.wd_should_exit
= B_FALSE
;
10912 pthread_mutex_init(&wd
.wd_mutex
, NULL
);
10913 pthread_cond_init(&wd
.wd_cv
, NULL
);
10915 /* By default, wait for all types of activity. */
10916 for (i
= 0; i
< ZPOOL_WAIT_NUM_ACTIVITIES
; i
++)
10917 wd
.wd_enabled
[i
] = B_TRUE
;
10919 while ((c
= getopt(argc
, argv
, "HpT:t:")) != -1) {
10922 wd
.wd_scripted
= B_TRUE
;
10925 wd
.wd_headers_once
= B_TRUE
;
10928 wd
.wd_exact
= B_TRUE
;
10931 get_timestamp_arg(*optarg
);
10934 /* Reset activities array */
10935 memset(&wd
.wd_enabled
, 0, sizeof (wd
.wd_enabled
));
10937 for (char *tok
; (tok
= strsep(&optarg
, ",")); ) {
10938 static const char *const col_opts
[] = {
10939 "discard", "free", "initialize", "replace",
10940 "remove", "resilver", "scrub", "trim" };
10942 for (i
= 0; i
< ARRAY_SIZE(col_opts
); ++i
)
10943 if (strcmp(tok
, col_opts
[i
]) == 0) {
10944 wd
.wd_enabled
[i
] = B_TRUE
;
10948 (void) fprintf(stderr
,
10949 gettext("invalid activity '%s'\n"), tok
);
10955 (void) fprintf(stderr
, gettext("invalid option '%c'\n"),
10964 get_interval_count(&argc
, argv
, &wd
.wd_interval
, &count
);
10966 /* This subcmd only accepts an interval, not a count */
10967 (void) fprintf(stderr
, gettext("too many arguments\n"));
10971 if (wd
.wd_interval
!= 0)
10975 (void) fprintf(stderr
, gettext("missing 'pool' argument\n"));
10979 (void) fprintf(stderr
, gettext("too many arguments\n"));
10983 wd
.wd_poolname
= argv
[0];
10985 if ((zhp
= zpool_open(g_zfs
, wd
.wd_poolname
)) == NULL
)
10990 * We use a separate thread for printing status updates because
10991 * the main thread will call lzc_wait(), which blocks as long
10992 * as an activity is in progress, which can be a long time.
10994 if (pthread_create(&status_thr
, NULL
, wait_status_thread
, &wd
)
10996 (void) fprintf(stderr
, gettext("failed to create status"
10997 "thread: %s\n"), strerror(errno
));
11004 * Loop over all activities that we are supposed to wait for until none
11005 * of them are in progress. Note that this means we can end up waiting
11006 * for more activities to complete than just those that were in progress
11007 * when we began waiting; if an activity we are interested in begins
11008 * while we are waiting for another activity, we will wait for both to
11009 * complete before exiting.
11012 boolean_t missing
= B_FALSE
;
11013 boolean_t any_waited
= B_FALSE
;
11015 for (i
= 0; i
< ZPOOL_WAIT_NUM_ACTIVITIES
; i
++) {
11018 if (!wd
.wd_enabled
[i
])
11021 error
= zpool_wait_status(zhp
, i
, &missing
, &waited
);
11022 if (error
!= 0 || missing
)
11025 any_waited
= (any_waited
|| waited
);
11028 if (error
!= 0 || missing
|| !any_waited
)
11036 pthread_mutex_lock(&wd
.wd_mutex
);
11037 wd
.wd_should_exit
= B_TRUE
;
11038 pthread_cond_signal(&wd
.wd_cv
);
11039 pthread_mutex_unlock(&wd
.wd_mutex
);
11040 (void) pthread_join(status_thr
, (void *)&status
);
11045 pthread_mutex_destroy(&wd
.wd_mutex
);
11046 pthread_cond_destroy(&wd
.wd_cv
);
11051 find_command_idx(const char *command
, int *idx
)
11053 for (int i
= 0; i
< NCOMMAND
; ++i
) {
11054 if (command_table
[i
].name
== NULL
)
11057 if (strcmp(command
, command_table
[i
].name
) == 0) {
11066 * Display version message
11069 zpool_do_version(int argc
, char **argv
)
11071 (void) argc
, (void) argv
;
11072 return (zfs_version_print() != 0);
11075 /* Display documentation */
11077 zpool_do_help(int argc
, char **argv
)
11079 char page
[MAXNAMELEN
];
11080 if (argc
< 3 || strcmp(argv
[2], "zpool") == 0)
11081 strcpy(page
, "zpool");
11082 else if (strcmp(argv
[2], "concepts") == 0 ||
11083 strcmp(argv
[2], "props") == 0)
11084 snprintf(page
, sizeof (page
), "zpool%s", argv
[2]);
11086 snprintf(page
, sizeof (page
), "zpool-%s", argv
[2]);
11088 execlp("man", "man", page
, NULL
);
11090 fprintf(stderr
, "couldn't run man program: %s", strerror(errno
));
11095 * Do zpool_load_compat() and print error message on failure
11097 static zpool_compat_status_t
11098 zpool_do_load_compat(const char *compat
, boolean_t
*list
)
11102 zpool_compat_status_t ret
;
11104 ret
= zpool_load_compat(compat
, list
, report
, 1024);
11107 case ZPOOL_COMPATIBILITY_OK
:
11110 case ZPOOL_COMPATIBILITY_NOFILES
:
11111 case ZPOOL_COMPATIBILITY_BADFILE
:
11112 case ZPOOL_COMPATIBILITY_BADTOKEN
:
11113 (void) fprintf(stderr
, "Error: %s\n", report
);
11116 case ZPOOL_COMPATIBILITY_WARNTOKEN
:
11117 (void) fprintf(stderr
, "Warning: %s\n", report
);
11118 ret
= ZPOOL_COMPATIBILITY_OK
;
11125 main(int argc
, char **argv
)
11132 (void) setlocale(LC_ALL
, "");
11133 (void) setlocale(LC_NUMERIC
, "C");
11134 (void) textdomain(TEXT_DOMAIN
);
11140 * Make sure the user has specified some command.
11143 (void) fprintf(stderr
, gettext("missing command\n"));
11150 * Special case '-?'
11152 if ((strcmp(cmdname
, "-?") == 0) || strcmp(cmdname
, "--help") == 0)
11156 * Special case '-V|--version'
11158 if ((strcmp(cmdname
, "-V") == 0) || (strcmp(cmdname
, "--version") == 0))
11159 return (zpool_do_version(argc
, argv
));
11162 * Special case 'help'
11164 if (strcmp(cmdname
, "help") == 0)
11165 return (zpool_do_help(argc
, argv
));
11167 if ((g_zfs
= libzfs_init()) == NULL
) {
11168 (void) fprintf(stderr
, "%s\n", libzfs_error_init(errno
));
11172 libzfs_print_on_error(g_zfs
, B_TRUE
);
11174 zfs_save_arguments(argc
, argv
, history_str
, sizeof (history_str
));
11177 * Many commands modify input strings for string parsing reasons.
11178 * We create a copy to protect the original argv.
11180 newargv
= safe_malloc((argc
+ 1) * sizeof (newargv
[0]));
11181 for (i
= 0; i
< argc
; i
++)
11182 newargv
[i
] = strdup(argv
[i
]);
11183 newargv
[argc
] = NULL
;
11186 * Run the appropriate command.
11188 if (find_command_idx(cmdname
, &i
) == 0) {
11189 current_command
= &command_table
[i
];
11190 ret
= command_table
[i
].func(argc
- 1, newargv
+ 1);
11191 } else if (strchr(cmdname
, '=')) {
11192 verify(find_command_idx("set", &i
) == 0);
11193 current_command
= &command_table
[i
];
11194 ret
= command_table
[i
].func(argc
, newargv
);
11195 } else if (strcmp(cmdname
, "freeze") == 0 && argc
== 3) {
11197 * 'freeze' is a vile debugging abomination, so we treat
11200 zfs_cmd_t zc
= {"\0"};
11202 (void) strlcpy(zc
.zc_name
, argv
[2], sizeof (zc
.zc_name
));
11203 ret
= zfs_ioctl(g_zfs
, ZFS_IOC_POOL_FREEZE
, &zc
);
11205 (void) fprintf(stderr
,
11206 gettext("failed to freeze pool: %d\n"), errno
);
11212 (void) fprintf(stderr
, gettext("unrecognized "
11213 "command '%s'\n"), cmdname
);
11218 for (i
= 0; i
< argc
; i
++)
11222 if (ret
== 0 && log_history
)
11223 (void) zpool_log_history(g_zfs
, history_str
);
11225 libzfs_fini(g_zfs
);
11228 * The 'ZFS_ABORT' environment variable causes us to dump core on exit
11229 * for the purposes of running ::findleaks.
11231 if (getenv("ZFS_ABORT") != NULL
) {
11232 (void) printf("dumping core by request\n");