Path: blob/main/sys/contrib/openzfs/include/libzfs_core.h
48254 views
// SPDX-License-Identifier: CDDL-1.01/*2* CDDL HEADER START3*4* The contents of this file are subject to the terms of the5* 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.LICENSE9* or https://opensource.org/licenses/CDDL-1.0.10* See the License for the specific language governing permissions11* and limitations under the License.12*13* When distributing Covered Code, include this CDDL HEADER in each14* file and include the License file at usr/src/OPENSOLARIS.LICENSE.15* If applicable, add the following below this CDDL HEADER, with the16* fields enclosed by brackets "[]" replaced with your own identifying17* information: Portions Copyright [yyyy] [name of copyright owner]18*19* CDDL HEADER END20*/2122/*23* Copyright (c) 2012, 2020 by Delphix. All rights reserved.24* Copyright 2017 RackTop Systems.25* Copyright (c) 2017 Open-E, Inc. All Rights Reserved.26* Copyright (c) 2019 Datto Inc.27*/2829#ifndef _LIBZFS_CORE_H30#define _LIBZFS_CORE_H extern __attribute__((visibility("default")))3132#include <libnvpair.h>33#include <sys/param.h>34#include <sys/types.h>35#include <sys/fs/zfs.h>3637#ifdef __cplusplus38extern "C" {39#endif4041_LIBZFS_CORE_H int libzfs_core_init(void);42_LIBZFS_CORE_H void libzfs_core_fini(void);4344struct zfs_cmd;45_LIBZFS_CORE_H int lzc_ioctl_fd(int, unsigned long, struct zfs_cmd *);4647/*48* NB: this type should be kept binary-compatible with dmu_objset_type_t.49*/50enum lzc_dataset_type {51LZC_DATSET_TYPE_ZFS = 2,52LZC_DATSET_TYPE_ZVOL53};5455_LIBZFS_CORE_H int lzc_snapshot(nvlist_t *, nvlist_t *, nvlist_t **);56_LIBZFS_CORE_H int lzc_create(const char *, enum lzc_dataset_type, nvlist_t *,57uint8_t *, uint_t);58_LIBZFS_CORE_H int lzc_clone(const char *, const char *, nvlist_t *);59_LIBZFS_CORE_H int lzc_promote(const char *, char *, int);60_LIBZFS_CORE_H int lzc_destroy_snaps(nvlist_t *, boolean_t, nvlist_t **);61_LIBZFS_CORE_H int lzc_bookmark(nvlist_t *, nvlist_t **);62_LIBZFS_CORE_H int lzc_get_bookmarks(const char *, nvlist_t *, nvlist_t **);63_LIBZFS_CORE_H int lzc_get_bookmark_props(const char *, nvlist_t **);64_LIBZFS_CORE_H int lzc_destroy_bookmarks(nvlist_t *, nvlist_t **);65_LIBZFS_CORE_H int lzc_load_key(const char *, boolean_t, uint8_t *, uint_t);66_LIBZFS_CORE_H int lzc_unload_key(const char *);67_LIBZFS_CORE_H int lzc_change_key(const char *, uint64_t, nvlist_t *, uint8_t *,68uint_t);69_LIBZFS_CORE_H int lzc_initialize(const char *, pool_initialize_func_t,70nvlist_t *, nvlist_t **);71_LIBZFS_CORE_H int lzc_trim(const char *, pool_trim_func_t, uint64_t, boolean_t,72nvlist_t *, nvlist_t **);73_LIBZFS_CORE_H int lzc_redact(const char *, const char *, nvlist_t *);7475_LIBZFS_CORE_H int lzc_snaprange_space(const char *, const char *, uint64_t *);7677_LIBZFS_CORE_H int lzc_hold(nvlist_t *, int, nvlist_t **);78_LIBZFS_CORE_H int lzc_release(nvlist_t *, nvlist_t **);79_LIBZFS_CORE_H int lzc_get_holds(const char *, nvlist_t **);80_LIBZFS_CORE_H int lzc_get_props(const char *, nvlist_t **);8182enum lzc_send_flags {83LZC_SEND_FLAG_EMBED_DATA = 1 << 0,84LZC_SEND_FLAG_LARGE_BLOCK = 1 << 1,85LZC_SEND_FLAG_COMPRESS = 1 << 2,86LZC_SEND_FLAG_RAW = 1 << 3,87LZC_SEND_FLAG_SAVED = 1 << 4,88};8990_LIBZFS_CORE_H int lzc_send_wrapper(int (*)(int, void *), int, void *);91_LIBZFS_CORE_H int lzc_send(const char *, const char *, int,92enum lzc_send_flags);93_LIBZFS_CORE_H int lzc_send_resume(const char *, const char *, int,94enum lzc_send_flags, uint64_t, uint64_t);95_LIBZFS_CORE_H int lzc_send_space(const char *, const char *,96enum lzc_send_flags, uint64_t *);9798struct dmu_replay_record;99100_LIBZFS_CORE_H int lzc_send_redacted(const char *, const char *, int,101enum lzc_send_flags, const char *);102_LIBZFS_CORE_H int lzc_send_resume_redacted(const char *, const char *, int,103enum lzc_send_flags, uint64_t, uint64_t, const char *);104_LIBZFS_CORE_H int lzc_receive(const char *, nvlist_t *, const char *,105boolean_t, boolean_t, int);106_LIBZFS_CORE_H int lzc_receive_resumable(const char *, nvlist_t *, const char *,107boolean_t, boolean_t, int);108_LIBZFS_CORE_H int lzc_receive_with_header(const char *, nvlist_t *,109const char *, boolean_t, boolean_t, boolean_t, int,110const struct dmu_replay_record *);111_LIBZFS_CORE_H int lzc_receive_one(const char *, nvlist_t *, const char *,112boolean_t, boolean_t, boolean_t, int, const struct dmu_replay_record *, int,113uint64_t *, uint64_t *, uint64_t *, nvlist_t **);114_LIBZFS_CORE_H int lzc_receive_with_cmdprops(const char *, nvlist_t *,115nvlist_t *, uint8_t *, uint_t, const char *, boolean_t, boolean_t,116boolean_t, int, const struct dmu_replay_record *, int, uint64_t *,117uint64_t *, uint64_t *, nvlist_t **);118_LIBZFS_CORE_H int lzc_receive_with_heal(const char *, nvlist_t *, nvlist_t *,119uint8_t *, uint_t, const char *, boolean_t, boolean_t, boolean_t, boolean_t,120int, const struct dmu_replay_record *, int, uint64_t *, uint64_t *,121uint64_t *, nvlist_t **);122_LIBZFS_CORE_H int lzc_send_space(const char *, const char *,123enum lzc_send_flags, uint64_t *);124_LIBZFS_CORE_H int lzc_send_space_resume_redacted(const char *, const char *,125enum lzc_send_flags, uint64_t, uint64_t, uint64_t, const char *,126int, uint64_t *);127_LIBZFS_CORE_H uint64_t lzc_send_progress(int);128129_LIBZFS_CORE_H boolean_t lzc_exists(const char *);130131_LIBZFS_CORE_H int lzc_rollback(const char *, char *, int);132_LIBZFS_CORE_H int lzc_rollback_to(const char *, const char *);133134_LIBZFS_CORE_H int lzc_rename(const char *, const char *);135_LIBZFS_CORE_H int lzc_destroy(const char *);136137_LIBZFS_CORE_H int lzc_channel_program(const char *, const char *, uint64_t,138uint64_t, nvlist_t *, nvlist_t **);139_LIBZFS_CORE_H int lzc_channel_program_nosync(const char *, const char *,140uint64_t, uint64_t, nvlist_t *, nvlist_t **);141142_LIBZFS_CORE_H int lzc_sync(const char *, nvlist_t *, nvlist_t **);143_LIBZFS_CORE_H int lzc_reopen(const char *, boolean_t);144145_LIBZFS_CORE_H int lzc_pool_checkpoint(const char *);146_LIBZFS_CORE_H int lzc_pool_checkpoint_discard(const char *);147148_LIBZFS_CORE_H int lzc_wait(const char *, zpool_wait_activity_t, boolean_t *);149_LIBZFS_CORE_H int lzc_wait_tag(const char *, zpool_wait_activity_t, uint64_t,150boolean_t *);151152_LIBZFS_CORE_H int lzc_pool_prefetch(const char *, zpool_prefetch_type_t);153154_LIBZFS_CORE_H int lzc_wait_fs(const char *, zfs_wait_activity_t, boolean_t *);155156_LIBZFS_CORE_H int lzc_set_bootenv(const char *, const nvlist_t *);157_LIBZFS_CORE_H int lzc_get_bootenv(const char *, nvlist_t **);158159_LIBZFS_CORE_H int lzc_get_vdev_prop(const char *, nvlist_t *, nvlist_t **);160_LIBZFS_CORE_H int lzc_set_vdev_prop(const char *, nvlist_t *, nvlist_t **);161162_LIBZFS_CORE_H int lzc_scrub(zfs_ioc_t, const char *, nvlist_t *, nvlist_t **);163164_LIBZFS_CORE_H int lzc_ddt_prune(const char *, zpool_ddt_prune_unit_t,165uint64_t);166167#ifdef __cplusplus168}169#endif170171#endif /* _LIBZFS_CORE_H */172173174