4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
24 * Copyright (c) 2012 by Delphix. All rights reserved.
28 * Pool import support functions.
30 * To import a pool, we rely on reading the configuration information from the
31 * ZFS label of each device. If we successfully read the label, then we
32 * organize the configuration information in the following hierarchy:
34 * pool guid -> toplevel vdev guid -> label txg
36 * Duplicate entries matching this same tuple will be discarded. Once we have
37 * examined every device, we pick the best label txg config for each toplevel
38 * vdev. We then arrange these toplevel vdevs into a complete pool config, and
39 * update any paths that have changed. Finally, we attempt to import the pool
40 * using our derived config, and record the results.
55 #include <sys/dktp/fdisk.h>
56 #include <sys/efi_partition.h>
57 #include <thread_pool.h>
59 #include <sys/vdev_impl.h>
62 #include "libzfs_impl.h"
65 * Intermediate structures used to gather configuration information.
67 typedef struct config_entry
{
70 struct config_entry
*ce_next
;
73 typedef struct vdev_entry
{
75 config_entry_t
*ve_configs
;
76 struct vdev_entry
*ve_next
;
79 typedef struct pool_entry
{
81 vdev_entry_t
*pe_vdevs
;
82 struct pool_entry
*pe_next
;
85 typedef struct name_entry
{
88 struct name_entry
*ne_next
;
91 typedef struct pool_list
{
97 get_devid(const char *path
)
103 if ((fd
= open(path
, O_RDONLY
)) < 0)
108 if (devid_get(fd
, &devid
) == 0) {
109 if (devid_get_minor_name(fd
, &minor
) == 0)
110 ret
= devid_str_encode(devid
, minor
);
112 devid_str_free(minor
);
122 * Go through and fix up any path and/or devid information for the given vdev
126 fix_paths(nvlist_t
*nv
, name_entry_t
*names
)
131 name_entry_t
*ne
, *best
;
135 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
136 &child
, &children
) == 0) {
137 for (c
= 0; c
< children
; c
++)
138 if (fix_paths(child
[c
], names
) != 0)
144 * This is a leaf (file or disk) vdev. In either case, go through
145 * the name list and see if we find a matching guid. If so, replace
146 * the path and see if we can calculate a new devid.
148 * There may be multiple names associated with a particular guid, in
149 * which case we have overlapping slices or multiple paths to the same
150 * disk. If this is the case, then we want to pick the path that is
151 * the most similar to the original, where "most similar" is the number
152 * of matching characters starting from the end of the path. This will
153 * preserve slice numbers even if the disks have been reorganized, and
154 * will also catch preferred disk names if multiple paths exist.
156 verify(nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
, &guid
) == 0);
157 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_PATH
, &path
) != 0)
162 for (ne
= names
; ne
!= NULL
; ne
= ne
->ne_next
) {
163 if (ne
->ne_guid
== guid
) {
164 const char *src
, *dst
;
172 src
= ne
->ne_name
+ strlen(ne
->ne_name
) - 1;
173 dst
= path
+ strlen(path
) - 1;
174 for (count
= 0; src
>= ne
->ne_name
&& dst
>= path
;
175 src
--, dst
--, count
++)
180 * At this point, 'count' is the number of characters
181 * matched from the end.
183 if (count
> matched
|| best
== NULL
) {
193 if (nvlist_add_string(nv
, ZPOOL_CONFIG_PATH
, best
->ne_name
) != 0)
196 if ((devid
= get_devid(best
->ne_name
)) == NULL
) {
197 (void) nvlist_remove_all(nv
, ZPOOL_CONFIG_DEVID
);
199 if (nvlist_add_string(nv
, ZPOOL_CONFIG_DEVID
, devid
) != 0)
201 devid_str_free(devid
);
208 * Add the given configuration to the list of known devices.
211 add_config(libzfs_handle_t
*hdl
, pool_list_t
*pl
, const char *path
,
214 uint64_t pool_guid
, vdev_guid
, top_guid
, txg
, state
;
221 * If this is a hot spare not currently in use or level 2 cache
222 * device, add it to the list of names to translate, but don't do
225 if (nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_STATE
,
227 (state
== POOL_STATE_SPARE
|| state
== POOL_STATE_L2CACHE
) &&
228 nvlist_lookup_uint64(config
, ZPOOL_CONFIG_GUID
, &vdev_guid
) == 0) {
229 if ((ne
= zfs_alloc(hdl
, sizeof (name_entry_t
))) == NULL
)
232 if ((ne
->ne_name
= zfs_strdup(hdl
, path
)) == NULL
) {
236 ne
->ne_guid
= vdev_guid
;
237 ne
->ne_next
= pl
->names
;
243 * If we have a valid config but cannot read any of these fields, then
244 * it means we have a half-initialized label. In vdev_label_init()
245 * we write a label with txg == 0 so that we can identify the device
246 * in case the user refers to the same disk later on. If we fail to
247 * create the pool, we'll be left with a label in this state
248 * which should not be considered part of a valid pool.
250 if (nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_GUID
,
252 nvlist_lookup_uint64(config
, ZPOOL_CONFIG_GUID
,
254 nvlist_lookup_uint64(config
, ZPOOL_CONFIG_TOP_GUID
,
256 nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_TXG
,
257 &txg
) != 0 || txg
== 0) {
263 * First, see if we know about this pool. If not, then add it to the
264 * list of known pools.
266 for (pe
= pl
->pools
; pe
!= NULL
; pe
= pe
->pe_next
) {
267 if (pe
->pe_guid
== pool_guid
)
272 if ((pe
= zfs_alloc(hdl
, sizeof (pool_entry_t
))) == NULL
) {
276 pe
->pe_guid
= pool_guid
;
277 pe
->pe_next
= pl
->pools
;
282 * Second, see if we know about this toplevel vdev. Add it if its
285 for (ve
= pe
->pe_vdevs
; ve
!= NULL
; ve
= ve
->ve_next
) {
286 if (ve
->ve_guid
== top_guid
)
291 if ((ve
= zfs_alloc(hdl
, sizeof (vdev_entry_t
))) == NULL
) {
295 ve
->ve_guid
= top_guid
;
296 ve
->ve_next
= pe
->pe_vdevs
;
301 * Third, see if we have a config with a matching transaction group. If
302 * so, then we do nothing. Otherwise, add it to the list of known
305 for (ce
= ve
->ve_configs
; ce
!= NULL
; ce
= ce
->ce_next
) {
306 if (ce
->ce_txg
== txg
)
311 if ((ce
= zfs_alloc(hdl
, sizeof (config_entry_t
))) == NULL
) {
316 ce
->ce_config
= config
;
317 ce
->ce_next
= ve
->ve_configs
;
324 * At this point we've successfully added our config to the list of
325 * known configs. The last thing to do is add the vdev guid -> path
326 * mappings so that we can fix up the configuration as necessary before
329 if ((ne
= zfs_alloc(hdl
, sizeof (name_entry_t
))) == NULL
)
332 if ((ne
->ne_name
= zfs_strdup(hdl
, path
)) == NULL
) {
337 ne
->ne_guid
= vdev_guid
;
338 ne
->ne_next
= pl
->names
;
345 * Returns true if the named pool matches the given GUID.
348 pool_active(libzfs_handle_t
*hdl
, const char *name
, uint64_t guid
,
354 if (zpool_open_silent(hdl
, name
, &zhp
) != 0)
362 verify(nvlist_lookup_uint64(zhp
->zpool_config
, ZPOOL_CONFIG_POOL_GUID
,
367 *isactive
= (theguid
== guid
);
372 refresh_config(libzfs_handle_t
*hdl
, nvlist_t
*config
)
375 zfs_cmd_t zc
= { 0 };
378 if (zcmd_write_conf_nvlist(hdl
, &zc
, config
) != 0)
381 if (zcmd_alloc_dst_nvlist(hdl
, &zc
,
382 zc
.zc_nvlist_conf_size
* 2) != 0) {
383 zcmd_free_nvlists(&zc
);
387 while ((err
= ioctl(hdl
->libzfs_fd
, ZFS_IOC_POOL_TRYIMPORT
,
388 &zc
)) != 0 && errno
== ENOMEM
) {
389 if (zcmd_expand_dst_nvlist(hdl
, &zc
) != 0) {
390 zcmd_free_nvlists(&zc
);
396 zcmd_free_nvlists(&zc
);
400 if (zcmd_read_dst_nvlist(hdl
, &zc
, &nvl
) != 0) {
401 zcmd_free_nvlists(&zc
);
405 zcmd_free_nvlists(&zc
);
410 * Determine if the vdev id is a hole in the namespace.
413 vdev_is_hole(uint64_t *hole_array
, uint_t holes
, uint_t id
)
415 for (int c
= 0; c
< holes
; c
++) {
417 /* Top-level is a hole */
418 if (hole_array
[c
] == id
)
425 * Convert our list of pools into the definitive set of configurations. We
426 * start by picking the best config for each toplevel vdev. Once that's done,
427 * we assemble the toplevel vdevs into a full config for the pool. We make a
428 * pass to fix up any incorrect paths, and then add it to the main list to
429 * return to the user.
432 get_configs(libzfs_handle_t
*hdl
, pool_list_t
*pl
, boolean_t active_ok
)
437 nvlist_t
*ret
= NULL
, *config
= NULL
, *tmp
, *nvtop
, *nvroot
;
438 nvlist_t
**spares
, **l2cache
;
439 uint_t i
, nspares
, nl2cache
;
440 boolean_t config_seen
;
442 char *name
, *hostname
;
445 nvlist_t
**child
= NULL
;
447 uint64_t *hole_array
, max_id
;
452 boolean_t found_one
= B_FALSE
;
453 boolean_t valid_top_config
= B_FALSE
;
455 if (nvlist_alloc(&ret
, 0, 0) != 0)
458 for (pe
= pl
->pools
; pe
!= NULL
; pe
= pe
->pe_next
) {
459 uint64_t id
, max_txg
= 0;
461 if (nvlist_alloc(&config
, NV_UNIQUE_NAME
, 0) != 0)
463 config_seen
= B_FALSE
;
466 * Iterate over all toplevel vdevs. Grab the pool configuration
467 * from the first one we find, and then go through the rest and
468 * add them as necessary to the 'vdevs' member of the config.
470 for (ve
= pe
->pe_vdevs
; ve
!= NULL
; ve
= ve
->ve_next
) {
473 * Determine the best configuration for this vdev by
474 * selecting the config with the latest transaction
478 for (ce
= ve
->ve_configs
; ce
!= NULL
;
481 if (ce
->ce_txg
> best_txg
) {
483 best_txg
= ce
->ce_txg
;
488 * We rely on the fact that the max txg for the
489 * pool will contain the most up-to-date information
490 * about the valid top-levels in the vdev namespace.
492 if (best_txg
> max_txg
) {
493 (void) nvlist_remove(config
,
494 ZPOOL_CONFIG_VDEV_CHILDREN
,
496 (void) nvlist_remove(config
,
497 ZPOOL_CONFIG_HOLE_ARRAY
,
498 DATA_TYPE_UINT64_ARRAY
);
504 valid_top_config
= B_FALSE
;
506 if (nvlist_lookup_uint64(tmp
,
507 ZPOOL_CONFIG_VDEV_CHILDREN
, &max_id
) == 0) {
508 verify(nvlist_add_uint64(config
,
509 ZPOOL_CONFIG_VDEV_CHILDREN
,
511 valid_top_config
= B_TRUE
;
514 if (nvlist_lookup_uint64_array(tmp
,
515 ZPOOL_CONFIG_HOLE_ARRAY
, &hole_array
,
517 verify(nvlist_add_uint64_array(config
,
518 ZPOOL_CONFIG_HOLE_ARRAY
,
519 hole_array
, holes
) == 0);
525 * Copy the relevant pieces of data to the pool
531 * pool txg (if available)
532 * comment (if available)
534 * hostid (if available)
535 * hostname (if available)
537 uint64_t state
, version
, pool_txg
;
538 char *comment
= NULL
;
540 version
= fnvlist_lookup_uint64(tmp
,
541 ZPOOL_CONFIG_VERSION
);
542 fnvlist_add_uint64(config
,
543 ZPOOL_CONFIG_VERSION
, version
);
544 guid
= fnvlist_lookup_uint64(tmp
,
545 ZPOOL_CONFIG_POOL_GUID
);
546 fnvlist_add_uint64(config
,
547 ZPOOL_CONFIG_POOL_GUID
, guid
);
548 name
= fnvlist_lookup_string(tmp
,
549 ZPOOL_CONFIG_POOL_NAME
);
550 fnvlist_add_string(config
,
551 ZPOOL_CONFIG_POOL_NAME
, name
);
553 if (nvlist_lookup_uint64(tmp
,
554 ZPOOL_CONFIG_POOL_TXG
, &pool_txg
) == 0)
555 fnvlist_add_uint64(config
,
556 ZPOOL_CONFIG_POOL_TXG
, pool_txg
);
558 if (nvlist_lookup_string(tmp
,
559 ZPOOL_CONFIG_COMMENT
, &comment
) == 0)
560 fnvlist_add_string(config
,
561 ZPOOL_CONFIG_COMMENT
, comment
);
563 state
= fnvlist_lookup_uint64(tmp
,
564 ZPOOL_CONFIG_POOL_STATE
);
565 fnvlist_add_uint64(config
,
566 ZPOOL_CONFIG_POOL_STATE
, state
);
569 if (nvlist_lookup_uint64(tmp
,
570 ZPOOL_CONFIG_HOSTID
, &hostid
) == 0) {
571 fnvlist_add_uint64(config
,
572 ZPOOL_CONFIG_HOSTID
, hostid
);
573 hostname
= fnvlist_lookup_string(tmp
,
574 ZPOOL_CONFIG_HOSTNAME
);
575 fnvlist_add_string(config
,
576 ZPOOL_CONFIG_HOSTNAME
, hostname
);
579 config_seen
= B_TRUE
;
583 * Add this top-level vdev to the child array.
585 verify(nvlist_lookup_nvlist(tmp
,
586 ZPOOL_CONFIG_VDEV_TREE
, &nvtop
) == 0);
587 verify(nvlist_lookup_uint64(nvtop
, ZPOOL_CONFIG_ID
,
590 if (id
>= children
) {
593 newchild
= zfs_alloc(hdl
, (id
+ 1) *
594 sizeof (nvlist_t
*));
595 if (newchild
== NULL
)
598 for (c
= 0; c
< children
; c
++)
599 newchild
[c
] = child
[c
];
605 if (nvlist_dup(nvtop
, &child
[id
], 0) != 0)
611 * If we have information about all the top-levels then
612 * clean up the nvlist which we've constructed. This
613 * means removing any extraneous devices that are
614 * beyond the valid range or adding devices to the end
615 * of our array which appear to be missing.
617 if (valid_top_config
) {
618 if (max_id
< children
) {
619 for (c
= max_id
; c
< children
; c
++)
620 nvlist_free(child
[c
]);
622 } else if (max_id
> children
) {
625 newchild
= zfs_alloc(hdl
, (max_id
) *
626 sizeof (nvlist_t
*));
627 if (newchild
== NULL
)
630 for (c
= 0; c
< children
; c
++)
631 newchild
[c
] = child
[c
];
639 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_GUID
,
643 * The vdev namespace may contain holes as a result of
644 * device removal. We must add them back into the vdev
645 * tree before we process any missing devices.
648 ASSERT(valid_top_config
);
650 for (c
= 0; c
< children
; c
++) {
653 if (child
[c
] != NULL
||
654 !vdev_is_hole(hole_array
, holes
, c
))
657 if (nvlist_alloc(&holey
, NV_UNIQUE_NAME
,
662 * Holes in the namespace are treated as
663 * "hole" top-level vdevs and have a
664 * special flag set on them.
666 if (nvlist_add_string(holey
,
668 VDEV_TYPE_HOLE
) != 0 ||
669 nvlist_add_uint64(holey
,
670 ZPOOL_CONFIG_ID
, c
) != 0 ||
671 nvlist_add_uint64(holey
,
672 ZPOOL_CONFIG_GUID
, 0ULL) != 0)
679 * Look for any missing top-level vdevs. If this is the case,
680 * create a faked up 'missing' vdev as a placeholder. We cannot
681 * simply compress the child array, because the kernel performs
682 * certain checks to make sure the vdev IDs match their location
683 * in the configuration.
685 for (c
= 0; c
< children
; c
++) {
686 if (child
[c
] == NULL
) {
688 if (nvlist_alloc(&missing
, NV_UNIQUE_NAME
,
691 if (nvlist_add_string(missing
,
693 VDEV_TYPE_MISSING
) != 0 ||
694 nvlist_add_uint64(missing
,
695 ZPOOL_CONFIG_ID
, c
) != 0 ||
696 nvlist_add_uint64(missing
,
697 ZPOOL_CONFIG_GUID
, 0ULL) != 0) {
698 nvlist_free(missing
);
706 * Put all of this pool's top-level vdevs into a root vdev.
708 if (nvlist_alloc(&nvroot
, NV_UNIQUE_NAME
, 0) != 0)
710 if (nvlist_add_string(nvroot
, ZPOOL_CONFIG_TYPE
,
711 VDEV_TYPE_ROOT
) != 0 ||
712 nvlist_add_uint64(nvroot
, ZPOOL_CONFIG_ID
, 0ULL) != 0 ||
713 nvlist_add_uint64(nvroot
, ZPOOL_CONFIG_GUID
, guid
) != 0 ||
714 nvlist_add_nvlist_array(nvroot
, ZPOOL_CONFIG_CHILDREN
,
715 child
, children
) != 0) {
720 for (c
= 0; c
< children
; c
++)
721 nvlist_free(child
[c
]);
727 * Go through and fix up any paths and/or devids based on our
728 * known list of vdev GUID -> path mappings.
730 if (fix_paths(nvroot
, pl
->names
) != 0) {
736 * Add the root vdev to this pool's configuration.
738 if (nvlist_add_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
746 * zdb uses this path to report on active pools that were
747 * imported or created using -R.
753 * Determine if this pool is currently active, in which case we
754 * can't actually import it.
756 verify(nvlist_lookup_string(config
, ZPOOL_CONFIG_POOL_NAME
,
758 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_GUID
,
761 if (pool_active(hdl
, name
, guid
, &isactive
) != 0)
770 if ((nvl
= refresh_config(hdl
, config
)) == NULL
) {
780 * Go through and update the paths for spares, now that we have
783 verify(nvlist_lookup_nvlist(config
, ZPOOL_CONFIG_VDEV_TREE
,
785 if (nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_SPARES
,
786 &spares
, &nspares
) == 0) {
787 for (i
= 0; i
< nspares
; i
++) {
788 if (fix_paths(spares
[i
], pl
->names
) != 0)
794 * Update the paths for l2cache devices.
796 if (nvlist_lookup_nvlist_array(nvroot
, ZPOOL_CONFIG_L2CACHE
,
797 &l2cache
, &nl2cache
) == 0) {
798 for (i
= 0; i
< nl2cache
; i
++) {
799 if (fix_paths(l2cache
[i
], pl
->names
) != 0)
805 * Restore the original information read from the actual label.
807 (void) nvlist_remove(config
, ZPOOL_CONFIG_HOSTID
,
809 (void) nvlist_remove(config
, ZPOOL_CONFIG_HOSTNAME
,
812 verify(nvlist_add_uint64(config
, ZPOOL_CONFIG_HOSTID
,
814 verify(nvlist_add_string(config
, ZPOOL_CONFIG_HOSTNAME
,
820 * Add this pool to the list of configs.
822 verify(nvlist_lookup_string(config
, ZPOOL_CONFIG_POOL_NAME
,
824 if (nvlist_add_nvlist(ret
, name
, config
) != 0)
840 (void) no_memory(hdl
);
844 for (c
= 0; c
< children
; c
++)
845 nvlist_free(child
[c
]);
852 * Return the offset of the given label.
855 label_offset(uint64_t size
, int l
)
857 ASSERT(P2PHASE_TYPED(size
, sizeof (vdev_label_t
), uint64_t) == 0);
858 return (l
* sizeof (vdev_label_t
) + (l
< VDEV_LABELS
/ 2 ?
859 0 : size
- VDEV_LABELS
* sizeof (vdev_label_t
)));
863 * Given a file descriptor, read the label information and return an nvlist
864 * describing the configuration, if there is one.
867 zpool_read_label(int fd
, nvlist_t
**config
)
869 struct stat64 statbuf
;
872 uint64_t state
, txg
, size
;
876 if (fstat64(fd
, &statbuf
) == -1)
878 size
= P2ALIGN_TYPED(statbuf
.st_size
, sizeof (vdev_label_t
), uint64_t);
880 if ((label
= malloc(sizeof (vdev_label_t
))) == NULL
)
883 for (l
= 0; l
< VDEV_LABELS
; l
++) {
884 if (pread64(fd
, label
, sizeof (vdev_label_t
),
885 label_offset(size
, l
)) != sizeof (vdev_label_t
))
888 if (nvlist_unpack(label
->vl_vdev_phys
.vp_nvlist
,
889 sizeof (label
->vl_vdev_phys
.vp_nvlist
), config
, 0) != 0)
892 if (nvlist_lookup_uint64(*config
, ZPOOL_CONFIG_POOL_STATE
,
893 &state
) != 0 || state
> POOL_STATE_L2CACHE
) {
894 nvlist_free(*config
);
898 if (state
!= POOL_STATE_SPARE
&& state
!= POOL_STATE_L2CACHE
&&
899 (nvlist_lookup_uint64(*config
, ZPOOL_CONFIG_POOL_TXG
,
900 &txg
) != 0 || txg
== 0)) {
901 nvlist_free(*config
);
914 typedef struct rdsk_node
{
917 libzfs_handle_t
*rn_hdl
;
921 boolean_t rn_nozpool
;
925 slice_cache_compare(const void *arg1
, const void *arg2
)
927 const char *nm1
= ((rdsk_node_t
*)arg1
)->rn_name
;
928 const char *nm2
= ((rdsk_node_t
*)arg2
)->rn_name
;
929 char *nm1slice
, *nm2slice
;
933 * slices zero and two are the most likely to provide results,
936 nm1slice
= strstr(nm1
, "s0");
937 nm2slice
= strstr(nm2
, "s0");
938 if (nm1slice
&& !nm2slice
) {
941 if (!nm1slice
&& nm2slice
) {
944 nm1slice
= strstr(nm1
, "s2");
945 nm2slice
= strstr(nm2
, "s2");
946 if (nm1slice
&& !nm2slice
) {
949 if (!nm1slice
&& nm2slice
) {
953 rv
= strcmp(nm1
, nm2
);
956 return (rv
> 0 ? 1 : -1);
960 check_one_slice(avl_tree_t
*r
, char *diskname
, uint_t partno
,
961 diskaddr_t size
, uint_t blksz
)
965 char sname
[MAXNAMELEN
];
967 tmpnode
.rn_name
= &sname
[0];
968 (void) snprintf(tmpnode
.rn_name
, MAXNAMELEN
, "%s%u",
971 * protect against division by zero for disk labels that
972 * contain a bogus sector size
976 /* too small to contain a zpool? */
977 if ((size
< (SPA_MINDEVSIZE
/ blksz
)) &&
978 (node
= avl_find(r
, &tmpnode
, NULL
)))
979 node
->rn_nozpool
= B_TRUE
;
983 nozpool_all_slices(avl_tree_t
*r
, const char *sname
)
985 char diskname
[MAXNAMELEN
];
989 (void) strncpy(diskname
, sname
, MAXNAMELEN
);
990 if (((ptr
= strrchr(diskname
, 's')) == NULL
) &&
991 ((ptr
= strrchr(diskname
, 'p')) == NULL
))
995 for (i
= 0; i
< NDKMAP
; i
++)
996 check_one_slice(r
, diskname
, i
, 0, 1);
998 for (i
= 0; i
<= FD_NUMPART
; i
++)
999 check_one_slice(r
, diskname
, i
, 0, 1);
1003 check_slices(avl_tree_t
*r
, int fd
, const char *sname
)
1005 struct extvtoc vtoc
;
1007 char diskname
[MAXNAMELEN
];
1011 (void) strncpy(diskname
, sname
, MAXNAMELEN
);
1012 if ((ptr
= strrchr(diskname
, 's')) == NULL
|| !isdigit(ptr
[1]))
1016 if (read_extvtoc(fd
, &vtoc
) >= 0) {
1017 for (i
= 0; i
< NDKMAP
; i
++)
1018 check_one_slice(r
, diskname
, i
,
1019 vtoc
.v_part
[i
].p_size
, vtoc
.v_sectorsz
);
1020 } else if (efi_alloc_and_read(fd
, &gpt
) >= 0) {
1022 * on x86 we'll still have leftover links that point
1023 * to slices s[9-15], so use NDKMAP instead
1025 for (i
= 0; i
< NDKMAP
; i
++)
1026 check_one_slice(r
, diskname
, i
,
1027 gpt
->efi_parts
[i
].p_size
, gpt
->efi_lbasize
);
1028 /* nodes p[1-4] are never used with EFI labels */
1030 for (i
= 1; i
<= FD_NUMPART
; i
++)
1031 check_one_slice(r
, diskname
, i
, 0, 1);
1037 zpool_open_func(void *arg
)
1039 rdsk_node_t
*rn
= arg
;
1040 struct stat64 statbuf
;
1046 if ((fd
= openat64(rn
->rn_dfd
, rn
->rn_name
, O_RDONLY
)) < 0) {
1047 /* symlink to a device that's no longer there */
1048 if (errno
== ENOENT
)
1049 nozpool_all_slices(rn
->rn_avl
, rn
->rn_name
);
1053 * Ignore failed stats. We only want regular
1054 * files, character devs and block devs.
1056 if (fstat64(fd
, &statbuf
) != 0 ||
1057 (!S_ISREG(statbuf
.st_mode
) &&
1058 !S_ISCHR(statbuf
.st_mode
) &&
1059 !S_ISBLK(statbuf
.st_mode
))) {
1063 /* this file is too small to hold a zpool */
1064 if (S_ISREG(statbuf
.st_mode
) &&
1065 statbuf
.st_size
< SPA_MINDEVSIZE
) {
1068 } else if (!S_ISREG(statbuf
.st_mode
)) {
1070 * Try to read the disk label first so we don't have to
1071 * open a bunch of minor nodes that can't have a zpool.
1073 check_slices(rn
->rn_avl
, fd
, rn
->rn_name
);
1076 if ((zpool_read_label(fd
, &config
)) != 0) {
1078 (void) no_memory(rn
->rn_hdl
);
1084 rn
->rn_config
= config
;
1085 if (config
!= NULL
) {
1086 assert(rn
->rn_nozpool
== B_FALSE
);
1091 * Given a file descriptor, clear (zero) the label information. This function
1092 * is currently only used in the appliance stack as part of the ZFS sysevent
1096 zpool_clear_label(int fd
)
1098 struct stat64 statbuf
;
1100 vdev_label_t
*label
;
1103 if (fstat64(fd
, &statbuf
) == -1)
1105 size
= P2ALIGN_TYPED(statbuf
.st_size
, sizeof (vdev_label_t
), uint64_t);
1107 if ((label
= calloc(sizeof (vdev_label_t
), 1)) == NULL
)
1110 for (l
= 0; l
< VDEV_LABELS
; l
++) {
1111 if (pwrite64(fd
, label
, sizeof (vdev_label_t
),
1112 label_offset(size
, l
)) != sizeof (vdev_label_t
))
1121 * Given a list of directories to search, find all pools stored on disk. This
1122 * includes partial pools which are not available to import. If no args are
1123 * given (argc is 0), then the default directory (/dev/dsk) is searched.
1124 * poolname or guid (but not both) are provided by the caller when trying
1125 * to import a specific pool.
1128 zpool_find_import_impl(libzfs_handle_t
*hdl
, importargs_t
*iarg
)
1130 int i
, dirs
= iarg
->paths
;
1132 struct dirent64
*dp
;
1133 char path
[MAXPATHLEN
];
1134 char *end
, **dir
= iarg
->path
;
1136 nvlist_t
*ret
= NULL
;
1137 static char *default_dir
= "/dev/dsk";
1138 pool_list_t pools
= { 0 };
1139 pool_entry_t
*pe
, *penext
;
1140 vdev_entry_t
*ve
, *venext
;
1141 config_entry_t
*ce
, *cenext
;
1142 name_entry_t
*ne
, *nenext
;
1143 avl_tree_t slice_cache
;
1153 * Go through and read the label configuration information from every
1154 * possible device, organizing the information according to pool GUID
1155 * and toplevel GUID.
1157 for (i
= 0; i
< dirs
; i
++) {
1162 /* use realpath to normalize the path */
1163 if (realpath(dir
[i
], path
) == 0) {
1164 (void) zfs_error_fmt(hdl
, EZFS_BADPATH
,
1165 dgettext(TEXT_DOMAIN
, "cannot open '%s'"), dir
[i
]);
1168 end
= &path
[strlen(path
)];
1171 pathleft
= &path
[sizeof (path
)] - end
;
1174 * Using raw devices instead of block devices when we're
1175 * reading the labels skips a bunch of slow operations during
1176 * close(2) processing, so we replace /dev/dsk with /dev/rdsk.
1178 if (strcmp(path
, "/dev/dsk/") == 0)
1179 rdsk
= "/dev/rdsk/";
1183 if ((dfd
= open64(rdsk
, O_RDONLY
)) < 0 ||
1184 (dirp
= fdopendir(dfd
)) == NULL
) {
1185 zfs_error_aux(hdl
, strerror(errno
));
1186 (void) zfs_error_fmt(hdl
, EZFS_BADPATH
,
1187 dgettext(TEXT_DOMAIN
, "cannot open '%s'"),
1192 avl_create(&slice_cache
, slice_cache_compare
,
1193 sizeof (rdsk_node_t
), offsetof(rdsk_node_t
, rn_node
));
1195 * This is not MT-safe, but we have no MT consumers of libzfs
1197 while ((dp
= readdir64(dirp
)) != NULL
) {
1198 const char *name
= dp
->d_name
;
1199 if (name
[0] == '.' &&
1200 (name
[1] == 0 || (name
[1] == '.' && name
[2] == 0)))
1203 slice
= zfs_alloc(hdl
, sizeof (rdsk_node_t
));
1204 slice
->rn_name
= zfs_strdup(hdl
, name
);
1205 slice
->rn_avl
= &slice_cache
;
1206 slice
->rn_dfd
= dfd
;
1207 slice
->rn_hdl
= hdl
;
1208 slice
->rn_nozpool
= B_FALSE
;
1209 avl_add(&slice_cache
, slice
);
1212 * create a thread pool to do all of this in parallel;
1213 * rn_nozpool is not protected, so this is racy in that
1214 * multiple tasks could decide that the same slice can
1215 * not hold a zpool, which is benign. Also choose
1216 * double the number of processors; we hold a lot of
1217 * locks in the kernel, so going beyond this doesn't
1220 t
= tpool_create(1, 2 * sysconf(_SC_NPROCESSORS_ONLN
),
1222 for (slice
= avl_first(&slice_cache
); slice
;
1223 (slice
= avl_walk(&slice_cache
, slice
,
1225 (void) tpool_dispatch(t
, zpool_open_func
, slice
);
1230 while ((slice
= avl_destroy_nodes(&slice_cache
,
1231 &cookie
)) != NULL
) {
1232 if (slice
->rn_config
!= NULL
) {
1233 nvlist_t
*config
= slice
->rn_config
;
1234 boolean_t matched
= B_TRUE
;
1236 if (iarg
->poolname
!= NULL
) {
1239 matched
= nvlist_lookup_string(config
,
1240 ZPOOL_CONFIG_POOL_NAME
,
1242 strcmp(iarg
->poolname
, pname
) == 0;
1243 } else if (iarg
->guid
!= 0) {
1246 matched
= nvlist_lookup_uint64(config
,
1247 ZPOOL_CONFIG_POOL_GUID
,
1249 iarg
->guid
== this_guid
;
1252 nvlist_free(config
);
1256 /* use the non-raw path for the config */
1257 (void) strlcpy(end
, slice
->rn_name
, pathleft
);
1258 if (add_config(hdl
, &pools
, path
, config
) != 0)
1261 free(slice
->rn_name
);
1264 avl_destroy(&slice_cache
);
1266 (void) closedir(dirp
);
1270 ret
= get_configs(hdl
, &pools
, iarg
->can_be_active
);
1273 for (pe
= pools
.pools
; pe
!= NULL
; pe
= penext
) {
1274 penext
= pe
->pe_next
;
1275 for (ve
= pe
->pe_vdevs
; ve
!= NULL
; ve
= venext
) {
1276 venext
= ve
->ve_next
;
1277 for (ce
= ve
->ve_configs
; ce
!= NULL
; ce
= cenext
) {
1278 cenext
= ce
->ce_next
;
1280 nvlist_free(ce
->ce_config
);
1288 for (ne
= pools
.names
; ne
!= NULL
; ne
= nenext
) {
1289 nenext
= ne
->ne_next
;
1296 (void) closedir(dirp
);
1302 zpool_find_import(libzfs_handle_t
*hdl
, int argc
, char **argv
)
1304 importargs_t iarg
= { 0 };
1309 return (zpool_find_import_impl(hdl
, &iarg
));
1313 * Given a cache file, return the contents as a list of importable pools.
1314 * poolname or guid (but not both) are provided by the caller when trying
1315 * to import a specific pool.
1318 zpool_find_import_cached(libzfs_handle_t
*hdl
, const char *cachefile
,
1319 char *poolname
, uint64_t guid
)
1323 struct stat64 statbuf
;
1324 nvlist_t
*raw
, *src
, *dst
;
1331 verify(poolname
== NULL
|| guid
== 0);
1333 if ((fd
= open(cachefile
, O_RDONLY
)) < 0) {
1334 zfs_error_aux(hdl
, "%s", strerror(errno
));
1335 (void) zfs_error(hdl
, EZFS_BADCACHE
,
1336 dgettext(TEXT_DOMAIN
, "failed to open cache file"));
1340 if (fstat64(fd
, &statbuf
) != 0) {
1341 zfs_error_aux(hdl
, "%s", strerror(errno
));
1343 (void) zfs_error(hdl
, EZFS_BADCACHE
,
1344 dgettext(TEXT_DOMAIN
, "failed to get size of cache file"));
1348 if ((buf
= zfs_alloc(hdl
, statbuf
.st_size
)) == NULL
) {
1353 if (read(fd
, buf
, statbuf
.st_size
) != statbuf
.st_size
) {
1356 (void) zfs_error(hdl
, EZFS_BADCACHE
,
1357 dgettext(TEXT_DOMAIN
,
1358 "failed to read cache file contents"));
1364 if (nvlist_unpack(buf
, statbuf
.st_size
, &raw
, 0) != 0) {
1366 (void) zfs_error(hdl
, EZFS_BADCACHE
,
1367 dgettext(TEXT_DOMAIN
,
1368 "invalid or corrupt cache file contents"));
1375 * Go through and get the current state of the pools and refresh their
1378 if (nvlist_alloc(&pools
, 0, 0) != 0) {
1379 (void) no_memory(hdl
);
1385 while ((elem
= nvlist_next_nvpair(raw
, elem
)) != NULL
) {
1386 verify(nvpair_value_nvlist(elem
, &src
) == 0);
1388 verify(nvlist_lookup_string(src
, ZPOOL_CONFIG_POOL_NAME
,
1390 if (poolname
!= NULL
&& strcmp(poolname
, name
) != 0)
1393 verify(nvlist_lookup_uint64(src
, ZPOOL_CONFIG_POOL_GUID
,
1396 verify(nvlist_lookup_uint64(src
, ZPOOL_CONFIG_POOL_GUID
,
1398 if (guid
!= this_guid
)
1402 if (pool_active(hdl
, name
, this_guid
, &active
) != 0) {
1411 if ((dst
= refresh_config(hdl
, src
)) == NULL
) {
1417 if (nvlist_add_nvlist(pools
, nvpair_name(elem
), dst
) != 0) {
1418 (void) no_memory(hdl
);
1432 name_or_guid_exists(zpool_handle_t
*zhp
, void *data
)
1434 importargs_t
*import
= data
;
1437 if (import
->poolname
!= NULL
) {
1440 verify(nvlist_lookup_string(zhp
->zpool_config
,
1441 ZPOOL_CONFIG_POOL_NAME
, &pool_name
) == 0);
1442 if (strcmp(pool_name
, import
->poolname
) == 0)
1447 verify(nvlist_lookup_uint64(zhp
->zpool_config
,
1448 ZPOOL_CONFIG_POOL_GUID
, &pool_guid
) == 0);
1449 if (pool_guid
== import
->guid
)
1458 zpool_search_import(libzfs_handle_t
*hdl
, importargs_t
*import
)
1460 verify(import
->poolname
== NULL
|| import
->guid
== 0);
1463 import
->exists
= zpool_iter(hdl
, name_or_guid_exists
, import
);
1465 if (import
->cachefile
!= NULL
)
1466 return (zpool_find_import_cached(hdl
, import
->cachefile
,
1467 import
->poolname
, import
->guid
));
1469 return (zpool_find_import_impl(hdl
, import
));
1473 find_guid(nvlist_t
*nv
, uint64_t guid
)
1479 verify(nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
, &tmp
) == 0);
1483 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
1484 &child
, &children
) == 0) {
1485 for (c
= 0; c
< children
; c
++)
1486 if (find_guid(child
[c
], guid
))
1493 typedef struct aux_cbdata
{
1494 const char *cb_type
;
1496 zpool_handle_t
*cb_zhp
;
1500 find_aux(zpool_handle_t
*zhp
, void *data
)
1502 aux_cbdata_t
*cbp
= data
;
1508 verify(nvlist_lookup_nvlist(zhp
->zpool_config
, ZPOOL_CONFIG_VDEV_TREE
,
1511 if (nvlist_lookup_nvlist_array(nvroot
, cbp
->cb_type
,
1512 &list
, &count
) == 0) {
1513 for (i
= 0; i
< count
; i
++) {
1514 verify(nvlist_lookup_uint64(list
[i
],
1515 ZPOOL_CONFIG_GUID
, &guid
) == 0);
1516 if (guid
== cbp
->cb_guid
) {
1528 * Determines if the pool is in use. If so, it returns true and the state of
1529 * the pool as well as the name of the pool. Both strings are allocated and
1530 * must be freed by the caller.
1533 zpool_in_use(libzfs_handle_t
*hdl
, int fd
, pool_state_t
*state
, char **namestr
,
1539 uint64_t guid
, vdev_guid
;
1540 zpool_handle_t
*zhp
;
1541 nvlist_t
*pool_config
;
1542 uint64_t stateval
, isspare
;
1543 aux_cbdata_t cb
= { 0 };
1548 if (zpool_read_label(fd
, &config
) != 0) {
1549 (void) no_memory(hdl
);
1556 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_STATE
,
1558 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_GUID
,
1561 if (stateval
!= POOL_STATE_SPARE
&& stateval
!= POOL_STATE_L2CACHE
) {
1562 verify(nvlist_lookup_string(config
, ZPOOL_CONFIG_POOL_NAME
,
1564 verify(nvlist_lookup_uint64(config
, ZPOOL_CONFIG_POOL_GUID
,
1569 case POOL_STATE_EXPORTED
:
1571 * A pool with an exported state may in fact be imported
1572 * read-only, so check the in-core state to see if it's
1573 * active and imported read-only. If it is, set
1574 * its state to active.
1576 if (pool_active(hdl
, name
, guid
, &isactive
) == 0 && isactive
&&
1577 (zhp
= zpool_open_canfail(hdl
, name
)) != NULL
&&
1578 zpool_get_prop_int(zhp
, ZPOOL_PROP_READONLY
, NULL
))
1579 stateval
= POOL_STATE_ACTIVE
;
1584 case POOL_STATE_ACTIVE
:
1586 * For an active pool, we have to determine if it's really part
1587 * of a currently active pool (in which case the pool will exist
1588 * and the guid will be the same), or whether it's part of an
1589 * active pool that was disconnected without being explicitly
1592 if (pool_active(hdl
, name
, guid
, &isactive
) != 0) {
1593 nvlist_free(config
);
1599 * Because the device may have been removed while
1600 * offlined, we only report it as active if the vdev is
1601 * still present in the config. Otherwise, pretend like
1604 if ((zhp
= zpool_open_canfail(hdl
, name
)) != NULL
&&
1605 (pool_config
= zpool_get_config(zhp
, NULL
))
1609 verify(nvlist_lookup_nvlist(pool_config
,
1610 ZPOOL_CONFIG_VDEV_TREE
, &nvroot
) == 0);
1611 ret
= find_guid(nvroot
, vdev_guid
);
1617 * If this is an active spare within another pool, we
1618 * treat it like an unused hot spare. This allows the
1619 * user to create a pool with a hot spare that currently
1620 * in use within another pool. Since we return B_TRUE,
1621 * libdiskmgt will continue to prevent generic consumers
1622 * from using the device.
1624 if (ret
&& nvlist_lookup_uint64(config
,
1625 ZPOOL_CONFIG_IS_SPARE
, &isspare
) == 0 && isspare
)
1626 stateval
= POOL_STATE_SPARE
;
1631 stateval
= POOL_STATE_POTENTIALLY_ACTIVE
;
1636 case POOL_STATE_SPARE
:
1638 * For a hot spare, it can be either definitively in use, or
1639 * potentially active. To determine if it's in use, we iterate
1640 * over all pools in the system and search for one with a spare
1641 * with a matching guid.
1643 * Due to the shared nature of spares, we don't actually report
1644 * the potentially active case as in use. This means the user
1645 * can freely create pools on the hot spares of exported pools,
1646 * but to do otherwise makes the resulting code complicated, and
1647 * we end up having to deal with this case anyway.
1650 cb
.cb_guid
= vdev_guid
;
1651 cb
.cb_type
= ZPOOL_CONFIG_SPARES
;
1652 if (zpool_iter(hdl
, find_aux
, &cb
) == 1) {
1653 name
= (char *)zpool_get_name(cb
.cb_zhp
);
1660 case POOL_STATE_L2CACHE
:
1663 * Check if any pool is currently using this l2cache device.
1666 cb
.cb_guid
= vdev_guid
;
1667 cb
.cb_type
= ZPOOL_CONFIG_L2CACHE
;
1668 if (zpool_iter(hdl
, find_aux
, &cb
) == 1) {
1669 name
= (char *)zpool_get_name(cb
.cb_zhp
);
1682 if ((*namestr
= zfs_strdup(hdl
, name
)) == NULL
) {
1684 zpool_close(cb
.cb_zhp
);
1685 nvlist_free(config
);
1688 *state
= (pool_state_t
)stateval
;
1692 zpool_close(cb
.cb_zhp
);
1694 nvlist_free(config
);