1789Sahrens /* 2789Sahrens * CDDL HEADER START 3789Sahrens * 4789Sahrens * The contents of this file are subject to the terms of the 51485Slling * Common Development and Distribution License (the "License"). 61485Slling * You may not use this file except in compliance with the License. 7789Sahrens * 8789Sahrens * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9789Sahrens * or http://www.opensolaris.org/os/licensing. 10789Sahrens * See the License for the specific language governing permissions 11789Sahrens * and limitations under the License. 12789Sahrens * 13789Sahrens * When distributing Covered Code, include this CDDL HEADER in each 14789Sahrens * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15789Sahrens * If applicable, add the following below this CDDL HEADER, with the 16789Sahrens * fields enclosed by brackets "[]" replaced with your own identifying 17789Sahrens * information: Portions Copyright [yyyy] [name of copyright owner] 18789Sahrens * 19789Sahrens * CDDL HEADER END 20789Sahrens */ 213126Sahl 22789Sahrens /* 233444Sek110237 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24789Sahrens * Use is subject to license terms. 25789Sahrens */ 26789Sahrens 27789Sahrens #ifndef _LIBZFS_H 28789Sahrens #define _LIBZFS_H 29789Sahrens 30789Sahrens #pragma ident "%Z%%M% %I% %E% SMI" 31789Sahrens 32789Sahrens #include <assert.h> 33789Sahrens #include <libnvpair.h> 34789Sahrens #include <sys/param.h> 35789Sahrens #include <sys/types.h> 36789Sahrens #include <sys/varargs.h> 37789Sahrens #include <sys/fs/zfs.h> 38789Sahrens 39789Sahrens #ifdef __cplusplus 40789Sahrens extern "C" { 41789Sahrens #endif 42789Sahrens 43789Sahrens /* 44789Sahrens * Miscellaneous ZFS constants 45789Sahrens */ 46789Sahrens #define ZFS_MAXNAMELEN MAXNAMELEN 47789Sahrens #define ZPOOL_MAXNAMELEN MAXNAMELEN 48789Sahrens #define ZFS_MAXPROPLEN MAXPATHLEN 49789Sahrens 50789Sahrens /* 512082Seschrock * libzfs errors 522082Seschrock */ 532082Seschrock enum { 542082Seschrock EZFS_NOMEM = 2000, /* out of memory */ 552082Seschrock EZFS_BADPROP, /* invalid property value */ 562082Seschrock EZFS_PROPREADONLY, /* cannot set readonly property */ 572082Seschrock EZFS_PROPTYPE, /* property does not apply to dataset type */ 582082Seschrock EZFS_PROPNONINHERIT, /* property is not inheritable */ 592082Seschrock EZFS_PROPSPACE, /* bad quota or reservation */ 602082Seschrock EZFS_BADTYPE, /* dataset is not of appropriate type */ 612082Seschrock EZFS_BUSY, /* pool or dataset is busy */ 622082Seschrock EZFS_EXISTS, /* pool or dataset already exists */ 632082Seschrock EZFS_NOENT, /* no such pool or dataset */ 642082Seschrock EZFS_BADSTREAM, /* bad backup stream */ 652082Seschrock EZFS_DSREADONLY, /* dataset is readonly */ 662082Seschrock EZFS_VOLTOOBIG, /* volume is too large for 32-bit system */ 672082Seschrock EZFS_VOLHASDATA, /* volume already contains data */ 682082Seschrock EZFS_INVALIDNAME, /* invalid dataset name */ 692082Seschrock EZFS_BADRESTORE, /* unable to restore to destination */ 702082Seschrock EZFS_BADBACKUP, /* backup failed */ 712082Seschrock EZFS_BADTARGET, /* bad attach/detach/replace target */ 722082Seschrock EZFS_NODEVICE, /* no such device in pool */ 732082Seschrock EZFS_BADDEV, /* invalid device to add */ 742082Seschrock EZFS_NOREPLICAS, /* no valid replicas */ 752082Seschrock EZFS_RESILVERING, /* currently resilvering */ 762082Seschrock EZFS_BADVERSION, /* unsupported version */ 772082Seschrock EZFS_POOLUNAVAIL, /* pool is currently unavailable */ 782082Seschrock EZFS_DEVOVERFLOW, /* too many devices in one vdev */ 792082Seschrock EZFS_BADPATH, /* must be an absolute path */ 802082Seschrock EZFS_CROSSTARGET, /* rename or clone across pool or dataset */ 812082Seschrock EZFS_ZONED, /* used improperly in local zone */ 822082Seschrock EZFS_MOUNTFAILED, /* failed to mount dataset */ 832082Seschrock EZFS_UMOUNTFAILED, /* failed to unmount dataset */ 843126Sahl EZFS_UNSHARENFSFAILED, /* unshare(1M) failed */ 853126Sahl EZFS_SHARENFSFAILED, /* share(1M) failed */ 862082Seschrock EZFS_DEVLINKS, /* failed to create zvol links */ 872082Seschrock EZFS_PERM, /* permission denied */ 882082Seschrock EZFS_NOSPC, /* out of space */ 892082Seschrock EZFS_IO, /* I/O error */ 902082Seschrock EZFS_INTR, /* signal received */ 912082Seschrock EZFS_ISSPARE, /* device is a hot spare */ 922082Seschrock EZFS_INVALCONFIG, /* invalid vdev configuration */ 932474Seschrock EZFS_RECURSIVE, /* recursive dependency */ 942926Sek110237 EZFS_NOHISTORY, /* no history object */ 953126Sahl EZFS_UNSHAREISCSIFAILED, /* iscsitgtd failed request to unshare */ 963126Sahl EZFS_SHAREISCSIFAILED, /* iscsitgtd failed request to share */ 973912Slling EZFS_POOLPROPS, /* couldn't retrieve pool props */ 983912Slling EZFS_POOL_NOTSUP, /* ops not supported for this type of pool */ 993912Slling EZFS_POOL_INVALARG, /* invalid argument for this pool operation */ 1003978Smmusante EZFS_NAMETOOLONG, /* dataset name is too long */ 1014276Staylor EZFS_OPENFAILED, /* open of device failed */ 1024276Staylor EZFS_NOCAP, /* couldn't get capacity */ 1034276Staylor EZFS_LABELFAILED, /* write of label failed */ 1043912Slling EZFS_UNKNOWN 1052082Seschrock }; 1062082Seschrock 1072082Seschrock /* 108789Sahrens * Basic handle types 109789Sahrens */ 110789Sahrens typedef struct zfs_handle zfs_handle_t; 111789Sahrens typedef struct zpool_handle zpool_handle_t; 1122082Seschrock typedef struct libzfs_handle libzfs_handle_t; 1132082Seschrock 1142082Seschrock /* 1152082Seschrock * Library initialization 1162082Seschrock */ 1172082Seschrock extern libzfs_handle_t *libzfs_init(void); 1182082Seschrock extern void libzfs_fini(libzfs_handle_t *); 1192082Seschrock 1202082Seschrock extern libzfs_handle_t *zpool_get_handle(zpool_handle_t *); 1212082Seschrock extern libzfs_handle_t *zfs_get_handle(zfs_handle_t *); 1222082Seschrock 1232082Seschrock extern void libzfs_print_on_error(libzfs_handle_t *, boolean_t); 1242082Seschrock 1252082Seschrock extern int libzfs_errno(libzfs_handle_t *); 1262082Seschrock extern const char *libzfs_error_action(libzfs_handle_t *); 1272082Seschrock extern const char *libzfs_error_description(libzfs_handle_t *); 128789Sahrens 129789Sahrens /* 130789Sahrens * Basic handle functions 131789Sahrens */ 1322082Seschrock extern zpool_handle_t *zpool_open(libzfs_handle_t *, const char *); 1332082Seschrock extern zpool_handle_t *zpool_open_canfail(libzfs_handle_t *, const char *); 134789Sahrens extern void zpool_close(zpool_handle_t *); 135789Sahrens extern const char *zpool_get_name(zpool_handle_t *); 136789Sahrens extern uint64_t zpool_get_guid(zpool_handle_t *); 137789Sahrens extern uint64_t zpool_get_space_used(zpool_handle_t *); 138789Sahrens extern uint64_t zpool_get_space_total(zpool_handle_t *); 139789Sahrens extern int zpool_get_root(zpool_handle_t *, char *, size_t); 140789Sahrens extern int zpool_get_state(zpool_handle_t *); 1412082Seschrock extern uint64_t zpool_get_version(zpool_handle_t *); 142789Sahrens 143789Sahrens /* 144789Sahrens * Iterate over all active pools in the system. 145789Sahrens */ 146789Sahrens typedef int (*zpool_iter_f)(zpool_handle_t *, void *); 1472082Seschrock extern int zpool_iter(libzfs_handle_t *, zpool_iter_f, void *); 148789Sahrens 149789Sahrens /* 150789Sahrens * Functions to create and destroy pools 151789Sahrens */ 1522082Seschrock extern int zpool_create(libzfs_handle_t *, const char *, nvlist_t *, 1532082Seschrock const char *); 154789Sahrens extern int zpool_destroy(zpool_handle_t *); 155789Sahrens extern int zpool_add(zpool_handle_t *, nvlist_t *); 156789Sahrens 157789Sahrens /* 158789Sahrens * Functions to manipulate pool and vdev state 159789Sahrens */ 160789Sahrens extern int zpool_scrub(zpool_handle_t *, pool_scrub_type_t); 1614451Seschrock extern int zpool_clear(zpool_handle_t *, const char *); 162789Sahrens 1634451Seschrock extern int zpool_vdev_online(zpool_handle_t *, const char *, int, 1644451Seschrock vdev_state_t *); 1654451Seschrock extern int zpool_vdev_offline(zpool_handle_t *, const char *, boolean_t); 1664451Seschrock extern int zpool_vdev_attach(zpool_handle_t *, const char *, 1674451Seschrock const char *, nvlist_t *, int); 168789Sahrens extern int zpool_vdev_detach(zpool_handle_t *, const char *); 1692082Seschrock extern int zpool_vdev_remove(zpool_handle_t *, const char *); 1704451Seschrock 1714451Seschrock extern int zpool_vdev_fault(zpool_handle_t *, uint64_t); 1724451Seschrock extern int zpool_vdev_degrade(zpool_handle_t *, uint64_t); 1734451Seschrock extern int zpool_vdev_clear(zpool_handle_t *, uint64_t); 1744451Seschrock 1752082Seschrock extern nvlist_t *zpool_find_vdev(zpool_handle_t *, const char *, boolean_t *); 1764276Staylor extern int zpool_label_disk(libzfs_handle_t *, zpool_handle_t *, char *); 177789Sahrens 178789Sahrens /* 1793912Slling * Functions to manage pool properties 1803912Slling */ 1813912Slling extern int zpool_set_prop(zpool_handle_t *, const char *, const char *); 1824451Seschrock extern int zpool_get_prop(zpool_handle_t *, zpool_prop_t, char *, 1833912Slling size_t proplen, zfs_source_t *); 1844451Seschrock extern uint64_t zpool_get_prop_int(zpool_handle_t *, zpool_prop_t); 1853912Slling extern const char *zpool_prop_to_name(zpool_prop_t); 1863912Slling extern const char *zpool_prop_values(zpool_prop_t); 1873912Slling 1883912Slling /* 189789Sahrens * Pool health statistics. 190789Sahrens */ 191789Sahrens typedef enum { 192789Sahrens /* 193789Sahrens * The following correspond to faults as defined in the (fault.fs.zfs.*) 1941003Slling * event namespace. Each is associated with a corresponding message ID. 195789Sahrens */ 196789Sahrens ZPOOL_STATUS_CORRUPT_CACHE, /* corrupt /kernel/drv/zpool.cache */ 197789Sahrens ZPOOL_STATUS_MISSING_DEV_R, /* missing device with replicas */ 198789Sahrens ZPOOL_STATUS_MISSING_DEV_NR, /* missing device with no replicas */ 199789Sahrens ZPOOL_STATUS_CORRUPT_LABEL_R, /* bad device label with replicas */ 2001003Slling ZPOOL_STATUS_CORRUPT_LABEL_NR, /* bad device label with no replicas */ 201789Sahrens ZPOOL_STATUS_BAD_GUID_SUM, /* sum of device guids didn't match */ 202789Sahrens ZPOOL_STATUS_CORRUPT_POOL, /* pool metadata is corrupted */ 203789Sahrens ZPOOL_STATUS_CORRUPT_DATA, /* data errors in user (meta)data */ 204789Sahrens ZPOOL_STATUS_FAILING_DEV, /* device experiencing errors */ 2051760Seschrock ZPOOL_STATUS_VERSION_NEWER, /* newer on-disk version */ 2063975Sek110237 ZPOOL_STATUS_HOSTID_MISMATCH, /* last accessed by another system */ 2074451Seschrock ZPOOL_STATUS_FAULTED_DEV_R, /* faulted device with replicas */ 2084451Seschrock ZPOOL_STATUS_FAULTED_DEV_NR, /* faulted device with no replicas */ 209789Sahrens 210789Sahrens /* 211789Sahrens * The following are not faults per se, but still an error possibly 2121003Slling * requiring administrative attention. There is no corresponding 213789Sahrens * message ID. 214789Sahrens */ 2151760Seschrock ZPOOL_STATUS_VERSION_OLDER, /* older on-disk version */ 216789Sahrens ZPOOL_STATUS_RESILVERING, /* device being resilvered */ 217789Sahrens ZPOOL_STATUS_OFFLINE_DEV, /* device online */ 218789Sahrens 219789Sahrens /* 220789Sahrens * Finally, the following indicates a healthy pool. 221789Sahrens */ 222789Sahrens ZPOOL_STATUS_OK 223789Sahrens } zpool_status_t; 224789Sahrens 2251544Seschrock extern zpool_status_t zpool_get_status(zpool_handle_t *, char **); 2261544Seschrock extern zpool_status_t zpool_import_status(nvlist_t *, char **); 227789Sahrens 228789Sahrens /* 229789Sahrens * Statistics and configuration functions. 230789Sahrens */ 2311544Seschrock extern nvlist_t *zpool_get_config(zpool_handle_t *, nvlist_t **); 2322142Seschrock extern int zpool_refresh_stats(zpool_handle_t *, boolean_t *); 2333444Sek110237 extern int zpool_get_errlog(zpool_handle_t *, nvlist_t **); 2341544Seschrock 235789Sahrens /* 236789Sahrens * Import and export functions 237789Sahrens */ 238789Sahrens extern int zpool_export(zpool_handle_t *); 2392082Seschrock extern int zpool_import(libzfs_handle_t *, nvlist_t *, const char *, 2402082Seschrock const char *); 241789Sahrens 242789Sahrens /* 243789Sahrens * Search for pools to import 244789Sahrens */ 2452082Seschrock extern nvlist_t *zpool_find_import(libzfs_handle_t *, int, char **); 246789Sahrens 247789Sahrens /* 2481354Seschrock * Miscellaneous pool functions 2491354Seschrock */ 2502082Seschrock extern char *zpool_vdev_name(libzfs_handle_t *, zpool_handle_t *, nvlist_t *); 2511760Seschrock extern int zpool_upgrade(zpool_handle_t *); 2522926Sek110237 extern int zpool_get_history(zpool_handle_t *, nvlist_t **); 2532926Sek110237 extern void zpool_log_history(libzfs_handle_t *, int, char **, const char *, 2542926Sek110237 boolean_t, boolean_t); 2553444Sek110237 extern void zpool_obj_to_path(zpool_handle_t *, uint64_t, uint64_t, char *, 2563444Sek110237 size_t len); 2571354Seschrock 2581354Seschrock /* 259789Sahrens * Basic handle manipulations. These functions do not create or destroy the 260789Sahrens * underlying datasets, only the references to them. 261789Sahrens */ 2622082Seschrock extern zfs_handle_t *zfs_open(libzfs_handle_t *, const char *, int); 263789Sahrens extern void zfs_close(zfs_handle_t *); 264789Sahrens extern zfs_type_t zfs_get_type(const zfs_handle_t *); 265789Sahrens extern const char *zfs_get_name(const zfs_handle_t *); 266789Sahrens 267789Sahrens /* 268789Sahrens * Property management functions. Some functions are shared with the kernel, 2691003Slling * and are found in sys/fs/zfs.h. 270789Sahrens */ 2712676Seschrock extern const char *zfs_prop_to_name(zfs_prop_t); 2722676Seschrock extern int zfs_prop_set(zfs_handle_t *, const char *, const char *); 2732676Seschrock extern int zfs_prop_get(zfs_handle_t *, zfs_prop_t, char *, size_t, 2742676Seschrock zfs_source_t *, char *, size_t, boolean_t); 2752676Seschrock extern int zfs_prop_get_numeric(zfs_handle_t *, zfs_prop_t, uint64_t *, 2762676Seschrock zfs_source_t *, char *, size_t); 2772676Seschrock extern uint64_t zfs_prop_get_int(zfs_handle_t *, zfs_prop_t); 2782676Seschrock extern const char *zfs_prop_get_string(zfs_handle_t *, zfs_prop_t); 2792676Seschrock extern int zfs_prop_inherit(zfs_handle_t *, const char *); 2802676Seschrock extern const char *zfs_prop_values(zfs_prop_t); 2812676Seschrock extern int zfs_prop_valid_for_type(zfs_prop_t, int); 2822676Seschrock extern const char *zfs_prop_default_string(zfs_prop_t prop); 2832676Seschrock extern uint64_t zfs_prop_default_numeric(zfs_prop_t); 2842676Seschrock extern int zfs_prop_is_string(zfs_prop_t prop); 2852676Seschrock extern const char *zfs_prop_column_name(zfs_prop_t); 2862676Seschrock extern boolean_t zfs_prop_align_right(zfs_prop_t); 2873912Slling extern void nicebool(int value, char *buf, size_t buflen); 2882676Seschrock 2892676Seschrock typedef struct zfs_proplist { 2902676Seschrock zfs_prop_t pl_prop; 2912676Seschrock char *pl_user_prop; 2922676Seschrock struct zfs_proplist *pl_next; 2932676Seschrock boolean_t pl_all; 2942676Seschrock size_t pl_width; 2952676Seschrock boolean_t pl_fixed; 2962676Seschrock } zfs_proplist_t; 2972676Seschrock 2983912Slling typedef zfs_proplist_t zpool_proplist_t; 2993912Slling 3002676Seschrock extern int zfs_get_proplist(libzfs_handle_t *, char *, zfs_proplist_t **); 3013912Slling extern int zpool_get_proplist(libzfs_handle_t *, char *, zpool_proplist_t **); 3023912Slling extern int zfs_expand_proplist(zfs_handle_t *, zfs_proplist_t **); 3033912Slling extern int zpool_expand_proplist(zpool_handle_t *, zpool_proplist_t **); 3042676Seschrock extern void zfs_free_proplist(zfs_proplist_t *); 3052676Seschrock extern nvlist_t *zfs_get_user_props(zfs_handle_t *); 306789Sahrens 307789Sahrens #define ZFS_MOUNTPOINT_NONE "none" 308789Sahrens #define ZFS_MOUNTPOINT_LEGACY "legacy" 309789Sahrens 310789Sahrens /* 3113912Slling * Functions for printing properties from zfs/zpool 3123912Slling */ 3133912Slling typedef struct libzfs_get_cbdata { 3143912Slling int cb_sources; 3153912Slling int cb_columns[4]; 3163912Slling int cb_colwidths[5]; 3173912Slling boolean_t cb_scripted; 3183912Slling boolean_t cb_literal; 3193912Slling boolean_t cb_first; 3203912Slling zfs_proplist_t *cb_proplist; 3213912Slling } libzfs_get_cbdata_t; 3223912Slling 3233912Slling void libzfs_print_one_property(const char *, libzfs_get_cbdata_t *, 3243912Slling const char *, const char *, zfs_source_t, const char *); 3253912Slling 3263912Slling #define GET_COL_NAME 1 3273912Slling #define GET_COL_PROPERTY 2 3283912Slling #define GET_COL_VALUE 3 3293912Slling #define GET_COL_SOURCE 4 3303912Slling 3313912Slling /* 332789Sahrens * Iterator functions. 333789Sahrens */ 334789Sahrens typedef int (*zfs_iter_f)(zfs_handle_t *, void *); 3352082Seschrock extern int zfs_iter_root(libzfs_handle_t *, zfs_iter_f, void *); 336789Sahrens extern int zfs_iter_children(zfs_handle_t *, zfs_iter_f, void *); 3372474Seschrock extern int zfs_iter_dependents(zfs_handle_t *, boolean_t, zfs_iter_f, void *); 3381356Seschrock extern int zfs_iter_filesystems(zfs_handle_t *, zfs_iter_f, void *); 3391356Seschrock extern int zfs_iter_snapshots(zfs_handle_t *, zfs_iter_f, void *); 340789Sahrens 341789Sahrens /* 342789Sahrens * Functions to create and destroy datasets. 343789Sahrens */ 3442082Seschrock extern int zfs_create(libzfs_handle_t *, const char *, zfs_type_t, 3452676Seschrock nvlist_t *); 346*4490Svb160487 extern int zfs_create_ancestors(libzfs_handle_t *, const char *); 347789Sahrens extern int zfs_destroy(zfs_handle_t *); 3482199Sahrens extern int zfs_destroy_snaps(zfs_handle_t *, char *); 3492676Seschrock extern int zfs_clone(zfs_handle_t *, const char *, nvlist_t *); 3502199Sahrens extern int zfs_snapshot(libzfs_handle_t *, const char *, boolean_t); 3511294Slling extern int zfs_rollback(zfs_handle_t *, zfs_handle_t *, int); 352*4490Svb160487 extern int zfs_rename(zfs_handle_t *, const char *, boolean_t); 3533504Sahl extern int zfs_send(zfs_handle_t *, const char *, int); 3542665Snd150628 extern int zfs_receive(libzfs_handle_t *, const char *, int, int, int, 3553504Sahl boolean_t, int); 3562082Seschrock extern int zfs_promote(zfs_handle_t *); 357789Sahrens 358789Sahrens /* 359789Sahrens * Miscellaneous functions. 360789Sahrens */ 361789Sahrens extern const char *zfs_type_to_name(zfs_type_t); 362789Sahrens extern void zfs_refresh_properties(zfs_handle_t *); 363789Sahrens extern int zfs_name_valid(const char *, zfs_type_t); 3643126Sahl extern int zfs_disable(zfs_handle_t *); 3653126Sahl extern int zfs_enable(zfs_handle_t *); 3663635Sck153898 extern zfs_handle_t *zfs_path_to_zhandle(libzfs_handle_t *, char *, zfs_type_t); 367*4490Svb160487 extern boolean_t zfs_dataset_exists(libzfs_handle_t *, const char *, 368*4490Svb160487 zfs_type_t); 369789Sahrens 370789Sahrens /* 371789Sahrens * Mount support functions. 372789Sahrens */ 3733444Sek110237 extern boolean_t is_mounted(libzfs_handle_t *, const char *special, char **); 3742082Seschrock extern boolean_t zfs_is_mounted(zfs_handle_t *, char **); 375789Sahrens extern int zfs_mount(zfs_handle_t *, const char *, int); 376789Sahrens extern int zfs_unmount(zfs_handle_t *, const char *, int); 377789Sahrens extern int zfs_unmountall(zfs_handle_t *, int); 378789Sahrens 379789Sahrens /* 380789Sahrens * Share support functions. 381789Sahrens */ 3823126Sahl extern boolean_t zfs_is_shared(zfs_handle_t *); 383789Sahrens extern int zfs_share(zfs_handle_t *); 3843126Sahl extern int zfs_unshare(zfs_handle_t *); 3853126Sahl 3863126Sahl /* 3874451Seschrock * Protocol-specific share support functions. 3883126Sahl */ 3893126Sahl extern boolean_t zfs_is_shared_nfs(zfs_handle_t *, char **); 3903126Sahl extern int zfs_share_nfs(zfs_handle_t *); 3913126Sahl extern int zfs_unshare_nfs(zfs_handle_t *, const char *); 3923126Sahl extern int zfs_unshareall_nfs(zfs_handle_t *); 3933126Sahl extern boolean_t zfs_is_shared_iscsi(zfs_handle_t *); 3943126Sahl extern int zfs_share_iscsi(zfs_handle_t *); 3953126Sahl extern int zfs_unshare_iscsi(zfs_handle_t *); 396789Sahrens 397789Sahrens /* 398789Sahrens * When dealing with nvlists, verify() is extremely useful 399789Sahrens */ 400789Sahrens #ifdef NDEBUG 401789Sahrens #define verify(EX) ((void)(EX)) 402789Sahrens #else 403789Sahrens #define verify(EX) assert(EX) 404789Sahrens #endif 405789Sahrens 406789Sahrens /* 407789Sahrens * Utility function to convert a number to a human-readable form. 408789Sahrens */ 409789Sahrens extern void zfs_nicenum(uint64_t, char *, size_t); 4102676Seschrock extern int zfs_nicestrtonum(libzfs_handle_t *, const char *, uint64_t *); 411789Sahrens 412789Sahrens /* 413789Sahrens * Pool destroy special. Remove the device information without destroying 414789Sahrens * the underlying dataset. 415789Sahrens */ 416789Sahrens extern int zfs_remove_link(zfs_handle_t *); 417789Sahrens 418789Sahrens /* 419789Sahrens * Given a device or file, determine if it is part of a pool. 420789Sahrens */ 4212082Seschrock extern int zpool_in_use(libzfs_handle_t *, int, pool_state_t *, char **, 4222082Seschrock boolean_t *); 423789Sahrens 424789Sahrens /* 425789Sahrens * ftyp special. Read the label from a given device. 426789Sahrens */ 4272082Seschrock extern int zpool_read_label(int, nvlist_t **); 428789Sahrens 429789Sahrens /* 4303126Sahl * Create and remove zvol /dev links. 431789Sahrens */ 432789Sahrens extern int zpool_create_zvol_links(zpool_handle_t *); 433789Sahrens extern int zpool_remove_zvol_links(zpool_handle_t *); 434789Sahrens 4352474Seschrock /* 4363126Sahl * Enable and disable datasets within a pool by mounting/unmounting and 4373126Sahl * sharing/unsharing them. 4382474Seschrock */ 4393126Sahl extern int zpool_enable_datasets(zpool_handle_t *, const char *, int); 4403126Sahl extern int zpool_disable_datasets(zpool_handle_t *, boolean_t); 4412474Seschrock 442789Sahrens #ifdef __cplusplus 443789Sahrens } 444789Sahrens #endif 445789Sahrens 446789Sahrens #endif /* _LIBZFS_H */ 447