xref: /titanic_50/usr/src/cmd/zpool/zpool_util.h (revision c67d9675bbc8392fe45f3a7dfbda1ad4daa1eb07)
1fa9e4066Sahrens /*
2fa9e4066Sahrens  * CDDL HEADER START
3fa9e4066Sahrens  *
4fa9e4066Sahrens  * The contents of this file are subject to the terms of the
5fa9e4066Sahrens  * Common Development and Distribution License, Version 1.0 only
6fa9e4066Sahrens  * (the "License").  You may not use this file except in compliance
7fa9e4066Sahrens  * with the License.
8fa9e4066Sahrens  *
9fa9e4066Sahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10fa9e4066Sahrens  * or http://www.opensolaris.org/os/licensing.
11fa9e4066Sahrens  * See the License for the specific language governing permissions
12fa9e4066Sahrens  * and limitations under the License.
13fa9e4066Sahrens  *
14fa9e4066Sahrens  * When distributing Covered Code, include this CDDL HEADER in each
15fa9e4066Sahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16fa9e4066Sahrens  * If applicable, add the following below this CDDL HEADER, with the
17fa9e4066Sahrens  * fields enclosed by brackets "[]" replaced with your own identifying
18fa9e4066Sahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
19fa9e4066Sahrens  *
20fa9e4066Sahrens  * CDDL HEADER END
21fa9e4066Sahrens  */
22fa9e4066Sahrens /*
23*c67d9675Seschrock  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24fa9e4066Sahrens  * Use is subject to license terms.
25fa9e4066Sahrens  */
26fa9e4066Sahrens 
27fa9e4066Sahrens #ifndef	ZPOOL_UTIL_H
28fa9e4066Sahrens #define	ZPOOL_UTIL_H
29fa9e4066Sahrens 
30fa9e4066Sahrens #pragma ident	"%Z%%M%	%I%	%E% SMI"
31fa9e4066Sahrens 
32fa9e4066Sahrens #include <libnvpair.h>
33fa9e4066Sahrens #include <libzfs.h>
34fa9e4066Sahrens 
35fa9e4066Sahrens #ifdef	__cplusplus
36fa9e4066Sahrens extern "C" {
37fa9e4066Sahrens #endif
38fa9e4066Sahrens 
39fa9e4066Sahrens /*
40fa9e4066Sahrens  * Basic utility functions
41fa9e4066Sahrens  */
42fa9e4066Sahrens void *safe_malloc(size_t);
43fa9e4066Sahrens char *safe_strdup(const char *);
44fa9e4066Sahrens void no_memory(void);
45fa9e4066Sahrens 
46fa9e4066Sahrens /*
47fa9e4066Sahrens  * Virtual device functions
48fa9e4066Sahrens  */
49fa9e4066Sahrens nvlist_t *make_root_vdev(nvlist_t *poolconfig, int force, int check_rep,
50fa9e4066Sahrens     int argc, char **argv);
51fa9e4066Sahrens 
52fa9e4066Sahrens /*
53fa9e4066Sahrens  * Pool list functions
54fa9e4066Sahrens  */
55fa9e4066Sahrens int for_each_pool(int, char **, int unavail, zpool_iter_f, void *);
56fa9e4066Sahrens 
57fa9e4066Sahrens typedef struct zpool_list zpool_list_t;
58fa9e4066Sahrens 
59fa9e4066Sahrens zpool_list_t *pool_list_get(int, char **, int *);
60fa9e4066Sahrens void pool_list_update(zpool_list_t *);
61fa9e4066Sahrens int pool_list_iter(zpool_list_t *, int unavail, zpool_iter_f, void *);
62fa9e4066Sahrens void pool_list_free(zpool_list_t *);
63fa9e4066Sahrens int pool_list_count(zpool_list_t *);
64fa9e4066Sahrens void pool_list_remove(zpool_list_t *, zpool_handle_t *);
65fa9e4066Sahrens 
66fa9e4066Sahrens /*
67fa9e4066Sahrens  * Dataset functions
68fa9e4066Sahrens  */
69fa9e4066Sahrens int unmount_datasets(zpool_handle_t *, int);
70cbcb6089Slling int mount_share_datasets(zpool_handle_t *, const char *);
71fa9e4066Sahrens 
72fa9e4066Sahrens #ifdef	__cplusplus
73fa9e4066Sahrens }
74fa9e4066Sahrens #endif
75fa9e4066Sahrens 
76fa9e4066Sahrens #endif	/* ZPOOL_UTIL_H */
77