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 /* 23*3444Sek110237 * 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 */ 972082Seschrock EZFS_UNKNOWN /* unknown error */ 982082Seschrock }; 992082Seschrock 1002082Seschrock /* 101789Sahrens * Basic handle types 102789Sahrens */ 103789Sahrens typedef struct zfs_handle zfs_handle_t; 104789Sahrens typedef struct zpool_handle zpool_handle_t; 1052082Seschrock typedef struct libzfs_handle libzfs_handle_t; 1062082Seschrock 1072082Seschrock /* 1082082Seschrock * Library initialization 1092082Seschrock */ 1102082Seschrock extern libzfs_handle_t *libzfs_init(void); 1112082Seschrock extern void libzfs_fini(libzfs_handle_t *); 1122082Seschrock 1132082Seschrock extern libzfs_handle_t *zpool_get_handle(zpool_handle_t *); 1142082Seschrock extern libzfs_handle_t *zfs_get_handle(zfs_handle_t *); 1152082Seschrock 1162082Seschrock extern void libzfs_print_on_error(libzfs_handle_t *, boolean_t); 1172082Seschrock 1182082Seschrock extern int libzfs_errno(libzfs_handle_t *); 1192082Seschrock extern const char *libzfs_error_action(libzfs_handle_t *); 1202082Seschrock extern const char *libzfs_error_description(libzfs_handle_t *); 121789Sahrens 122789Sahrens /* 123789Sahrens * Basic handle functions 124789Sahrens */ 1252082Seschrock extern zpool_handle_t *zpool_open(libzfs_handle_t *, const char *); 1262082Seschrock extern zpool_handle_t *zpool_open_canfail(libzfs_handle_t *, const char *); 127789Sahrens extern void zpool_close(zpool_handle_t *); 128789Sahrens extern const char *zpool_get_name(zpool_handle_t *); 129789Sahrens extern uint64_t zpool_get_guid(zpool_handle_t *); 130789Sahrens extern uint64_t zpool_get_space_used(zpool_handle_t *); 131789Sahrens extern uint64_t zpool_get_space_total(zpool_handle_t *); 132789Sahrens extern int zpool_get_root(zpool_handle_t *, char *, size_t); 133789Sahrens extern int zpool_get_state(zpool_handle_t *); 1342082Seschrock extern uint64_t zpool_get_version(zpool_handle_t *); 135789Sahrens 136789Sahrens /* 137789Sahrens * Iterate over all active pools in the system. 138789Sahrens */ 139789Sahrens typedef int (*zpool_iter_f)(zpool_handle_t *, void *); 1402082Seschrock extern int zpool_iter(libzfs_handle_t *, zpool_iter_f, void *); 141789Sahrens 142789Sahrens /* 143789Sahrens * Functions to create and destroy pools 144789Sahrens */ 1452082Seschrock extern int zpool_create(libzfs_handle_t *, const char *, nvlist_t *, 1462082Seschrock const char *); 147789Sahrens extern int zpool_destroy(zpool_handle_t *); 148789Sahrens extern int zpool_add(zpool_handle_t *, nvlist_t *); 149789Sahrens 150789Sahrens /* 151789Sahrens * Functions to manipulate pool and vdev state 152789Sahrens */ 153789Sahrens extern int zpool_scrub(zpool_handle_t *, pool_scrub_type_t); 154789Sahrens 155789Sahrens extern int zpool_vdev_online(zpool_handle_t *, const char *); 1561485Slling extern int zpool_vdev_offline(zpool_handle_t *, const char *, int); 157789Sahrens extern int zpool_vdev_attach(zpool_handle_t *, const char *, const char *, 158789Sahrens nvlist_t *, int); 159789Sahrens extern int zpool_vdev_detach(zpool_handle_t *, const char *); 1602082Seschrock extern int zpool_vdev_remove(zpool_handle_t *, const char *); 1611544Seschrock extern int zpool_clear(zpool_handle_t *, const char *); 1622082Seschrock extern nvlist_t *zpool_find_vdev(zpool_handle_t *, const char *, boolean_t *); 163789Sahrens 164789Sahrens /* 165789Sahrens * Pool health statistics. 166789Sahrens */ 167789Sahrens typedef enum { 168789Sahrens /* 169789Sahrens * The following correspond to faults as defined in the (fault.fs.zfs.*) 1701003Slling * event namespace. Each is associated with a corresponding message ID. 171789Sahrens */ 172789Sahrens ZPOOL_STATUS_CORRUPT_CACHE, /* corrupt /kernel/drv/zpool.cache */ 173789Sahrens ZPOOL_STATUS_MISSING_DEV_R, /* missing device with replicas */ 174789Sahrens ZPOOL_STATUS_MISSING_DEV_NR, /* missing device with no replicas */ 175789Sahrens ZPOOL_STATUS_CORRUPT_LABEL_R, /* bad device label with replicas */ 1761003Slling ZPOOL_STATUS_CORRUPT_LABEL_NR, /* bad device label with no replicas */ 177789Sahrens ZPOOL_STATUS_BAD_GUID_SUM, /* sum of device guids didn't match */ 178789Sahrens ZPOOL_STATUS_CORRUPT_POOL, /* pool metadata is corrupted */ 179789Sahrens ZPOOL_STATUS_CORRUPT_DATA, /* data errors in user (meta)data */ 180789Sahrens ZPOOL_STATUS_FAILING_DEV, /* device experiencing errors */ 1811760Seschrock ZPOOL_STATUS_VERSION_NEWER, /* newer on-disk version */ 182789Sahrens 183789Sahrens /* 184789Sahrens * The following are not faults per se, but still an error possibly 1851003Slling * requiring administrative attention. There is no corresponding 186789Sahrens * message ID. 187789Sahrens */ 1881760Seschrock ZPOOL_STATUS_VERSION_OLDER, /* older on-disk version */ 189789Sahrens ZPOOL_STATUS_RESILVERING, /* device being resilvered */ 190789Sahrens ZPOOL_STATUS_OFFLINE_DEV, /* device online */ 191789Sahrens 192789Sahrens /* 193789Sahrens * Finally, the following indicates a healthy pool. 194789Sahrens */ 195789Sahrens ZPOOL_STATUS_OK 196789Sahrens } zpool_status_t; 197789Sahrens 1981544Seschrock extern zpool_status_t zpool_get_status(zpool_handle_t *, char **); 1991544Seschrock extern zpool_status_t zpool_import_status(nvlist_t *, char **); 200789Sahrens 201789Sahrens /* 202789Sahrens * Statistics and configuration functions. 203789Sahrens */ 2041544Seschrock extern nvlist_t *zpool_get_config(zpool_handle_t *, nvlist_t **); 2052142Seschrock extern int zpool_refresh_stats(zpool_handle_t *, boolean_t *); 206*3444Sek110237 extern int zpool_get_errlog(zpool_handle_t *, nvlist_t **); 2071544Seschrock 208789Sahrens /* 209789Sahrens * Import and export functions 210789Sahrens */ 211789Sahrens extern int zpool_export(zpool_handle_t *); 2122082Seschrock extern int zpool_import(libzfs_handle_t *, nvlist_t *, const char *, 2132082Seschrock const char *); 214789Sahrens 215789Sahrens /* 216789Sahrens * Search for pools to import 217789Sahrens */ 2182082Seschrock extern nvlist_t *zpool_find_import(libzfs_handle_t *, int, char **); 219789Sahrens 220789Sahrens /* 2211354Seschrock * Miscellaneous pool functions 2221354Seschrock */ 2232082Seschrock extern char *zpool_vdev_name(libzfs_handle_t *, zpool_handle_t *, nvlist_t *); 2241760Seschrock extern int zpool_upgrade(zpool_handle_t *); 2252926Sek110237 extern int zpool_get_history(zpool_handle_t *, nvlist_t **); 2262926Sek110237 extern void zpool_log_history(libzfs_handle_t *, int, char **, const char *, 2272926Sek110237 boolean_t, boolean_t); 228*3444Sek110237 extern void zpool_obj_to_path(zpool_handle_t *, uint64_t, uint64_t, char *, 229*3444Sek110237 size_t len); 2301354Seschrock 2311354Seschrock /* 232789Sahrens * Basic handle manipulations. These functions do not create or destroy the 233789Sahrens * underlying datasets, only the references to them. 234789Sahrens */ 2352082Seschrock extern zfs_handle_t *zfs_open(libzfs_handle_t *, const char *, int); 236789Sahrens extern void zfs_close(zfs_handle_t *); 237789Sahrens extern zfs_type_t zfs_get_type(const zfs_handle_t *); 238789Sahrens extern const char *zfs_get_name(const zfs_handle_t *); 239789Sahrens 240789Sahrens typedef enum { 241789Sahrens ZFS_SRC_NONE = 0x1, 242789Sahrens ZFS_SRC_DEFAULT = 0x2, 243789Sahrens ZFS_SRC_TEMPORARY = 0x4, 244789Sahrens ZFS_SRC_LOCAL = 0x8, 245789Sahrens ZFS_SRC_INHERITED = 0x10 246789Sahrens } zfs_source_t; 247789Sahrens 248789Sahrens #define ZFS_SRC_ALL 0x1f 249789Sahrens 250789Sahrens /* 251789Sahrens * Property management functions. Some functions are shared with the kernel, 2521003Slling * and are found in sys/fs/zfs.h. 253789Sahrens */ 2542676Seschrock extern const char *zfs_prop_to_name(zfs_prop_t); 2552676Seschrock extern int zfs_prop_set(zfs_handle_t *, const char *, const char *); 2562676Seschrock extern int zfs_prop_get(zfs_handle_t *, zfs_prop_t, char *, size_t, 2572676Seschrock zfs_source_t *, char *, size_t, boolean_t); 2582676Seschrock extern int zfs_prop_get_numeric(zfs_handle_t *, zfs_prop_t, uint64_t *, 2592676Seschrock zfs_source_t *, char *, size_t); 2602676Seschrock extern uint64_t zfs_prop_get_int(zfs_handle_t *, zfs_prop_t); 2612676Seschrock extern const char *zfs_prop_get_string(zfs_handle_t *, zfs_prop_t); 2622676Seschrock extern int zfs_prop_inherit(zfs_handle_t *, const char *); 2632676Seschrock extern const char *zfs_prop_values(zfs_prop_t); 2642676Seschrock extern int zfs_prop_valid_for_type(zfs_prop_t, int); 2652676Seschrock extern const char *zfs_prop_default_string(zfs_prop_t prop); 2662676Seschrock extern uint64_t zfs_prop_default_numeric(zfs_prop_t); 2672676Seschrock extern int zfs_prop_is_string(zfs_prop_t prop); 2682676Seschrock extern const char *zfs_prop_column_name(zfs_prop_t); 2692676Seschrock extern boolean_t zfs_prop_align_right(zfs_prop_t); 2702676Seschrock 2712676Seschrock typedef struct zfs_proplist { 2722676Seschrock zfs_prop_t pl_prop; 2732676Seschrock char *pl_user_prop; 2742676Seschrock struct zfs_proplist *pl_next; 2752676Seschrock boolean_t pl_all; 2762676Seschrock size_t pl_width; 2772676Seschrock boolean_t pl_fixed; 2782676Seschrock } zfs_proplist_t; 2792676Seschrock 2802676Seschrock extern int zfs_get_proplist(libzfs_handle_t *, char *, zfs_proplist_t **); 2812676Seschrock extern void zfs_free_proplist(zfs_proplist_t *); 2822676Seschrock extern int zfs_expand_proplist(zfs_handle_t *, zfs_proplist_t **); 2832676Seschrock extern nvlist_t *zfs_get_user_props(zfs_handle_t *); 284789Sahrens 285789Sahrens #define ZFS_MOUNTPOINT_NONE "none" 286789Sahrens #define ZFS_MOUNTPOINT_LEGACY "legacy" 287789Sahrens 288789Sahrens /* 289789Sahrens * Iterator functions. 290789Sahrens */ 291789Sahrens typedef int (*zfs_iter_f)(zfs_handle_t *, void *); 2922082Seschrock extern int zfs_iter_root(libzfs_handle_t *, zfs_iter_f, void *); 293789Sahrens extern int zfs_iter_children(zfs_handle_t *, zfs_iter_f, void *); 2942474Seschrock extern int zfs_iter_dependents(zfs_handle_t *, boolean_t, zfs_iter_f, void *); 2951356Seschrock extern int zfs_iter_filesystems(zfs_handle_t *, zfs_iter_f, void *); 2961356Seschrock extern int zfs_iter_snapshots(zfs_handle_t *, zfs_iter_f, void *); 297789Sahrens 298789Sahrens /* 299789Sahrens * Functions to create and destroy datasets. 300789Sahrens */ 3012082Seschrock extern int zfs_create(libzfs_handle_t *, const char *, zfs_type_t, 3022676Seschrock nvlist_t *); 303789Sahrens extern int zfs_destroy(zfs_handle_t *); 3042199Sahrens extern int zfs_destroy_snaps(zfs_handle_t *, char *); 3052676Seschrock extern int zfs_clone(zfs_handle_t *, const char *, nvlist_t *); 3062199Sahrens extern int zfs_snapshot(libzfs_handle_t *, const char *, boolean_t); 3071294Slling extern int zfs_rollback(zfs_handle_t *, zfs_handle_t *, int); 308789Sahrens extern int zfs_rename(zfs_handle_t *, const char *); 3092885Sahrens extern int zfs_send(zfs_handle_t *, const char *); 3102665Snd150628 extern int zfs_receive(libzfs_handle_t *, const char *, int, int, int, 3112665Snd150628 boolean_t); 3122082Seschrock extern int zfs_promote(zfs_handle_t *); 313789Sahrens 314789Sahrens /* 315789Sahrens * Miscellaneous functions. 316789Sahrens */ 317789Sahrens extern const char *zfs_type_to_name(zfs_type_t); 318789Sahrens extern void zfs_refresh_properties(zfs_handle_t *); 319789Sahrens extern int zfs_name_valid(const char *, zfs_type_t); 3203126Sahl extern int zfs_disable(zfs_handle_t *); 3213126Sahl extern int zfs_enable(zfs_handle_t *); 322789Sahrens 323789Sahrens /* 324789Sahrens * Mount support functions. 325789Sahrens */ 326*3444Sek110237 extern boolean_t is_mounted(libzfs_handle_t *, const char *special, char **); 3272082Seschrock extern boolean_t zfs_is_mounted(zfs_handle_t *, char **); 328789Sahrens extern int zfs_mount(zfs_handle_t *, const char *, int); 329789Sahrens extern int zfs_unmount(zfs_handle_t *, const char *, int); 330789Sahrens extern int zfs_unmountall(zfs_handle_t *, int); 331789Sahrens 332789Sahrens /* 333789Sahrens * Share support functions. 334789Sahrens */ 3353126Sahl extern boolean_t zfs_is_shared(zfs_handle_t *); 336789Sahrens extern int zfs_share(zfs_handle_t *); 3373126Sahl extern int zfs_unshare(zfs_handle_t *); 3383126Sahl 3393126Sahl /* 3403126Sahl * Protocol-specifc share support functions. 3413126Sahl */ 3423126Sahl extern boolean_t zfs_is_shared_nfs(zfs_handle_t *, char **); 3433126Sahl extern int zfs_share_nfs(zfs_handle_t *); 3443126Sahl extern int zfs_unshare_nfs(zfs_handle_t *, const char *); 3453126Sahl extern int zfs_unshareall_nfs(zfs_handle_t *); 3463126Sahl extern boolean_t zfs_is_shared_iscsi(zfs_handle_t *); 3473126Sahl extern int zfs_share_iscsi(zfs_handle_t *); 3483126Sahl extern int zfs_unshare_iscsi(zfs_handle_t *); 349789Sahrens 350789Sahrens /* 351789Sahrens * When dealing with nvlists, verify() is extremely useful 352789Sahrens */ 353789Sahrens #ifdef NDEBUG 354789Sahrens #define verify(EX) ((void)(EX)) 355789Sahrens #else 356789Sahrens #define verify(EX) assert(EX) 357789Sahrens #endif 358789Sahrens 359789Sahrens /* 360789Sahrens * Utility function to convert a number to a human-readable form. 361789Sahrens */ 362789Sahrens extern void zfs_nicenum(uint64_t, char *, size_t); 3632676Seschrock extern int zfs_nicestrtonum(libzfs_handle_t *, const char *, uint64_t *); 364789Sahrens 365789Sahrens /* 366789Sahrens * Pool destroy special. Remove the device information without destroying 367789Sahrens * the underlying dataset. 368789Sahrens */ 369789Sahrens extern int zfs_remove_link(zfs_handle_t *); 370789Sahrens 371789Sahrens /* 372789Sahrens * Given a device or file, determine if it is part of a pool. 373789Sahrens */ 3742082Seschrock extern int zpool_in_use(libzfs_handle_t *, int, pool_state_t *, char **, 3752082Seschrock boolean_t *); 376789Sahrens 377789Sahrens /* 378789Sahrens * ftyp special. Read the label from a given device. 379789Sahrens */ 3802082Seschrock extern int zpool_read_label(int, nvlist_t **); 381789Sahrens 382789Sahrens /* 3833126Sahl * Create and remove zvol /dev links. 384789Sahrens */ 385789Sahrens extern int zpool_create_zvol_links(zpool_handle_t *); 386789Sahrens extern int zpool_remove_zvol_links(zpool_handle_t *); 387789Sahrens 3882474Seschrock /* 3893126Sahl * Enable and disable datasets within a pool by mounting/unmounting and 3903126Sahl * sharing/unsharing them. 3912474Seschrock */ 3923126Sahl extern int zpool_enable_datasets(zpool_handle_t *, const char *, int); 3933126Sahl extern int zpool_disable_datasets(zpool_handle_t *, boolean_t); 3942474Seschrock 395789Sahrens #ifdef __cplusplus 396789Sahrens } 397789Sahrens #endif 398789Sahrens 399789Sahrens #endif /* _LIBZFS_H */ 400