4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2016 by Delphix. All rights reserved.
27 #include <sys/zfs_context.h>
33 #include <sys/fs/zfs.h>
34 #include <sys/refcount.h>
38 * Routines needed by more than one client of libzpool.
42 nicenum(uint64_t num
, char *buf
)
49 n
= (n
+ (1024 / 2)) / 1024; /* Round up or down */
56 (void) sprintf(buf
, "%llu", (u_longlong_t
)n
);
57 } else if (n
< 10 && (num
& (num
- 1)) != 0) {
58 (void) sprintf(buf
, "%.2f%c",
59 (double)num
/ (1ULL << 10 * index
), u
);
60 } else if (n
< 100 && (num
& (num
- 1)) != 0) {
61 (void) sprintf(buf
, "%.1f%c",
62 (double)num
/ (1ULL << 10 * index
), u
);
64 (void) sprintf(buf
, "%llu%c", (u_longlong_t
)n
, u
);
69 show_vdev_stats(const char *desc
, const char *ctype
, nvlist_t
*nv
, int indent
)
72 vdev_stat_t v0
= { 0 };
77 char used
[6], avail
[6];
78 char rops
[6], wops
[6], rbytes
[6], wbytes
[6], rerr
[6], werr
[6], cerr
[6];
81 if (indent
== 0 && desc
!= NULL
) {
83 " capacity operations bandwidth ---- errors ----\n");
84 (void) printf("description "
85 "used avail read write read write read write cksum\n");
89 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_IS_LOG
, &is_log
);
94 if (nvlist_lookup_uint64_array(nv
, ZPOOL_CONFIG_VDEV_STATS
,
95 (uint64_t **)&vs
, &c
) != 0)
98 sec
= MAX(1, vs
->vs_timestamp
/ NANOSEC
);
100 nicenum(vs
->vs_alloc
, used
);
101 nicenum(vs
->vs_space
- vs
->vs_alloc
, avail
);
102 nicenum(vs
->vs_ops
[ZIO_TYPE_READ
] / sec
, rops
);
103 nicenum(vs
->vs_ops
[ZIO_TYPE_WRITE
] / sec
, wops
);
104 nicenum(vs
->vs_bytes
[ZIO_TYPE_READ
] / sec
, rbytes
);
105 nicenum(vs
->vs_bytes
[ZIO_TYPE_WRITE
] / sec
, wbytes
);
106 nicenum(vs
->vs_read_errors
, rerr
);
107 nicenum(vs
->vs_write_errors
, werr
);
108 nicenum(vs
->vs_checksum_errors
, cerr
);
110 (void) printf("%*s%s%*s%*s%*s %5s %5s %5s %5s %5s %5s %5s\n",
113 indent
+ strlen(prefix
) - 25 - (vs
->vs_space
? 0 : 12),
115 vs
->vs_space
? 6 : 0, vs
->vs_space
? used
: "",
116 vs
->vs_space
? 6 : 0, vs
->vs_space
? avail
: "",
117 rops
, wops
, rbytes
, wbytes
, rerr
, werr
, cerr
);
120 if (nvlist_lookup_nvlist_array(nv
, ctype
, &child
, &children
) != 0)
123 for (c
= 0; c
< children
; c
++) {
124 nvlist_t
*cnv
= child
[c
];
127 if (nvlist_lookup_string(cnv
, ZPOOL_CONFIG_PATH
, &cname
) &&
128 nvlist_lookup_string(cnv
, ZPOOL_CONFIG_TYPE
, &cname
))
130 tname
= calloc(1, strlen(cname
) + 2);
131 (void) strcpy(tname
, cname
);
132 if (nvlist_lookup_uint64(cnv
, ZPOOL_CONFIG_NPARITY
, &np
) == 0)
133 tname
[strlen(tname
)] = '0' + np
;
134 show_vdev_stats(tname
, ctype
, cnv
, indent
+ 2);
140 show_pool_stats(spa_t
*spa
)
142 nvlist_t
*config
, *nvroot
;
145 VERIFY(spa_get_stats(spa_name(spa
), &config
, NULL
, 0) == 0);
147 VERIFY(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
149 VERIFY(nvlist_lookup_string(config
, ZPOOL_CONFIG_POOL_NAME
,
152 show_vdev_stats(name
, ZPOOL_CONFIG_CHILDREN
, nvroot
, 0);
153 show_vdev_stats(NULL
, ZPOOL_CONFIG_L2CACHE
, nvroot
, 0);
154 show_vdev_stats(NULL
, ZPOOL_CONFIG_SPARES
, nvroot
, 0);
160 * Sets given global variable in libzpool to given unsigned 32-bit value.
161 * arg: "<variable>=<value>"
164 set_global_var(char *arg
)
167 char *varname
= arg
, *varval
;
170 #ifndef _LITTLE_ENDIAN
172 * On big endian systems changing a 64-bit variable would set the high
173 * 32 bits instead of the low 32 bits, which could cause unexpected
176 fprintf(stderr
, "Setting global variables is only supported on "
177 "little-endian systems\n", varname
);
180 if ((varval
= strchr(arg
, '=')) != NULL
) {
183 val
= strtoull(varval
, NULL
, 0);
184 if (val
> UINT32_MAX
) {
185 fprintf(stderr
, "Value for global variable '%s' must "
186 "be a 32-bit unsigned integer\n", varname
);
193 zpoolhdl
= dlopen("libzpool.so", RTLD_LAZY
);
194 if (zpoolhdl
!= NULL
) {
196 var
= dlsym(zpoolhdl
, varname
);
198 fprintf(stderr
, "Global variable '%s' does not exist "
199 "in libzpool.so\n", varname
);
202 *var
= (uint32_t)val
;
206 fprintf(stderr
, "Failed to open libzpool.so to set global "