]> git.proxmox.com Git - mirror_zfs.git/blame - include/libzfs_core.h
linux/spl/kmem_cache: undefine `kmem_cache_alloc` before defining it
[mirror_zfs.git] / include / libzfs_core.h
CommitLineData
6f1ffb06
MA
1/*
2 * CDDL HEADER START
3 *
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.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1d3ba0bf 9 * or https://opensource.org/licenses/CDDL-1.0.
6f1ffb06
MA
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
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]
18 *
19 * CDDL HEADER END
20 */
21
22/*
108a454a 23 * Copyright (c) 2012, 2020 by Delphix. All rights reserved.
d12f91fd 24 * Copyright 2017 RackTop Systems.
d3f2cd7e 25 * Copyright (c) 2017 Open-E, Inc. All Rights Reserved.
e8cf3a4f 26 * Copyright (c) 2019 Datto Inc.
6f1ffb06
MA
27 */
28
29#ifndef _LIBZFS_CORE_H
327c9046 30#define _LIBZFS_CORE_H extern __attribute__((visibility("default")))
6f1ffb06
MA
31
32#include <libnvpair.h>
33#include <sys/param.h>
34#include <sys/types.h>
35#include <sys/fs/zfs.h>
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
327c9046
AZ
41_LIBZFS_CORE_H int libzfs_core_init(void);
42_LIBZFS_CORE_H void libzfs_core_fini(void);
6f1ffb06 43
514498fe
BB
44struct zfs_cmd;
45_LIBZFS_CORE_H int lzc_ioctl_fd(int, unsigned long, struct zfs_cmd *);
46
e67a7ffb 47/*
327c9046 48 * NB: this type should be kept binary-compatible with dmu_objset_type_t.
e67a7ffb
GM
49 */
50enum lzc_dataset_type {
51 LZC_DATSET_TYPE_ZFS = 2,
52 LZC_DATSET_TYPE_ZVOL
53};
54
327c9046
AZ
55_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 *,
57 uint8_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 *,
b5256303 68 uint_t);
327c9046 69_LIBZFS_CORE_H int lzc_initialize(const char *, pool_initialize_func_t,
1b939560 70 nvlist_t *, nvlist_t **);
327c9046
AZ
71_LIBZFS_CORE_H int lzc_trim(const char *, pool_trim_func_t, uint64_t, boolean_t,
72 nvlist_t *, nvlist_t **);
73_LIBZFS_CORE_H int lzc_redact(const char *, const char *, nvlist_t *);
6f1ffb06 74
327c9046 75_LIBZFS_CORE_H int lzc_snaprange_space(const char *, const char *, uint64_t *);
6f1ffb06 76
327c9046
AZ
77_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 **);
13fe0198 80
9b67f605 81enum lzc_send_flags {
f1512ee6 82 LZC_SEND_FLAG_EMBED_DATA = 1 << 0,
2aa34383 83 LZC_SEND_FLAG_LARGE_BLOCK = 1 << 1,
b5256303
TC
84 LZC_SEND_FLAG_COMPRESS = 1 << 2,
85 LZC_SEND_FLAG_RAW = 1 << 3,
ba0ba69e 86 LZC_SEND_FLAG_SAVED = 1 << 4,
9b67f605
MA
87};
88
3a909fe3 89_LIBZFS_CORE_H int lzc_send_wrapper(int (*)(int, void *), int, void *);
327c9046
AZ
90_LIBZFS_CORE_H int lzc_send(const char *, const char *, int,
91 enum lzc_send_flags);
92_LIBZFS_CORE_H int lzc_send_resume(const char *, const char *, int,
47dfff3b 93 enum lzc_send_flags, uint64_t, uint64_t);
327c9046
AZ
94_LIBZFS_CORE_H int lzc_send_space(const char *, const char *,
95 enum lzc_send_flags, uint64_t *);
fd41e935
BB
96
97struct dmu_replay_record;
98
327c9046
AZ
99_LIBZFS_CORE_H int lzc_send_redacted(const char *, const char *, int,
100 enum lzc_send_flags, const char *);
101_LIBZFS_CORE_H int lzc_send_resume_redacted(const char *, const char *, int,
30af21b0 102 enum lzc_send_flags, uint64_t, uint64_t, const char *);
327c9046
AZ
103_LIBZFS_CORE_H int lzc_receive(const char *, nvlist_t *, const char *,
104 boolean_t, boolean_t, int);
105_LIBZFS_CORE_H int lzc_receive_resumable(const char *, nvlist_t *, const char *,
106 boolean_t, boolean_t, int);
107_LIBZFS_CORE_H int lzc_receive_with_header(const char *, nvlist_t *,
108 const char *, boolean_t, boolean_t, boolean_t, int,
109 const struct dmu_replay_record *);
110_LIBZFS_CORE_H int lzc_receive_one(const char *, nvlist_t *, const char *,
111 boolean_t, boolean_t, boolean_t, int, const struct dmu_replay_record *, int,
b5256303 112 uint64_t *, uint64_t *, uint64_t *, nvlist_t **);
327c9046
AZ
113_LIBZFS_CORE_H int lzc_receive_with_cmdprops(const char *, nvlist_t *,
114 nvlist_t *, uint8_t *, uint_t, const char *, boolean_t, boolean_t,
115 boolean_t, int, const struct dmu_replay_record *, int, uint64_t *,
116 uint64_t *, uint64_t *, nvlist_t **);
e8cf3a4f
AP
117_LIBZFS_CORE_H int lzc_receive_with_heal(const char *, nvlist_t *, nvlist_t *,
118 uint8_t *, uint_t, const char *, boolean_t, boolean_t, boolean_t, boolean_t,
119 int, const struct dmu_replay_record *, int, uint64_t *, uint64_t *,
120 uint64_t *, nvlist_t **);
327c9046
AZ
121_LIBZFS_CORE_H int lzc_send_space(const char *, const char *,
122 enum lzc_send_flags, uint64_t *);
123_LIBZFS_CORE_H int lzc_send_space_resume_redacted(const char *, const char *,
30af21b0
PD
124 enum lzc_send_flags, uint64_t, uint64_t, uint64_t, const char *,
125 int, uint64_t *);
327c9046 126_LIBZFS_CORE_H uint64_t lzc_send_progress(int);
6f1ffb06 127
327c9046 128_LIBZFS_CORE_H boolean_t lzc_exists(const char *);
6f1ffb06 129
327c9046
AZ
130_LIBZFS_CORE_H int lzc_rollback(const char *, char *, int);
131_LIBZFS_CORE_H int lzc_rollback_to(const char *, const char *);
6f1ffb06 132
327c9046
AZ
133_LIBZFS_CORE_H int lzc_rename(const char *, const char *);
134_LIBZFS_CORE_H int lzc_destroy(const char *);
dc1c630b 135
327c9046 136_LIBZFS_CORE_H int lzc_channel_program(const char *, const char *, uint64_t,
5b72a38d 137 uint64_t, nvlist_t *, nvlist_t **);
327c9046
AZ
138_LIBZFS_CORE_H int lzc_channel_program_nosync(const char *, const char *,
139 uint64_t, uint64_t, nvlist_t *, nvlist_t **);
d99a0153 140
327c9046
AZ
141_LIBZFS_CORE_H int lzc_sync(const char *, nvlist_t *, nvlist_t **);
142_LIBZFS_CORE_H int lzc_reopen(const char *, boolean_t);
bec1067d 143
327c9046
AZ
144_LIBZFS_CORE_H int lzc_pool_checkpoint(const char *);
145_LIBZFS_CORE_H int lzc_pool_checkpoint_discard(const char *);
d2734cce 146
327c9046
AZ
147_LIBZFS_CORE_H int lzc_wait(const char *, zpool_wait_activity_t, boolean_t *);
148_LIBZFS_CORE_H int lzc_wait_tag(const char *, zpool_wait_activity_t, uint64_t,
149 boolean_t *);
150_LIBZFS_CORE_H int lzc_wait_fs(const char *, zfs_wait_activity_t, boolean_t *);
e60e158e 151
327c9046
AZ
152_LIBZFS_CORE_H int lzc_set_bootenv(const char *, const nvlist_t *);
153_LIBZFS_CORE_H int lzc_get_bootenv(const char *, nvlist_t **);
2a673e76
AJ
154
155_LIBZFS_CORE_H int lzc_get_vdev_prop(const char *, nvlist_t *, nvlist_t **);
156_LIBZFS_CORE_H int lzc_set_vdev_prop(const char *, nvlist_t *, nvlist_t **);
157
482eeef8
GA
158_LIBZFS_CORE_H int lzc_scrub(zfs_ioc_t, const char *, nvlist_t *, nvlist_t **);
159
6f1ffb06
MA
160#ifdef __cplusplus
161}
162#endif
163
164#endif /* _LIBZFS_CORE_H */