]> git.proxmox.com Git - mirror_zfs.git/blame - include/libzfs_core.h
OpenZFS 7910 - l2arc_write_buffers() may write beyond target_sz
[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
9 * or http://www.opensolaris.org/os/licensing.
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/*
47dfff3b 23 * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
bec1067d 24 * Copyright (c) 2017 Datto Inc.
d12f91fd 25 * Copyright 2017 RackTop Systems.
6f1ffb06
MA
26 */
27
28#ifndef _LIBZFS_CORE_H
29#define _LIBZFS_CORE_H
30
31#include <libnvpair.h>
32#include <sys/param.h>
33#include <sys/types.h>
34#include <sys/fs/zfs.h>
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40int libzfs_core_init(void);
41void libzfs_core_fini(void);
42
e67a7ffb
GM
43/*
44 * NB: this type should be kept binary compatible with dmu_objset_type_t.
45 */
46enum lzc_dataset_type {
47 LZC_DATSET_TYPE_ZFS = 2,
48 LZC_DATSET_TYPE_ZVOL
49};
50
da536844 51int lzc_snapshot(nvlist_t *, nvlist_t *, nvlist_t **);
e67a7ffb 52int lzc_create(const char *, enum lzc_dataset_type, nvlist_t *);
da536844 53int lzc_clone(const char *, const char *, nvlist_t *);
d12f91fd 54int lzc_promote(const char *, char *, int);
da536844
MA
55int lzc_destroy_snaps(nvlist_t *, boolean_t, nvlist_t **);
56int lzc_bookmark(nvlist_t *, nvlist_t **);
57int lzc_get_bookmarks(const char *, nvlist_t *, nvlist_t **);
58int lzc_destroy_bookmarks(nvlist_t *, nvlist_t **);
6f1ffb06 59
da536844 60int lzc_snaprange_space(const char *, const char *, uint64_t *);
6f1ffb06 61
da536844
MA
62int lzc_hold(nvlist_t *, int, nvlist_t **);
63int lzc_release(nvlist_t *, nvlist_t **);
64int lzc_get_holds(const char *, nvlist_t **);
13fe0198 65
9b67f605 66enum lzc_send_flags {
f1512ee6 67 LZC_SEND_FLAG_EMBED_DATA = 1 << 0,
2aa34383
DK
68 LZC_SEND_FLAG_LARGE_BLOCK = 1 << 1,
69 LZC_SEND_FLAG_COMPRESS = 1 << 2
9b67f605
MA
70};
71
72int lzc_send(const char *, const char *, int, enum lzc_send_flags);
47dfff3b
MA
73int lzc_send_resume(const char *, const char *, int,
74 enum lzc_send_flags, uint64_t, uint64_t);
2aa34383 75int lzc_send_space(const char *, const char *, enum lzc_send_flags, uint64_t *);
fd41e935
BB
76
77struct dmu_replay_record;
78
da536844 79int lzc_receive(const char *, nvlist_t *, const char *, boolean_t, int);
47dfff3b
MA
80int lzc_receive_resumable(const char *, nvlist_t *, const char *,
81 boolean_t, int);
fd41e935
BB
82int lzc_receive_with_header(const char *, nvlist_t *, const char *, boolean_t,
83 boolean_t, int, const struct dmu_replay_record *);
43e52edd
BB
84int lzc_receive_one(const char *, nvlist_t *, const char *, boolean_t,
85 boolean_t, int, const struct dmu_replay_record *, int, uint64_t *,
86 uint64_t *, uint64_t *, nvlist_t **);
a3eeab2d 87int lzc_receive_with_cmdprops(const char *, nvlist_t *, nvlist_t *,
88 const char *, boolean_t, boolean_t, int, const struct dmu_replay_record *,
89 int, uint64_t *, uint64_t *, uint64_t *, nvlist_t **);
6f1ffb06 90
da536844 91boolean_t lzc_exists(const char *);
6f1ffb06 92
da536844 93int lzc_rollback(const char *, char *, int);
6f1ffb06 94
bec1067d
AP
95int lzc_sync(const char *, nvlist_t *, nvlist_t **);
96
6f1ffb06
MA
97#ifdef __cplusplus
98}
99#endif
100
101#endif /* _LIBZFS_CORE_H */