]> git.proxmox.com Git - mirror_zfs.git/blame - lib/libzfs/libzfs_pool.c
Retire .write/.read file operations
[mirror_zfs.git] / lib / libzfs / libzfs_pool.c
CommitLineData
34dc7c2f
BB
1/*
2 * CDDL HEADER START
3 *
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.
7 *
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.
12 *
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]
18 *
19 * CDDL HEADER END
20 */
21
22/*
0fdd8d64 23 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
428870ff 24 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
a05dfd00 25 * Copyright (c) 2011, 2014 by Delphix. All rights reserved.
34dc7c2f
BB
26 */
27
34dc7c2f
BB
28#include <ctype.h>
29#include <errno.h>
30#include <devid.h>
34dc7c2f
BB
31#include <fcntl.h>
32#include <libintl.h>
33#include <stdio.h>
34#include <stdlib.h>
35#include <strings.h>
36#include <unistd.h>
6f1ffb06 37#include <libgen.h>
d603ed6c
BB
38#include <zone.h>
39#include <sys/stat.h>
34dc7c2f
BB
40#include <sys/efi_partition.h>
41#include <sys/vtoc.h>
42#include <sys/zfs_ioctl.h>
9babb374 43#include <dlfcn.h>
34dc7c2f
BB
44
45#include "zfs_namecheck.h"
46#include "zfs_prop.h"
47#include "libzfs_impl.h"
428870ff 48#include "zfs_comutil.h"
9ae529ec 49#include "zfeature_common.h"
34dc7c2f 50
b128c09f
BB
51static int read_efi_label(nvlist_t *config, diskaddr_t *sb);
52
572e2857
BB
53typedef struct prop_flags {
54 int create:1; /* Validate property on creation */
55 int import:1; /* Validate property on import */
56} prop_flags_t;
57
34dc7c2f
BB
58/*
59 * ====================================================================
60 * zpool property functions
61 * ====================================================================
62 */
63
64static int
65zpool_get_all_props(zpool_handle_t *zhp)
66{
13fe0198 67 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
68 libzfs_handle_t *hdl = zhp->zpool_hdl;
69
70 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
71
72 if (zcmd_alloc_dst_nvlist(hdl, &zc, 0) != 0)
73 return (-1);
74
75 while (ioctl(hdl->libzfs_fd, ZFS_IOC_POOL_GET_PROPS, &zc) != 0) {
76 if (errno == ENOMEM) {
77 if (zcmd_expand_dst_nvlist(hdl, &zc) != 0) {
78 zcmd_free_nvlists(&zc);
79 return (-1);
80 }
81 } else {
82 zcmd_free_nvlists(&zc);
83 return (-1);
84 }
85 }
86
87 if (zcmd_read_dst_nvlist(hdl, &zc, &zhp->zpool_props) != 0) {
88 zcmd_free_nvlists(&zc);
89 return (-1);
90 }
91
92 zcmd_free_nvlists(&zc);
93
94 return (0);
95}
96
97static int
98zpool_props_refresh(zpool_handle_t *zhp)
99{
100 nvlist_t *old_props;
101
102 old_props = zhp->zpool_props;
103
104 if (zpool_get_all_props(zhp) != 0)
105 return (-1);
106
107 nvlist_free(old_props);
108 return (0);
109}
110
111static char *
112zpool_get_prop_string(zpool_handle_t *zhp, zpool_prop_t prop,
113 zprop_source_t *src)
114{
115 nvlist_t *nv, *nvl;
116 uint64_t ival;
117 char *value;
118 zprop_source_t source;
119
120 nvl = zhp->zpool_props;
121 if (nvlist_lookup_nvlist(nvl, zpool_prop_to_name(prop), &nv) == 0) {
122 verify(nvlist_lookup_uint64(nv, ZPROP_SOURCE, &ival) == 0);
123 source = ival;
124 verify(nvlist_lookup_string(nv, ZPROP_VALUE, &value) == 0);
125 } else {
126 source = ZPROP_SRC_DEFAULT;
127 if ((value = (char *)zpool_prop_default_string(prop)) == NULL)
128 value = "-";
129 }
130
131 if (src)
132 *src = source;
133
134 return (value);
135}
136
137uint64_t
138zpool_get_prop_int(zpool_handle_t *zhp, zpool_prop_t prop, zprop_source_t *src)
139{
140 nvlist_t *nv, *nvl;
141 uint64_t value;
142 zprop_source_t source;
143
b128c09f
BB
144 if (zhp->zpool_props == NULL && zpool_get_all_props(zhp)) {
145 /*
146 * zpool_get_all_props() has most likely failed because
147 * the pool is faulted, but if all we need is the top level
148 * vdev's guid then get it from the zhp config nvlist.
149 */
150 if ((prop == ZPOOL_PROP_GUID) &&
151 (nvlist_lookup_nvlist(zhp->zpool_config,
152 ZPOOL_CONFIG_VDEV_TREE, &nv) == 0) &&
153 (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &value)
154 == 0)) {
155 return (value);
156 }
34dc7c2f 157 return (zpool_prop_default_numeric(prop));
b128c09f 158 }
34dc7c2f
BB
159
160 nvl = zhp->zpool_props;
161 if (nvlist_lookup_nvlist(nvl, zpool_prop_to_name(prop), &nv) == 0) {
162 verify(nvlist_lookup_uint64(nv, ZPROP_SOURCE, &value) == 0);
163 source = value;
164 verify(nvlist_lookup_uint64(nv, ZPROP_VALUE, &value) == 0);
165 } else {
166 source = ZPROP_SRC_DEFAULT;
167 value = zpool_prop_default_numeric(prop);
168 }
169
170 if (src)
171 *src = source;
172
173 return (value);
174}
175
176/*
177 * Map VDEV STATE to printed strings.
178 */
179char *
180zpool_state_to_name(vdev_state_t state, vdev_aux_t aux)
181{
182 switch (state) {
e75c13c3
BB
183 default:
184 break;
34dc7c2f
BB
185 case VDEV_STATE_CLOSED:
186 case VDEV_STATE_OFFLINE:
187 return (gettext("OFFLINE"));
188 case VDEV_STATE_REMOVED:
189 return (gettext("REMOVED"));
190 case VDEV_STATE_CANT_OPEN:
b128c09f 191 if (aux == VDEV_AUX_CORRUPT_DATA || aux == VDEV_AUX_BAD_LOG)
34dc7c2f 192 return (gettext("FAULTED"));
428870ff
BB
193 else if (aux == VDEV_AUX_SPLIT_POOL)
194 return (gettext("SPLIT"));
34dc7c2f
BB
195 else
196 return (gettext("UNAVAIL"));
197 case VDEV_STATE_FAULTED:
198 return (gettext("FAULTED"));
199 case VDEV_STATE_DEGRADED:
200 return (gettext("DEGRADED"));
201 case VDEV_STATE_HEALTHY:
202 return (gettext("ONLINE"));
203 }
204
205 return (gettext("UNKNOWN"));
206}
207
131cc95c
DK
208/*
209 * Map POOL STATE to printed strings.
210 */
211const char *
212zpool_pool_state_to_name(pool_state_t state)
213{
214 switch (state) {
215 default:
216 break;
217 case POOL_STATE_ACTIVE:
218 return (gettext("ACTIVE"));
219 case POOL_STATE_EXPORTED:
220 return (gettext("EXPORTED"));
221 case POOL_STATE_DESTROYED:
222 return (gettext("DESTROYED"));
223 case POOL_STATE_SPARE:
224 return (gettext("SPARE"));
225 case POOL_STATE_L2CACHE:
226 return (gettext("L2CACHE"));
227 case POOL_STATE_UNINITIALIZED:
228 return (gettext("UNINITIALIZED"));
229 case POOL_STATE_UNAVAIL:
230 return (gettext("UNAVAIL"));
231 case POOL_STATE_POTENTIALLY_ACTIVE:
232 return (gettext("POTENTIALLY_ACTIVE"));
233 }
234
235 return (gettext("UNKNOWN"));
236}
237
8b921f66
RE
238/*
239 * Get a zpool property value for 'prop' and return the value in
240 * a pre-allocated buffer.
241 */
242int
2a8b84b7 243zpool_get_prop(zpool_handle_t *zhp, zpool_prop_t prop, char *buf,
d1d7e268 244 size_t len, zprop_source_t *srctype, boolean_t literal)
34dc7c2f
BB
245{
246 uint64_t intval;
247 const char *strval;
248 zprop_source_t src = ZPROP_SRC_NONE;
249 nvlist_t *nvroot;
250 vdev_stat_t *vs;
251 uint_t vsc;
252
253 if (zpool_get_state(zhp) == POOL_STATE_UNAVAIL) {
d164b209
BB
254 switch (prop) {
255 case ZPOOL_PROP_NAME:
34dc7c2f 256 (void) strlcpy(buf, zpool_get_name(zhp), len);
d164b209
BB
257 break;
258
259 case ZPOOL_PROP_HEALTH:
34dc7c2f 260 (void) strlcpy(buf, "FAULTED", len);
d164b209
BB
261 break;
262
263 case ZPOOL_PROP_GUID:
264 intval = zpool_get_prop_int(zhp, prop, &src);
b8864a23 265 (void) snprintf(buf, len, "%llu", (u_longlong_t)intval);
d164b209
BB
266 break;
267
268 case ZPOOL_PROP_ALTROOT:
269 case ZPOOL_PROP_CACHEFILE:
d96eb2b1 270 case ZPOOL_PROP_COMMENT:
d164b209
BB
271 if (zhp->zpool_props != NULL ||
272 zpool_get_all_props(zhp) == 0) {
273 (void) strlcpy(buf,
274 zpool_get_prop_string(zhp, prop, &src),
275 len);
2a8b84b7 276 break;
d164b209
BB
277 }
278 /* FALLTHROUGH */
279 default:
34dc7c2f 280 (void) strlcpy(buf, "-", len);
d164b209
BB
281 break;
282 }
283
284 if (srctype != NULL)
285 *srctype = src;
34dc7c2f
BB
286 return (0);
287 }
288
289 if (zhp->zpool_props == NULL && zpool_get_all_props(zhp) &&
290 prop != ZPOOL_PROP_NAME)
291 return (-1);
292
293 switch (zpool_prop_get_type(prop)) {
294 case PROP_TYPE_STRING:
295 (void) strlcpy(buf, zpool_get_prop_string(zhp, prop, &src),
296 len);
297 break;
298
299 case PROP_TYPE_NUMBER:
300 intval = zpool_get_prop_int(zhp, prop, &src);
301
302 switch (prop) {
303 case ZPOOL_PROP_SIZE:
428870ff
BB
304 case ZPOOL_PROP_ALLOCATED:
305 case ZPOOL_PROP_FREE:
9ae529ec 306 case ZPOOL_PROP_FREEING:
fbeddd60 307 case ZPOOL_PROP_LEAKED:
df30f566 308 case ZPOOL_PROP_ASHIFT:
8b921f66
RE
309 if (literal)
310 (void) snprintf(buf, len, "%llu",
02730c33 311 (u_longlong_t)intval);
8b921f66
RE
312 else
313 (void) zfs_nicenum(intval, buf, len);
34dc7c2f
BB
314 break;
315
a05dfd00
GW
316 case ZPOOL_PROP_EXPANDSZ:
317 if (intval == 0) {
318 (void) strlcpy(buf, "-", len);
319 } else if (literal) {
320 (void) snprintf(buf, len, "%llu",
321 (u_longlong_t)intval);
322 } else {
323 (void) zfs_nicenum(intval, buf, len);
324 }
325 break;
326
34dc7c2f 327 case ZPOOL_PROP_CAPACITY:
2a8b84b7
AS
328 if (literal) {
329 (void) snprintf(buf, len, "%llu",
330 (u_longlong_t)intval);
331 } else {
332 (void) snprintf(buf, len, "%llu%%",
333 (u_longlong_t)intval);
334 }
34dc7c2f
BB
335 break;
336
1ca56e60 337 case ZPOOL_PROP_FRAGMENTATION:
338 if (intval == UINT64_MAX) {
339 (void) strlcpy(buf, "-", len);
bc2d8093
CE
340 } else if (literal) {
341 (void) snprintf(buf, len, "%llu",
342 (u_longlong_t)intval);
1ca56e60 343 } else {
344 (void) snprintf(buf, len, "%llu%%",
345 (u_longlong_t)intval);
346 }
347 break;
348
428870ff 349 case ZPOOL_PROP_DEDUPRATIO:
bc2d8093
CE
350 if (literal)
351 (void) snprintf(buf, len, "%llu.%02llu",
352 (u_longlong_t)(intval / 100),
353 (u_longlong_t)(intval % 100));
354 else
355 (void) snprintf(buf, len, "%llu.%02llux",
356 (u_longlong_t)(intval / 100),
357 (u_longlong_t)(intval % 100));
428870ff
BB
358 break;
359
34dc7c2f
BB
360 case ZPOOL_PROP_HEALTH:
361 verify(nvlist_lookup_nvlist(zpool_get_config(zhp, NULL),
362 ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
363 verify(nvlist_lookup_uint64_array(nvroot,
428870ff
BB
364 ZPOOL_CONFIG_VDEV_STATS, (uint64_t **)&vs, &vsc)
365 == 0);
34dc7c2f
BB
366
367 (void) strlcpy(buf, zpool_state_to_name(intval,
368 vs->vs_aux), len);
369 break;
9ae529ec
CS
370 case ZPOOL_PROP_VERSION:
371 if (intval >= SPA_VERSION_FEATURES) {
372 (void) snprintf(buf, len, "-");
373 break;
374 }
375 /* FALLTHROUGH */
34dc7c2f 376 default:
b8864a23 377 (void) snprintf(buf, len, "%llu", (u_longlong_t)intval);
34dc7c2f
BB
378 }
379 break;
380
381 case PROP_TYPE_INDEX:
382 intval = zpool_get_prop_int(zhp, prop, &src);
383 if (zpool_prop_index_to_string(prop, intval, &strval)
384 != 0)
385 return (-1);
386 (void) strlcpy(buf, strval, len);
387 break;
388
389 default:
390 abort();
391 }
392
393 if (srctype)
394 *srctype = src;
395
396 return (0);
397}
398
399/*
400 * Check if the bootfs name has the same pool name as it is set to.
401 * Assuming bootfs is a valid dataset name.
402 */
403static boolean_t
404bootfs_name_valid(const char *pool, char *bootfs)
405{
406 int len = strlen(pool);
407
b128c09f 408 if (!zfs_name_valid(bootfs, ZFS_TYPE_FILESYSTEM|ZFS_TYPE_SNAPSHOT))
34dc7c2f
BB
409 return (B_FALSE);
410
411 if (strncmp(pool, bootfs, len) == 0 &&
412 (bootfs[len] == '/' || bootfs[len] == '\0'))
413 return (B_TRUE);
414
415 return (B_FALSE);
416}
417
1bd201e7
CS
418boolean_t
419zpool_is_bootable(zpool_handle_t *zhp)
b128c09f 420{
eca7b760 421 char bootfs[ZFS_MAX_DATASET_NAME_LEN];
b128c09f
BB
422
423 return (zpool_get_prop(zhp, ZPOOL_PROP_BOOTFS, bootfs,
2a8b84b7 424 sizeof (bootfs), NULL, B_FALSE) == 0 && strncmp(bootfs, "-",
b128c09f
BB
425 sizeof (bootfs)) != 0);
426}
427
428
34dc7c2f
BB
429/*
430 * Given an nvlist of zpool properties to be set, validate that they are
431 * correct, and parse any numeric properties (index, boolean, etc) if they are
432 * specified as strings.
433 */
434static nvlist_t *
b128c09f 435zpool_valid_proplist(libzfs_handle_t *hdl, const char *poolname,
572e2857 436 nvlist_t *props, uint64_t version, prop_flags_t flags, char *errbuf)
34dc7c2f
BB
437{
438 nvpair_t *elem;
439 nvlist_t *retprops;
440 zpool_prop_t prop;
441 char *strval;
442 uint64_t intval;
d96eb2b1 443 char *slash, *check;
34dc7c2f 444 struct stat64 statbuf;
b128c09f 445 zpool_handle_t *zhp;
34dc7c2f
BB
446
447 if (nvlist_alloc(&retprops, NV_UNIQUE_NAME, 0) != 0) {
448 (void) no_memory(hdl);
449 return (NULL);
450 }
451
452 elem = NULL;
453 while ((elem = nvlist_next_nvpair(props, elem)) != NULL) {
454 const char *propname = nvpair_name(elem);
455
9ae529ec
CS
456 prop = zpool_name_to_prop(propname);
457 if (prop == ZPROP_INVAL && zpool_prop_feature(propname)) {
458 int err;
9ae529ec
CS
459 char *fname = strchr(propname, '@') + 1;
460
fa86b5db 461 err = zfeature_lookup_name(fname, NULL);
9ae529ec
CS
462 if (err != 0) {
463 ASSERT3U(err, ==, ENOENT);
464 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
465 "invalid feature '%s'"), fname);
466 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
467 goto error;
468 }
469
470 if (nvpair_type(elem) != DATA_TYPE_STRING) {
471 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
472 "'%s' must be a string"), propname);
473 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
474 goto error;
475 }
476
477 (void) nvpair_value_string(elem, &strval);
e4010f27 478 if (strcmp(strval, ZFS_FEATURE_ENABLED) != 0 &&
479 strcmp(strval, ZFS_FEATURE_DISABLED) != 0) {
9ae529ec
CS
480 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
481 "property '%s' can only be set to "
e4010f27 482 "'enabled' or 'disabled'"), propname);
9ae529ec
CS
483 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
484 goto error;
485 }
486
487 if (nvlist_add_uint64(retprops, propname, 0) != 0) {
488 (void) no_memory(hdl);
489 goto error;
490 }
491 continue;
492 }
493
34dc7c2f
BB
494 /*
495 * Make sure this property is valid and applies to this type.
496 */
9ae529ec 497 if (prop == ZPROP_INVAL) {
34dc7c2f
BB
498 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
499 "invalid property '%s'"), propname);
500 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
501 goto error;
502 }
503
504 if (zpool_prop_readonly(prop)) {
505 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "'%s' "
506 "is readonly"), propname);
507 (void) zfs_error(hdl, EZFS_PROPREADONLY, errbuf);
508 goto error;
509 }
510
511 if (zprop_parse_value(hdl, elem, prop, ZFS_TYPE_POOL, retprops,
512 &strval, &intval, errbuf) != 0)
513 goto error;
514
515 /*
516 * Perform additional checking for specific properties.
517 */
518 switch (prop) {
e75c13c3
BB
519 default:
520 break;
34dc7c2f 521 case ZPOOL_PROP_VERSION:
9ae529ec
CS
522 if (intval < version ||
523 !SPA_VERSION_IS_SUPPORTED(intval)) {
34dc7c2f
BB
524 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
525 "property '%s' number %d is invalid."),
526 propname, intval);
527 (void) zfs_error(hdl, EZFS_BADVERSION, errbuf);
528 goto error;
529 }
530 break;
531
df30f566
CK
532 case ZPOOL_PROP_ASHIFT:
533 if (!flags.create) {
534 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
535 "property '%s' can only be set at "
536 "creation time"), propname);
537 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
538 goto error;
539 }
540
b41c9906 541 if (intval != 0 && (intval < 9 || intval > 13)) {
df30f566
CK
542 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
543 "property '%s' number %d is invalid."),
544 propname, intval);
545 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
546 goto error;
547 }
548 break;
549
34dc7c2f 550 case ZPOOL_PROP_BOOTFS:
572e2857 551 if (flags.create || flags.import) {
34dc7c2f
BB
552 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
553 "property '%s' cannot be set at creation "
554 "or import time"), propname);
555 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
556 goto error;
557 }
558
559 if (version < SPA_VERSION_BOOTFS) {
560 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
561 "pool must be upgraded to support "
562 "'%s' property"), propname);
563 (void) zfs_error(hdl, EZFS_BADVERSION, errbuf);
564 goto error;
565 }
566
567 /*
568 * bootfs property value has to be a dataset name and
569 * the dataset has to be in the same pool as it sets to.
570 */
571 if (strval[0] != '\0' && !bootfs_name_valid(poolname,
572 strval)) {
573 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "'%s' "
574 "is an invalid name"), strval);
575 (void) zfs_error(hdl, EZFS_INVALIDNAME, errbuf);
576 goto error;
577 }
b128c09f
BB
578
579 if ((zhp = zpool_open_canfail(hdl, poolname)) == NULL) {
580 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
581 "could not open pool '%s'"), poolname);
582 (void) zfs_error(hdl, EZFS_OPENFAILED, errbuf);
583 goto error;
584 }
b128c09f 585 zpool_close(zhp);
34dc7c2f
BB
586 break;
587
588 case ZPOOL_PROP_ALTROOT:
572e2857 589 if (!flags.create && !flags.import) {
34dc7c2f
BB
590 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
591 "property '%s' can only be set during pool "
592 "creation or import"), propname);
593 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
594 goto error;
595 }
596
597 if (strval[0] != '/') {
598 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
599 "bad alternate root '%s'"), strval);
600 (void) zfs_error(hdl, EZFS_BADPATH, errbuf);
601 goto error;
602 }
603 break;
604
605 case ZPOOL_PROP_CACHEFILE:
606 if (strval[0] == '\0')
607 break;
608
609 if (strcmp(strval, "none") == 0)
610 break;
611
612 if (strval[0] != '/') {
613 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
614 "property '%s' must be empty, an "
615 "absolute path, or 'none'"), propname);
616 (void) zfs_error(hdl, EZFS_BADPATH, errbuf);
617 goto error;
618 }
619
620 slash = strrchr(strval, '/');
621
622 if (slash[1] == '\0' || strcmp(slash, "/.") == 0 ||
623 strcmp(slash, "/..") == 0) {
624 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
625 "'%s' is not a valid file"), strval);
626 (void) zfs_error(hdl, EZFS_BADPATH, errbuf);
627 goto error;
628 }
629
630 *slash = '\0';
631
632 if (strval[0] != '\0' &&
633 (stat64(strval, &statbuf) != 0 ||
634 !S_ISDIR(statbuf.st_mode))) {
635 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
636 "'%s' is not a valid directory"),
637 strval);
638 (void) zfs_error(hdl, EZFS_BADPATH, errbuf);
639 goto error;
640 }
641
642 *slash = '/';
643 break;
572e2857 644
d96eb2b1
DM
645 case ZPOOL_PROP_COMMENT:
646 for (check = strval; *check != '\0'; check++) {
647 if (!isprint(*check)) {
648 zfs_error_aux(hdl,
649 dgettext(TEXT_DOMAIN,
650 "comment may only have printable "
651 "characters"));
652 (void) zfs_error(hdl, EZFS_BADPROP,
653 errbuf);
654 goto error;
655 }
656 }
657 if (strlen(strval) > ZPROP_MAX_COMMENT) {
658 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
659 "comment must not exceed %d characters"),
660 ZPROP_MAX_COMMENT);
661 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
662 goto error;
663 }
664 break;
572e2857
BB
665 case ZPOOL_PROP_READONLY:
666 if (!flags.import) {
667 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
668 "property '%s' can only be set at "
669 "import time"), propname);
670 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
671 goto error;
672 }
673 break;
83e9986f
RY
674 case ZPOOL_PROP_TNAME:
675 if (!flags.create) {
676 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
677 "property '%s' can only be set at "
678 "creation time"), propname);
679 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
680 goto error;
681 }
682 break;
34dc7c2f
BB
683 }
684 }
685
686 return (retprops);
687error:
688 nvlist_free(retprops);
689 return (NULL);
690}
691
692/*
693 * Set zpool property : propname=propval.
694 */
695int
696zpool_set_prop(zpool_handle_t *zhp, const char *propname, const char *propval)
697{
13fe0198 698 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
699 int ret = -1;
700 char errbuf[1024];
701 nvlist_t *nvl = NULL;
702 nvlist_t *realprops;
703 uint64_t version;
572e2857 704 prop_flags_t flags = { 0 };
34dc7c2f
BB
705
706 (void) snprintf(errbuf, sizeof (errbuf),
707 dgettext(TEXT_DOMAIN, "cannot set property for '%s'"),
708 zhp->zpool_name);
709
34dc7c2f
BB
710 if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0)
711 return (no_memory(zhp->zpool_hdl));
712
713 if (nvlist_add_string(nvl, propname, propval) != 0) {
714 nvlist_free(nvl);
715 return (no_memory(zhp->zpool_hdl));
716 }
717
718 version = zpool_get_prop_int(zhp, ZPOOL_PROP_VERSION, NULL);
b128c09f 719 if ((realprops = zpool_valid_proplist(zhp->zpool_hdl,
572e2857 720 zhp->zpool_name, nvl, version, flags, errbuf)) == NULL) {
34dc7c2f
BB
721 nvlist_free(nvl);
722 return (-1);
723 }
724
725 nvlist_free(nvl);
726 nvl = realprops;
727
728 /*
729 * Execute the corresponding ioctl() to set this property.
730 */
731 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
732
733 if (zcmd_write_src_nvlist(zhp->zpool_hdl, &zc, nvl) != 0) {
734 nvlist_free(nvl);
735 return (-1);
736 }
737
738 ret = zfs_ioctl(zhp->zpool_hdl, ZFS_IOC_POOL_SET_PROPS, &zc);
739
740 zcmd_free_nvlists(&zc);
741 nvlist_free(nvl);
742
743 if (ret)
744 (void) zpool_standard_error(zhp->zpool_hdl, errno, errbuf);
745 else
746 (void) zpool_props_refresh(zhp);
747
748 return (ret);
749}
750
751int
752zpool_expand_proplist(zpool_handle_t *zhp, zprop_list_t **plp)
753{
754 libzfs_handle_t *hdl = zhp->zpool_hdl;
755 zprop_list_t *entry;
756 char buf[ZFS_MAXPROPLEN];
9ae529ec
CS
757 nvlist_t *features = NULL;
758 nvpair_t *nvp;
759 zprop_list_t **last;
760 boolean_t firstexpand = (NULL == *plp);
761 int i;
34dc7c2f
BB
762
763 if (zprop_expand_list(hdl, plp, ZFS_TYPE_POOL) != 0)
764 return (-1);
765
9ae529ec
CS
766 last = plp;
767 while (*last != NULL)
768 last = &(*last)->pl_next;
769
770 if ((*plp)->pl_all)
771 features = zpool_get_features(zhp);
772
773 if ((*plp)->pl_all && firstexpand) {
774 for (i = 0; i < SPA_FEATURES; i++) {
775 zprop_list_t *entry = zfs_alloc(hdl,
776 sizeof (zprop_list_t));
777 entry->pl_prop = ZPROP_INVAL;
778 entry->pl_user_prop = zfs_asprintf(hdl, "feature@%s",
779 spa_feature_table[i].fi_uname);
780 entry->pl_width = strlen(entry->pl_user_prop);
781 entry->pl_all = B_TRUE;
782
783 *last = entry;
784 last = &entry->pl_next;
785 }
786 }
787
788 /* add any unsupported features */
789 for (nvp = nvlist_next_nvpair(features, NULL);
790 nvp != NULL; nvp = nvlist_next_nvpair(features, nvp)) {
791 char *propname;
792 boolean_t found;
793 zprop_list_t *entry;
794
795 if (zfeature_is_supported(nvpair_name(nvp)))
796 continue;
797
798 propname = zfs_asprintf(hdl, "unsupported@%s",
799 nvpair_name(nvp));
800
801 /*
802 * Before adding the property to the list make sure that no
803 * other pool already added the same property.
804 */
805 found = B_FALSE;
806 entry = *plp;
807 while (entry != NULL) {
808 if (entry->pl_user_prop != NULL &&
809 strcmp(propname, entry->pl_user_prop) == 0) {
810 found = B_TRUE;
811 break;
812 }
813 entry = entry->pl_next;
814 }
815 if (found) {
816 free(propname);
817 continue;
818 }
819
820 entry = zfs_alloc(hdl, sizeof (zprop_list_t));
821 entry->pl_prop = ZPROP_INVAL;
822 entry->pl_user_prop = propname;
823 entry->pl_width = strlen(entry->pl_user_prop);
824 entry->pl_all = B_TRUE;
825
826 *last = entry;
827 last = &entry->pl_next;
828 }
829
34dc7c2f
BB
830 for (entry = *plp; entry != NULL; entry = entry->pl_next) {
831
832 if (entry->pl_fixed)
833 continue;
834
835 if (entry->pl_prop != ZPROP_INVAL &&
836 zpool_get_prop(zhp, entry->pl_prop, buf, sizeof (buf),
2a8b84b7 837 NULL, B_FALSE) == 0) {
34dc7c2f
BB
838 if (strlen(buf) > entry->pl_width)
839 entry->pl_width = strlen(buf);
840 }
841 }
842
843 return (0);
844}
845
9ae529ec
CS
846/*
847 * Get the state for the given feature on the given ZFS pool.
848 */
849int
850zpool_prop_get_feature(zpool_handle_t *zhp, const char *propname, char *buf,
851 size_t len)
852{
853 uint64_t refcount;
854 boolean_t found = B_FALSE;
855 nvlist_t *features = zpool_get_features(zhp);
856 boolean_t supported;
857 const char *feature = strchr(propname, '@') + 1;
858
859 supported = zpool_prop_feature(propname);
860 ASSERT(supported || zpool_prop_unsupported(propname));
861
862 /*
863 * Convert from feature name to feature guid. This conversion is
4e33ba4c 864 * unnecessary for unsupported@... properties because they already
9ae529ec
CS
865 * use guids.
866 */
867 if (supported) {
868 int ret;
fa86b5db 869 spa_feature_t fid;
9ae529ec 870
fa86b5db 871 ret = zfeature_lookup_name(feature, &fid);
9ae529ec
CS
872 if (ret != 0) {
873 (void) strlcpy(buf, "-", len);
874 return (ENOTSUP);
875 }
fa86b5db 876 feature = spa_feature_table[fid].fi_guid;
9ae529ec
CS
877 }
878
879 if (nvlist_lookup_uint64(features, feature, &refcount) == 0)
880 found = B_TRUE;
881
882 if (supported) {
883 if (!found) {
884 (void) strlcpy(buf, ZFS_FEATURE_DISABLED, len);
885 } else {
886 if (refcount == 0)
887 (void) strlcpy(buf, ZFS_FEATURE_ENABLED, len);
888 else
889 (void) strlcpy(buf, ZFS_FEATURE_ACTIVE, len);
890 }
891 } else {
892 if (found) {
893 if (refcount == 0) {
894 (void) strcpy(buf, ZFS_UNSUPPORTED_INACTIVE);
895 } else {
896 (void) strcpy(buf, ZFS_UNSUPPORTED_READONLY);
897 }
898 } else {
899 (void) strlcpy(buf, "-", len);
900 return (ENOTSUP);
901 }
902 }
903
904 return (0);
905}
34dc7c2f 906
9babb374
BB
907/*
908 * Don't start the slice at the default block of 34; many storage
d603ed6c
BB
909 * devices will use a stripe width of 128k, other vendors prefer a 1m
910 * alignment. It is best to play it safe and ensure a 1m alignment
613d88ed
NB
911 * given 512B blocks. When the block size is larger by a power of 2
912 * we will still be 1m aligned. Some devices are sensitive to the
913 * partition ending alignment as well.
9babb374 914 */
613d88ed
NB
915#define NEW_START_BLOCK 2048
916#define PARTITION_END_ALIGNMENT 2048
9babb374 917
34dc7c2f
BB
918/*
919 * Validate the given pool name, optionally putting an extended error message in
920 * 'buf'.
921 */
922boolean_t
923zpool_name_valid(libzfs_handle_t *hdl, boolean_t isopen, const char *pool)
924{
925 namecheck_err_t why;
926 char what;
927 int ret;
928
929 ret = pool_namecheck(pool, &why, &what);
930
931 /*
932 * The rules for reserved pool names were extended at a later point.
933 * But we need to support users with existing pools that may now be
934 * invalid. So we only check for this expanded set of names during a
935 * create (or import), and only in userland.
936 */
937 if (ret == 0 && !isopen &&
938 (strncmp(pool, "mirror", 6) == 0 ||
939 strncmp(pool, "raidz", 5) == 0 ||
940 strncmp(pool, "spare", 5) == 0 ||
941 strcmp(pool, "log") == 0)) {
942 if (hdl != NULL)
943 zfs_error_aux(hdl,
944 dgettext(TEXT_DOMAIN, "name is reserved"));
945 return (B_FALSE);
946 }
947
948
949 if (ret != 0) {
950 if (hdl != NULL) {
951 switch (why) {
952 case NAME_ERR_TOOLONG:
953 zfs_error_aux(hdl,
954 dgettext(TEXT_DOMAIN, "name is too long"));
955 break;
956
957 case NAME_ERR_INVALCHAR:
958 zfs_error_aux(hdl,
959 dgettext(TEXT_DOMAIN, "invalid character "
960 "'%c' in pool name"), what);
961 break;
962
963 case NAME_ERR_NOLETTER:
964 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
965 "name must begin with a letter"));
966 break;
967
968 case NAME_ERR_RESERVED:
969 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
970 "name is reserved"));
971 break;
972
973 case NAME_ERR_DISKLIKE:
974 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
975 "pool name is reserved"));
976 break;
977
978 case NAME_ERR_LEADING_SLASH:
979 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
980 "leading slash in name"));
981 break;
982
983 case NAME_ERR_EMPTY_COMPONENT:
984 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
985 "empty component in name"));
986 break;
987
988 case NAME_ERR_TRAILING_SLASH:
989 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
990 "trailing slash in name"));
991 break;
992
aeacdefe 993 case NAME_ERR_MULTIPLE_DELIMITERS:
34dc7c2f 994 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
aeacdefe
GM
995 "multiple '@' and/or '#' delimiters in "
996 "name"));
34dc7c2f 997 break;
e75c13c3
BB
998 case NAME_ERR_NO_AT:
999 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1000 "permission set is missing '@'"));
1001 break;
34dc7c2f
BB
1002 }
1003 }
1004 return (B_FALSE);
1005 }
1006
1007 return (B_TRUE);
1008}
1009
1010/*
1011 * Open a handle to the given pool, even if the pool is currently in the FAULTED
1012 * state.
1013 */
1014zpool_handle_t *
1015zpool_open_canfail(libzfs_handle_t *hdl, const char *pool)
1016{
1017 zpool_handle_t *zhp;
1018 boolean_t missing;
1019
1020 /*
1021 * Make sure the pool name is valid.
1022 */
1023 if (!zpool_name_valid(hdl, B_TRUE, pool)) {
1024 (void) zfs_error_fmt(hdl, EZFS_INVALIDNAME,
1025 dgettext(TEXT_DOMAIN, "cannot open '%s'"),
1026 pool);
1027 return (NULL);
1028 }
1029
1030 if ((zhp = zfs_alloc(hdl, sizeof (zpool_handle_t))) == NULL)
1031 return (NULL);
1032
1033 zhp->zpool_hdl = hdl;
1034 (void) strlcpy(zhp->zpool_name, pool, sizeof (zhp->zpool_name));
1035
1036 if (zpool_refresh_stats(zhp, &missing) != 0) {
1037 zpool_close(zhp);
1038 return (NULL);
1039 }
1040
1041 if (missing) {
1042 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "no such pool"));
1043 (void) zfs_error_fmt(hdl, EZFS_NOENT,
1044 dgettext(TEXT_DOMAIN, "cannot open '%s'"), pool);
1045 zpool_close(zhp);
1046 return (NULL);
1047 }
1048
1049 return (zhp);
1050}
1051
1052/*
1053 * Like the above, but silent on error. Used when iterating over pools (because
1054 * the configuration cache may be out of date).
1055 */
1056int
1057zpool_open_silent(libzfs_handle_t *hdl, const char *pool, zpool_handle_t **ret)
1058{
1059 zpool_handle_t *zhp;
1060 boolean_t missing;
1061
1062 if ((zhp = zfs_alloc(hdl, sizeof (zpool_handle_t))) == NULL)
1063 return (-1);
1064
1065 zhp->zpool_hdl = hdl;
1066 (void) strlcpy(zhp->zpool_name, pool, sizeof (zhp->zpool_name));
1067
1068 if (zpool_refresh_stats(zhp, &missing) != 0) {
1069 zpool_close(zhp);
1070 return (-1);
1071 }
1072
1073 if (missing) {
1074 zpool_close(zhp);
1075 *ret = NULL;
1076 return (0);
1077 }
1078
1079 *ret = zhp;
1080 return (0);
1081}
1082
1083/*
1084 * Similar to zpool_open_canfail(), but refuses to open pools in the faulted
1085 * state.
1086 */
1087zpool_handle_t *
1088zpool_open(libzfs_handle_t *hdl, const char *pool)
1089{
1090 zpool_handle_t *zhp;
1091
1092 if ((zhp = zpool_open_canfail(hdl, pool)) == NULL)
1093 return (NULL);
1094
1095 if (zhp->zpool_state == POOL_STATE_UNAVAIL) {
1096 (void) zfs_error_fmt(hdl, EZFS_POOLUNAVAIL,
1097 dgettext(TEXT_DOMAIN, "cannot open '%s'"), zhp->zpool_name);
1098 zpool_close(zhp);
1099 return (NULL);
1100 }
1101
1102 return (zhp);
1103}
1104
1105/*
1106 * Close the handle. Simply frees the memory associated with the handle.
1107 */
1108void
1109zpool_close(zpool_handle_t *zhp)
1110{
8a5fc748
JJS
1111 nvlist_free(zhp->zpool_config);
1112 nvlist_free(zhp->zpool_old_config);
1113 nvlist_free(zhp->zpool_props);
34dc7c2f
BB
1114 free(zhp);
1115}
1116
1117/*
1118 * Return the name of the pool.
1119 */
1120const char *
1121zpool_get_name(zpool_handle_t *zhp)
1122{
1123 return (zhp->zpool_name);
1124}
1125
1126
1127/*
1128 * Return the state of the pool (ACTIVE or UNAVAILABLE)
1129 */
1130int
1131zpool_get_state(zpool_handle_t *zhp)
1132{
1133 return (zhp->zpool_state);
1134}
1135
1136/*
1137 * Create the named pool, using the provided vdev list. It is assumed
1138 * that the consumer has already validated the contents of the nvlist, so we
1139 * don't have to worry about error semantics.
1140 */
1141int
1142zpool_create(libzfs_handle_t *hdl, const char *pool, nvlist_t *nvroot,
b128c09f 1143 nvlist_t *props, nvlist_t *fsprops)
34dc7c2f 1144{
13fe0198 1145 zfs_cmd_t zc = {"\0"};
b128c09f
BB
1146 nvlist_t *zc_fsprops = NULL;
1147 nvlist_t *zc_props = NULL;
34dc7c2f 1148 char msg[1024];
b128c09f 1149 int ret = -1;
34dc7c2f
BB
1150
1151 (void) snprintf(msg, sizeof (msg), dgettext(TEXT_DOMAIN,
1152 "cannot create '%s'"), pool);
1153
1154 if (!zpool_name_valid(hdl, B_FALSE, pool))
1155 return (zfs_error(hdl, EZFS_INVALIDNAME, msg));
1156
1157 if (zcmd_write_conf_nvlist(hdl, &zc, nvroot) != 0)
1158 return (-1);
1159
b128c09f 1160 if (props) {
572e2857
BB
1161 prop_flags_t flags = { .create = B_TRUE, .import = B_FALSE };
1162
b128c09f 1163 if ((zc_props = zpool_valid_proplist(hdl, pool, props,
572e2857 1164 SPA_VERSION_1, flags, msg)) == NULL) {
b128c09f
BB
1165 goto create_failed;
1166 }
1167 }
34dc7c2f 1168
b128c09f
BB
1169 if (fsprops) {
1170 uint64_t zoned;
1171 char *zonestr;
1172
1173 zoned = ((nvlist_lookup_string(fsprops,
1174 zfs_prop_to_name(ZFS_PROP_ZONED), &zonestr) == 0) &&
1175 strcmp(zonestr, "on") == 0);
1176
82f6f6e6
JS
1177 if ((zc_fsprops = zfs_valid_proplist(hdl, ZFS_TYPE_FILESYSTEM,
1178 fsprops, zoned, NULL, NULL, msg)) == NULL) {
b128c09f
BB
1179 goto create_failed;
1180 }
1181 if (!zc_props &&
1182 (nvlist_alloc(&zc_props, NV_UNIQUE_NAME, 0) != 0)) {
1183 goto create_failed;
1184 }
1185 if (nvlist_add_nvlist(zc_props,
1186 ZPOOL_ROOTFS_PROPS, zc_fsprops) != 0) {
1187 goto create_failed;
1188 }
34dc7c2f
BB
1189 }
1190
b128c09f
BB
1191 if (zc_props && zcmd_write_src_nvlist(hdl, &zc, zc_props) != 0)
1192 goto create_failed;
1193
34dc7c2f
BB
1194 (void) strlcpy(zc.zc_name, pool, sizeof (zc.zc_name));
1195
b128c09f 1196 if ((ret = zfs_ioctl(hdl, ZFS_IOC_POOL_CREATE, &zc)) != 0) {
34dc7c2f
BB
1197
1198 zcmd_free_nvlists(&zc);
b128c09f
BB
1199 nvlist_free(zc_props);
1200 nvlist_free(zc_fsprops);
34dc7c2f
BB
1201
1202 switch (errno) {
1203 case EBUSY:
1204 /*
1205 * This can happen if the user has specified the same
1206 * device multiple times. We can't reliably detect this
1207 * until we try to add it and see we already have a
d603ed6c
BB
1208 * label. This can also happen under if the device is
1209 * part of an active md or lvm device.
34dc7c2f
BB
1210 */
1211 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
d1d7e268
MK
1212 "one or more vdevs refer to the same device, or "
1213 "one of\nthe devices is part of an active md or "
1214 "lvm device"));
34dc7c2f
BB
1215 return (zfs_error(hdl, EZFS_BADDEV, msg));
1216
82f6f6e6
JS
1217 case ERANGE:
1218 /*
1219 * This happens if the record size is smaller or larger
1220 * than the allowed size range, or not a power of 2.
1221 *
1222 * NOTE: although zfs_valid_proplist is called earlier,
1223 * this case may have slipped through since the
1224 * pool does not exist yet and it is therefore
1225 * impossible to read properties e.g. max blocksize
1226 * from the pool.
1227 */
1228 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1229 "record size invalid"));
1230 return (zfs_error(hdl, EZFS_BADPROP, msg));
1231
34dc7c2f
BB
1232 case EOVERFLOW:
1233 /*
1234 * This occurs when one of the devices is below
1235 * SPA_MINDEVSIZE. Unfortunately, we can't detect which
1236 * device was the problem device since there's no
1237 * reliable way to determine device size from userland.
1238 */
1239 {
1240 char buf[64];
1241
1242 zfs_nicenum(SPA_MINDEVSIZE, buf, sizeof (buf));
1243
1244 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1245 "one or more devices is less than the "
1246 "minimum size (%s)"), buf);
1247 }
1248 return (zfs_error(hdl, EZFS_BADDEV, msg));
1249
1250 case ENOSPC:
1251 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1252 "one or more devices is out of space"));
1253 return (zfs_error(hdl, EZFS_BADDEV, msg));
1254
1255 case ENOTBLK:
1256 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1257 "cache device must be a disk or disk slice"));
1258 return (zfs_error(hdl, EZFS_BADDEV, msg));
1259
1260 default:
1261 return (zpool_standard_error(hdl, errno, msg));
1262 }
1263 }
1264
b128c09f 1265create_failed:
34dc7c2f 1266 zcmd_free_nvlists(&zc);
b128c09f
BB
1267 nvlist_free(zc_props);
1268 nvlist_free(zc_fsprops);
1269 return (ret);
34dc7c2f
BB
1270}
1271
1272/*
1273 * Destroy the given pool. It is up to the caller to ensure that there are no
1274 * datasets left in the pool.
1275 */
1276int
6f1ffb06 1277zpool_destroy(zpool_handle_t *zhp, const char *log_str)
34dc7c2f 1278{
13fe0198 1279 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
1280 zfs_handle_t *zfp = NULL;
1281 libzfs_handle_t *hdl = zhp->zpool_hdl;
1282 char msg[1024];
1283
1284 if (zhp->zpool_state == POOL_STATE_ACTIVE &&
572e2857 1285 (zfp = zfs_open(hdl, zhp->zpool_name, ZFS_TYPE_FILESYSTEM)) == NULL)
34dc7c2f
BB
1286 return (-1);
1287
34dc7c2f 1288 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
6f1ffb06 1289 zc.zc_history = (uint64_t)(uintptr_t)log_str;
34dc7c2f 1290
572e2857 1291 if (zfs_ioctl(hdl, ZFS_IOC_POOL_DESTROY, &zc) != 0) {
34dc7c2f
BB
1292 (void) snprintf(msg, sizeof (msg), dgettext(TEXT_DOMAIN,
1293 "cannot destroy '%s'"), zhp->zpool_name);
1294
1295 if (errno == EROFS) {
1296 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1297 "one or more devices is read only"));
1298 (void) zfs_error(hdl, EZFS_BADDEV, msg);
1299 } else {
1300 (void) zpool_standard_error(hdl, errno, msg);
1301 }
1302
1303 if (zfp)
1304 zfs_close(zfp);
1305 return (-1);
1306 }
1307
1308 if (zfp) {
1309 remove_mountpoint(zfp);
1310 zfs_close(zfp);
1311 }
1312
1313 return (0);
1314}
1315
1316/*
1317 * Add the given vdevs to the pool. The caller must have already performed the
1318 * necessary verification to ensure that the vdev specification is well-formed.
1319 */
1320int
1321zpool_add(zpool_handle_t *zhp, nvlist_t *nvroot)
1322{
13fe0198 1323 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
1324 int ret;
1325 libzfs_handle_t *hdl = zhp->zpool_hdl;
1326 char msg[1024];
1327 nvlist_t **spares, **l2cache;
1328 uint_t nspares, nl2cache;
1329
1330 (void) snprintf(msg, sizeof (msg), dgettext(TEXT_DOMAIN,
1331 "cannot add to '%s'"), zhp->zpool_name);
1332
1333 if (zpool_get_prop_int(zhp, ZPOOL_PROP_VERSION, NULL) <
1334 SPA_VERSION_SPARES &&
1335 nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
1336 &spares, &nspares) == 0) {
1337 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "pool must be "
1338 "upgraded to add hot spares"));
1339 return (zfs_error(hdl, EZFS_BADVERSION, msg));
1340 }
1341
1342 if (zpool_get_prop_int(zhp, ZPOOL_PROP_VERSION, NULL) <
1343 SPA_VERSION_L2CACHE &&
1344 nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE,
1345 &l2cache, &nl2cache) == 0) {
1346 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "pool must be "
1347 "upgraded to add cache devices"));
1348 return (zfs_error(hdl, EZFS_BADVERSION, msg));
1349 }
1350
1351 if (zcmd_write_conf_nvlist(hdl, &zc, nvroot) != 0)
1352 return (-1);
1353 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
1354
572e2857 1355 if (zfs_ioctl(hdl, ZFS_IOC_VDEV_ADD, &zc) != 0) {
34dc7c2f
BB
1356 switch (errno) {
1357 case EBUSY:
1358 /*
1359 * This can happen if the user has specified the same
1360 * device multiple times. We can't reliably detect this
1361 * until we try to add it and see we already have a
1362 * label.
1363 */
1364 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1365 "one or more vdevs refer to the same device"));
1366 (void) zfs_error(hdl, EZFS_BADDEV, msg);
1367 break;
1368
1369 case EOVERFLOW:
1370 /*
1371 * This occurrs when one of the devices is below
1372 * SPA_MINDEVSIZE. Unfortunately, we can't detect which
1373 * device was the problem device since there's no
1374 * reliable way to determine device size from userland.
1375 */
1376 {
1377 char buf[64];
1378
1379 zfs_nicenum(SPA_MINDEVSIZE, buf, sizeof (buf));
1380
1381 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1382 "device is less than the minimum "
1383 "size (%s)"), buf);
1384 }
1385 (void) zfs_error(hdl, EZFS_BADDEV, msg);
1386 break;
1387
1388 case ENOTSUP:
1389 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1390 "pool must be upgraded to add these vdevs"));
1391 (void) zfs_error(hdl, EZFS_BADVERSION, msg);
1392 break;
1393
34dc7c2f
BB
1394 case ENOTBLK:
1395 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1396 "cache device must be a disk or disk slice"));
1397 (void) zfs_error(hdl, EZFS_BADDEV, msg);
1398 break;
1399
1400 default:
1401 (void) zpool_standard_error(hdl, errno, msg);
1402 }
1403
1404 ret = -1;
1405 } else {
1406 ret = 0;
1407 }
1408
1409 zcmd_free_nvlists(&zc);
1410
1411 return (ret);
1412}
1413
1414/*
1415 * Exports the pool from the system. The caller must ensure that there are no
1416 * mounted datasets in the pool.
1417 */
6f1ffb06
MA
1418static int
1419zpool_export_common(zpool_handle_t *zhp, boolean_t force, boolean_t hardforce,
1420 const char *log_str)
34dc7c2f 1421{
13fe0198 1422 zfs_cmd_t zc = {"\0"};
b128c09f 1423 char msg[1024];
34dc7c2f 1424
b128c09f
BB
1425 (void) snprintf(msg, sizeof (msg), dgettext(TEXT_DOMAIN,
1426 "cannot export '%s'"), zhp->zpool_name);
1427
34dc7c2f 1428 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
b128c09f 1429 zc.zc_cookie = force;
fb5f0bc8 1430 zc.zc_guid = hardforce;
6f1ffb06 1431 zc.zc_history = (uint64_t)(uintptr_t)log_str;
b128c09f
BB
1432
1433 if (zfs_ioctl(zhp->zpool_hdl, ZFS_IOC_POOL_EXPORT, &zc) != 0) {
1434 switch (errno) {
1435 case EXDEV:
1436 zfs_error_aux(zhp->zpool_hdl, dgettext(TEXT_DOMAIN,
1437 "use '-f' to override the following errors:\n"
1438 "'%s' has an active shared spare which could be"
1439 " used by other pools once '%s' is exported."),
1440 zhp->zpool_name, zhp->zpool_name);
1441 return (zfs_error(zhp->zpool_hdl, EZFS_ACTIVE_SPARE,
1442 msg));
1443 default:
1444 return (zpool_standard_error_fmt(zhp->zpool_hdl, errno,
1445 msg));
1446 }
1447 }
34dc7c2f 1448
34dc7c2f
BB
1449 return (0);
1450}
1451
fb5f0bc8 1452int
6f1ffb06 1453zpool_export(zpool_handle_t *zhp, boolean_t force, const char *log_str)
fb5f0bc8 1454{
6f1ffb06 1455 return (zpool_export_common(zhp, force, B_FALSE, log_str));
fb5f0bc8
BB
1456}
1457
1458int
6f1ffb06 1459zpool_export_force(zpool_handle_t *zhp, const char *log_str)
fb5f0bc8 1460{
6f1ffb06 1461 return (zpool_export_common(zhp, B_TRUE, B_TRUE, log_str));
fb5f0bc8
BB
1462}
1463
428870ff
BB
1464static void
1465zpool_rewind_exclaim(libzfs_handle_t *hdl, const char *name, boolean_t dryrun,
572e2857 1466 nvlist_t *config)
428870ff 1467{
572e2857 1468 nvlist_t *nv = NULL;
428870ff
BB
1469 uint64_t rewindto;
1470 int64_t loss = -1;
1471 struct tm t;
1472 char timestr[128];
1473
572e2857
BB
1474 if (!hdl->libzfs_printerr || config == NULL)
1475 return;
1476
9ae529ec
CS
1477 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_LOAD_INFO, &nv) != 0 ||
1478 nvlist_lookup_nvlist(nv, ZPOOL_CONFIG_REWIND_INFO, &nv) != 0) {
428870ff 1479 return;
9ae529ec 1480 }
428870ff 1481
572e2857 1482 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_LOAD_TIME, &rewindto) != 0)
428870ff 1483 return;
572e2857 1484 (void) nvlist_lookup_int64(nv, ZPOOL_CONFIG_REWIND_TIME, &loss);
428870ff
BB
1485
1486 if (localtime_r((time_t *)&rewindto, &t) != NULL &&
b8864a23 1487 strftime(timestr, 128, "%c", &t) != 0) {
428870ff
BB
1488 if (dryrun) {
1489 (void) printf(dgettext(TEXT_DOMAIN,
1490 "Would be able to return %s "
1491 "to its state as of %s.\n"),
1492 name, timestr);
1493 } else {
1494 (void) printf(dgettext(TEXT_DOMAIN,
1495 "Pool %s returned to its state as of %s.\n"),
1496 name, timestr);
1497 }
1498 if (loss > 120) {
1499 (void) printf(dgettext(TEXT_DOMAIN,
1500 "%s approximately %lld "),
1501 dryrun ? "Would discard" : "Discarded",
b8864a23 1502 ((longlong_t)loss + 30) / 60);
428870ff
BB
1503 (void) printf(dgettext(TEXT_DOMAIN,
1504 "minutes of transactions.\n"));
1505 } else if (loss > 0) {
1506 (void) printf(dgettext(TEXT_DOMAIN,
1507 "%s approximately %lld "),
b8864a23
BB
1508 dryrun ? "Would discard" : "Discarded",
1509 (longlong_t)loss);
428870ff
BB
1510 (void) printf(dgettext(TEXT_DOMAIN,
1511 "seconds of transactions.\n"));
1512 }
1513 }
1514}
1515
1516void
1517zpool_explain_recover(libzfs_handle_t *hdl, const char *name, int reason,
1518 nvlist_t *config)
1519{
572e2857 1520 nvlist_t *nv = NULL;
428870ff
BB
1521 int64_t loss = -1;
1522 uint64_t edata = UINT64_MAX;
1523 uint64_t rewindto;
1524 struct tm t;
1525 char timestr[128];
1526
1527 if (!hdl->libzfs_printerr)
1528 return;
1529
1530 if (reason >= 0)
1531 (void) printf(dgettext(TEXT_DOMAIN, "action: "));
1532 else
1533 (void) printf(dgettext(TEXT_DOMAIN, "\t"));
1534
1535 /* All attempted rewinds failed if ZPOOL_CONFIG_LOAD_TIME missing */
572e2857 1536 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_LOAD_INFO, &nv) != 0 ||
9ae529ec 1537 nvlist_lookup_nvlist(nv, ZPOOL_CONFIG_REWIND_INFO, &nv) != 0 ||
572e2857 1538 nvlist_lookup_uint64(nv, ZPOOL_CONFIG_LOAD_TIME, &rewindto) != 0)
428870ff
BB
1539 goto no_info;
1540
572e2857
BB
1541 (void) nvlist_lookup_int64(nv, ZPOOL_CONFIG_REWIND_TIME, &loss);
1542 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_LOAD_DATA_ERRORS,
428870ff
BB
1543 &edata);
1544
1545 (void) printf(dgettext(TEXT_DOMAIN,
1546 "Recovery is possible, but will result in some data loss.\n"));
1547
1548 if (localtime_r((time_t *)&rewindto, &t) != NULL &&
b8864a23 1549 strftime(timestr, 128, "%c", &t) != 0) {
428870ff
BB
1550 (void) printf(dgettext(TEXT_DOMAIN,
1551 "\tReturning the pool to its state as of %s\n"
1552 "\tshould correct the problem. "),
1553 timestr);
1554 } else {
1555 (void) printf(dgettext(TEXT_DOMAIN,
1556 "\tReverting the pool to an earlier state "
1557 "should correct the problem.\n\t"));
1558 }
1559
1560 if (loss > 120) {
1561 (void) printf(dgettext(TEXT_DOMAIN,
1562 "Approximately %lld minutes of data\n"
b8864a23
BB
1563 "\tmust be discarded, irreversibly. "),
1564 ((longlong_t)loss + 30) / 60);
428870ff
BB
1565 } else if (loss > 0) {
1566 (void) printf(dgettext(TEXT_DOMAIN,
1567 "Approximately %lld seconds of data\n"
b8864a23
BB
1568 "\tmust be discarded, irreversibly. "),
1569 (longlong_t)loss);
428870ff
BB
1570 }
1571 if (edata != 0 && edata != UINT64_MAX) {
1572 if (edata == 1) {
1573 (void) printf(dgettext(TEXT_DOMAIN,
1574 "After rewind, at least\n"
1575 "\tone persistent user-data error will remain. "));
1576 } else {
1577 (void) printf(dgettext(TEXT_DOMAIN,
1578 "After rewind, several\n"
1579 "\tpersistent user-data errors will remain. "));
1580 }
1581 }
1582 (void) printf(dgettext(TEXT_DOMAIN,
1583 "Recovery can be attempted\n\tby executing 'zpool %s -F %s'. "),
1584 reason >= 0 ? "clear" : "import", name);
1585
1586 (void) printf(dgettext(TEXT_DOMAIN,
1587 "A scrub of the pool\n"
1588 "\tis strongly recommended after recovery.\n"));
1589 return;
1590
1591no_info:
1592 (void) printf(dgettext(TEXT_DOMAIN,
1593 "Destroy and re-create the pool from\n\ta backup source.\n"));
1594}
1595
34dc7c2f
BB
1596/*
1597 * zpool_import() is a contracted interface. Should be kept the same
1598 * if possible.
1599 *
1600 * Applications should use zpool_import_props() to import a pool with
1601 * new properties value to be set.
1602 */
1603int
1604zpool_import(libzfs_handle_t *hdl, nvlist_t *config, const char *newname,
1605 char *altroot)
1606{
1607 nvlist_t *props = NULL;
1608 int ret;
1609
1610 if (altroot != NULL) {
1611 if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) {
1612 return (zfs_error_fmt(hdl, EZFS_NOMEM,
1613 dgettext(TEXT_DOMAIN, "cannot import '%s'"),
1614 newname));
1615 }
1616
1617 if (nvlist_add_string(props,
fb5f0bc8
BB
1618 zpool_prop_to_name(ZPOOL_PROP_ALTROOT), altroot) != 0 ||
1619 nvlist_add_string(props,
1620 zpool_prop_to_name(ZPOOL_PROP_CACHEFILE), "none") != 0) {
34dc7c2f
BB
1621 nvlist_free(props);
1622 return (zfs_error_fmt(hdl, EZFS_NOMEM,
1623 dgettext(TEXT_DOMAIN, "cannot import '%s'"),
1624 newname));
1625 }
1626 }
1627
572e2857
BB
1628 ret = zpool_import_props(hdl, config, newname, props,
1629 ZFS_IMPORT_NORMAL);
8a5fc748 1630 nvlist_free(props);
34dc7c2f
BB
1631 return (ret);
1632}
1633
572e2857
BB
1634static void
1635print_vdev_tree(libzfs_handle_t *hdl, const char *name, nvlist_t *nv,
1636 int indent)
1637{
1638 nvlist_t **child;
1639 uint_t c, children;
1640 char *vname;
1641 uint64_t is_log = 0;
1642
1643 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_IS_LOG,
1644 &is_log);
1645
1646 if (name != NULL)
1647 (void) printf("\t%*s%s%s\n", indent, "", name,
1648 is_log ? " [log]" : "");
1649
1650 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
1651 &child, &children) != 0)
1652 return;
1653
1654 for (c = 0; c < children; c++) {
d2f3e292 1655 vname = zpool_vdev_name(hdl, NULL, child[c], VDEV_NAME_TYPE_ID);
572e2857
BB
1656 print_vdev_tree(hdl, vname, child[c], indent + 2);
1657 free(vname);
1658 }
1659}
1660
9ae529ec
CS
1661void
1662zpool_print_unsup_feat(nvlist_t *config)
1663{
1664 nvlist_t *nvinfo, *unsup_feat;
1665 nvpair_t *nvp;
1666
1667 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_LOAD_INFO, &nvinfo) ==
1668 0);
1669 verify(nvlist_lookup_nvlist(nvinfo, ZPOOL_CONFIG_UNSUP_FEAT,
1670 &unsup_feat) == 0);
1671
1672 for (nvp = nvlist_next_nvpair(unsup_feat, NULL); nvp != NULL;
1673 nvp = nvlist_next_nvpair(unsup_feat, nvp)) {
1674 char *desc;
1675
1676 verify(nvpair_type(nvp) == DATA_TYPE_STRING);
1677 verify(nvpair_value_string(nvp, &desc) == 0);
1678
1679 if (strlen(desc) > 0)
1680 (void) printf("\t%s (%s)\n", nvpair_name(nvp), desc);
1681 else
1682 (void) printf("\t%s\n", nvpair_name(nvp));
1683 }
1684}
1685
34dc7c2f
BB
1686/*
1687 * Import the given pool using the known configuration and a list of
1688 * properties to be set. The configuration should have come from
1689 * zpool_find_import(). The 'newname' parameters control whether the pool
1690 * is imported with a different name.
1691 */
1692int
1693zpool_import_props(libzfs_handle_t *hdl, nvlist_t *config, const char *newname,
572e2857 1694 nvlist_t *props, int flags)
34dc7c2f 1695{
13fe0198 1696 zfs_cmd_t zc = {"\0"};
428870ff 1697 zpool_rewind_policy_t policy;
572e2857
BB
1698 nvlist_t *nv = NULL;
1699 nvlist_t *nvinfo = NULL;
1700 nvlist_t *missing = NULL;
34dc7c2f
BB
1701 char *thename;
1702 char *origname;
1703 int ret;
572e2857 1704 int error = 0;
34dc7c2f
BB
1705 char errbuf[1024];
1706
1707 verify(nvlist_lookup_string(config, ZPOOL_CONFIG_POOL_NAME,
1708 &origname) == 0);
1709
1710 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
1711 "cannot import pool '%s'"), origname);
1712
1713 if (newname != NULL) {
1714 if (!zpool_name_valid(hdl, B_FALSE, newname))
1715 return (zfs_error_fmt(hdl, EZFS_INVALIDNAME,
1716 dgettext(TEXT_DOMAIN, "cannot import '%s'"),
1717 newname));
1718 thename = (char *)newname;
1719 } else {
1720 thename = origname;
1721 }
1722
0fdd8d64 1723 if (props != NULL) {
34dc7c2f 1724 uint64_t version;
572e2857 1725 prop_flags_t flags = { .create = B_FALSE, .import = B_TRUE };
34dc7c2f
BB
1726
1727 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION,
1728 &version) == 0);
1729
b128c09f 1730 if ((props = zpool_valid_proplist(hdl, origname,
0fdd8d64 1731 props, version, flags, errbuf)) == NULL)
34dc7c2f 1732 return (-1);
0fdd8d64 1733 if (zcmd_write_src_nvlist(hdl, &zc, props) != 0) {
34dc7c2f
BB
1734 nvlist_free(props);
1735 return (-1);
1736 }
0fdd8d64 1737 nvlist_free(props);
34dc7c2f
BB
1738 }
1739
1740 (void) strlcpy(zc.zc_name, thename, sizeof (zc.zc_name));
1741
1742 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID,
1743 &zc.zc_guid) == 0);
1744
1745 if (zcmd_write_conf_nvlist(hdl, &zc, config) != 0) {
0fdd8d64 1746 zcmd_free_nvlists(&zc);
34dc7c2f
BB
1747 return (-1);
1748 }
572e2857 1749 if (zcmd_alloc_dst_nvlist(hdl, &zc, zc.zc_nvlist_conf_size * 2) != 0) {
0fdd8d64 1750 zcmd_free_nvlists(&zc);
428870ff
BB
1751 return (-1);
1752 }
34dc7c2f 1753
572e2857
BB
1754 zc.zc_cookie = flags;
1755 while ((ret = zfs_ioctl(hdl, ZFS_IOC_POOL_IMPORT, &zc)) != 0 &&
1756 errno == ENOMEM) {
1757 if (zcmd_expand_dst_nvlist(hdl, &zc) != 0) {
1758 zcmd_free_nvlists(&zc);
1759 return (-1);
1760 }
1761 }
1762 if (ret != 0)
1763 error = errno;
1764
1765 (void) zcmd_read_dst_nvlist(hdl, &zc, &nv);
0fdd8d64
MT
1766
1767 zcmd_free_nvlists(&zc);
1768
572e2857
BB
1769 zpool_get_rewind_policy(config, &policy);
1770
1771 if (error) {
34dc7c2f 1772 char desc[1024];
428870ff 1773
428870ff
BB
1774 /*
1775 * Dry-run failed, but we print out what success
1776 * looks like if we found a best txg
1777 */
572e2857 1778 if (policy.zrp_request & ZPOOL_TRY_REWIND) {
428870ff 1779 zpool_rewind_exclaim(hdl, newname ? origname : thename,
572e2857
BB
1780 B_TRUE, nv);
1781 nvlist_free(nv);
428870ff
BB
1782 return (-1);
1783 }
1784
34dc7c2f
BB
1785 if (newname == NULL)
1786 (void) snprintf(desc, sizeof (desc),
1787 dgettext(TEXT_DOMAIN, "cannot import '%s'"),
1788 thename);
1789 else
1790 (void) snprintf(desc, sizeof (desc),
1791 dgettext(TEXT_DOMAIN, "cannot import '%s' as '%s'"),
1792 origname, thename);
1793
572e2857 1794 switch (error) {
34dc7c2f 1795 case ENOTSUP:
9ae529ec
CS
1796 if (nv != NULL && nvlist_lookup_nvlist(nv,
1797 ZPOOL_CONFIG_LOAD_INFO, &nvinfo) == 0 &&
1798 nvlist_exists(nvinfo, ZPOOL_CONFIG_UNSUP_FEAT)) {
1799 (void) printf(dgettext(TEXT_DOMAIN, "This "
1800 "pool uses the following feature(s) not "
1801 "supported by this system:\n"));
1802 zpool_print_unsup_feat(nv);
1803 if (nvlist_exists(nvinfo,
1804 ZPOOL_CONFIG_CAN_RDONLY)) {
1805 (void) printf(dgettext(TEXT_DOMAIN,
1806 "All unsupported features are only "
1807 "required for writing to the pool."
1808 "\nThe pool can be imported using "
1809 "'-o readonly=on'.\n"));
1810 }
1811 }
34dc7c2f
BB
1812 /*
1813 * Unsupported version.
1814 */
1815 (void) zfs_error(hdl, EZFS_BADVERSION, desc);
1816 break;
1817
1818 case EINVAL:
1819 (void) zfs_error(hdl, EZFS_INVALCONFIG, desc);
1820 break;
1821
428870ff
BB
1822 case EROFS:
1823 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1824 "one or more devices is read only"));
1825 (void) zfs_error(hdl, EZFS_BADDEV, desc);
1826 break;
1827
572e2857
BB
1828 case ENXIO:
1829 if (nv && nvlist_lookup_nvlist(nv,
1830 ZPOOL_CONFIG_LOAD_INFO, &nvinfo) == 0 &&
1831 nvlist_lookup_nvlist(nvinfo,
1832 ZPOOL_CONFIG_MISSING_DEVICES, &missing) == 0) {
1833 (void) printf(dgettext(TEXT_DOMAIN,
1834 "The devices below are missing, use "
1835 "'-m' to import the pool anyway:\n"));
1836 print_vdev_tree(hdl, NULL, missing, 2);
1837 (void) printf("\n");
1838 }
1839 (void) zpool_standard_error(hdl, error, desc);
1840 break;
1841
1842 case EEXIST:
1843 (void) zpool_standard_error(hdl, error, desc);
1844 break;
1845
abe5b8fb
BB
1846 case EBUSY:
1847 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1848 "one or more devices are already in use\n"));
1849 (void) zfs_error(hdl, EZFS_BADDEV, desc);
1850 break;
d1d19c78
PD
1851 case ENAMETOOLONG:
1852 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1853 "new name of at least one dataset is longer than "
1854 "the maximum allowable length"));
1855 (void) zfs_error(hdl, EZFS_NAMETOOLONG, desc);
1856 break;
34dc7c2f 1857 default:
572e2857 1858 (void) zpool_standard_error(hdl, error, desc);
428870ff 1859 zpool_explain_recover(hdl,
572e2857 1860 newname ? origname : thename, -error, nv);
428870ff 1861 break;
34dc7c2f
BB
1862 }
1863
572e2857 1864 nvlist_free(nv);
34dc7c2f
BB
1865 ret = -1;
1866 } else {
1867 zpool_handle_t *zhp;
1868
1869 /*
1870 * This should never fail, but play it safe anyway.
1871 */
428870ff 1872 if (zpool_open_silent(hdl, thename, &zhp) != 0)
34dc7c2f 1873 ret = -1;
428870ff 1874 else if (zhp != NULL)
34dc7c2f 1875 zpool_close(zhp);
428870ff
BB
1876 if (policy.zrp_request &
1877 (ZPOOL_DO_REWIND | ZPOOL_TRY_REWIND)) {
1878 zpool_rewind_exclaim(hdl, newname ? origname : thename,
572e2857 1879 ((policy.zrp_request & ZPOOL_TRY_REWIND) != 0), nv);
34dc7c2f 1880 }
572e2857 1881 nvlist_free(nv);
428870ff 1882 return (0);
34dc7c2f
BB
1883 }
1884
34dc7c2f
BB
1885 return (ret);
1886}
1887
1888/*
428870ff 1889 * Scan the pool.
34dc7c2f
BB
1890 */
1891int
428870ff 1892zpool_scan(zpool_handle_t *zhp, pool_scan_func_t func)
34dc7c2f 1893{
13fe0198 1894 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
1895 char msg[1024];
1896 libzfs_handle_t *hdl = zhp->zpool_hdl;
1897
1898 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
428870ff 1899 zc.zc_cookie = func;
34dc7c2f 1900
572e2857 1901 if (zfs_ioctl(hdl, ZFS_IOC_POOL_SCAN, &zc) == 0 ||
428870ff 1902 (errno == ENOENT && func != POOL_SCAN_NONE))
34dc7c2f
BB
1903 return (0);
1904
428870ff
BB
1905 if (func == POOL_SCAN_SCRUB) {
1906 (void) snprintf(msg, sizeof (msg),
1907 dgettext(TEXT_DOMAIN, "cannot scrub %s"), zc.zc_name);
1908 } else if (func == POOL_SCAN_NONE) {
1909 (void) snprintf(msg, sizeof (msg),
1910 dgettext(TEXT_DOMAIN, "cannot cancel scrubbing %s"),
1911 zc.zc_name);
1912 } else {
1913 assert(!"unexpected result");
1914 }
34dc7c2f 1915
428870ff
BB
1916 if (errno == EBUSY) {
1917 nvlist_t *nvroot;
1918 pool_scan_stat_t *ps = NULL;
1919 uint_t psc;
1920
1921 verify(nvlist_lookup_nvlist(zhp->zpool_config,
1922 ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
1923 (void) nvlist_lookup_uint64_array(nvroot,
1924 ZPOOL_CONFIG_SCAN_STATS, (uint64_t **)&ps, &psc);
1925 if (ps && ps->pss_func == POOL_SCAN_SCRUB)
1926 return (zfs_error(hdl, EZFS_SCRUBBING, msg));
1927 else
1928 return (zfs_error(hdl, EZFS_RESILVERING, msg));
1929 } else if (errno == ENOENT) {
1930 return (zfs_error(hdl, EZFS_NO_SCRUB, msg));
1931 } else {
34dc7c2f 1932 return (zpool_standard_error(hdl, errno, msg));
428870ff
BB
1933 }
1934}
1935
34dc7c2f 1936/*
9babb374
BB
1937 * Find a vdev that matches the search criteria specified. We use the
1938 * the nvpair name to determine how we should look for the device.
34dc7c2f
BB
1939 * 'avail_spare' is set to TRUE if the provided guid refers to an AVAIL
1940 * spare; but FALSE if its an INUSE spare.
1941 */
1942static nvlist_t *
9babb374
BB
1943vdev_to_nvlist_iter(nvlist_t *nv, nvlist_t *search, boolean_t *avail_spare,
1944 boolean_t *l2cache, boolean_t *log)
34dc7c2f
BB
1945{
1946 uint_t c, children;
1947 nvlist_t **child;
34dc7c2f 1948 nvlist_t *ret;
b128c09f 1949 uint64_t is_log;
9babb374
BB
1950 char *srchkey;
1951 nvpair_t *pair = nvlist_next_nvpair(search, NULL);
1952
1953 /* Nothing to look for */
1954 if (search == NULL || pair == NULL)
1955 return (NULL);
1956
1957 /* Obtain the key we will use to search */
1958 srchkey = nvpair_name(pair);
1959
1960 switch (nvpair_type(pair)) {
572e2857 1961 case DATA_TYPE_UINT64:
9babb374 1962 if (strcmp(srchkey, ZPOOL_CONFIG_GUID) == 0) {
572e2857
BB
1963 uint64_t srchval, theguid;
1964
1965 verify(nvpair_value_uint64(pair, &srchval) == 0);
1966 verify(nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID,
1967 &theguid) == 0);
1968 if (theguid == srchval)
1969 return (nv);
9babb374
BB
1970 }
1971 break;
9babb374
BB
1972
1973 case DATA_TYPE_STRING: {
1974 char *srchval, *val;
1975
1976 verify(nvpair_value_string(pair, &srchval) == 0);
1977 if (nvlist_lookup_string(nv, srchkey, &val) != 0)
1978 break;
34dc7c2f 1979
9babb374 1980 /*
428870ff
BB
1981 * Search for the requested value. Special cases:
1982 *
eac47204
BB
1983 * - ZPOOL_CONFIG_PATH for whole disk entries. These end in
1984 * "-part1", or "p1". The suffix is hidden from the user,
1985 * but included in the string, so this matches around it.
1986 * - ZPOOL_CONFIG_PATH for short names zfs_strcmp_shortname()
1987 * is used to check all possible expanded paths.
428870ff
BB
1988 * - looking for a top-level vdev name (i.e. ZPOOL_CONFIG_TYPE).
1989 *
1990 * Otherwise, all other searches are simple string compares.
9babb374 1991 */
a2c6816c 1992 if (strcmp(srchkey, ZPOOL_CONFIG_PATH) == 0) {
9babb374
BB
1993 uint64_t wholedisk = 0;
1994
1995 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_WHOLE_DISK,
1996 &wholedisk);
eac47204
BB
1997 if (zfs_strcmp_pathname(srchval, val, wholedisk) == 0)
1998 return (nv);
428870ff 1999
428870ff
BB
2000 } else if (strcmp(srchkey, ZPOOL_CONFIG_TYPE) == 0 && val) {
2001 char *type, *idx, *end, *p;
2002 uint64_t id, vdev_id;
2003
2004 /*
2005 * Determine our vdev type, keeping in mind
2006 * that the srchval is composed of a type and
2007 * vdev id pair (i.e. mirror-4).
2008 */
2009 if ((type = strdup(srchval)) == NULL)
2010 return (NULL);
2011
2012 if ((p = strrchr(type, '-')) == NULL) {
2013 free(type);
2014 break;
2015 }
2016 idx = p + 1;
2017 *p = '\0';
2018
2019 /*
2020 * If the types don't match then keep looking.
2021 */
2022 if (strncmp(val, type, strlen(val)) != 0) {
2023 free(type);
2024 break;
2025 }
2026
2027 verify(strncmp(type, VDEV_TYPE_RAIDZ,
2028 strlen(VDEV_TYPE_RAIDZ)) == 0 ||
2029 strncmp(type, VDEV_TYPE_MIRROR,
2030 strlen(VDEV_TYPE_MIRROR)) == 0);
2031 verify(nvlist_lookup_uint64(nv, ZPOOL_CONFIG_ID,
2032 &id) == 0);
2033
2034 errno = 0;
2035 vdev_id = strtoull(idx, &end, 10);
2036
2037 free(type);
2038 if (errno != 0)
2039 return (NULL);
2040
2041 /*
2042 * Now verify that we have the correct vdev id.
2043 */
2044 if (vdev_id == id)
2045 return (nv);
9babb374 2046 }
34dc7c2f 2047
34dc7c2f 2048 /*
9babb374 2049 * Common case
34dc7c2f 2050 */
9babb374 2051 if (strcmp(srchval, val) == 0)
34dc7c2f 2052 return (nv);
9babb374
BB
2053 break;
2054 }
2055
2056 default:
2057 break;
34dc7c2f
BB
2058 }
2059
2060 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
2061 &child, &children) != 0)
2062 return (NULL);
2063
b128c09f 2064 for (c = 0; c < children; c++) {
9babb374 2065 if ((ret = vdev_to_nvlist_iter(child[c], search,
b128c09f
BB
2066 avail_spare, l2cache, NULL)) != NULL) {
2067 /*
2068 * The 'is_log' value is only set for the toplevel
2069 * vdev, not the leaf vdevs. So we always lookup the
2070 * log device from the root of the vdev tree (where
2071 * 'log' is non-NULL).
2072 */
2073 if (log != NULL &&
2074 nvlist_lookup_uint64(child[c],
2075 ZPOOL_CONFIG_IS_LOG, &is_log) == 0 &&
2076 is_log) {
2077 *log = B_TRUE;
2078 }
34dc7c2f 2079 return (ret);
b128c09f
BB
2080 }
2081 }
34dc7c2f
BB
2082
2083 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_SPARES,
2084 &child, &children) == 0) {
2085 for (c = 0; c < children; c++) {
9babb374 2086 if ((ret = vdev_to_nvlist_iter(child[c], search,
b128c09f 2087 avail_spare, l2cache, NULL)) != NULL) {
34dc7c2f
BB
2088 *avail_spare = B_TRUE;
2089 return (ret);
2090 }
2091 }
2092 }
2093
2094 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_L2CACHE,
2095 &child, &children) == 0) {
2096 for (c = 0; c < children; c++) {
9babb374 2097 if ((ret = vdev_to_nvlist_iter(child[c], search,
b128c09f 2098 avail_spare, l2cache, NULL)) != NULL) {
34dc7c2f
BB
2099 *l2cache = B_TRUE;
2100 return (ret);
2101 }
2102 }
2103 }
2104
2105 return (NULL);
2106}
2107
9babb374
BB
2108/*
2109 * Given a physical path (minus the "/devices" prefix), find the
2110 * associated vdev.
2111 */
2112nvlist_t *
2113zpool_find_vdev_by_physpath(zpool_handle_t *zhp, const char *ppath,
2114 boolean_t *avail_spare, boolean_t *l2cache, boolean_t *log)
2115{
2116 nvlist_t *search, *nvroot, *ret;
2117
2118 verify(nvlist_alloc(&search, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2119 verify(nvlist_add_string(search, ZPOOL_CONFIG_PHYS_PATH, ppath) == 0);
2120
2121 verify(nvlist_lookup_nvlist(zhp->zpool_config, ZPOOL_CONFIG_VDEV_TREE,
2122 &nvroot) == 0);
2123
2124 *avail_spare = B_FALSE;
572e2857
BB
2125 *l2cache = B_FALSE;
2126 if (log != NULL)
2127 *log = B_FALSE;
9babb374
BB
2128 ret = vdev_to_nvlist_iter(nvroot, search, avail_spare, l2cache, log);
2129 nvlist_free(search);
2130
2131 return (ret);
2132}
2133
428870ff
BB
2134/*
2135 * Determine if we have an "interior" top-level vdev (i.e mirror/raidz).
2136 */
2137boolean_t
2138zpool_vdev_is_interior(const char *name)
2139{
2140 if (strncmp(name, VDEV_TYPE_RAIDZ, strlen(VDEV_TYPE_RAIDZ)) == 0 ||
2141 strncmp(name, VDEV_TYPE_MIRROR, strlen(VDEV_TYPE_MIRROR)) == 0)
2142 return (B_TRUE);
2143 return (B_FALSE);
2144}
2145
34dc7c2f
BB
2146nvlist_t *
2147zpool_find_vdev(zpool_handle_t *zhp, const char *path, boolean_t *avail_spare,
b128c09f 2148 boolean_t *l2cache, boolean_t *log)
34dc7c2f 2149{
34dc7c2f 2150 char *end;
9babb374 2151 nvlist_t *nvroot, *search, *ret;
34dc7c2f
BB
2152 uint64_t guid;
2153
9babb374
BB
2154 verify(nvlist_alloc(&search, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2155
1a5c611a 2156 guid = strtoull(path, &end, 0);
34dc7c2f 2157 if (guid != 0 && *end == '\0') {
9babb374 2158 verify(nvlist_add_uint64(search, ZPOOL_CONFIG_GUID, guid) == 0);
428870ff
BB
2159 } else if (zpool_vdev_is_interior(path)) {
2160 verify(nvlist_add_string(search, ZPOOL_CONFIG_TYPE, path) == 0);
34dc7c2f 2161 } else {
9babb374 2162 verify(nvlist_add_string(search, ZPOOL_CONFIG_PATH, path) == 0);
34dc7c2f
BB
2163 }
2164
2165 verify(nvlist_lookup_nvlist(zhp->zpool_config, ZPOOL_CONFIG_VDEV_TREE,
2166 &nvroot) == 0);
2167
2168 *avail_spare = B_FALSE;
2169 *l2cache = B_FALSE;
b128c09f
BB
2170 if (log != NULL)
2171 *log = B_FALSE;
9babb374
BB
2172 ret = vdev_to_nvlist_iter(nvroot, search, avail_spare, l2cache, log);
2173 nvlist_free(search);
2174
2175 return (ret);
b128c09f
BB
2176}
2177
2178static int
2179vdev_online(nvlist_t *nv)
2180{
2181 uint64_t ival;
2182
2183 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_OFFLINE, &ival) == 0 ||
2184 nvlist_lookup_uint64(nv, ZPOOL_CONFIG_FAULTED, &ival) == 0 ||
2185 nvlist_lookup_uint64(nv, ZPOOL_CONFIG_REMOVED, &ival) == 0)
2186 return (0);
2187
2188 return (1);
2189}
2190
2191/*
9babb374 2192 * Helper function for zpool_get_physpaths().
b128c09f 2193 */
9babb374
BB
2194static int
2195vdev_get_one_physpath(nvlist_t *config, char *physpath, size_t physpath_size,
2196 size_t *bytes_written)
2197{
2198 size_t bytes_left, pos, rsz;
2199 char *tmppath;
2200 const char *format;
2201
2202 if (nvlist_lookup_string(config, ZPOOL_CONFIG_PHYS_PATH,
2203 &tmppath) != 0)
2204 return (EZFS_NODEVICE);
2205
2206 pos = *bytes_written;
2207 bytes_left = physpath_size - pos;
2208 format = (pos == 0) ? "%s" : " %s";
2209
2210 rsz = snprintf(physpath + pos, bytes_left, format, tmppath);
2211 *bytes_written += rsz;
2212
2213 if (rsz >= bytes_left) {
2214 /* if physpath was not copied properly, clear it */
2215 if (bytes_left != 0) {
2216 physpath[pos] = 0;
2217 }
2218 return (EZFS_NOSPC);
2219 }
2220 return (0);
2221}
2222
2223static int
2224vdev_get_physpaths(nvlist_t *nv, char *physpath, size_t phypath_size,
2225 size_t *rsz, boolean_t is_spare)
2226{
2227 char *type;
2228 int ret;
2229
2230 if (nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, &type) != 0)
2231 return (EZFS_INVALCONFIG);
2232
2233 if (strcmp(type, VDEV_TYPE_DISK) == 0) {
2234 /*
2235 * An active spare device has ZPOOL_CONFIG_IS_SPARE set.
2236 * For a spare vdev, we only want to boot from the active
2237 * spare device.
2238 */
2239 if (is_spare) {
2240 uint64_t spare = 0;
2241 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_IS_SPARE,
2242 &spare);
2243 if (!spare)
2244 return (EZFS_INVALCONFIG);
2245 }
2246
2247 if (vdev_online(nv)) {
2248 if ((ret = vdev_get_one_physpath(nv, physpath,
2249 phypath_size, rsz)) != 0)
2250 return (ret);
2251 }
2252 } else if (strcmp(type, VDEV_TYPE_MIRROR) == 0 ||
0a3d2673 2253 strcmp(type, VDEV_TYPE_RAIDZ) == 0 ||
9babb374
BB
2254 strcmp(type, VDEV_TYPE_REPLACING) == 0 ||
2255 (is_spare = (strcmp(type, VDEV_TYPE_SPARE) == 0))) {
2256 nvlist_t **child;
2257 uint_t count;
2258 int i, ret;
2259
2260 if (nvlist_lookup_nvlist_array(nv,
2261 ZPOOL_CONFIG_CHILDREN, &child, &count) != 0)
2262 return (EZFS_INVALCONFIG);
2263
2264 for (i = 0; i < count; i++) {
2265 ret = vdev_get_physpaths(child[i], physpath,
2266 phypath_size, rsz, is_spare);
2267 if (ret == EZFS_NOSPC)
2268 return (ret);
2269 }
2270 }
2271
2272 return (EZFS_POOL_INVALARG);
2273}
2274
2275/*
2276 * Get phys_path for a root pool config.
2277 * Return 0 on success; non-zero on failure.
2278 */
2279static int
2280zpool_get_config_physpath(nvlist_t *config, char *physpath, size_t phypath_size)
b128c09f 2281{
9babb374 2282 size_t rsz;
b128c09f
BB
2283 nvlist_t *vdev_root;
2284 nvlist_t **child;
2285 uint_t count;
9babb374 2286 char *type;
b128c09f 2287
9babb374 2288 rsz = 0;
b128c09f 2289
9babb374
BB
2290 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
2291 &vdev_root) != 0)
2292 return (EZFS_INVALCONFIG);
b128c09f 2293
9babb374
BB
2294 if (nvlist_lookup_string(vdev_root, ZPOOL_CONFIG_TYPE, &type) != 0 ||
2295 nvlist_lookup_nvlist_array(vdev_root, ZPOOL_CONFIG_CHILDREN,
b128c09f 2296 &child, &count) != 0)
9babb374 2297 return (EZFS_INVALCONFIG);
b128c09f 2298
9babb374 2299 /*
986dd8aa 2300 * root pool can only have a single top-level vdev.
9babb374 2301 */
986dd8aa 2302 if (strcmp(type, VDEV_TYPE_ROOT) != 0 || count != 1)
9babb374 2303 return (EZFS_POOL_INVALARG);
b128c09f 2304
9babb374
BB
2305 (void) vdev_get_physpaths(child[0], physpath, phypath_size, &rsz,
2306 B_FALSE);
2307
2308 /* No online devices */
2309 if (rsz == 0)
2310 return (EZFS_NODEVICE);
b128c09f
BB
2311
2312 return (0);
34dc7c2f
BB
2313}
2314
9babb374
BB
2315/*
2316 * Get phys_path for a root pool
2317 * Return 0 on success; non-zero on failure.
2318 */
2319int
2320zpool_get_physpath(zpool_handle_t *zhp, char *physpath, size_t phypath_size)
2321{
2322 return (zpool_get_config_physpath(zhp->zpool_config, physpath,
2323 phypath_size));
2324}
2325
9babb374
BB
2326/*
2327 * If the device has being dynamically expanded then we need to relabel
2328 * the disk to use the new unallocated space.
2329 */
2330static int
8adf4864 2331zpool_relabel_disk(libzfs_handle_t *hdl, const char *path, const char *msg)
9babb374 2332{
9babb374 2333 int fd, error;
9babb374 2334
d603ed6c 2335 if ((fd = open(path, O_RDWR|O_DIRECT)) < 0) {
9babb374 2336 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "cannot "
109491a8 2337 "relabel '%s': unable to open device: %d"), path, errno);
8adf4864 2338 return (zfs_error(hdl, EZFS_OPENFAILED, msg));
9babb374
BB
2339 }
2340
2341 /*
2342 * It's possible that we might encounter an error if the device
2343 * does not have any unallocated space left. If so, we simply
2344 * ignore that error and continue on.
b5a28807
ED
2345 *
2346 * Also, we don't call efi_rescan() - that would just return EBUSY.
2347 * The module will do it for us in vdev_disk_open().
9babb374 2348 */
d603ed6c 2349 error = efi_use_whole_disk(fd);
9babb374
BB
2350 (void) close(fd);
2351 if (error && error != VT_ENOSPC) {
2352 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "cannot "
d603ed6c 2353 "relabel '%s': unable to read disk capacity"), path);
8adf4864 2354 return (zfs_error(hdl, EZFS_NOCAP, msg));
9babb374
BB
2355 }
2356 return (0);
2357}
2358
34dc7c2f
BB
2359/*
2360 * Bring the specified vdev online. The 'flags' parameter is a set of the
2361 * ZFS_ONLINE_* flags.
2362 */
2363int
2364zpool_vdev_online(zpool_handle_t *zhp, const char *path, int flags,
2365 vdev_state_t *newstate)
2366{
13fe0198 2367 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
2368 char msg[1024];
2369 nvlist_t *tgt;
9babb374 2370 boolean_t avail_spare, l2cache, islog;
34dc7c2f 2371 libzfs_handle_t *hdl = zhp->zpool_hdl;
8adf4864 2372 int error;
34dc7c2f 2373
9babb374
BB
2374 if (flags & ZFS_ONLINE_EXPAND) {
2375 (void) snprintf(msg, sizeof (msg),
2376 dgettext(TEXT_DOMAIN, "cannot expand %s"), path);
2377 } else {
2378 (void) snprintf(msg, sizeof (msg),
2379 dgettext(TEXT_DOMAIN, "cannot online %s"), path);
2380 }
34dc7c2f
BB
2381
2382 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
b128c09f 2383 if ((tgt = zpool_find_vdev(zhp, path, &avail_spare, &l2cache,
9babb374 2384 &islog)) == NULL)
34dc7c2f
BB
2385 return (zfs_error(hdl, EZFS_NODEVICE, msg));
2386
2387 verify(nvlist_lookup_uint64(tgt, ZPOOL_CONFIG_GUID, &zc.zc_guid) == 0);
2388
428870ff 2389 if (avail_spare)
34dc7c2f
BB
2390 return (zfs_error(hdl, EZFS_ISSPARE, msg));
2391
9babb374
BB
2392 if (flags & ZFS_ONLINE_EXPAND ||
2393 zpool_get_prop_int(zhp, ZPOOL_PROP_AUTOEXPAND, NULL)) {
9babb374
BB
2394 uint64_t wholedisk = 0;
2395
2396 (void) nvlist_lookup_uint64(tgt, ZPOOL_CONFIG_WHOLE_DISK,
2397 &wholedisk);
9babb374
BB
2398
2399 /*
2400 * XXX - L2ARC 1.0 devices can't support expansion.
2401 */
2402 if (l2cache) {
2403 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2404 "cannot expand cache devices"));
2405 return (zfs_error(hdl, EZFS_VDEVNOTSUP, msg));
2406 }
2407
2408 if (wholedisk) {
7608bd0d
ED
2409 const char *fullpath = path;
2410 char buf[MAXPATHLEN];
2411
2412 if (path[0] != '/') {
2413 error = zfs_resolve_shortname(path, buf,
d1d7e268 2414 sizeof (buf));
7608bd0d
ED
2415 if (error != 0)
2416 return (zfs_error(hdl, EZFS_NODEVICE,
2417 msg));
2418
2419 fullpath = buf;
2420 }
2421
2422 error = zpool_relabel_disk(hdl, fullpath, msg);
8adf4864
ED
2423 if (error != 0)
2424 return (error);
9babb374
BB
2425 }
2426 }
2427
34dc7c2f
BB
2428 zc.zc_cookie = VDEV_STATE_ONLINE;
2429 zc.zc_obj = flags;
2430
572e2857 2431 if (zfs_ioctl(hdl, ZFS_IOC_VDEV_SET_STATE, &zc) != 0) {
428870ff
BB
2432 if (errno == EINVAL) {
2433 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "was split "
2434 "from this pool into a new one. Use '%s' "
2435 "instead"), "zpool detach");
2436 return (zfs_error(hdl, EZFS_POSTSPLIT_ONLINE, msg));
2437 }
34dc7c2f 2438 return (zpool_standard_error(hdl, errno, msg));
428870ff 2439 }
34dc7c2f
BB
2440
2441 *newstate = zc.zc_cookie;
2442 return (0);
2443}
2444
2445/*
2446 * Take the specified vdev offline
2447 */
2448int
2449zpool_vdev_offline(zpool_handle_t *zhp, const char *path, boolean_t istmp)
2450{
13fe0198 2451 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
2452 char msg[1024];
2453 nvlist_t *tgt;
2454 boolean_t avail_spare, l2cache;
2455 libzfs_handle_t *hdl = zhp->zpool_hdl;
2456
2457 (void) snprintf(msg, sizeof (msg),
2458 dgettext(TEXT_DOMAIN, "cannot offline %s"), path);
2459
2460 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
b128c09f
BB
2461 if ((tgt = zpool_find_vdev(zhp, path, &avail_spare, &l2cache,
2462 NULL)) == NULL)
34dc7c2f
BB
2463 return (zfs_error(hdl, EZFS_NODEVICE, msg));
2464
2465 verify(nvlist_lookup_uint64(tgt, ZPOOL_CONFIG_GUID, &zc.zc_guid) == 0);
2466
428870ff 2467 if (avail_spare)
34dc7c2f
BB
2468 return (zfs_error(hdl, EZFS_ISSPARE, msg));
2469
34dc7c2f
BB
2470 zc.zc_cookie = VDEV_STATE_OFFLINE;
2471 zc.zc_obj = istmp ? ZFS_OFFLINE_TEMPORARY : 0;
2472
572e2857 2473 if (zfs_ioctl(hdl, ZFS_IOC_VDEV_SET_STATE, &zc) == 0)
34dc7c2f
BB
2474 return (0);
2475
2476 switch (errno) {
2477 case EBUSY:
2478
2479 /*
2480 * There are no other replicas of this device.
2481 */
2482 return (zfs_error(hdl, EZFS_NOREPLICAS, msg));
2483
9babb374
BB
2484 case EEXIST:
2485 /*
2486 * The log device has unplayed logs
2487 */
2488 return (zfs_error(hdl, EZFS_UNPLAYED_LOGS, msg));
2489
34dc7c2f
BB
2490 default:
2491 return (zpool_standard_error(hdl, errno, msg));
2492 }
2493}
2494
2495/*
2496 * Mark the given vdev faulted.
2497 */
2498int
428870ff 2499zpool_vdev_fault(zpool_handle_t *zhp, uint64_t guid, vdev_aux_t aux)
34dc7c2f 2500{
13fe0198 2501 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
2502 char msg[1024];
2503 libzfs_handle_t *hdl = zhp->zpool_hdl;
2504
2505 (void) snprintf(msg, sizeof (msg),
d1d7e268 2506 dgettext(TEXT_DOMAIN, "cannot fault %llu"), (u_longlong_t)guid);
34dc7c2f
BB
2507
2508 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
2509 zc.zc_guid = guid;
2510 zc.zc_cookie = VDEV_STATE_FAULTED;
428870ff 2511 zc.zc_obj = aux;
34dc7c2f 2512
572e2857 2513 if (ioctl(hdl->libzfs_fd, ZFS_IOC_VDEV_SET_STATE, &zc) == 0)
34dc7c2f
BB
2514 return (0);
2515
2516 switch (errno) {
2517 case EBUSY:
2518
2519 /*
2520 * There are no other replicas of this device.
2521 */
2522 return (zfs_error(hdl, EZFS_NOREPLICAS, msg));
2523
2524 default:
2525 return (zpool_standard_error(hdl, errno, msg));
2526 }
2527
2528}
2529
2530/*
2531 * Mark the given vdev degraded.
2532 */
2533int
428870ff 2534zpool_vdev_degrade(zpool_handle_t *zhp, uint64_t guid, vdev_aux_t aux)
34dc7c2f 2535{
13fe0198 2536 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
2537 char msg[1024];
2538 libzfs_handle_t *hdl = zhp->zpool_hdl;
2539
2540 (void) snprintf(msg, sizeof (msg),
d1d7e268 2541 dgettext(TEXT_DOMAIN, "cannot degrade %llu"), (u_longlong_t)guid);
34dc7c2f
BB
2542
2543 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
2544 zc.zc_guid = guid;
2545 zc.zc_cookie = VDEV_STATE_DEGRADED;
428870ff 2546 zc.zc_obj = aux;
34dc7c2f 2547
572e2857 2548 if (ioctl(hdl->libzfs_fd, ZFS_IOC_VDEV_SET_STATE, &zc) == 0)
34dc7c2f
BB
2549 return (0);
2550
2551 return (zpool_standard_error(hdl, errno, msg));
2552}
2553
2554/*
2555 * Returns TRUE if the given nvlist is a vdev that was originally swapped in as
2556 * a hot spare.
2557 */
2558static boolean_t
2559is_replacing_spare(nvlist_t *search, nvlist_t *tgt, int which)
2560{
2561 nvlist_t **child;
2562 uint_t c, children;
2563 char *type;
2564
2565 if (nvlist_lookup_nvlist_array(search, ZPOOL_CONFIG_CHILDREN, &child,
2566 &children) == 0) {
2567 verify(nvlist_lookup_string(search, ZPOOL_CONFIG_TYPE,
2568 &type) == 0);
2569
2570 if (strcmp(type, VDEV_TYPE_SPARE) == 0 &&
2571 children == 2 && child[which] == tgt)
2572 return (B_TRUE);
2573
2574 for (c = 0; c < children; c++)
2575 if (is_replacing_spare(child[c], tgt, which))
2576 return (B_TRUE);
2577 }
2578
2579 return (B_FALSE);
2580}
2581
2582/*
2583 * Attach new_disk (fully described by nvroot) to old_disk.
2584 * If 'replacing' is specified, the new disk will replace the old one.
2585 */
2586int
2587zpool_vdev_attach(zpool_handle_t *zhp,
2588 const char *old_disk, const char *new_disk, nvlist_t *nvroot, int replacing)
2589{
13fe0198 2590 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
2591 char msg[1024];
2592 int ret;
2593 nvlist_t *tgt;
b128c09f
BB
2594 boolean_t avail_spare, l2cache, islog;
2595 uint64_t val;
572e2857 2596 char *newname;
34dc7c2f
BB
2597 nvlist_t **child;
2598 uint_t children;
2599 nvlist_t *config_root;
2600 libzfs_handle_t *hdl = zhp->zpool_hdl;
1bd201e7 2601 boolean_t rootpool = zpool_is_bootable(zhp);
34dc7c2f
BB
2602
2603 if (replacing)
2604 (void) snprintf(msg, sizeof (msg), dgettext(TEXT_DOMAIN,
2605 "cannot replace %s with %s"), old_disk, new_disk);
2606 else
2607 (void) snprintf(msg, sizeof (msg), dgettext(TEXT_DOMAIN,
2608 "cannot attach %s to %s"), new_disk, old_disk);
2609
2610 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
b128c09f
BB
2611 if ((tgt = zpool_find_vdev(zhp, old_disk, &avail_spare, &l2cache,
2612 &islog)) == 0)
34dc7c2f
BB
2613 return (zfs_error(hdl, EZFS_NODEVICE, msg));
2614
2615 if (avail_spare)
2616 return (zfs_error(hdl, EZFS_ISSPARE, msg));
2617
2618 if (l2cache)
2619 return (zfs_error(hdl, EZFS_ISL2CACHE, msg));
2620
2621 verify(nvlist_lookup_uint64(tgt, ZPOOL_CONFIG_GUID, &zc.zc_guid) == 0);
2622 zc.zc_cookie = replacing;
2623
2624 if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_CHILDREN,
2625 &child, &children) != 0 || children != 1) {
2626 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2627 "new device must be a single disk"));
2628 return (zfs_error(hdl, EZFS_INVALCONFIG, msg));
2629 }
2630
2631 verify(nvlist_lookup_nvlist(zpool_get_config(zhp, NULL),
2632 ZPOOL_CONFIG_VDEV_TREE, &config_root) == 0);
2633
d2f3e292 2634 if ((newname = zpool_vdev_name(NULL, NULL, child[0], 0)) == NULL)
b128c09f
BB
2635 return (-1);
2636
34dc7c2f
BB
2637 /*
2638 * If the target is a hot spare that has been swapped in, we can only
2639 * replace it with another hot spare.
2640 */
2641 if (replacing &&
2642 nvlist_lookup_uint64(tgt, ZPOOL_CONFIG_IS_SPARE, &val) == 0 &&
b128c09f
BB
2643 (zpool_find_vdev(zhp, newname, &avail_spare, &l2cache,
2644 NULL) == NULL || !avail_spare) &&
2645 is_replacing_spare(config_root, tgt, 1)) {
34dc7c2f
BB
2646 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2647 "can only be replaced by another hot spare"));
b128c09f 2648 free(newname);
34dc7c2f
BB
2649 return (zfs_error(hdl, EZFS_BADTARGET, msg));
2650 }
2651
b128c09f
BB
2652 free(newname);
2653
34dc7c2f
BB
2654 if (zcmd_write_conf_nvlist(hdl, &zc, nvroot) != 0)
2655 return (-1);
2656
572e2857 2657 ret = zfs_ioctl(hdl, ZFS_IOC_VDEV_ATTACH, &zc);
34dc7c2f
BB
2658
2659 zcmd_free_nvlists(&zc);
2660
b128c09f
BB
2661 if (ret == 0) {
2662 if (rootpool) {
9babb374
BB
2663 /*
2664 * XXX need a better way to prevent user from
2665 * booting up a half-baked vdev.
2666 */
2667 (void) fprintf(stderr, dgettext(TEXT_DOMAIN, "Make "
2668 "sure to wait until resilver is done "
2669 "before rebooting.\n"));
b128c09f 2670 }
34dc7c2f 2671 return (0);
b128c09f 2672 }
34dc7c2f
BB
2673
2674 switch (errno) {
2675 case ENOTSUP:
2676 /*
2677 * Can't attach to or replace this type of vdev.
2678 */
2679 if (replacing) {
572e2857
BB
2680 uint64_t version = zpool_get_prop_int(zhp,
2681 ZPOOL_PROP_VERSION, NULL);
2682
b128c09f 2683 if (islog)
34dc7c2f
BB
2684 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2685 "cannot replace a log with a spare"));
572e2857
BB
2686 else if (version >= SPA_VERSION_MULTI_REPLACE)
2687 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2688 "already in replacing/spare config; wait "
2689 "for completion or use 'zpool detach'"));
34dc7c2f
BB
2690 else
2691 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2692 "cannot replace a replacing device"));
2693 } else {
2694 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2695 "can only attach to mirrors and top-level "
2696 "disks"));
2697 }
2698 (void) zfs_error(hdl, EZFS_BADTARGET, msg);
2699 break;
2700
2701 case EINVAL:
2702 /*
2703 * The new device must be a single disk.
2704 */
2705 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2706 "new device must be a single disk"));
2707 (void) zfs_error(hdl, EZFS_INVALCONFIG, msg);
2708 break;
2709
2710 case EBUSY:
2711 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "%s is busy"),
2712 new_disk);
2713 (void) zfs_error(hdl, EZFS_BADDEV, msg);
2714 break;
2715
2716 case EOVERFLOW:
2717 /*
2718 * The new device is too small.
2719 */
2720 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2721 "device is too small"));
2722 (void) zfs_error(hdl, EZFS_BADDEV, msg);
2723 break;
2724
2725 case EDOM:
2726 /*
d4aae2a0 2727 * The new device has a different optimal sector size.
34dc7c2f
BB
2728 */
2729 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
d4aae2a0
BB
2730 "new device has a different optimal sector size; use the "
2731 "option '-o ashift=N' to override the optimal size"));
34dc7c2f
BB
2732 (void) zfs_error(hdl, EZFS_BADDEV, msg);
2733 break;
2734
2735 case ENAMETOOLONG:
2736 /*
2737 * The resulting top-level vdev spec won't fit in the label.
2738 */
2739 (void) zfs_error(hdl, EZFS_DEVOVERFLOW, msg);
2740 break;
2741
2742 default:
2743 (void) zpool_standard_error(hdl, errno, msg);
2744 }
2745
2746 return (-1);
2747}
2748
2749/*
2750 * Detach the specified device.
2751 */
2752int
2753zpool_vdev_detach(zpool_handle_t *zhp, const char *path)
2754{
13fe0198 2755 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
2756 char msg[1024];
2757 nvlist_t *tgt;
2758 boolean_t avail_spare, l2cache;
2759 libzfs_handle_t *hdl = zhp->zpool_hdl;
2760
2761 (void) snprintf(msg, sizeof (msg),
2762 dgettext(TEXT_DOMAIN, "cannot detach %s"), path);
2763
2764 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
b128c09f
BB
2765 if ((tgt = zpool_find_vdev(zhp, path, &avail_spare, &l2cache,
2766 NULL)) == 0)
34dc7c2f
BB
2767 return (zfs_error(hdl, EZFS_NODEVICE, msg));
2768
2769 if (avail_spare)
2770 return (zfs_error(hdl, EZFS_ISSPARE, msg));
2771
2772 if (l2cache)
2773 return (zfs_error(hdl, EZFS_ISL2CACHE, msg));
2774
2775 verify(nvlist_lookup_uint64(tgt, ZPOOL_CONFIG_GUID, &zc.zc_guid) == 0);
2776
2777 if (zfs_ioctl(hdl, ZFS_IOC_VDEV_DETACH, &zc) == 0)
2778 return (0);
2779
2780 switch (errno) {
2781
2782 case ENOTSUP:
2783 /*
2784 * Can't detach from this type of vdev.
2785 */
2786 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "only "
2787 "applicable to mirror and replacing vdevs"));
572e2857 2788 (void) zfs_error(hdl, EZFS_BADTARGET, msg);
34dc7c2f
BB
2789 break;
2790
2791 case EBUSY:
2792 /*
2793 * There are no other replicas of this device.
2794 */
2795 (void) zfs_error(hdl, EZFS_NOREPLICAS, msg);
2796 break;
2797
2798 default:
2799 (void) zpool_standard_error(hdl, errno, msg);
2800 }
2801
2802 return (-1);
2803}
2804
428870ff
BB
2805/*
2806 * Find a mirror vdev in the source nvlist.
2807 *
2808 * The mchild array contains a list of disks in one of the top-level mirrors
2809 * of the source pool. The schild array contains a list of disks that the
2810 * user specified on the command line. We loop over the mchild array to
2811 * see if any entry in the schild array matches.
2812 *
2813 * If a disk in the mchild array is found in the schild array, we return
2814 * the index of that entry. Otherwise we return -1.
2815 */
2816static int
2817find_vdev_entry(zpool_handle_t *zhp, nvlist_t **mchild, uint_t mchildren,
2818 nvlist_t **schild, uint_t schildren)
2819{
2820 uint_t mc;
2821
2822 for (mc = 0; mc < mchildren; mc++) {
2823 uint_t sc;
2824 char *mpath = zpool_vdev_name(zhp->zpool_hdl, zhp,
d2f3e292 2825 mchild[mc], 0);
428870ff
BB
2826
2827 for (sc = 0; sc < schildren; sc++) {
2828 char *spath = zpool_vdev_name(zhp->zpool_hdl, zhp,
d2f3e292 2829 schild[sc], 0);
428870ff
BB
2830 boolean_t result = (strcmp(mpath, spath) == 0);
2831
2832 free(spath);
2833 if (result) {
2834 free(mpath);
2835 return (mc);
2836 }
2837 }
2838
2839 free(mpath);
2840 }
2841
2842 return (-1);
2843}
2844
2845/*
2846 * Split a mirror pool. If newroot points to null, then a new nvlist
2847 * is generated and it is the responsibility of the caller to free it.
2848 */
2849int
2850zpool_vdev_split(zpool_handle_t *zhp, char *newname, nvlist_t **newroot,
2851 nvlist_t *props, splitflags_t flags)
2852{
13fe0198 2853 zfs_cmd_t zc = {"\0"};
428870ff
BB
2854 char msg[1024];
2855 nvlist_t *tree, *config, **child, **newchild, *newconfig = NULL;
2856 nvlist_t **varray = NULL, *zc_props = NULL;
2857 uint_t c, children, newchildren, lastlog = 0, vcount, found = 0;
2858 libzfs_handle_t *hdl = zhp->zpool_hdl;
2859 uint64_t vers;
2860 boolean_t freelist = B_FALSE, memory_err = B_TRUE;
2861 int retval = 0;
2862
2863 (void) snprintf(msg, sizeof (msg),
2864 dgettext(TEXT_DOMAIN, "Unable to split %s"), zhp->zpool_name);
2865
2866 if (!zpool_name_valid(hdl, B_FALSE, newname))
2867 return (zfs_error(hdl, EZFS_INVALIDNAME, msg));
2868
2869 if ((config = zpool_get_config(zhp, NULL)) == NULL) {
2870 (void) fprintf(stderr, gettext("Internal error: unable to "
2871 "retrieve pool configuration\n"));
2872 return (-1);
2873 }
2874
2875 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &tree)
2876 == 0);
2877 verify(nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION, &vers) == 0);
2878
2879 if (props) {
572e2857 2880 prop_flags_t flags = { .create = B_FALSE, .import = B_TRUE };
428870ff 2881 if ((zc_props = zpool_valid_proplist(hdl, zhp->zpool_name,
572e2857 2882 props, vers, flags, msg)) == NULL)
428870ff
BB
2883 return (-1);
2884 }
2885
2886 if (nvlist_lookup_nvlist_array(tree, ZPOOL_CONFIG_CHILDREN, &child,
2887 &children) != 0) {
2888 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2889 "Source pool is missing vdev tree"));
8a5fc748 2890 nvlist_free(zc_props);
428870ff
BB
2891 return (-1);
2892 }
2893
2894 varray = zfs_alloc(hdl, children * sizeof (nvlist_t *));
2895 vcount = 0;
2896
2897 if (*newroot == NULL ||
2898 nvlist_lookup_nvlist_array(*newroot, ZPOOL_CONFIG_CHILDREN,
2899 &newchild, &newchildren) != 0)
2900 newchildren = 0;
2901
2902 for (c = 0; c < children; c++) {
2903 uint64_t is_log = B_FALSE, is_hole = B_FALSE;
2904 char *type;
2905 nvlist_t **mchild, *vdev;
2906 uint_t mchildren;
2907 int entry;
2908
2909 /*
2910 * Unlike cache & spares, slogs are stored in the
2911 * ZPOOL_CONFIG_CHILDREN array. We filter them out here.
2912 */
2913 (void) nvlist_lookup_uint64(child[c], ZPOOL_CONFIG_IS_LOG,
2914 &is_log);
2915 (void) nvlist_lookup_uint64(child[c], ZPOOL_CONFIG_IS_HOLE,
2916 &is_hole);
2917 if (is_log || is_hole) {
2918 /*
2919 * Create a hole vdev and put it in the config.
2920 */
2921 if (nvlist_alloc(&vdev, NV_UNIQUE_NAME, 0) != 0)
2922 goto out;
2923 if (nvlist_add_string(vdev, ZPOOL_CONFIG_TYPE,
2924 VDEV_TYPE_HOLE) != 0)
2925 goto out;
2926 if (nvlist_add_uint64(vdev, ZPOOL_CONFIG_IS_HOLE,
2927 1) != 0)
2928 goto out;
2929 if (lastlog == 0)
2930 lastlog = vcount;
2931 varray[vcount++] = vdev;
2932 continue;
2933 }
2934 lastlog = 0;
2935 verify(nvlist_lookup_string(child[c], ZPOOL_CONFIG_TYPE, &type)
2936 == 0);
2937 if (strcmp(type, VDEV_TYPE_MIRROR) != 0) {
2938 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2939 "Source pool must be composed only of mirrors\n"));
2940 retval = zfs_error(hdl, EZFS_INVALCONFIG, msg);
2941 goto out;
2942 }
2943
2944 verify(nvlist_lookup_nvlist_array(child[c],
2945 ZPOOL_CONFIG_CHILDREN, &mchild, &mchildren) == 0);
2946
2947 /* find or add an entry for this top-level vdev */
2948 if (newchildren > 0 &&
2949 (entry = find_vdev_entry(zhp, mchild, mchildren,
2950 newchild, newchildren)) >= 0) {
2951 /* We found a disk that the user specified. */
2952 vdev = mchild[entry];
2953 ++found;
2954 } else {
2955 /* User didn't specify a disk for this vdev. */
2956 vdev = mchild[mchildren - 1];
2957 }
2958
2959 if (nvlist_dup(vdev, &varray[vcount++], 0) != 0)
2960 goto out;
2961 }
2962
2963 /* did we find every disk the user specified? */
2964 if (found != newchildren) {
2965 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "Device list must "
2966 "include at most one disk from each mirror"));
2967 retval = zfs_error(hdl, EZFS_INVALCONFIG, msg);
2968 goto out;
2969 }
2970
2971 /* Prepare the nvlist for populating. */
2972 if (*newroot == NULL) {
2973 if (nvlist_alloc(newroot, NV_UNIQUE_NAME, 0) != 0)
2974 goto out;
2975 freelist = B_TRUE;
2976 if (nvlist_add_string(*newroot, ZPOOL_CONFIG_TYPE,
2977 VDEV_TYPE_ROOT) != 0)
2978 goto out;
2979 } else {
2980 verify(nvlist_remove_all(*newroot, ZPOOL_CONFIG_CHILDREN) == 0);
2981 }
2982
2983 /* Add all the children we found */
2984 if (nvlist_add_nvlist_array(*newroot, ZPOOL_CONFIG_CHILDREN, varray,
2985 lastlog == 0 ? vcount : lastlog) != 0)
2986 goto out;
2987
2988 /*
2989 * If we're just doing a dry run, exit now with success.
2990 */
2991 if (flags.dryrun) {
2992 memory_err = B_FALSE;
2993 freelist = B_FALSE;
2994 goto out;
2995 }
2996
2997 /* now build up the config list & call the ioctl */
2998 if (nvlist_alloc(&newconfig, NV_UNIQUE_NAME, 0) != 0)
2999 goto out;
3000
3001 if (nvlist_add_nvlist(newconfig,
3002 ZPOOL_CONFIG_VDEV_TREE, *newroot) != 0 ||
3003 nvlist_add_string(newconfig,
3004 ZPOOL_CONFIG_POOL_NAME, newname) != 0 ||
3005 nvlist_add_uint64(newconfig, ZPOOL_CONFIG_VERSION, vers) != 0)
3006 goto out;
3007
3008 /*
3009 * The new pool is automatically part of the namespace unless we
3010 * explicitly export it.
3011 */
3012 if (!flags.import)
3013 zc.zc_cookie = ZPOOL_EXPORT_AFTER_SPLIT;
3014 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
3015 (void) strlcpy(zc.zc_string, newname, sizeof (zc.zc_string));
3016 if (zcmd_write_conf_nvlist(hdl, &zc, newconfig) != 0)
3017 goto out;
3018 if (zc_props != NULL && zcmd_write_src_nvlist(hdl, &zc, zc_props) != 0)
3019 goto out;
3020
3021 if (zfs_ioctl(hdl, ZFS_IOC_VDEV_SPLIT, &zc) != 0) {
3022 retval = zpool_standard_error(hdl, errno, msg);
3023 goto out;
3024 }
3025
3026 freelist = B_FALSE;
3027 memory_err = B_FALSE;
3028
3029out:
3030 if (varray != NULL) {
3031 int v;
3032
3033 for (v = 0; v < vcount; v++)
3034 nvlist_free(varray[v]);
3035 free(varray);
3036 }
3037 zcmd_free_nvlists(&zc);
8a5fc748
JJS
3038 nvlist_free(zc_props);
3039 nvlist_free(newconfig);
428870ff
BB
3040 if (freelist) {
3041 nvlist_free(*newroot);
3042 *newroot = NULL;
3043 }
3044
3045 if (retval != 0)
3046 return (retval);
3047
3048 if (memory_err)
3049 return (no_memory(hdl));
3050
3051 return (0);
3052}
3053
34dc7c2f 3054/*
d1502e9e
RL
3055 * Remove the given device. Currently, this is supported only for hot spares,
3056 * cache, and log devices.
34dc7c2f
BB
3057 */
3058int
3059zpool_vdev_remove(zpool_handle_t *zhp, const char *path)
3060{
13fe0198 3061 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
3062 char msg[1024];
3063 nvlist_t *tgt;
428870ff 3064 boolean_t avail_spare, l2cache, islog;
34dc7c2f 3065 libzfs_handle_t *hdl = zhp->zpool_hdl;
428870ff 3066 uint64_t version;
34dc7c2f
BB
3067
3068 (void) snprintf(msg, sizeof (msg),
3069 dgettext(TEXT_DOMAIN, "cannot remove %s"), path);
3070
3071 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
b128c09f 3072 if ((tgt = zpool_find_vdev(zhp, path, &avail_spare, &l2cache,
428870ff 3073 &islog)) == 0)
34dc7c2f 3074 return (zfs_error(hdl, EZFS_NODEVICE, msg));
428870ff
BB
3075 /*
3076 * XXX - this should just go away.
3077 */
3078 if (!avail_spare && !l2cache && !islog) {
34dc7c2f 3079 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
d1502e9e 3080 "only inactive hot spares, cache, "
428870ff 3081 "or log devices can be removed"));
34dc7c2f
BB
3082 return (zfs_error(hdl, EZFS_NODEVICE, msg));
3083 }
3084
428870ff
BB
3085 version = zpool_get_prop_int(zhp, ZPOOL_PROP_VERSION, NULL);
3086 if (islog && version < SPA_VERSION_HOLES) {
3087 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3088 "pool must be upgrade to support log removal"));
3089 return (zfs_error(hdl, EZFS_BADVERSION, msg));
3090 }
3091
34dc7c2f
BB
3092 verify(nvlist_lookup_uint64(tgt, ZPOOL_CONFIG_GUID, &zc.zc_guid) == 0);
3093
3094 if (zfs_ioctl(hdl, ZFS_IOC_VDEV_REMOVE, &zc) == 0)
3095 return (0);
3096
3097 return (zpool_standard_error(hdl, errno, msg));
3098}
3099
3100/*
3101 * Clear the errors for the pool, or the particular device if specified.
3102 */
3103int
428870ff 3104zpool_clear(zpool_handle_t *zhp, const char *path, nvlist_t *rewindnvl)
34dc7c2f 3105{
13fe0198 3106 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
3107 char msg[1024];
3108 nvlist_t *tgt;
428870ff 3109 zpool_rewind_policy_t policy;
34dc7c2f
BB
3110 boolean_t avail_spare, l2cache;
3111 libzfs_handle_t *hdl = zhp->zpool_hdl;
428870ff 3112 nvlist_t *nvi = NULL;
572e2857 3113 int error;
34dc7c2f
BB
3114
3115 if (path)
3116 (void) snprintf(msg, sizeof (msg),
3117 dgettext(TEXT_DOMAIN, "cannot clear errors for %s"),
3118 path);
3119 else
3120 (void) snprintf(msg, sizeof (msg),
3121 dgettext(TEXT_DOMAIN, "cannot clear errors for %s"),
3122 zhp->zpool_name);
3123
3124 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
3125 if (path) {
3126 if ((tgt = zpool_find_vdev(zhp, path, &avail_spare,
b128c09f 3127 &l2cache, NULL)) == 0)
34dc7c2f
BB
3128 return (zfs_error(hdl, EZFS_NODEVICE, msg));
3129
3130 /*
3131 * Don't allow error clearing for hot spares. Do allow
3132 * error clearing for l2cache devices.
3133 */
3134 if (avail_spare)
3135 return (zfs_error(hdl, EZFS_ISSPARE, msg));
3136
3137 verify(nvlist_lookup_uint64(tgt, ZPOOL_CONFIG_GUID,
3138 &zc.zc_guid) == 0);
3139 }
3140
428870ff
BB
3141 zpool_get_rewind_policy(rewindnvl, &policy);
3142 zc.zc_cookie = policy.zrp_request;
3143
572e2857 3144 if (zcmd_alloc_dst_nvlist(hdl, &zc, zhp->zpool_config_size * 2) != 0)
428870ff
BB
3145 return (-1);
3146
572e2857 3147 if (zcmd_write_src_nvlist(hdl, &zc, rewindnvl) != 0)
428870ff
BB
3148 return (-1);
3149
572e2857
BB
3150 while ((error = zfs_ioctl(hdl, ZFS_IOC_CLEAR, &zc)) != 0 &&
3151 errno == ENOMEM) {
3152 if (zcmd_expand_dst_nvlist(hdl, &zc) != 0) {
3153 zcmd_free_nvlists(&zc);
3154 return (-1);
3155 }
3156 }
3157
3158 if (!error || ((policy.zrp_request & ZPOOL_TRY_REWIND) &&
428870ff
BB
3159 errno != EPERM && errno != EACCES)) {
3160 if (policy.zrp_request &
3161 (ZPOOL_DO_REWIND | ZPOOL_TRY_REWIND)) {
3162 (void) zcmd_read_dst_nvlist(hdl, &zc, &nvi);
3163 zpool_rewind_exclaim(hdl, zc.zc_name,
3164 ((policy.zrp_request & ZPOOL_TRY_REWIND) != 0),
3165 nvi);
3166 nvlist_free(nvi);
3167 }
3168 zcmd_free_nvlists(&zc);
34dc7c2f 3169 return (0);
428870ff 3170 }
34dc7c2f 3171
428870ff 3172 zcmd_free_nvlists(&zc);
34dc7c2f
BB
3173 return (zpool_standard_error(hdl, errno, msg));
3174}
3175
3176/*
3177 * Similar to zpool_clear(), but takes a GUID (used by fmd).
3178 */
3179int
3180zpool_vdev_clear(zpool_handle_t *zhp, uint64_t guid)
3181{
13fe0198 3182 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
3183 char msg[1024];
3184 libzfs_handle_t *hdl = zhp->zpool_hdl;
3185
3186 (void) snprintf(msg, sizeof (msg),
3187 dgettext(TEXT_DOMAIN, "cannot clear errors for %llx"),
d1d7e268 3188 (u_longlong_t)guid);
34dc7c2f
BB
3189
3190 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
3191 zc.zc_guid = guid;
428870ff 3192 zc.zc_cookie = ZPOOL_NO_REWIND;
34dc7c2f
BB
3193
3194 if (ioctl(hdl->libzfs_fd, ZFS_IOC_CLEAR, &zc) == 0)
3195 return (0);
3196
3197 return (zpool_standard_error(hdl, errno, msg));
3198}
3199
3541dc6d
GA
3200/*
3201 * Change the GUID for a pool.
3202 */
3203int
3204zpool_reguid(zpool_handle_t *zhp)
3205{
3206 char msg[1024];
3207 libzfs_handle_t *hdl = zhp->zpool_hdl;
13fe0198 3208 zfs_cmd_t zc = {"\0"};
3541dc6d
GA
3209
3210 (void) snprintf(msg, sizeof (msg),
3211 dgettext(TEXT_DOMAIN, "cannot reguid '%s'"), zhp->zpool_name);
3212
3213 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
3214 if (zfs_ioctl(hdl, ZFS_IOC_POOL_REGUID, &zc) == 0)
3215 return (0);
3216
3217 return (zpool_standard_error(hdl, errno, msg));
3218}
3219
1bd201e7
CS
3220/*
3221 * Reopen the pool.
3222 */
3223int
3224zpool_reopen(zpool_handle_t *zhp)
3225{
13fe0198 3226 zfs_cmd_t zc = {"\0"};
1bd201e7
CS
3227 char msg[1024];
3228 libzfs_handle_t *hdl = zhp->zpool_hdl;
3229
3230 (void) snprintf(msg, sizeof (msg),
3231 dgettext(TEXT_DOMAIN, "cannot reopen '%s'"),
3232 zhp->zpool_name);
3233
3234 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
3235 if (zfs_ioctl(hdl, ZFS_IOC_POOL_REOPEN, &zc) == 0)
3236 return (0);
3237 return (zpool_standard_error(hdl, errno, msg));
3238}
3239
39fc0cb5 3240#if defined(__sun__) || defined(__sun)
34dc7c2f
BB
3241/*
3242 * Convert from a devid string to a path.
3243 */
3244static char *
3245devid_to_path(char *devid_str)
3246{
3247 ddi_devid_t devid;
3248 char *minor;
3249 char *path;
3250 devid_nmlist_t *list = NULL;
3251 int ret;
3252
3253 if (devid_str_decode(devid_str, &devid, &minor) != 0)
3254 return (NULL);
3255
3256 ret = devid_deviceid_to_nmlist("/dev", devid, minor, &list);
3257
3258 devid_str_free(minor);
3259 devid_free(devid);
3260
3261 if (ret != 0)
3262 return (NULL);
3263
0fdd8d64
MT
3264 /*
3265 * In a case the strdup() fails, we will just return NULL below.
3266 */
3267 path = strdup(list[0].devname);
34dc7c2f
BB
3268
3269 devid_free_nmlist(list);
3270
3271 return (path);
3272}
3273
3274/*
3275 * Convert from a path to a devid string.
3276 */
3277static char *
3278path_to_devid(const char *path)
3279{
3280 int fd;
3281 ddi_devid_t devid;
3282 char *minor, *ret;
3283
3284 if ((fd = open(path, O_RDONLY)) < 0)
3285 return (NULL);
3286
3287 minor = NULL;
3288 ret = NULL;
3289 if (devid_get(fd, &devid) == 0) {
3290 if (devid_get_minor_name(fd, &minor) == 0)
3291 ret = devid_str_encode(devid, minor);
3292 if (minor != NULL)
3293 devid_str_free(minor);
3294 devid_free(devid);
3295 }
3296 (void) close(fd);
3297
3298 return (ret);
3299}
3300
3301/*
3302 * Issue the necessary ioctl() to update the stored path value for the vdev. We
3303 * ignore any failure here, since a common case is for an unprivileged user to
3304 * type 'zpool status', and we'll display the correct information anyway.
3305 */
3306static void
3307set_path(zpool_handle_t *zhp, nvlist_t *nv, const char *path)
3308{
13fe0198 3309 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
3310
3311 (void) strncpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
3312 (void) strncpy(zc.zc_value, path, sizeof (zc.zc_value));
3313 verify(nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID,
3314 &zc.zc_guid) == 0);
3315
3316 (void) ioctl(zhp->zpool_hdl->libzfs_fd, ZFS_IOC_VDEV_SETPATH, &zc);
3317}
39fc0cb5 3318#endif /* sun */
34dc7c2f 3319
83c62c93
NB
3320/*
3321 * Remove partition suffix from a vdev path. Partition suffixes may take three
3322 * forms: "-partX", "pX", or "X", where X is a string of digits. The second
3323 * case only occurs when the suffix is preceded by a digit, i.e. "md0p0" The
3324 * third case only occurs when preceded by a string matching the regular
541da993 3325 * expression "^([hsv]|xv)d[a-z]+", i.e. a scsi, ide, virtio or xen disk.
d02ca379
DB
3326 *
3327 * caller must free the returned string
83c62c93 3328 */
d02ca379 3329char *
6078881a 3330zfs_strip_partition(char *path)
83c62c93 3331{
6078881a 3332 char *tmp = strdup(path);
83c62c93 3333 char *part = NULL, *d = NULL;
6078881a
TH
3334 if (!tmp)
3335 return (NULL);
83c62c93
NB
3336
3337 if ((part = strstr(tmp, "-part")) && part != tmp) {
3338 d = part + 5;
3339 } else if ((part = strrchr(tmp, 'p')) &&
3340 part > tmp + 1 && isdigit(*(part-1))) {
3341 d = part + 1;
541da993
RY
3342 } else if ((tmp[0] == 'h' || tmp[0] == 's' || tmp[0] == 'v') &&
3343 tmp[1] == 'd') {
02730c33 3344 for (d = &tmp[2]; isalpha(*d); part = ++d) { }
541da993 3345 } else if (strncmp("xvd", tmp, 3) == 0) {
02730c33 3346 for (d = &tmp[3]; isalpha(*d); part = ++d) { }
83c62c93
NB
3347 }
3348 if (part && d && *d != '\0') {
02730c33 3349 for (; isdigit(*d); d++) { }
83c62c93
NB
3350 if (*d == '\0')
3351 *part = '\0';
3352 }
6078881a 3353
83c62c93
NB
3354 return (tmp);
3355}
3356
8720e9e7
TH
3357/*
3358 * Same as zfs_strip_partition, but allows "/dev/" to be in the pathname
3359 *
3360 * path: /dev/sda1
3361 * returns: /dev/sda
3362 *
3363 * Returned string must be freed.
3364 */
3365char *
3366zfs_strip_partition_path(char *path)
3367{
3368 char *newpath = strdup(path);
3369 char *sd_offset;
3370 char *new_sd;
3371
3372 if (!newpath)
3373 return (NULL);
3374
3375 /* Point to "sda1" part of "/dev/sda1" */
3376 sd_offset = strrchr(newpath, '/') + 1;
3377
3378 /* Get our new name "sda" */
3379 new_sd = zfs_strip_partition(sd_offset);
3380 if (!new_sd) {
3381 free(newpath);
3382 return (NULL);
3383 }
3384
3385 /* Paste the "sda" where "sda1" was */
3386 strlcpy(sd_offset, new_sd, strlen(sd_offset) + 1);
3387
3388 /* Free temporary "sda" */
3389 free(new_sd);
3390
3391 return (newpath);
3392}
3393
858219cc
NB
3394#define PATH_BUF_LEN 64
3395
34dc7c2f
BB
3396/*
3397 * Given a vdev, return the name to display in iostat. If the vdev has a path,
3398 * we use that, stripping off any leading "/dev/dsk/"; if not, we use the type.
3399 * We also check if this is a whole disk, in which case we strip off the
3400 * trailing 's0' slice name.
3401 *
3402 * This routine is also responsible for identifying when disks have been
3403 * reconfigured in a new location. The kernel will have opened the device by
3404 * devid, but the path will still refer to the old location. To catch this, we
3405 * first do a path -> devid translation (which is fast for the common case). If
3406 * the devid matches, we're done. If not, we do a reverse devid -> path
3407 * translation and issue the appropriate ioctl() to update the path of the vdev.
3408 * If 'zhp' is NULL, then this is an exported pool, and we don't need to do any
3409 * of these checks.
3410 */
3411char *
428870ff 3412zpool_vdev_name(libzfs_handle_t *hdl, zpool_handle_t *zhp, nvlist_t *nv,
d2f3e292 3413 int name_flags)
34dc7c2f 3414{
39fc0cb5 3415 char *path, *type, *env;
34dc7c2f 3416 uint64_t value;
858219cc 3417 char buf[PATH_BUF_LEN];
fc24f7c8 3418 char tmpbuf[PATH_BUF_LEN];
34dc7c2f 3419
d2f3e292
RY
3420 env = getenv("ZPOOL_VDEV_NAME_PATH");
3421 if (env && (strtoul(env, NULL, 0) > 0 ||
3422 !strncasecmp(env, "YES", 3) || !strncasecmp(env, "ON", 2)))
3423 name_flags |= VDEV_NAME_PATH;
3424
3425 env = getenv("ZPOOL_VDEV_NAME_GUID");
3426 if (env && (strtoul(env, NULL, 0) > 0 ||
3427 !strncasecmp(env, "YES", 3) || !strncasecmp(env, "ON", 2)))
3428 name_flags |= VDEV_NAME_GUID;
3429
3430 env = getenv("ZPOOL_VDEV_NAME_FOLLOW_LINKS");
3431 if (env && (strtoul(env, NULL, 0) > 0 ||
3432 !strncasecmp(env, "YES", 3) || !strncasecmp(env, "ON", 2)))
3433 name_flags |= VDEV_NAME_FOLLOW_LINKS;
3434
3435 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_NOT_PRESENT, &value) == 0 ||
3436 name_flags & VDEV_NAME_GUID) {
aecdc706 3437 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_GUID, &value);
d2f3e292 3438 (void) snprintf(buf, sizeof (buf), "%llu", (u_longlong_t)value);
34dc7c2f
BB
3439 path = buf;
3440 } else if (nvlist_lookup_string(nv, ZPOOL_CONFIG_PATH, &path) == 0) {
39fc0cb5
DB
3441#if defined(__sun__) || defined(__sun)
3442 /*
3443 * Live VDEV path updates to a kernel VDEV during a
3444 * zpool_vdev_name lookup are not supported on Linux.
3445 */
3446 char *devid;
3447 vdev_stat_t *vs;
3448 uint_t vsc;
3449
34dc7c2f
BB
3450 /*
3451 * If the device is dead (faulted, offline, etc) then don't
3452 * bother opening it. Otherwise we may be forcing the user to
3453 * open a misbehaving device, which can have undesirable
3454 * effects.
3455 */
428870ff 3456 if ((nvlist_lookup_uint64_array(nv, ZPOOL_CONFIG_VDEV_STATS,
34dc7c2f
BB
3457 (uint64_t **)&vs, &vsc) != 0 ||
3458 vs->vs_state >= VDEV_STATE_DEGRADED) &&
3459 zhp != NULL &&
3460 nvlist_lookup_string(nv, ZPOOL_CONFIG_DEVID, &devid) == 0) {
3461 /*
3462 * Determine if the current path is correct.
3463 */
3464 char *newdevid = path_to_devid(path);
3465
3466 if (newdevid == NULL ||
3467 strcmp(devid, newdevid) != 0) {
3468 char *newpath;
3469
3470 if ((newpath = devid_to_path(devid)) != NULL) {
3471 /*
3472 * Update the path appropriately.
3473 */
3474 set_path(zhp, nv, newpath);
3475 if (nvlist_add_string(nv,
3476 ZPOOL_CONFIG_PATH, newpath) == 0)
3477 verify(nvlist_lookup_string(nv,
3478 ZPOOL_CONFIG_PATH,
3479 &path) == 0);
3480 free(newpath);
3481 }
3482 }
3483
3484 if (newdevid)
3485 devid_str_free(newdevid);
3486 }
39fc0cb5 3487#endif /* sun */
34dc7c2f 3488
d2f3e292
RY
3489 if (name_flags & VDEV_NAME_FOLLOW_LINKS) {
3490 char *rp = realpath(path, NULL);
3491 if (rp) {
3492 strlcpy(buf, rp, sizeof (buf));
3493 path = buf;
3494 free(rp);
3495 }
3496 }
3497
d603ed6c
BB
3498 /*
3499 * For a block device only use the name.
3500 */
3501 verify(nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, &type) == 0);
d2f3e292
RY
3502 if ((strcmp(type, VDEV_TYPE_DISK) == 0) &&
3503 !(name_flags & VDEV_NAME_PATH)) {
d603ed6c
BB
3504 path = strrchr(path, '/');
3505 path++;
3506 }
34dc7c2f 3507
d603ed6c 3508 /*
83c62c93 3509 * Remove the partition from the path it this is a whole disk.
d603ed6c 3510 */
d2f3e292
RY
3511 if (nvlist_lookup_uint64(nv, ZPOOL_CONFIG_WHOLE_DISK, &value)
3512 == 0 && value && !(name_flags & VDEV_NAME_PATH)) {
6078881a 3513 return (zfs_strip_partition(path));
34dc7c2f
BB
3514 }
3515 } else {
3516 verify(nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, &path) == 0);
3517
3518 /*
3519 * If it's a raidz device, we need to stick in the parity level.
3520 */
3521 if (strcmp(path, VDEV_TYPE_RAIDZ) == 0) {
3522 verify(nvlist_lookup_uint64(nv, ZPOOL_CONFIG_NPARITY,
3523 &value) == 0);
fc24f7c8 3524 (void) snprintf(buf, sizeof (buf), "%s%llu", path,
34dc7c2f 3525 (u_longlong_t)value);
fc24f7c8 3526 path = buf;
34dc7c2f 3527 }
428870ff
BB
3528
3529 /*
3530 * We identify each top-level vdev by using a <type-id>
3531 * naming convention.
3532 */
d2f3e292 3533 if (name_flags & VDEV_NAME_TYPE_ID) {
428870ff 3534 uint64_t id;
428870ff
BB
3535 verify(nvlist_lookup_uint64(nv, ZPOOL_CONFIG_ID,
3536 &id) == 0);
fc24f7c8
MM
3537 (void) snprintf(tmpbuf, sizeof (tmpbuf), "%s-%llu",
3538 path, (u_longlong_t)id);
3539 path = tmpbuf;
428870ff 3540 }
34dc7c2f
BB
3541 }
3542
3543 return (zfs_strdup(hdl, path));
3544}
3545
3546static int
fcff0f35 3547zbookmark_mem_compare(const void *a, const void *b)
34dc7c2f 3548{
5dbd68a3 3549 return (memcmp(a, b, sizeof (zbookmark_phys_t)));
34dc7c2f
BB
3550}
3551
3552/*
3553 * Retrieve the persistent error log, uniquify the members, and return to the
3554 * caller.
3555 */
3556int
3557zpool_get_errlog(zpool_handle_t *zhp, nvlist_t **nverrlistp)
3558{
13fe0198 3559 zfs_cmd_t zc = {"\0"};
34dc7c2f 3560 uint64_t count;
5dbd68a3 3561 zbookmark_phys_t *zb = NULL;
34dc7c2f
BB
3562 int i;
3563
3564 /*
3565 * Retrieve the raw error list from the kernel. If the number of errors
3566 * has increased, allocate more space and continue until we get the
3567 * entire list.
3568 */
3569 verify(nvlist_lookup_uint64(zhp->zpool_config, ZPOOL_CONFIG_ERRCOUNT,
3570 &count) == 0);
3571 if (count == 0)
3572 return (0);
3573 if ((zc.zc_nvlist_dst = (uintptr_t)zfs_alloc(zhp->zpool_hdl,
5dbd68a3 3574 count * sizeof (zbookmark_phys_t))) == (uintptr_t)NULL)
34dc7c2f
BB
3575 return (-1);
3576 zc.zc_nvlist_dst_size = count;
3577 (void) strcpy(zc.zc_name, zhp->zpool_name);
3578 for (;;) {
3579 if (ioctl(zhp->zpool_hdl->libzfs_fd, ZFS_IOC_ERROR_LOG,
3580 &zc) != 0) {
3581 free((void *)(uintptr_t)zc.zc_nvlist_dst);
3582 if (errno == ENOMEM) {
5dbd68a3
MA
3583 void *dst;
3584
34dc7c2f 3585 count = zc.zc_nvlist_dst_size;
5dbd68a3
MA
3586 dst = zfs_alloc(zhp->zpool_hdl, count *
3587 sizeof (zbookmark_phys_t));
3588 if (dst == NULL)
34dc7c2f 3589 return (-1);
5dbd68a3 3590 zc.zc_nvlist_dst = (uintptr_t)dst;
34dc7c2f
BB
3591 } else {
3592 return (-1);
3593 }
3594 } else {
3595 break;
3596 }
3597 }
3598
3599 /*
3600 * Sort the resulting bookmarks. This is a little confusing due to the
3601 * implementation of ZFS_IOC_ERROR_LOG. The bookmarks are copied last
3602 * to first, and 'zc_nvlist_dst_size' indicates the number of boomarks
3603 * _not_ copied as part of the process. So we point the start of our
3604 * array appropriate and decrement the total number of elements.
3605 */
5dbd68a3 3606 zb = ((zbookmark_phys_t *)(uintptr_t)zc.zc_nvlist_dst) +
34dc7c2f
BB
3607 zc.zc_nvlist_dst_size;
3608 count -= zc.zc_nvlist_dst_size;
3609
fcff0f35 3610 qsort(zb, count, sizeof (zbookmark_phys_t), zbookmark_mem_compare);
34dc7c2f
BB
3611
3612 verify(nvlist_alloc(nverrlistp, 0, KM_SLEEP) == 0);
3613
3614 /*
3615 * Fill in the nverrlistp with nvlist's of dataset and object numbers.
3616 */
3617 for (i = 0; i < count; i++) {
3618 nvlist_t *nv;
3619
3620 /* ignoring zb_blkid and zb_level for now */
3621 if (i > 0 && zb[i-1].zb_objset == zb[i].zb_objset &&
3622 zb[i-1].zb_object == zb[i].zb_object)
3623 continue;
3624
3625 if (nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) != 0)
3626 goto nomem;
3627 if (nvlist_add_uint64(nv, ZPOOL_ERR_DATASET,
3628 zb[i].zb_objset) != 0) {
3629 nvlist_free(nv);
3630 goto nomem;
3631 }
3632 if (nvlist_add_uint64(nv, ZPOOL_ERR_OBJECT,
3633 zb[i].zb_object) != 0) {
3634 nvlist_free(nv);
3635 goto nomem;
3636 }
3637 if (nvlist_add_nvlist(*nverrlistp, "ejk", nv) != 0) {
3638 nvlist_free(nv);
3639 goto nomem;
3640 }
3641 nvlist_free(nv);
3642 }
3643
3644 free((void *)(uintptr_t)zc.zc_nvlist_dst);
3645 return (0);
3646
3647nomem:
3648 free((void *)(uintptr_t)zc.zc_nvlist_dst);
3649 return (no_memory(zhp->zpool_hdl));
3650}
3651
3652/*
3653 * Upgrade a ZFS pool to the latest on-disk version.
3654 */
3655int
3656zpool_upgrade(zpool_handle_t *zhp, uint64_t new_version)
3657{
13fe0198 3658 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
3659 libzfs_handle_t *hdl = zhp->zpool_hdl;
3660
3661 (void) strcpy(zc.zc_name, zhp->zpool_name);
3662 zc.zc_cookie = new_version;
3663
3664 if (zfs_ioctl(hdl, ZFS_IOC_POOL_UPGRADE, &zc) != 0)
3665 return (zpool_standard_error_fmt(hdl, errno,
3666 dgettext(TEXT_DOMAIN, "cannot upgrade '%s'"),
3667 zhp->zpool_name));
3668 return (0);
3669}
3670
3671void
6f1ffb06 3672zfs_save_arguments(int argc, char **argv, char *string, int len)
34dc7c2f
BB
3673{
3674 int i;
3675
6f1ffb06 3676 (void) strlcpy(string, basename(argv[0]), len);
34dc7c2f 3677 for (i = 1; i < argc; i++) {
6f1ffb06
MA
3678 (void) strlcat(string, " ", len);
3679 (void) strlcat(string, argv[i], len);
34dc7c2f
BB
3680 }
3681}
3682
34dc7c2f 3683int
6f1ffb06
MA
3684zpool_log_history(libzfs_handle_t *hdl, const char *message)
3685{
13fe0198 3686 zfs_cmd_t zc = {"\0"};
6f1ffb06
MA
3687 nvlist_t *args;
3688 int err;
3689
3690 args = fnvlist_alloc();
3691 fnvlist_add_string(args, "message", message);
3692 err = zcmd_write_src_nvlist(hdl, &zc, args);
3693 if (err == 0)
3694 err = ioctl(hdl->libzfs_fd, ZFS_IOC_LOG_HISTORY, &zc);
3695 nvlist_free(args);
3696 zcmd_free_nvlists(&zc);
3697 return (err);
34dc7c2f
BB
3698}
3699
3700/*
3701 * Perform ioctl to get some command history of a pool.
3702 *
3703 * 'buf' is the buffer to fill up to 'len' bytes. 'off' is the
3704 * logical offset of the history buffer to start reading from.
3705 *
3706 * Upon return, 'off' is the next logical offset to read from and
3707 * 'len' is the actual amount of bytes read into 'buf'.
3708 */
3709static int
3710get_history(zpool_handle_t *zhp, char *buf, uint64_t *off, uint64_t *len)
3711{
13fe0198 3712 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
3713 libzfs_handle_t *hdl = zhp->zpool_hdl;
3714
3715 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
3716
3717 zc.zc_history = (uint64_t)(uintptr_t)buf;
3718 zc.zc_history_len = *len;
3719 zc.zc_history_offset = *off;
3720
3721 if (ioctl(hdl->libzfs_fd, ZFS_IOC_POOL_GET_HISTORY, &zc) != 0) {
3722 switch (errno) {
3723 case EPERM:
3724 return (zfs_error_fmt(hdl, EZFS_PERM,
3725 dgettext(TEXT_DOMAIN,
3726 "cannot show history for pool '%s'"),
3727 zhp->zpool_name));
3728 case ENOENT:
3729 return (zfs_error_fmt(hdl, EZFS_NOHISTORY,
3730 dgettext(TEXT_DOMAIN, "cannot get history for pool "
3731 "'%s'"), zhp->zpool_name));
3732 case ENOTSUP:
3733 return (zfs_error_fmt(hdl, EZFS_BADVERSION,
3734 dgettext(TEXT_DOMAIN, "cannot get history for pool "
3735 "'%s', pool must be upgraded"), zhp->zpool_name));
3736 default:
3737 return (zpool_standard_error_fmt(hdl, errno,
3738 dgettext(TEXT_DOMAIN,
3739 "cannot get history for '%s'"), zhp->zpool_name));
3740 }
3741 }
3742
3743 *len = zc.zc_history_len;
3744 *off = zc.zc_history_offset;
3745
3746 return (0);
3747}
3748
3749/*
3750 * Process the buffer of nvlists, unpacking and storing each nvlist record
3751 * into 'records'. 'leftover' is set to the number of bytes that weren't
3752 * processed as there wasn't a complete record.
3753 */
428870ff 3754int
34dc7c2f
BB
3755zpool_history_unpack(char *buf, uint64_t bytes_read, uint64_t *leftover,
3756 nvlist_t ***records, uint_t *numrecords)
3757{
3758 uint64_t reclen;
3759 nvlist_t *nv;
3760 int i;
3761
3762 while (bytes_read > sizeof (reclen)) {
3763
3764 /* get length of packed record (stored as little endian) */
3765 for (i = 0, reclen = 0; i < sizeof (reclen); i++)
3766 reclen += (uint64_t)(((uchar_t *)buf)[i]) << (8*i);
3767
3768 if (bytes_read < sizeof (reclen) + reclen)
3769 break;
3770
3771 /* unpack record */
3772 if (nvlist_unpack(buf + sizeof (reclen), reclen, &nv, 0) != 0)
3773 return (ENOMEM);
3774 bytes_read -= sizeof (reclen) + reclen;
3775 buf += sizeof (reclen) + reclen;
3776
3777 /* add record to nvlist array */
3778 (*numrecords)++;
3779 if (ISP2(*numrecords + 1)) {
3780 *records = realloc(*records,
3781 *numrecords * 2 * sizeof (nvlist_t *));
3782 }
3783 (*records)[*numrecords - 1] = nv;
3784 }
3785
3786 *leftover = bytes_read;
3787 return (0);
3788}
3789
34dc7c2f
BB
3790/*
3791 * Retrieve the command history of a pool.
3792 */
3793int
3794zpool_get_history(zpool_handle_t *zhp, nvlist_t **nvhisp)
3795{
1f6f97f3
MA
3796 char *buf;
3797 int buflen = 128 * 1024;
34dc7c2f
BB
3798 uint64_t off = 0;
3799 nvlist_t **records = NULL;
3800 uint_t numrecords = 0;
3801 int err, i;
3802
1f6f97f3
MA
3803 buf = malloc(buflen);
3804 if (buf == NULL)
3805 return (ENOMEM);
34dc7c2f 3806 do {
1f6f97f3 3807 uint64_t bytes_read = buflen;
34dc7c2f
BB
3808 uint64_t leftover;
3809
3810 if ((err = get_history(zhp, buf, &off, &bytes_read)) != 0)
3811 break;
3812
3813 /* if nothing else was read in, we're at EOF, just return */
3814 if (!bytes_read)
3815 break;
3816
3817 if ((err = zpool_history_unpack(buf, bytes_read,
3818 &leftover, &records, &numrecords)) != 0)
3819 break;
3820 off -= leftover;
1f6f97f3
MA
3821 if (leftover == bytes_read) {
3822 /*
3823 * no progress made, because buffer is not big enough
3824 * to hold this record; resize and retry.
3825 */
3826 buflen *= 2;
3827 free(buf);
3828 buf = malloc(buflen);
3829 if (buf == NULL)
3830 return (ENOMEM);
3831 }
34dc7c2f
BB
3832
3833 /* CONSTCOND */
3834 } while (1);
3835
1f6f97f3
MA
3836 free(buf);
3837
34dc7c2f
BB
3838 if (!err) {
3839 verify(nvlist_alloc(nvhisp, NV_UNIQUE_NAME, 0) == 0);
3840 verify(nvlist_add_nvlist_array(*nvhisp, ZPOOL_HIST_RECORD,
3841 records, numrecords) == 0);
3842 }
3843 for (i = 0; i < numrecords; i++)
3844 nvlist_free(records[i]);
3845 free(records);
3846
3847 return (err);
3848}
3849
26685276 3850/*
9b101a73
BB
3851 * Retrieve the next event given the passed 'zevent_fd' file descriptor.
3852 * If there is a new event available 'nvp' will contain a newly allocated
3853 * nvlist and 'dropped' will be set to the number of missed events since
3854 * the last call to this function. When 'nvp' is set to NULL it indicates
3855 * no new events are available. In either case the function returns 0 and
3856 * it is up to the caller to free 'nvp'. In the case of a fatal error the
3857 * function will return a non-zero value. When the function is called in
8c7aa0cf
CD
3858 * blocking mode (the default, unless the ZEVENT_NONBLOCK flag is passed),
3859 * it will not return until a new event is available.
26685276
BB
3860 */
3861int
3862zpool_events_next(libzfs_handle_t *hdl, nvlist_t **nvp,
8c7aa0cf 3863 int *dropped, unsigned flags, int zevent_fd)
26685276 3864{
13fe0198 3865 zfs_cmd_t zc = {"\0"};
26685276
BB
3866 int error = 0;
3867
3868 *nvp = NULL;
3869 *dropped = 0;
9b101a73 3870 zc.zc_cleanup_fd = zevent_fd;
26685276 3871
8c7aa0cf 3872 if (flags & ZEVENT_NONBLOCK)
26685276
BB
3873 zc.zc_guid = ZEVENT_NONBLOCK;
3874
3875 if (zcmd_alloc_dst_nvlist(hdl, &zc, ZEVENT_SIZE) != 0)
3876 return (-1);
3877
3878retry:
3879 if (zfs_ioctl(hdl, ZFS_IOC_EVENTS_NEXT, &zc) != 0) {
3880 switch (errno) {
3881 case ESHUTDOWN:
3882 error = zfs_error_fmt(hdl, EZFS_POOLUNAVAIL,
3883 dgettext(TEXT_DOMAIN, "zfs shutdown"));
3884 goto out;
3885 case ENOENT:
3886 /* Blocking error case should not occur */
8c7aa0cf 3887 if (!(flags & ZEVENT_NONBLOCK))
26685276
BB
3888 error = zpool_standard_error_fmt(hdl, errno,
3889 dgettext(TEXT_DOMAIN, "cannot get event"));
3890
3891 goto out;
3892 case ENOMEM:
3893 if (zcmd_expand_dst_nvlist(hdl, &zc) != 0) {
3894 error = zfs_error_fmt(hdl, EZFS_NOMEM,
3895 dgettext(TEXT_DOMAIN, "cannot get event"));
3896 goto out;
3897 } else {
3898 goto retry;
3899 }
3900 default:
3901 error = zpool_standard_error_fmt(hdl, errno,
3902 dgettext(TEXT_DOMAIN, "cannot get event"));
3903 goto out;
3904 }
3905 }
3906
3907 error = zcmd_read_dst_nvlist(hdl, &zc, nvp);
3908 if (error != 0)
3909 goto out;
3910
3911 *dropped = (int)zc.zc_cookie;
3912out:
3913 zcmd_free_nvlists(&zc);
3914
3915 return (error);
3916}
3917
3918/*
3919 * Clear all events.
3920 */
3921int
3922zpool_events_clear(libzfs_handle_t *hdl, int *count)
3923{
13fe0198 3924 zfs_cmd_t zc = {"\0"};
26685276
BB
3925 char msg[1024];
3926
3927 (void) snprintf(msg, sizeof (msg), dgettext(TEXT_DOMAIN,
3928 "cannot clear events"));
3929
3930 if (zfs_ioctl(hdl, ZFS_IOC_EVENTS_CLEAR, &zc) != 0)
3931 return (zpool_standard_error_fmt(hdl, errno, msg));
3932
3933 if (count != NULL)
3934 *count = (int)zc.zc_cookie; /* # of events cleared */
3935
3936 return (0);
3937}
3938
75e3ff58
BB
3939/*
3940 * Seek to a specific EID, ZEVENT_SEEK_START, or ZEVENT_SEEK_END for
3941 * the passed zevent_fd file handle. On success zero is returned,
3942 * otherwise -1 is returned and hdl->libzfs_error is set to the errno.
3943 */
3944int
3945zpool_events_seek(libzfs_handle_t *hdl, uint64_t eid, int zevent_fd)
3946{
3947 zfs_cmd_t zc = {"\0"};
3948 int error = 0;
3949
3950 zc.zc_guid = eid;
3951 zc.zc_cleanup_fd = zevent_fd;
3952
3953 if (zfs_ioctl(hdl, ZFS_IOC_EVENTS_SEEK, &zc) != 0) {
3954 switch (errno) {
3955 case ENOENT:
3956 error = zfs_error_fmt(hdl, EZFS_NOENT,
3957 dgettext(TEXT_DOMAIN, "cannot get event"));
3958 break;
3959
3960 case ENOMEM:
3961 error = zfs_error_fmt(hdl, EZFS_NOMEM,
3962 dgettext(TEXT_DOMAIN, "cannot get event"));
3963 break;
3964
3965 default:
3966 error = zpool_standard_error_fmt(hdl, errno,
3967 dgettext(TEXT_DOMAIN, "cannot get event"));
3968 break;
3969 }
3970 }
3971
3972 return (error);
3973}
3974
34dc7c2f
BB
3975void
3976zpool_obj_to_path(zpool_handle_t *zhp, uint64_t dsobj, uint64_t obj,
3977 char *pathname, size_t len)
3978{
13fe0198 3979 zfs_cmd_t zc = {"\0"};
34dc7c2f
BB
3980 boolean_t mounted = B_FALSE;
3981 char *mntpnt = NULL;
eca7b760 3982 char dsname[ZFS_MAX_DATASET_NAME_LEN];
34dc7c2f
BB
3983
3984 if (dsobj == 0) {
3985 /* special case for the MOS */
d1d7e268
MK
3986 (void) snprintf(pathname, len, "<metadata>:<0x%llx>",
3987 (longlong_t)obj);
34dc7c2f
BB
3988 return;
3989 }
3990
3991 /* get the dataset's name */
3992 (void) strlcpy(zc.zc_name, zhp->zpool_name, sizeof (zc.zc_name));
3993 zc.zc_obj = dsobj;
3994 if (ioctl(zhp->zpool_hdl->libzfs_fd,
3995 ZFS_IOC_DSOBJ_TO_DSNAME, &zc) != 0) {
3996 /* just write out a path of two object numbers */
3997 (void) snprintf(pathname, len, "<0x%llx>:<0x%llx>",
b8864a23 3998 (longlong_t)dsobj, (longlong_t)obj);
34dc7c2f
BB
3999 return;
4000 }
4001 (void) strlcpy(dsname, zc.zc_value, sizeof (dsname));
4002
4003 /* find out if the dataset is mounted */
4004 mounted = is_mounted(zhp->zpool_hdl, dsname, &mntpnt);
4005
4006 /* get the corrupted object's path */
4007 (void) strlcpy(zc.zc_name, dsname, sizeof (zc.zc_name));
4008 zc.zc_obj = obj;
4009 if (ioctl(zhp->zpool_hdl->libzfs_fd, ZFS_IOC_OBJ_TO_PATH,
4010 &zc) == 0) {
4011 if (mounted) {
4012 (void) snprintf(pathname, len, "%s%s", mntpnt,
4013 zc.zc_value);
4014 } else {
4015 (void) snprintf(pathname, len, "%s:%s",
4016 dsname, zc.zc_value);
4017 }
4018 } else {
d1d7e268
MK
4019 (void) snprintf(pathname, len, "%s:<0x%llx>", dsname,
4020 (longlong_t)obj);
34dc7c2f
BB
4021 }
4022 free(mntpnt);
4023}
4024
b128c09f
BB
4025/*
4026 * Read the EFI label from the config, if a label does not exist then
4027 * pass back the error to the caller. If the caller has passed a non-NULL
4028 * diskaddr argument then we set it to the starting address of the EFI
4029 * partition.
4030 */
4031static int
4032read_efi_label(nvlist_t *config, diskaddr_t *sb)
4033{
4034 char *path;
4035 int fd;
4036 char diskname[MAXPATHLEN];
4037 int err = -1;
4038
4039 if (nvlist_lookup_string(config, ZPOOL_CONFIG_PATH, &path) != 0)
4040 return (err);
4041
eac47204 4042 (void) snprintf(diskname, sizeof (diskname), "%s%s", DISK_ROOT,
b128c09f 4043 strrchr(path, '/'));
d603ed6c 4044 if ((fd = open(diskname, O_RDWR|O_DIRECT)) >= 0) {
b128c09f
BB
4045 struct dk_gpt *vtoc;
4046
4047 if ((err = efi_alloc_and_read(fd, &vtoc)) >= 0) {
4048 if (sb != NULL)
4049 *sb = vtoc->efi_parts[0].p_start;
4050 efi_free(vtoc);
4051 }
4052 (void) close(fd);
4053 }
4054 return (err);
4055}
4056
34dc7c2f
BB
4057/*
4058 * determine where a partition starts on a disk in the current
4059 * configuration
4060 */
4061static diskaddr_t
4062find_start_block(nvlist_t *config)
4063{
4064 nvlist_t **child;
4065 uint_t c, children;
34dc7c2f 4066 diskaddr_t sb = MAXOFFSET_T;
34dc7c2f
BB
4067 uint64_t wholedisk;
4068
4069 if (nvlist_lookup_nvlist_array(config,
4070 ZPOOL_CONFIG_CHILDREN, &child, &children) != 0) {
4071 if (nvlist_lookup_uint64(config,
4072 ZPOOL_CONFIG_WHOLE_DISK,
4073 &wholedisk) != 0 || !wholedisk) {
4074 return (MAXOFFSET_T);
4075 }
b128c09f
BB
4076 if (read_efi_label(config, &sb) < 0)
4077 sb = MAXOFFSET_T;
34dc7c2f
BB
4078 return (sb);
4079 }
4080
4081 for (c = 0; c < children; c++) {
4082 sb = find_start_block(child[c]);
4083 if (sb != MAXOFFSET_T) {
4084 return (sb);
4085 }
4086 }
4087 return (MAXOFFSET_T);
4088}
4089
2d82ea8b 4090static int
d603ed6c
BB
4091zpool_label_disk_check(char *path)
4092{
4093 struct dk_gpt *vtoc;
4094 int fd, err;
4095
4096 if ((fd = open(path, O_RDWR|O_DIRECT)) < 0)
d1d7e268 4097 return (errno);
d603ed6c
BB
4098
4099 if ((err = efi_alloc_and_read(fd, &vtoc)) != 0) {
4100 (void) close(fd);
d1d7e268 4101 return (err);
d603ed6c
BB
4102 }
4103
4104 if (vtoc->efi_flags & EFI_GPT_PRIMARY_CORRUPT) {
4105 efi_free(vtoc);
4106 (void) close(fd);
d1d7e268 4107 return (EIDRM);
d603ed6c
BB
4108 }
4109
4110 efi_free(vtoc);
4111 (void) close(fd);
d1d7e268 4112 return (0);
d603ed6c
BB
4113}
4114
5b4136bd
BB
4115/*
4116 * Generate a unique partition name for the ZFS member. Partitions must
4117 * have unique names to ensure udev will be able to create symlinks under
4118 * /dev/disk/by-partlabel/ for all pool members. The partition names are
4119 * of the form <pool>-<unique-id>.
4120 */
4121static void
4122zpool_label_name(char *label_name, int label_size)
4123{
4124 uint64_t id = 0;
4125 int fd;
4126
4127 fd = open("/dev/urandom", O_RDONLY);
06cf4d98 4128 if (fd >= 0) {
5b4136bd
BB
4129 if (read(fd, &id, sizeof (id)) != sizeof (id))
4130 id = 0;
4131
4132 close(fd);
4133 }
4134
4135 if (id == 0)
4136 id = (((uint64_t)rand()) << 32) | (uint64_t)rand();
4137
02730c33 4138 snprintf(label_name, label_size, "zfs-%016llx", (u_longlong_t)id);
5b4136bd
BB
4139}
4140
34dc7c2f
BB
4141/*
4142 * Label an individual disk. The name provided is the short name,
4143 * stripped of any leading /dev path.
4144 */
4145int
4146zpool_label_disk(libzfs_handle_t *hdl, zpool_handle_t *zhp, char *name)
4147{
4148 char path[MAXPATHLEN];
4149 struct dk_gpt *vtoc;
d603ed6c 4150 int rval, fd;
34dc7c2f
BB
4151 size_t resv = EFI_MIN_RESV_SIZE;
4152 uint64_t slice_size;
4153 diskaddr_t start_block;
4154 char errbuf[1024];
4155
4156 /* prepare an error message just in case */
4157 (void) snprintf(errbuf, sizeof (errbuf),
4158 dgettext(TEXT_DOMAIN, "cannot label '%s'"), name);
4159
4160 if (zhp) {
4161 nvlist_t *nvroot;
4162
4163 verify(nvlist_lookup_nvlist(zhp->zpool_config,
4164 ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
4165
4166 if (zhp->zpool_start_block == 0)
4167 start_block = find_start_block(nvroot);
4168 else
4169 start_block = zhp->zpool_start_block;
4170 zhp->zpool_start_block = start_block;
4171 } else {
4172 /* new pool */
4173 start_block = NEW_START_BLOCK;
4174 }
4175
eac47204 4176 (void) snprintf(path, sizeof (path), "%s/%s", DISK_ROOT, name);
34dc7c2f 4177
d02ca379 4178 if ((fd = open(path, O_RDWR|O_DIRECT|O_EXCL)) < 0) {
34dc7c2f
BB
4179 /*
4180 * This shouldn't happen. We've long since verified that this
4181 * is a valid device.
4182 */
109491a8
RL
4183 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "cannot "
4184 "label '%s': unable to open device: %d"), path, errno);
34dc7c2f
BB
4185 return (zfs_error(hdl, EZFS_OPENFAILED, errbuf));
4186 }
4187
4188 if (efi_alloc_and_init(fd, EFI_NUMPAR, &vtoc) != 0) {
4189 /*
4190 * The only way this can fail is if we run out of memory, or we
4191 * were unable to read the disk's capacity
4192 */
4193 if (errno == ENOMEM)
4194 (void) no_memory(hdl);
4195
4196 (void) close(fd);
109491a8
RL
4197 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "cannot "
4198 "label '%s': unable to read disk capacity"), path);
34dc7c2f
BB
4199
4200 return (zfs_error(hdl, EZFS_NOCAP, errbuf));
4201 }
4202
4203 slice_size = vtoc->efi_last_u_lba + 1;
4204 slice_size -= EFI_MIN_RESV_SIZE;
4205 if (start_block == MAXOFFSET_T)
4206 start_block = NEW_START_BLOCK;
4207 slice_size -= start_block;
613d88ed 4208 slice_size = P2ALIGN(slice_size, PARTITION_END_ALIGNMENT);
34dc7c2f
BB
4209
4210 vtoc->efi_parts[0].p_start = start_block;
4211 vtoc->efi_parts[0].p_size = slice_size;
4212
4213 /*
4214 * Why we use V_USR: V_BACKUP confuses users, and is considered
4215 * disposable by some EFI utilities (since EFI doesn't have a backup
4216 * slice). V_UNASSIGNED is supposed to be used only for zero size
4217 * partitions, and efi_write() will fail if we use it. V_ROOT, V_BOOT,
4218 * etc. were all pretty specific. V_USR is as close to reality as we
4219 * can get, in the absence of V_OTHER.
4220 */
4221 vtoc->efi_parts[0].p_tag = V_USR;
5b4136bd 4222 zpool_label_name(vtoc->efi_parts[0].p_name, EFI_PART_NAME_LEN);
34dc7c2f
BB
4223
4224 vtoc->efi_parts[8].p_start = slice_size + start_block;
4225 vtoc->efi_parts[8].p_size = resv;
4226 vtoc->efi_parts[8].p_tag = V_RESERVED;
4227
b5a28807 4228 if ((rval = efi_write(fd, vtoc)) != 0 || (rval = efi_rescan(fd)) != 0) {
34dc7c2f
BB
4229 /*
4230 * Some block drivers (like pcata) may not support EFI
4231 * GPT labels. Print out a helpful error message dir-
4232 * ecting the user to manually label the disk and give
4233 * a specific slice.
4234 */
4235 (void) close(fd);
4236 efi_free(vtoc);
4237
d603ed6c
BB
4238 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "try using "
4239 "parted(8) and then provide a specific slice: %d"), rval);
34dc7c2f
BB
4240 return (zfs_error(hdl, EZFS_LABELFAILED, errbuf));
4241 }
4242
4243 (void) close(fd);
4244 efi_free(vtoc);
34dc7c2f 4245
eac47204
BB
4246 (void) snprintf(path, sizeof (path), "%s/%s", DISK_ROOT, name);
4247 (void) zfs_append_partition(path, MAXPATHLEN);
4248
2d82ea8b
BB
4249 /* Wait to udev to signal use the device has settled. */
4250 rval = zpool_label_disk_wait(path, DISK_LABEL_WAIT);
d603ed6c
BB
4251 if (rval) {
4252 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "failed to "
4253 "detect device partitions on '%s': %d"), path, rval);
4254 return (zfs_error(hdl, EZFS_LABELFAILED, errbuf));
34dc7c2f
BB
4255 }
4256
d603ed6c
BB
4257 /* We can't be to paranoid. Read the label back and verify it. */
4258 (void) snprintf(path, sizeof (path), "%s/%s", DISK_ROOT, name);
4259 rval = zpool_label_disk_check(path);
4260 if (rval) {
4261 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "freshly written "
4262 "EFI label on '%s' is damaged. Ensure\nthis device "
4263 "is not in in use, and is functioning properly: %d"),
4264 path, rval);
4265 return (zfs_error(hdl, EZFS_LABELFAILED, errbuf));
34dc7c2f 4266 }
34dc7c2f 4267
d1d7e268 4268 return (0);
34dc7c2f 4269}
6078881a 4270
6078881a
TH
4271/*
4272 * Allocate and return the underlying device name for a device mapper device.
4273 * If a device mapper device maps to multiple devices, return the first device.
4274 *
8720e9e7
TH
4275 * For example, dm_name = "/dev/dm-0" could return "/dev/sda". Symlinks to a
4276 * DM device (like /dev/disk/by-vdev/A0) are also allowed.
6078881a
TH
4277 *
4278 * Returns device name, or NULL on error or no match. If dm_name is not a DM
4279 * device then return NULL.
4280 *
4281 * NOTE: The returned name string must be *freed*.
4282 */
8720e9e7
TH
4283char *
4284dm_get_underlying_path(char *dm_name)
6078881a 4285{
8720e9e7
TH
4286 DIR *dp = NULL;
4287 struct dirent *ep;
4288 char *realp;
4289 char *tmp = NULL;
4290 char *path = NULL;
4291 char *dev_str;
4292 int size;
6078881a 4293
8720e9e7
TH
4294 if (dm_name == NULL)
4295 return (NULL);
4296
4297 /* dm name may be a symlink (like /dev/disk/by-vdev/A0) */
4298 realp = realpath(dm_name, NULL);
4299 if (realp == NULL)
4300 return (NULL);
6078881a
TH
4301
4302 /*
8720e9e7
TH
4303 * If they preface 'dev' with a path (like "/dev") then strip it off.
4304 * We just want the 'dm-N' part.
6078881a 4305 */
8720e9e7
TH
4306 tmp = strrchr(realp, '/');
4307 if (tmp != NULL)
4308 dev_str = tmp + 1; /* +1 since we want the chr after '/' */
4309 else
4310 dev_str = tmp;
6078881a 4311
8720e9e7
TH
4312 size = asprintf(&tmp, "/sys/block/%s/slaves/", dev_str);
4313 if (size == -1 || !tmp)
6078881a
TH
4314 goto end;
4315
8720e9e7
TH
4316 dp = opendir(tmp);
4317 if (dp == NULL)
6078881a
TH
4318 goto end;
4319
8720e9e7
TH
4320 /* Return first sd* entry in /sys/block/dm-N/slaves/ */
4321 while ((ep = readdir(dp))) {
4322 if (ep->d_type != DT_DIR) { /* skip "." and ".." dirs */
4323 size = asprintf(&path, "/dev/%s", ep->d_name);
4324 break;
4325 }
4326 }
6078881a
TH
4327
4328end:
8720e9e7
TH
4329 if (dp != NULL)
4330 closedir(dp);
4331 free(tmp);
4332 free(realp);
4333 return (path);
6078881a
TH
4334}
4335
4336/*
4337 * Return 1 if device is a device mapper or multipath device.
4338 * Return 0 if not.
4339 */
4340int
1bbd8770 4341zfs_dev_is_dm(char *dev_name)
6078881a
TH
4342{
4343
4344 char *tmp;
1bbd8770 4345 tmp = dm_get_underlying_path(dev_name);
8720e9e7 4346 if (tmp == NULL)
6078881a
TH
4347 return (0);
4348
4349 free(tmp);
4350 return (1);
4351}
4352
4353/*
4354 * Lookup the underlying device for a device name
4355 *
4356 * Often you'll have a symlink to a device, a partition device,
4357 * or a multipath device, and want to look up the underlying device.
4358 * This function returns the underlying device name. If the device
4359 * name is already the underlying device, then just return the same
4360 * name. If the device is a DM device with multiple underlying devices
4361 * then return the first one.
4362 *
4363 * For example:
4364 *
4365 * 1. /dev/disk/by-id/ata-QEMU_HARDDISK_QM00001 -> ../../sda
4366 * dev_name: /dev/disk/by-id/ata-QEMU_HARDDISK_QM00001
4367 * returns: /dev/sda
4368 *
4369 * 2. /dev/mapper/mpatha (made up of /dev/sda and /dev/sdb)
4370 * dev_name: /dev/mapper/mpatha
4371 * returns: /dev/sda (first device)
4372 *
4373 * 3. /dev/sda (already the underlying device)
4374 * dev_name: /dev/sda
4375 * returns: /dev/sda
4376 *
4377 * 4. /dev/dm-3 (mapped to /dev/sda)
4378 * dev_name: /dev/dm-3
4379 * returns: /dev/sda
4380 *
4381 * 5. /dev/disk/by-id/scsi-0QEMU_drive-scsi0-0-0-0-part9 -> ../../sdb9
4382 * dev_name: /dev/disk/by-id/scsi-0QEMU_drive-scsi0-0-0-0-part9
4383 * returns: /dev/sdb
4384 *
4385 * 6. /dev/disk/by-uuid/5df030cf-3cd9-46e4-8e99-3ccb462a4e9a -> ../dev/sda2
4386 * dev_name: /dev/disk/by-uuid/5df030cf-3cd9-46e4-8e99-3ccb462a4e9a
4387 * returns: /dev/sda
4388 *
4389 * Returns underlying device name, or NULL on error or no match.
4390 *
4391 * NOTE: The returned name string must be *freed*.
4392 */
4393char *
1bbd8770 4394zfs_get_underlying_path(char *dev_name)
6078881a
TH
4395{
4396 char *name = NULL;
4397 char *tmp;
4398
8720e9e7 4399 if (dev_name == NULL)
6078881a
TH
4400 return (NULL);
4401
4402 tmp = dm_get_underlying_path(dev_name);
4403
4404 /* dev_name not a DM device, so just un-symlinkize it */
8720e9e7 4405 if (tmp == NULL)
6078881a
TH
4406 tmp = realpath(dev_name, NULL);
4407
8720e9e7
TH
4408 if (tmp != NULL) {
4409 name = zfs_strip_partition_path(tmp);
6078881a
TH
4410 free(tmp);
4411 }
4412
4413 return (name);
4414}
1bbd8770
TH
4415
4416/*
4417 * Given a dev name like "sda", return the full enclosure sysfs path to
4418 * the disk. You can also pass in the name with "/dev" prepended
4419 * to it (like /dev/sda).
4420 *
4421 * For example, disk "sda" in enclosure slot 1:
4422 * dev: "sda"
4423 * returns: "/sys/class/enclosure/1:0:3:0/Slot 1"
4424 *
4425 * 'dev' must be a non-devicemapper device.
4426 *
4427 * Returned string must be freed.
4428 */
4429char *
4430zfs_get_enclosure_sysfs_path(char *dev_name)
4431{
4432 DIR *dp = NULL;
4433 struct dirent *ep;
4434 char buf[MAXPATHLEN];
4435 char *tmp1 = NULL;
4436 char *tmp2 = NULL;
4437 char *tmp3 = NULL;
4438 char *path = NULL;
4439 size_t size;
4440 int tmpsize;
4441
8720e9e7 4442 if (dev_name == NULL)
1bbd8770
TH
4443 return (NULL);
4444
4445 /* If they preface 'dev' with a path (like "/dev") then strip it off */
4446 tmp1 = strrchr(dev_name, '/');
8720e9e7 4447 if (tmp1 != NULL)
1bbd8770
TH
4448 dev_name = tmp1 + 1; /* +1 since we want the chr after '/' */
4449
4450 tmpsize = asprintf(&tmp1, "/sys/block/%s/device", dev_name);
4451 if (tmpsize == -1 || tmp1 == NULL) {
4452 tmp1 = NULL;
4453 goto end;
4454 }
4455
4456 dp = opendir(tmp1);
4457 if (dp == NULL) {
4458 tmp1 = NULL; /* To make free() at the end a NOP */
4459 goto end;
4460 }
4461
4462 /*
4463 * Look though all sysfs entries in /sys/block/<dev>/device for
4464 * the enclosure symlink.
4465 */
4466 while ((ep = readdir(dp))) {
4467 /* Ignore everything that's not our enclosure_device link */
8720e9e7 4468 if (strstr(ep->d_name, "enclosure_device") == NULL)
1bbd8770
TH
4469 continue;
4470
4471 if (asprintf(&tmp2, "%s/%s", tmp1, ep->d_name) == -1 ||
4472 tmp2 == NULL)
4473 break;
4474
4475 size = readlink(tmp2, buf, sizeof (buf));
4476
4477 /* Did readlink fail or crop the link name? */
4478 if (size == -1 || size >= sizeof (buf)) {
4479 free(tmp2);
4480 tmp2 = NULL; /* To make free() at the end a NOP */
4481 break;
4482 }
4483
4484 /*
4485 * We got a valid link. readlink() doesn't terminate strings
4486 * so we have to do it.
4487 */
4488 buf[size] = '\0';
4489
4490 /*
4491 * Our link will look like:
4492 *
4493 * "../../../../port-11:1:2/..STUFF../enclosure/1:0:3:0/SLOT 1"
4494 *
4495 * We want to grab the "enclosure/1:0:3:0/SLOT 1" part
4496 */
4497 tmp3 = strstr(buf, "enclosure");
4498 if (tmp3 == NULL)
4499 break;
4500
4501 if (asprintf(&path, "/sys/class/%s", tmp3) == -1) {
4502 /* If asprintf() fails, 'path' is undefined */
4503 path = NULL;
4504 break;
4505 }
4506
4507 if (path == NULL)
4508 break;
4509 }
4510
4511end:
4512 free(tmp2);
4513 free(tmp1);
4514
8720e9e7 4515 if (dp != NULL)
1bbd8770
TH
4516 closedir(dp);
4517
4518 return (path);
4519}